@flowio/types 11.24.94 → 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 +1423 -1206
- package/dist/api.d.ts +195 -23
- package/package.json +2 -2
- package/src/api-internal.ts +1845 -1410
- package/src/api.ts +298 -26
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,11 +839,13 @@ 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;
|
|
712
|
-
readonly trigger
|
|
846
|
+
readonly trigger?: io.flow.billing.accounting.v0.unions.FulfillmentTrigger;
|
|
713
847
|
readonly fulfilled_at: string;
|
|
848
|
+
readonly carrier?: io.flow.billing.accounting.v0.models.FulfillmentCarrier;
|
|
714
849
|
readonly owner: io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
715
850
|
readonly origin?: io.flow.billing.accounting.v0.models.FulfillmentOrigin;
|
|
716
851
|
readonly business?: io.flow.billing.accounting.v0.models.FulfillmentBusiness;
|
|
@@ -719,6 +854,11 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
719
854
|
interface FulfillmentBusiness {
|
|
720
855
|
readonly vat_registration_number: string;
|
|
721
856
|
}
|
|
857
|
+
interface FulfillmentCarrier {
|
|
858
|
+
readonly id: string;
|
|
859
|
+
readonly service_id?: string;
|
|
860
|
+
readonly tracking_number?: string;
|
|
861
|
+
}
|
|
722
862
|
interface FulfillmentOrigin {
|
|
723
863
|
readonly country: string;
|
|
724
864
|
readonly province_code?: string;
|
|
@@ -825,11 +965,20 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
825
965
|
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
826
966
|
readonly currency: string;
|
|
827
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
|
+
}
|
|
828
976
|
interface PendingOrder {
|
|
829
977
|
readonly id: string;
|
|
830
978
|
readonly order: io.flow.billing.accounting.v0.models.OrderSummary;
|
|
831
979
|
readonly shopper: io.flow.billing.accounting.v0.models.ShopperSummary;
|
|
832
980
|
readonly merchant: io.flow.billing.accounting.v0.models.MerchantSummary;
|
|
981
|
+
readonly payment?: io.flow.billing.accounting.v0.models.PaymentSummary;
|
|
833
982
|
readonly remittance: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
834
983
|
readonly sequence_number: number;
|
|
835
984
|
readonly posting_cutoff: string;
|
|
@@ -844,6 +993,7 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
844
993
|
readonly shopper: io.flow.billing.accounting.v0.models.ShopperSummary;
|
|
845
994
|
readonly merchant: io.flow.billing.accounting.v0.models.MerchantSummary;
|
|
846
995
|
readonly remittance: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
996
|
+
readonly payment?: io.flow.billing.accounting.v0.models.PaymentSummary;
|
|
847
997
|
readonly sequence_number: number;
|
|
848
998
|
readonly posting_cutoff: string;
|
|
849
999
|
readonly trigger: io.flow.billing.accounting.v0.unions.ReturnTrigger;
|
|
@@ -890,6 +1040,7 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
890
1040
|
readonly product: io.flow.billing.accounting.v0.models.ShopperLines;
|
|
891
1041
|
readonly fees: io.flow.billing.accounting.v0.models.ShopperFees;
|
|
892
1042
|
readonly freight: io.flow.billing.accounting.v0.models.ShopperFreight;
|
|
1043
|
+
readonly tips?: number;
|
|
893
1044
|
readonly order_discount: number;
|
|
894
1045
|
readonly total: number;
|
|
895
1046
|
}
|
|
@@ -1918,6 +2069,14 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1918
2069
|
readonly discriminator: 'payment_processor_reference';
|
|
1919
2070
|
readonly processor: string;
|
|
1920
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
|
+
}
|
|
1921
2080
|
interface PaymentProcessorTransactionDetailsCard {
|
|
1922
2081
|
readonly discriminator: 'card';
|
|
1923
2082
|
readonly transaction_identifier?: string;
|
|
@@ -1943,6 +2102,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1943
2102
|
interface PaypalAuthorizationDetails {
|
|
1944
2103
|
readonly discriminator: 'paypal_authorization_details';
|
|
1945
2104
|
readonly payment_id: string;
|
|
2105
|
+
readonly internal_payment_id?: string;
|
|
1946
2106
|
readonly payment_method?: string;
|
|
1947
2107
|
readonly payment_state?: string;
|
|
1948
2108
|
readonly payer_id?: string;
|
|
@@ -2217,562 +2377,33 @@ declare namespace io.flow.payment.v0.unions {
|
|
|
2217
2377
|
type Payment = io.flow.payment.v0.models.PaymentPaypal | io.flow.payment.v0.models.PaymentCryptopay;
|
|
2218
2378
|
type PaymentForm = io.flow.payment.v0.models.MerchantOfRecordPaymentForm;
|
|
2219
2379
|
type PaymentOrderReference = io.flow.payment.v0.models.AuthorizationOrderReference | io.flow.payment.v0.models.PaymentPaymentRequestReference;
|
|
2220
|
-
type PaymentProcessorTransactionDetails = io.flow.payment.v0.models.PaymentProcessorTransactionDetailsCard;
|
|
2380
|
+
type PaymentProcessorTransactionDetails = io.flow.payment.v0.models.PaymentProcessorTransactionDetailsCard | io.flow.payment.v0.models.PaymentProcessorTransactionDetailsApm;
|
|
2221
2381
|
type PaymentSource = io.flow.payment.v0.models.CardPaymentSource;
|
|
2222
2382
|
type PaymentSourceForm = io.flow.payment.v0.models.CardPaymentSourceForm;
|
|
2223
2383
|
type ThreedsChallengeAction = io.flow.payment.v0.models.ThreedsTwoChallengeRequest;
|
|
2224
2384
|
type ThreedsIdentifyAction = io.flow.payment.v0.models.ThreedsTwoMethod;
|
|
2225
2385
|
type TransactionDetails = io.flow.payment.v0.models.TransactionDetailsCard;
|
|
2226
2386
|
}
|
|
2227
|
-
declare namespace io.flow.
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
type CardNetwork = 'AMEX' | 'DISCOVER' | 'JCB' | 'MASTERCARD' | 'VISA';
|
|
2232
|
-
type PaymentMethodType = 'CARD';
|
|
2233
|
-
type TokenizationType = 'PAYMENT_GATEWAY' | 'DIRECT';
|
|
2234
|
-
type TotalPriceStatus = 'NOT_CURRENTLY_KNOWN' | 'ESTIMATED' | 'FINAL';
|
|
2235
|
-
}
|
|
2236
|
-
declare namespace io.flow.google.pay.v0.models {
|
|
2237
|
-
interface Address {
|
|
2238
|
-
readonly name: string;
|
|
2239
|
-
readonly postalCode: string;
|
|
2240
|
-
readonly countryCode: string;
|
|
2241
|
-
readonly phoneNumber: string;
|
|
2242
|
-
readonly companyName: string;
|
|
2243
|
-
readonly address1: string;
|
|
2244
|
-
readonly address2: string;
|
|
2245
|
-
readonly address3: string;
|
|
2246
|
-
readonly locality: string;
|
|
2247
|
-
readonly administrativeArea: string;
|
|
2248
|
-
readonly sortingCode: string;
|
|
2249
|
-
}
|
|
2250
|
-
interface BillingAddressParameters {
|
|
2251
|
-
readonly format?: io.flow.google.pay.v0.enums.BillingAddressFormat;
|
|
2252
|
-
readonly phoneNumberRequired?: boolean;
|
|
2253
|
-
}
|
|
2254
|
-
interface CardAdyenTokenizationParameters {
|
|
2255
|
-
readonly gateway: string;
|
|
2256
|
-
readonly gatewayMerchantId: string;
|
|
2257
|
-
}
|
|
2258
|
-
interface CardDirectTokenizationParameters {
|
|
2259
|
-
readonly protocolVersion: string;
|
|
2260
|
-
readonly publicKey: string;
|
|
2261
|
-
}
|
|
2262
|
-
interface CardPaymentMethodDataInfo {
|
|
2263
|
-
readonly cardDetails: string;
|
|
2264
|
-
readonly cardNetwork: string;
|
|
2265
|
-
readonly billingAddress?: io.flow.google.pay.v0.models.Address;
|
|
2266
|
-
}
|
|
2267
|
-
interface CardPaymentMethodParameters {
|
|
2268
|
-
readonly allowedAuthMethods: io.flow.google.pay.v0.enums.AuthMethod[];
|
|
2269
|
-
readonly allowedCardNetworks: io.flow.google.pay.v0.enums.CardNetwork[];
|
|
2270
|
-
readonly billingAddressRequired?: boolean;
|
|
2271
|
-
readonly billingAddressParameters?: io.flow.google.pay.v0.models.BillingAddressParameters;
|
|
2272
|
-
}
|
|
2273
|
-
interface DirectPaymentMethodToken {
|
|
2274
|
-
readonly discriminator: 'direct_payment_method_token';
|
|
2275
|
-
readonly protocolVersion: string;
|
|
2276
|
-
readonly signature: string;
|
|
2277
|
-
readonly signedMessage: string;
|
|
2278
|
-
}
|
|
2279
|
-
interface EncryptedMessage {
|
|
2280
|
-
readonly messageExpiration: string;
|
|
2281
|
-
readonly messageId: string;
|
|
2282
|
-
readonly paymentMethod: io.flow.google.pay.v0.models.PaymentMethod;
|
|
2283
|
-
readonly paymentMethodDetails: io.flow.google.pay.v0.models.PaymentMethodDetails;
|
|
2284
|
-
}
|
|
2285
|
-
interface MerchantInfo {
|
|
2286
|
-
readonly merchantId: string;
|
|
2287
|
-
readonly merchantName?: string;
|
|
2288
|
-
readonly authJwt?: string;
|
|
2289
|
-
}
|
|
2290
|
-
interface PaymentData {
|
|
2291
|
-
readonly apiVersion: number;
|
|
2292
|
-
readonly apiVersionMinor: number;
|
|
2293
|
-
readonly paymentMethodData: io.flow.google.pay.v0.models.PaymentMethodData;
|
|
2294
|
-
readonly email?: string;
|
|
2295
|
-
readonly shippingAddress?: io.flow.google.pay.v0.models.Address;
|
|
2296
|
-
}
|
|
2297
|
-
interface PaymentDataRequest {
|
|
2298
|
-
readonly apiVersion: number;
|
|
2299
|
-
readonly apiVersionMinor: number;
|
|
2300
|
-
readonly merchantInfo: io.flow.google.pay.v0.models.MerchantInfo;
|
|
2301
|
-
readonly allowedPaymentMethods: io.flow.google.pay.v0.models.PaymentMethod[];
|
|
2302
|
-
readonly transactionInfo: io.flow.google.pay.v0.models.TransactionInfo;
|
|
2303
|
-
readonly emailRequired?: boolean;
|
|
2304
|
-
readonly shippingAddressRequired?: boolean;
|
|
2305
|
-
readonly shippingAddressParameters?: io.flow.google.pay.v0.models.ShippingAddressParameters;
|
|
2387
|
+
declare namespace io.flow.field.validation.v0.models {
|
|
2388
|
+
interface FieldValidationMax {
|
|
2389
|
+
readonly discriminator: 'max';
|
|
2390
|
+
readonly length: number;
|
|
2306
2391
|
}
|
|
2307
|
-
interface
|
|
2308
|
-
readonly
|
|
2309
|
-
readonly
|
|
2310
|
-
readonly tokenizationSpecification: io.flow.google.pay.v0.models.PaymentMethodTokenizationSpecification;
|
|
2392
|
+
interface FieldValidationMin {
|
|
2393
|
+
readonly discriminator: 'min';
|
|
2394
|
+
readonly length: number;
|
|
2311
2395
|
}
|
|
2312
|
-
interface
|
|
2313
|
-
readonly
|
|
2314
|
-
readonly
|
|
2315
|
-
readonly info: io.flow.google.pay.v0.models.CardPaymentMethodDataInfo;
|
|
2316
|
-
readonly tokenizationData: io.flow.google.pay.v0.models.PaymentMethodTokenizationData;
|
|
2396
|
+
interface FieldValidationPattern {
|
|
2397
|
+
readonly discriminator: 'pattern';
|
|
2398
|
+
readonly pattern: string;
|
|
2317
2399
|
}
|
|
2318
|
-
interface
|
|
2319
|
-
readonly
|
|
2320
|
-
readonly
|
|
2321
|
-
readonly expirationYear: number;
|
|
2322
|
-
readonly authMethod: io.flow.google.pay.v0.enums.AuthMethod;
|
|
2323
|
-
readonly cryptogram?: string;
|
|
2324
|
-
readonly eciIndicator?: string;
|
|
2400
|
+
interface FieldValidationRequired {
|
|
2401
|
+
readonly discriminator: 'required';
|
|
2402
|
+
readonly placeholder?: string;
|
|
2325
2403
|
}
|
|
2326
|
-
interface
|
|
2327
|
-
readonly
|
|
2328
|
-
readonly
|
|
2329
|
-
}
|
|
2330
|
-
interface PaymentMethodTokenizationSpecification {
|
|
2331
|
-
readonly type: io.flow.google.pay.v0.enums.TokenizationType;
|
|
2332
|
-
readonly parameters: any;
|
|
2333
|
-
}
|
|
2334
|
-
interface ShippingAddressParameters {
|
|
2335
|
-
readonly allowedCountryCodes?: string[];
|
|
2336
|
-
}
|
|
2337
|
-
interface SignedMessage {
|
|
2338
|
-
readonly encryptedMessage: string;
|
|
2339
|
-
readonly ephemeralPublicKey: string;
|
|
2340
|
-
readonly tag: string;
|
|
2341
|
-
}
|
|
2342
|
-
interface StripePaymentMethodToken {
|
|
2343
|
-
readonly discriminator: 'stripe_payment_method_token';
|
|
2344
|
-
readonly token: io.flow.stripe.v0.models.Token;
|
|
2345
|
-
}
|
|
2346
|
-
interface TransactionInfo {
|
|
2347
|
-
readonly totalPriceStatus: io.flow.google.pay.v0.enums.TotalPriceStatus;
|
|
2348
|
-
readonly totalPrice?: string;
|
|
2349
|
-
readonly currencyCode?: string;
|
|
2350
|
-
}
|
|
2351
|
-
}
|
|
2352
|
-
declare namespace io.flow.google.pay.v0.unions {
|
|
2353
|
-
type PaymentMethodToken = io.flow.google.pay.v0.models.DirectPaymentMethodToken | io.flow.google.pay.v0.models.StripePaymentMethodToken;
|
|
2354
|
-
}
|
|
2355
|
-
declare namespace io.flow.billing.csv.v0.models {
|
|
2356
|
-
interface AccountSummary {
|
|
2357
|
-
readonly id: string;
|
|
2358
|
-
readonly currency: string;
|
|
2359
|
-
}
|
|
2360
|
-
interface BillingChannelCsvOrder {
|
|
2361
|
-
readonly number: string;
|
|
2362
|
-
readonly submitted_at: string;
|
|
2363
|
-
readonly local: io.flow.billing.csv.v0.models.BillingChannelCsvOrderDetail;
|
|
2364
|
-
readonly deliveries: io.flow.billing.csv.v0.models.BillingChannelCsvOrderDelivery[];
|
|
2365
|
-
}
|
|
2366
|
-
interface BillingChannelCsvOrderDelivery {
|
|
2367
|
-
readonly carrier: io.flow.billing.csv.v0.models.BillingCsvCarrier;
|
|
2368
|
-
readonly service: io.flow.billing.csv.v0.models.BillingCsvService;
|
|
2369
|
-
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
2370
|
-
readonly ratecard_owner: io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
2371
|
-
readonly tier: io.flow.billing.csv.v0.models.BillingCsvTier;
|
|
2372
|
-
}
|
|
2373
|
-
interface BillingChannelCsvOrderDetail {
|
|
2374
|
-
readonly currency: string;
|
|
2375
|
-
readonly freight: number;
|
|
2376
|
-
readonly total: number;
|
|
2377
|
-
readonly subtotal: number;
|
|
2378
|
-
readonly vat: number;
|
|
2379
|
-
readonly duty: number;
|
|
2380
|
-
readonly discount: number;
|
|
2381
|
-
readonly adjustment: number;
|
|
2382
|
-
readonly insurance: number;
|
|
2383
|
-
readonly shipping: number;
|
|
2384
|
-
}
|
|
2385
|
-
interface BillingCsvCarrier {
|
|
2386
|
-
readonly id: string;
|
|
2387
|
-
}
|
|
2388
|
-
interface BillingCsvCenter {
|
|
2389
|
-
readonly key: string;
|
|
2390
|
-
}
|
|
2391
|
-
interface BillingCsvChannelBilledTransaction {
|
|
2392
|
-
readonly id: string;
|
|
2393
|
-
readonly type: string;
|
|
2394
|
-
readonly net: number;
|
|
2395
|
-
readonly description: string;
|
|
2396
|
-
readonly account: io.flow.billing.csv.v0.models.AccountSummary;
|
|
2397
|
-
readonly organization?: io.flow.common.v0.models.OrganizationReference;
|
|
2398
|
-
readonly order?: io.flow.billing.csv.v0.models.BillingCsvOrderSummary;
|
|
2399
|
-
}
|
|
2400
|
-
interface BillingCsvChannelTransaction {
|
|
2401
|
-
readonly id: string;
|
|
2402
|
-
readonly account: io.flow.billing.csv.v0.models.AccountSummary;
|
|
2403
|
-
readonly type: string;
|
|
2404
|
-
readonly description?: string;
|
|
2405
|
-
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
2406
|
-
readonly order: io.flow.billing.csv.v0.models.BillingCsvOrderWithMorSummary;
|
|
2407
|
-
readonly processing_transaction: io.flow.billing.csv.v0.models.BillingCsvChannelTransactionProcessingTransaction;
|
|
2408
|
-
readonly spot_rate: io.flow.billing.csv.v0.models.BillingCsvExchangeRate;
|
|
2409
|
-
readonly processing_transaction_base_amount_in_channel_account_currency: number;
|
|
2410
|
-
readonly processing_transaction_total_fees_in_channel_account_currency: number;
|
|
2411
|
-
readonly processing_fee?: io.flow.billing.csv.v0.models.BillingCsvFee;
|
|
2412
|
-
readonly fraud_fee?: io.flow.billing.csv.v0.models.BillingCsvFee;
|
|
2413
|
-
readonly mor_fee?: io.flow.billing.csv.v0.models.BillingCsvFee;
|
|
2414
|
-
readonly fx_fee?: io.flow.billing.csv.v0.models.BillingCsvFee;
|
|
2415
|
-
readonly duty_guarantee_fee?: io.flow.billing.csv.v0.models.BillingCsvFee;
|
|
2416
|
-
readonly rate_lock_fee?: io.flow.billing.csv.v0.models.BillingCsvFee;
|
|
2417
|
-
readonly transfer_fee?: io.flow.billing.csv.v0.models.BillingCsvFee;
|
|
2418
|
-
readonly total_fees: number;
|
|
2419
|
-
readonly amount: number;
|
|
2420
|
-
}
|
|
2421
|
-
interface BillingCsvChannelTransactionProcessingTransaction {
|
|
2422
|
-
readonly id: string;
|
|
2423
|
-
readonly account: io.flow.billing.csv.v0.models.AccountSummary;
|
|
2424
|
-
readonly local_currency: string;
|
|
2425
|
-
readonly base_amount: number;
|
|
2426
|
-
readonly total_fees: number;
|
|
2427
|
-
readonly payment_method: string;
|
|
2428
|
-
}
|
|
2429
|
-
interface BillingCsvConsumerInvoice {
|
|
2430
|
-
readonly invoice: io.flow.billing.csv.v0.models.BillingCsvConsumerInvoiceSummary;
|
|
2431
|
-
readonly order: io.flow.billing.internal.v0.models.BillingOrderSummary;
|
|
2432
|
-
readonly lines: io.flow.billing.csv.v0.models.BillingCsvConsumerInvoiceLineDetail[];
|
|
2433
|
-
}
|
|
2434
|
-
interface BillingCsvConsumerInvoiceLine {
|
|
2435
|
-
readonly invoice: io.flow.billing.csv.v0.models.BillingCsvConsumerInvoiceSummary;
|
|
2436
|
-
readonly order: io.flow.billing.internal.v0.models.BillingOrderSummary;
|
|
2437
|
-
readonly line: io.flow.billing.csv.v0.models.BillingCsvConsumerInvoiceLineDetail;
|
|
2438
|
-
}
|
|
2439
|
-
interface BillingCsvConsumerInvoiceLineDetail {
|
|
2440
|
-
readonly discriminator: string;
|
|
2441
|
-
readonly item_number?: string;
|
|
2442
|
-
readonly quantity: number;
|
|
2443
|
-
readonly unit_price: io.flow.common.v0.models.Price;
|
|
2444
|
-
readonly unit_discount?: io.flow.common.v0.models.Price;
|
|
2445
|
-
readonly unit_tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
2446
|
-
readonly unit_duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
2447
|
-
}
|
|
2448
|
-
interface BillingCsvConsumerInvoiceSummary {
|
|
2449
|
-
readonly id: string;
|
|
2450
|
-
readonly number: string;
|
|
2451
|
-
readonly date: string;
|
|
2452
|
-
readonly key: string;
|
|
2453
|
-
}
|
|
2454
|
-
interface BillingCsvDelivery {
|
|
2455
|
-
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
2456
|
-
readonly carrier: io.flow.billing.csv.v0.models.BillingCsvCarrier;
|
|
2457
|
-
readonly center: io.flow.billing.csv.v0.models.BillingCsvCenter;
|
|
2458
|
-
readonly service: io.flow.billing.csv.v0.models.BillingCsvService;
|
|
2459
|
-
readonly tier: io.flow.billing.csv.v0.models.BillingCsvTier;
|
|
2460
|
-
readonly cost: io.flow.billing.csv.v0.models.BillingCsvDeliveryCostDetail;
|
|
2461
|
-
readonly ratecard_owner: io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
2462
|
-
}
|
|
2463
|
-
interface BillingCsvDeliveryCostDetail {
|
|
2464
|
-
readonly ratecard_base_cost: number;
|
|
2465
|
-
readonly ratecard_ddp_fee: number;
|
|
2466
|
-
readonly ratecard_emergency_situation_surcharge: number;
|
|
2467
|
-
readonly ratecard_peak_surcharge: number;
|
|
2468
|
-
readonly ratecard_fuel_surcharge: number;
|
|
2469
|
-
readonly ratecard_oversized_shipment_fee: number;
|
|
2470
|
-
readonly ratecard_rural_shipment_fee: number;
|
|
2471
|
-
readonly center_commercial_invoice_fee: number;
|
|
2472
|
-
readonly center_inbound_carton_fee: number;
|
|
2473
|
-
readonly center_outbound_carton_fee: number;
|
|
2474
|
-
}
|
|
2475
|
-
interface BillingCsvExchangeRate {
|
|
2476
|
-
readonly base_currency: string;
|
|
2477
|
-
readonly local_currency: string;
|
|
2478
|
-
readonly rate: number;
|
|
2479
|
-
}
|
|
2480
|
-
interface BillingCsvFee {
|
|
2481
|
-
readonly amount: number;
|
|
2482
|
-
readonly description?: string;
|
|
2483
|
-
}
|
|
2484
|
-
interface BillingCsvGenericTransaction {
|
|
2485
|
-
readonly id: string;
|
|
2486
|
-
readonly posted_at?: string;
|
|
2487
|
-
readonly type: io.flow.billing.internal.v0.enums.BillingTransactionType;
|
|
2488
|
-
readonly amount: number;
|
|
2489
|
-
readonly description: string;
|
|
2490
|
-
}
|
|
2491
|
-
interface BillingCsvLabelTransaction {
|
|
2492
|
-
readonly id: string;
|
|
2493
|
-
readonly type: string;
|
|
2494
|
-
readonly gross: number;
|
|
2495
|
-
readonly net: number;
|
|
2496
|
-
readonly discounts: io.flow.billing.internal.v0.models.Discount[];
|
|
2497
|
-
readonly description?: string;
|
|
2498
|
-
readonly account: io.flow.billing.csv.v0.models.AccountSummary;
|
|
2499
|
-
readonly label: io.flow.billing.csv.v0.models.BillingCsvLabelTransactionBillableLabelSummary;
|
|
2500
|
-
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
2501
|
-
readonly order?: io.flow.billing.csv.v0.models.BillingCsvOrderWithMorSummary;
|
|
2502
|
-
}
|
|
2503
|
-
interface BillingCsvLabelTransactionBillableLabelSummary {
|
|
2504
|
-
readonly id: string;
|
|
2505
|
-
readonly owner?: io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
2506
|
-
readonly carrier_id: string;
|
|
2507
|
-
readonly carrier_tracking_number: string;
|
|
2508
|
-
readonly cost: io.flow.billing.csv.v0.models.BillingCsvLabelTransactionBillableLabelSummaryCost;
|
|
2509
|
-
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
2510
|
-
readonly trigger_method?: io.flow.label.v0.enums.LabelTriggerMethod;
|
|
2511
|
-
readonly identifiers?: Record<string, string>;
|
|
2512
|
-
}
|
|
2513
|
-
interface BillingCsvLabelTransactionBillableLabelSummaryCost {
|
|
2514
|
-
readonly amount: number;
|
|
2515
|
-
readonly currency: string;
|
|
2516
|
-
readonly source?: io.flow.label.v0.enums.CostEstimateSource;
|
|
2517
|
-
}
|
|
2518
|
-
interface BillingCsvOrder {
|
|
2519
|
-
readonly number: string;
|
|
2520
|
-
readonly primary_identifier?: string;
|
|
2521
|
-
readonly submitted_at?: string;
|
|
2522
|
-
readonly timezone: string;
|
|
2523
|
-
readonly local: io.flow.billing.csv.v0.models.BillingCsvOrderDetail;
|
|
2524
|
-
readonly base: io.flow.billing.csv.v0.models.BillingCsvOrderDetail;
|
|
2525
|
-
readonly transaction_amount: number;
|
|
2526
|
-
readonly deliveries: io.flow.billing.csv.v0.models.BillingCsvDelivery[];
|
|
2527
|
-
readonly exchange_rate?: io.flow.billing.csv.v0.models.BillingCsvExchangeRate;
|
|
2528
|
-
}
|
|
2529
|
-
interface BillingCsvOrderDestination {
|
|
2530
|
-
readonly city?: string;
|
|
2531
|
-
readonly province?: string;
|
|
2532
|
-
readonly postal?: string;
|
|
2533
|
-
readonly country?: string;
|
|
2534
|
-
}
|
|
2535
|
-
interface BillingCsvOrderDetail {
|
|
2536
|
-
readonly currency: string;
|
|
2537
|
-
readonly adjustment: number;
|
|
2538
|
-
readonly subtotal: number;
|
|
2539
|
-
readonly vat: number;
|
|
2540
|
-
readonly duty: number;
|
|
2541
|
-
readonly shipping: number;
|
|
2542
|
-
readonly insurance: number;
|
|
2543
|
-
readonly discount: number;
|
|
2544
|
-
readonly total: number;
|
|
2545
|
-
readonly freight: number;
|
|
2546
|
-
}
|
|
2547
|
-
interface BillingCsvOrderSummary {
|
|
2548
|
-
readonly number: string;
|
|
2549
|
-
readonly identifiers: Record<string, string>;
|
|
2550
|
-
}
|
|
2551
|
-
interface BillingCsvOrderTransaction {
|
|
2552
|
-
readonly id: string;
|
|
2553
|
-
readonly type: string;
|
|
2554
|
-
readonly amount: number;
|
|
2555
|
-
readonly description?: string;
|
|
2556
|
-
readonly account: io.flow.billing.csv.v0.models.AccountSummary;
|
|
2557
|
-
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
2558
|
-
readonly order: io.flow.billing.csv.v0.models.BillingCsvOrderWithMorSummary;
|
|
2559
|
-
}
|
|
2560
|
-
interface BillingCsvOrderWithMorSummary {
|
|
2561
|
-
readonly number: string;
|
|
2562
|
-
readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
|
|
2563
|
-
readonly identifiers: Record<string, string>;
|
|
2564
|
-
}
|
|
2565
|
-
interface BillingCsvProcessingTransaction {
|
|
2566
|
-
readonly id: string;
|
|
2567
|
-
readonly reference: string;
|
|
2568
|
-
readonly primary_identifier?: string;
|
|
2569
|
-
readonly parent_id?: string;
|
|
2570
|
-
readonly created_at?: string;
|
|
2571
|
-
readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
|
|
2572
|
-
readonly posted_at?: string;
|
|
2573
|
-
readonly type: io.flow.billing.internal.v0.enums.BillingTransactionType;
|
|
2574
|
-
readonly timezone: string;
|
|
2575
|
-
readonly order_number?: string;
|
|
2576
|
-
readonly order_primary_identifier?: string;
|
|
2577
|
-
readonly order_identifiers?: Record<string, string>;
|
|
2578
|
-
readonly order_submitted_at?: string;
|
|
2579
|
-
readonly order?: io.flow.billing.internal.v0.models.BillingOrderSummary;
|
|
2580
|
-
readonly payment_method: string;
|
|
2581
|
-
readonly local_amount: number;
|
|
2582
|
-
readonly local_currency: string;
|
|
2583
|
-
readonly base_amount: number;
|
|
2584
|
-
readonly base_currency: string;
|
|
2585
|
-
readonly processing_fee?: number;
|
|
2586
|
-
readonly processing_fee_description?: string;
|
|
2587
|
-
readonly rate_lock_fee: number;
|
|
2588
|
-
readonly rate_lock_fee_description?: string;
|
|
2589
|
-
readonly vat_withholding: number;
|
|
2590
|
-
readonly duty_withholding: number;
|
|
2591
|
-
readonly freight_withholding?: number;
|
|
2592
|
-
readonly insurance_withholding: number;
|
|
2593
|
-
readonly revenue_share?: number;
|
|
2594
|
-
readonly revenue_share_currency?: string;
|
|
2595
|
-
readonly amount: number;
|
|
2596
|
-
readonly order_detail?: io.flow.billing.csv.v0.models.BillingCsvProcessingTransactionOrderDetail;
|
|
2597
|
-
readonly mor_fee?: number;
|
|
2598
|
-
readonly mor_fee_description?: string;
|
|
2599
|
-
readonly fx_fee?: number;
|
|
2600
|
-
readonly fx_fee_description?: string;
|
|
2601
|
-
readonly duty_guarantee_fee?: number;
|
|
2602
|
-
readonly duty_guarantee_fee_description?: string;
|
|
2603
|
-
readonly negative_balance_fee?: number;
|
|
2604
|
-
readonly negative_balance_fee_description?: string;
|
|
2605
|
-
}
|
|
2606
|
-
interface BillingCsvProcessingTransactionDelivery {
|
|
2607
|
-
readonly delivery_option_id: string;
|
|
2608
|
-
readonly ratecard_owner: io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
2609
|
-
readonly service: io.flow.billing.csv.v0.models.BillingCsvService;
|
|
2610
|
-
readonly center: io.flow.billing.csv.v0.models.BillingCsvCenter;
|
|
2611
|
-
readonly ship_from_country: string;
|
|
2612
|
-
readonly delivered_duty: string;
|
|
2613
|
-
}
|
|
2614
|
-
interface BillingCsvProcessingTransactionOrderDetail {
|
|
2615
|
-
readonly total: number;
|
|
2616
|
-
readonly subtotal: number;
|
|
2617
|
-
readonly discount: number;
|
|
2618
|
-
readonly vat: number;
|
|
2619
|
-
readonly duty: number;
|
|
2620
|
-
readonly shipping: number;
|
|
2621
|
-
readonly vat_subsidy?: number;
|
|
2622
|
-
readonly duty_subsidy?: number;
|
|
2623
|
-
readonly estimated_freight: number;
|
|
2624
|
-
readonly selected_deliveries: io.flow.billing.csv.v0.models.BillingCsvProcessingTransactionDelivery[];
|
|
2625
|
-
}
|
|
2626
|
-
interface BillingCsvService {
|
|
2627
|
-
readonly id: string;
|
|
2628
|
-
}
|
|
2629
|
-
interface BillingCsvTier {
|
|
2630
|
-
readonly name: string;
|
|
2631
|
-
}
|
|
2632
|
-
interface BillingCsvTransaction {
|
|
2633
|
-
readonly id: string;
|
|
2634
|
-
readonly type: io.flow.billing.internal.v0.enums.BillingTransactionType;
|
|
2635
|
-
readonly account: io.flow.billing.csv.v0.models.BillingCsvTransactionAccount;
|
|
2636
|
-
readonly metadata?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadata;
|
|
2637
|
-
readonly order?: io.flow.billing.csv.v0.models.BillingCsvTransactionOrderSummary;
|
|
2638
|
-
readonly currency: string;
|
|
2639
|
-
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
2640
|
-
readonly parent?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
2641
|
-
readonly gross: number;
|
|
2642
|
-
readonly fees: io.flow.billing.csv.v0.models.BillingCsvTransactionFees;
|
|
2643
|
-
readonly withholdings: io.flow.billing.csv.v0.models.BillingCsvTransactionWithholdings;
|
|
2644
|
-
readonly discount: io.flow.billing.csv.v0.models.BillingCsvTransactionDiscount;
|
|
2645
|
-
readonly net: number;
|
|
2646
|
-
readonly identifiers: io.flow.billing.csv.v0.models.BillingCsvTransactionIdentifiers;
|
|
2647
|
-
readonly created_at: string;
|
|
2648
|
-
readonly updated_at: string;
|
|
2649
|
-
}
|
|
2650
|
-
interface BillingCsvTransactionAccount {
|
|
2651
|
-
readonly id: string;
|
|
2652
|
-
readonly environment: io.flow.common.v0.enums.Environment;
|
|
2653
|
-
readonly source: io.flow.billing.csv.v0.models.BillingCsvTransactionAccountSourceSummary;
|
|
2654
|
-
}
|
|
2655
|
-
interface BillingCsvTransactionAccountSourceSummary {
|
|
2656
|
-
readonly id: string;
|
|
2657
|
-
readonly type: io.flow.billing.internal.v0.enums.AccountType;
|
|
2658
|
-
}
|
|
2659
|
-
interface BillingCsvTransactionDiscount {
|
|
2660
|
-
readonly amount: number;
|
|
2661
|
-
readonly description?: string;
|
|
2662
|
-
}
|
|
2663
|
-
interface BillingCsvTransactionFees {
|
|
2664
|
-
readonly duty_guarantee: number;
|
|
2665
|
-
readonly mor: number;
|
|
2666
|
-
readonly fraud: number;
|
|
2667
|
-
readonly fx: number;
|
|
2668
|
-
readonly processing: number;
|
|
2669
|
-
readonly rate_lock: number;
|
|
2670
|
-
readonly transfer: number;
|
|
2671
|
-
readonly negative_balance: number;
|
|
2672
|
-
}
|
|
2673
|
-
interface BillingCsvTransactionIdentifiers {
|
|
2674
|
-
readonly reference_id?: string;
|
|
2675
|
-
}
|
|
2676
|
-
interface BillingCsvTransactionMetadata {
|
|
2677
|
-
readonly channel?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataChannel;
|
|
2678
|
-
readonly shipping_label?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataShippingLabel;
|
|
2679
|
-
readonly shipping_label_revenue_share?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataShippingLabelRevenueShare;
|
|
2680
|
-
readonly trueup?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataTrueup;
|
|
2681
|
-
readonly carrier_charge?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataCarrierCharge;
|
|
2682
|
-
readonly carrier_fee?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataCarrierFee;
|
|
2683
|
-
readonly manual?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataManual;
|
|
2684
|
-
}
|
|
2685
|
-
interface BillingCsvTransactionMetadataCarrierCharge {
|
|
2686
|
-
readonly reason: io.flow.trueup.v0.enums.CarrierChargeReason;
|
|
2687
|
-
readonly label_created_at: string;
|
|
2688
|
-
readonly carrier_id: string;
|
|
2689
|
-
readonly carrier_tracking_number: string;
|
|
2690
|
-
readonly revenue_share_percentage: number;
|
|
2691
|
-
readonly outbound_transaction_id?: string;
|
|
2692
|
-
}
|
|
2693
|
-
interface BillingCsvTransactionMetadataCarrierFee {
|
|
2694
|
-
readonly outbound_transaction_id: string;
|
|
2695
|
-
readonly estimate_fixed_ddp?: number;
|
|
2696
|
-
readonly estimate_fixed_currency_conversion?: number;
|
|
2697
|
-
readonly actual_fixed_ddp?: number;
|
|
2698
|
-
readonly actual_fixed_currency_conversion?: number;
|
|
2699
|
-
}
|
|
2700
|
-
interface BillingCsvTransactionMetadataChannel {
|
|
2701
|
-
readonly method: string;
|
|
2702
|
-
readonly card?: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata;
|
|
2703
|
-
}
|
|
2704
|
-
interface BillingCsvTransactionMetadataManual {
|
|
2705
|
-
readonly original?: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
2706
|
-
readonly url?: string;
|
|
2707
|
-
}
|
|
2708
|
-
interface BillingCsvTransactionMetadataShippingLabel {
|
|
2709
|
-
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
2710
|
-
}
|
|
2711
|
-
interface BillingCsvTransactionMetadataShippingLabelRevenueShare {
|
|
2712
|
-
readonly label_id: string;
|
|
2713
|
-
readonly base_amount?: number;
|
|
2714
|
-
readonly percentage?: number;
|
|
2715
|
-
}
|
|
2716
|
-
interface BillingCsvTransactionMetadataTrueup {
|
|
2717
|
-
readonly original: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
2718
|
-
readonly label_transaction_id: string;
|
|
2719
|
-
readonly label_invoice_request_id: string;
|
|
2720
|
-
readonly carrier_charge_id: string;
|
|
2721
|
-
}
|
|
2722
|
-
interface BillingCsvTransactionOrderSummary {
|
|
2723
|
-
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
2724
|
-
readonly number: string;
|
|
2725
|
-
readonly identifiers: io.flow.billing.csv.v0.models.BillingCsvTransactionOrderSummaryIdentifiers;
|
|
2726
|
-
}
|
|
2727
|
-
interface BillingCsvTransactionOrderSummaryIdentifiers {
|
|
2728
|
-
readonly shopify_order_id?: string;
|
|
2729
|
-
}
|
|
2730
|
-
interface BillingCsvTransactionWithholdings {
|
|
2731
|
-
readonly tax: number;
|
|
2732
|
-
readonly duty: number;
|
|
2733
|
-
readonly freight: number;
|
|
2734
|
-
readonly insurance: number;
|
|
2735
|
-
}
|
|
2736
|
-
interface FlowFinancePaymentSummary {
|
|
2737
|
-
readonly id: string;
|
|
2738
|
-
readonly status: io.flow.billing.internal.v0.enums.BankPaymentStatusCode;
|
|
2739
|
-
readonly amount: number;
|
|
2740
|
-
readonly bank_account_last4?: string;
|
|
2741
|
-
}
|
|
2742
|
-
interface FlowFinanceStatementSummary {
|
|
2743
|
-
readonly account_id: string;
|
|
2744
|
-
readonly payment?: io.flow.billing.csv.v0.models.FlowFinancePaymentSummary;
|
|
2745
|
-
readonly statement_id: string;
|
|
2746
|
-
readonly settlement_currency: string;
|
|
2747
|
-
readonly starting_balance: number;
|
|
2748
|
-
readonly balance_forward: number;
|
|
2749
|
-
readonly transactions_posted: number;
|
|
2750
|
-
readonly platform_fee: number;
|
|
2751
|
-
readonly account_balance: number;
|
|
2752
|
-
readonly dispute_balance: number;
|
|
2753
|
-
readonly one_time_adjustments: Record<string, number>;
|
|
2754
|
-
}
|
|
2755
|
-
}
|
|
2756
|
-
declare namespace io.flow.field.validation.v0.models {
|
|
2757
|
-
interface FieldValidationMax {
|
|
2758
|
-
readonly discriminator: 'max';
|
|
2759
|
-
readonly length: number;
|
|
2760
|
-
}
|
|
2761
|
-
interface FieldValidationMin {
|
|
2762
|
-
readonly discriminator: 'min';
|
|
2763
|
-
readonly length: number;
|
|
2764
|
-
}
|
|
2765
|
-
interface FieldValidationPattern {
|
|
2766
|
-
readonly discriminator: 'pattern';
|
|
2767
|
-
readonly pattern: string;
|
|
2768
|
-
}
|
|
2769
|
-
interface FieldValidationRequired {
|
|
2770
|
-
readonly discriminator: 'required';
|
|
2771
|
-
readonly placeholder?: string;
|
|
2772
|
-
}
|
|
2773
|
-
interface FieldValidationRequiredIfPresent {
|
|
2774
|
-
readonly discriminator: 'required_if_present';
|
|
2775
|
-
readonly placeholder?: string;
|
|
2404
|
+
interface FieldValidationRequiredIfPresent {
|
|
2405
|
+
readonly discriminator: 'required_if_present';
|
|
2406
|
+
readonly placeholder?: string;
|
|
2776
2407
|
}
|
|
2777
2408
|
}
|
|
2778
2409
|
declare namespace io.flow.field.validation.v0.unions {
|
|
@@ -2781,6 +2412,8 @@ declare namespace io.flow.field.validation.v0.unions {
|
|
|
2781
2412
|
declare namespace io.flow.stripe.v0.enums {
|
|
2782
2413
|
type AccountType = 'platform' | 'custom' | 'standard' | 'express';
|
|
2783
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';
|
|
2784
2417
|
type CancellationReason = 'abandoned' | 'automatic' | 'duplicate' | 'failed_invoice' | 'fraudulent' | 'requested_by_customer' | 'void_invoice';
|
|
2785
2418
|
type CaptureMethod = 'automatic' | 'manual';
|
|
2786
2419
|
type CardBrand = 'American Express' | 'MasterCard' | 'Discover' | 'JCB' | 'Diners Club' | 'Unknown';
|
|
@@ -2790,9 +2423,14 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
2790
2423
|
type CodeVerificationStatus = 'pending' | 'succeeded' | 'failed';
|
|
2791
2424
|
type ConfirmationMethod = 'automatic' | 'manual';
|
|
2792
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';
|
|
2793
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';
|
|
2794
2432
|
type ErrorType = 'api_connection_error' | 'api_error' | 'authentication_error' | 'card_error' | 'idempotency_error' | 'invalid_request_error' | 'rate_limit_error' | 'validation_error';
|
|
2795
|
-
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';
|
|
2796
2434
|
type ExtendedAuthorizationStatus = 'enabled' | 'disabled';
|
|
2797
2435
|
type FeatureAvailability = 'available' | 'unavailable';
|
|
2798
2436
|
type KlarnaPaymentMethodCategoryType = 'direct_bank_transfer' | 'direct_debit' | 'pay_later' | 'pay_now' | 'pay_over_time';
|
|
@@ -2802,9 +2440,10 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
2802
2440
|
type OrderItemType = 'sku' | 'tax' | 'shipping' | 'discount';
|
|
2803
2441
|
type PaymentIntentStatus = 'canceled' | 'processing' | 'requires_action' | 'requires_capture' | 'requires_confirmation' | 'requires_payment_method' | 'succeeded';
|
|
2804
2442
|
type PaymentMethodCategoryKlarna = 'pay_later' | 'pay_now' | 'pay_with_financing' | 'pay_in_installments';
|
|
2805
|
-
type PaymentMethodType = 'card' | 'card_present' | 'klarna';
|
|
2443
|
+
type PaymentMethodType = 'card' | 'card_present' | 'ideal' | 'klarna' | 'bancontact';
|
|
2806
2444
|
type PaymentOutcomeType = 'authorized' | 'manual_review' | 'issuer_declined' | 'blocked' | 'invalid';
|
|
2807
2445
|
type PaymentStatus = 'succeeded' | 'pending' | 'failed';
|
|
2446
|
+
type PreferredLanguageBancontact = 'de' | 'en' | 'fr' | 'nl';
|
|
2808
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';
|
|
2809
2448
|
type RefundFailureReason = 'lost_or_stolen_card' | 'expired_or_canceled_card' | 'unknown';
|
|
2810
2449
|
type RefundReason = 'duplicate' | 'fraudulent' | 'requested_by_customer';
|
|
@@ -3022,6 +2661,48 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3022
2661
|
readonly source: string;
|
|
3023
2662
|
readonly description?: string;
|
|
3024
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
|
+
}
|
|
3025
2706
|
interface Error {
|
|
3026
2707
|
readonly error: io.flow.stripe.v0.models.StripeError;
|
|
3027
2708
|
}
|
|
@@ -3248,8 +2929,10 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3248
2929
|
readonly id: string;
|
|
3249
2930
|
readonly object: string;
|
|
3250
2931
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
2932
|
+
readonly bancontact?: any;
|
|
3251
2933
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodCardDetails;
|
|
3252
2934
|
readonly card_present?: any;
|
|
2935
|
+
readonly ideal?: any;
|
|
3253
2936
|
readonly klarna?: any;
|
|
3254
2937
|
readonly created: number;
|
|
3255
2938
|
readonly customer?: string;
|
|
@@ -3280,18 +2963,43 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3280
2963
|
readonly number: string;
|
|
3281
2964
|
readonly cvc?: string;
|
|
3282
2965
|
}
|
|
2966
|
+
interface PaymentMethodDataBancontact {
|
|
2967
|
+
readonly type: 'bancontact';
|
|
2968
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
2969
|
+
readonly metadata?: any;
|
|
2970
|
+
}
|
|
3283
2971
|
interface PaymentMethodDataCard {
|
|
3284
2972
|
readonly type: 'card';
|
|
3285
2973
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
3286
2974
|
readonly metadata?: any;
|
|
3287
2975
|
readonly card: io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
3288
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
|
+
}
|
|
3289
2983
|
interface PaymentMethodDataKlarna {
|
|
3290
2984
|
readonly type: 'klarna';
|
|
3291
2985
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
3292
2986
|
readonly metadata?: any;
|
|
3293
2987
|
readonly klarna: io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
3294
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
|
+
}
|
|
3295
3003
|
interface PaymentMethodDetailsCard {
|
|
3296
3004
|
readonly type: 'card';
|
|
3297
3005
|
readonly card: io.flow.stripe.v0.models.PaymentMethodDetailsCardInformation;
|
|
@@ -3321,6 +3029,18 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3321
3029
|
readonly multicapture?: io.flow.stripe.v0.models.Multicapture;
|
|
3322
3030
|
readonly overcapture?: io.flow.stripe.v0.models.Overcapture;
|
|
3323
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
|
+
}
|
|
3324
3044
|
interface PaymentMethodDetailsKlarna {
|
|
3325
3045
|
readonly type: 'klarna';
|
|
3326
3046
|
readonly klarna: io.flow.stripe.v0.models.PaymentMethodDetailsKlarnaInformation;
|
|
@@ -3329,24 +3049,47 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3329
3049
|
readonly payment_method_category?: io.flow.stripe.v0.enums.PaymentMethodCategoryKlarna;
|
|
3330
3050
|
readonly preferred_locale?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
3331
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
|
+
}
|
|
3332
3058
|
interface PaymentMethodFormCard {
|
|
3333
3059
|
readonly type: 'card';
|
|
3334
3060
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
3335
3061
|
readonly metadata?: any;
|
|
3336
3062
|
readonly card: io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
3337
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
|
+
}
|
|
3338
3070
|
interface PaymentMethodFormKlarna {
|
|
3339
3071
|
readonly type: 'klarna';
|
|
3340
3072
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
3341
3073
|
readonly metadata?: any;
|
|
3342
3074
|
readonly klarna: io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
3343
3075
|
}
|
|
3076
|
+
interface PaymentMethodIdealForm {
|
|
3077
|
+
readonly bank?: string;
|
|
3078
|
+
}
|
|
3344
3079
|
interface PaymentMethodKlarnaForm {
|
|
3345
3080
|
readonly dob?: io.flow.stripe.v0.models.KlarnaDobForm;
|
|
3346
3081
|
}
|
|
3347
3082
|
interface PaymentMethodOptions {
|
|
3348
3083
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodOptionsCard;
|
|
3084
|
+
readonly ideal?: io.flow.stripe.v0.models.PaymentMethodOptionsIdeal;
|
|
3349
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;
|
|
3350
3093
|
}
|
|
3351
3094
|
interface PaymentMethodOptionsCard {
|
|
3352
3095
|
readonly network?: string;
|
|
@@ -3363,7 +3106,15 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3363
3106
|
}
|
|
3364
3107
|
interface PaymentMethodOptionsForm {
|
|
3365
3108
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodOptionsCardForm;
|
|
3109
|
+
readonly ideal?: io.flow.stripe.v0.models.PaymentMethodOptionsIdealForm;
|
|
3366
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;
|
|
3367
3118
|
}
|
|
3368
3119
|
interface PaymentMethodOptionsKlarna {
|
|
3369
3120
|
readonly capture_method?: io.flow.stripe.v0.enums.CaptureMethod;
|
|
@@ -3557,6 +3308,22 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3557
3308
|
readonly three_ds_optimizations?: string;
|
|
3558
3309
|
readonly directory_server_encryption?: any;
|
|
3559
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
|
+
}
|
|
3560
3327
|
interface StripeError {
|
|
3561
3328
|
readonly type: io.flow.stripe.v0.enums.ErrorType;
|
|
3562
3329
|
readonly charge?: string;
|
|
@@ -3641,9 +3408,9 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3641
3408
|
}
|
|
3642
3409
|
declare namespace io.flow.stripe.v0.unions {
|
|
3643
3410
|
type CardWallet = io.flow.stripe.v0.models.Masterpass | io.flow.stripe.v0.models.ApplePay | io.flow.stripe.v0.models.VisaCheckout;
|
|
3644
|
-
type PaymentMethodData = io.flow.stripe.v0.models.PaymentMethodDataCard | io.flow.stripe.v0.models.PaymentMethodDataKlarna;
|
|
3645
|
-
type PaymentMethodDetails = io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna;
|
|
3646
|
-
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;
|
|
3647
3414
|
}
|
|
3648
3415
|
declare namespace io.flow.customer.v0.enums {
|
|
3649
3416
|
type CustomerAddressType = 'billing' | 'invoice' | 'shipping';
|
|
@@ -3788,6 +3555,12 @@ declare namespace io.flow.label.v0.models {
|
|
|
3788
3555
|
readonly id: string;
|
|
3789
3556
|
readonly number: string;
|
|
3790
3557
|
}
|
|
3558
|
+
interface LabelProcessingModification {
|
|
3559
|
+
readonly id: string;
|
|
3560
|
+
readonly modifications: string[];
|
|
3561
|
+
readonly destination: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3562
|
+
readonly destination_provided_to_carrier?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3563
|
+
}
|
|
3791
3564
|
interface LabelReference {
|
|
3792
3565
|
readonly id: string;
|
|
3793
3566
|
}
|
|
@@ -4688,6 +4461,7 @@ declare namespace io.flow.shopify.markets.internal.v0.enums {
|
|
|
4688
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';
|
|
4689
4462
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
4690
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';
|
|
4691
4465
|
}
|
|
4692
4466
|
declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
4693
4467
|
interface CatalogPublicationSyncValidationError {
|
|
@@ -4706,6 +4480,11 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
4706
4480
|
readonly fulfillment_status: io.flow.shopify.markets.internal.v0.enums.ChannelOrderFulfillmentStatusCode;
|
|
4707
4481
|
readonly timestamp: string;
|
|
4708
4482
|
}
|
|
4483
|
+
interface ChannelOrganizationIdentifier {
|
|
4484
|
+
readonly id: string;
|
|
4485
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
4486
|
+
readonly identifier: string;
|
|
4487
|
+
}
|
|
4709
4488
|
interface FlowShopValidationError {
|
|
4710
4489
|
readonly message: string;
|
|
4711
4490
|
readonly reason: string;
|
|
@@ -4723,6 +4502,13 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
4723
4502
|
interface MarketsOrderSummary {
|
|
4724
4503
|
readonly id: string;
|
|
4725
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
|
+
}
|
|
4726
4512
|
interface OrderValidationError {
|
|
4727
4513
|
readonly message: string;
|
|
4728
4514
|
readonly reason: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
@@ -4832,7 +4618,10 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
4832
4618
|
readonly id: string;
|
|
4833
4619
|
readonly initial_catalog_synced_at?: string;
|
|
4834
4620
|
readonly catalog_sync_duration?: number;
|
|
4621
|
+
readonly restrictions_sync_duration?: number;
|
|
4622
|
+
readonly classifications_sync_duration?: number;
|
|
4835
4623
|
readonly catalog_products_count?: number;
|
|
4624
|
+
readonly initial_product_restrictions_synced_at?: string;
|
|
4836
4625
|
}
|
|
4837
4626
|
interface ThirdPartyLogisticsPartner {
|
|
4838
4627
|
readonly warehouse_address: io.flow.common.v0.models.BillingAddress;
|
|
@@ -4846,186 +4635,6 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
4846
4635
|
readonly placeholder?: any;
|
|
4847
4636
|
}
|
|
4848
4637
|
}
|
|
4849
|
-
declare namespace io.flow.consumer.invoice.v0.enums {
|
|
4850
|
-
type B2BInvoiceType = 'self_bill_invoice' | 'invoice';
|
|
4851
|
-
type ConsumerInvoiceCustomerType = 'business_eu_verified' | 'business_non_verified' | 'individual';
|
|
4852
|
-
type ConsumerInvoiceDocumentType = 'pdf';
|
|
4853
|
-
type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
|
|
4854
|
-
}
|
|
4855
|
-
declare namespace io.flow.consumer.invoice.v0.models {
|
|
4856
|
-
interface B2BCreditMemo {
|
|
4857
|
-
readonly id: string;
|
|
4858
|
-
readonly number: string;
|
|
4859
|
-
readonly buyer: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
4860
|
-
readonly seller: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
4861
|
-
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
4862
|
-
readonly date: string;
|
|
4863
|
-
readonly key: string;
|
|
4864
|
-
readonly invoice: io.flow.consumer.invoice.v0.models.B2BInvoiceReference;
|
|
4865
|
-
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
4866
|
-
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
4867
|
-
readonly attributes: Record<string, string>;
|
|
4868
|
-
readonly b2b_invoice_type: io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
|
|
4869
|
-
}
|
|
4870
|
-
interface B2BInvoice {
|
|
4871
|
-
readonly id: string;
|
|
4872
|
-
readonly number: string;
|
|
4873
|
-
readonly buyer: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
4874
|
-
readonly seller: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
4875
|
-
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
4876
|
-
readonly date: string;
|
|
4877
|
-
readonly key: string;
|
|
4878
|
-
readonly order: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
4879
|
-
readonly economic_title_location: io.flow.merchant.of.record.v0.enums.EconomicTitleLocation;
|
|
4880
|
-
readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
4881
|
-
readonly destination?: io.flow.experience.v0.models.OrderAddress;
|
|
4882
|
-
readonly tax: io.flow.common.v0.models.Money;
|
|
4883
|
-
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
4884
|
-
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
4885
|
-
readonly attributes: Record<string, string>;
|
|
4886
|
-
readonly estimated_delivery_date?: string;
|
|
4887
|
-
readonly b2b_invoice_type: io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
|
|
4888
|
-
}
|
|
4889
|
-
interface B2BInvoiceReference {
|
|
4890
|
-
readonly id: string;
|
|
4891
|
-
readonly key: string;
|
|
4892
|
-
readonly number: string;
|
|
4893
|
-
}
|
|
4894
|
-
interface ConsumerInvoice {
|
|
4895
|
-
readonly id: string;
|
|
4896
|
-
readonly number: string;
|
|
4897
|
-
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
4898
|
-
readonly date: string;
|
|
4899
|
-
readonly key: string;
|
|
4900
|
-
readonly order: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
4901
|
-
readonly entity: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
4902
|
-
readonly payments: io.flow.consumer.invoice.v0.models.ConsumerInvoicePayment[];
|
|
4903
|
-
readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
4904
|
-
readonly destination: io.flow.experience.v0.models.OrderAddress;
|
|
4905
|
-
readonly billing_address?: io.flow.common.v0.models.BillingAddress;
|
|
4906
|
-
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
4907
|
-
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
4908
|
-
readonly attributes: Record<string, string>;
|
|
4909
|
-
readonly tax_registration?: io.flow.harmonization.v0.models.TaxRegistration;
|
|
4910
|
-
readonly customer_type?: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceCustomerType;
|
|
4911
|
-
readonly estimated_delivery_date?: string;
|
|
4912
|
-
}
|
|
4913
|
-
interface ConsumerInvoiceCenterReference {
|
|
4914
|
-
readonly id: string;
|
|
4915
|
-
readonly key: string;
|
|
4916
|
-
readonly name: string;
|
|
4917
|
-
readonly address: io.flow.common.v0.models.Address;
|
|
4918
|
-
}
|
|
4919
|
-
interface ConsumerInvoiceDocument {
|
|
4920
|
-
readonly type: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceDocumentType;
|
|
4921
|
-
readonly language: string;
|
|
4922
|
-
readonly url: string;
|
|
4923
|
-
}
|
|
4924
|
-
interface ConsumerInvoiceForm {
|
|
4925
|
-
readonly order_number: string;
|
|
4926
|
-
readonly attributes?: Record<string, string>;
|
|
4927
|
-
}
|
|
4928
|
-
interface ConsumerInvoiceFormByOrder {
|
|
4929
|
-
readonly attributes?: Record<string, string>;
|
|
4930
|
-
}
|
|
4931
|
-
interface ConsumerInvoiceLevy {
|
|
4932
|
-
readonly rate: number;
|
|
4933
|
-
readonly value: io.flow.common.v0.models.Price;
|
|
4934
|
-
}
|
|
4935
|
-
interface ConsumerInvoiceLevyForm {
|
|
4936
|
-
readonly rate: number;
|
|
4937
|
-
readonly amount: number;
|
|
4938
|
-
}
|
|
4939
|
-
interface ConsumerInvoiceLineDiscount {
|
|
4940
|
-
readonly discriminator: 'discount';
|
|
4941
|
-
readonly price: io.flow.common.v0.models.Price;
|
|
4942
|
-
}
|
|
4943
|
-
interface ConsumerInvoiceLineDiscountForm {
|
|
4944
|
-
readonly discriminator: 'discount';
|
|
4945
|
-
readonly price: number;
|
|
4946
|
-
}
|
|
4947
|
-
interface ConsumerInvoiceLineItem {
|
|
4948
|
-
readonly discriminator: 'item';
|
|
4949
|
-
readonly item: io.flow.common.v0.models.ItemReference;
|
|
4950
|
-
readonly description: string;
|
|
4951
|
-
readonly quantity: number;
|
|
4952
|
-
readonly unit_price: io.flow.common.v0.models.Price;
|
|
4953
|
-
readonly unit_discount?: io.flow.common.v0.models.Price;
|
|
4954
|
-
readonly unit_tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
4955
|
-
readonly unit_duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
4956
|
-
}
|
|
4957
|
-
interface ConsumerInvoiceLineItemForm {
|
|
4958
|
-
readonly discriminator: 'item';
|
|
4959
|
-
readonly item_number: string;
|
|
4960
|
-
readonly quantity: number;
|
|
4961
|
-
readonly unit_price: number;
|
|
4962
|
-
readonly unit_discount?: number;
|
|
4963
|
-
readonly unit_tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
4964
|
-
readonly unit_duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
4965
|
-
}
|
|
4966
|
-
interface ConsumerInvoiceLineShipping {
|
|
4967
|
-
readonly discriminator: 'shipping';
|
|
4968
|
-
readonly price: io.flow.common.v0.models.Price;
|
|
4969
|
-
readonly discount?: io.flow.common.v0.models.Price;
|
|
4970
|
-
readonly tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
4971
|
-
readonly duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
4972
|
-
}
|
|
4973
|
-
interface ConsumerInvoiceLineShippingForm {
|
|
4974
|
-
readonly discriminator: 'shipping';
|
|
4975
|
-
readonly price: number;
|
|
4976
|
-
readonly discount?: number;
|
|
4977
|
-
readonly tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
4978
|
-
readonly duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
4979
|
-
}
|
|
4980
|
-
interface ConsumerInvoiceOrderSummary {
|
|
4981
|
-
readonly id: string;
|
|
4982
|
-
readonly number: string;
|
|
4983
|
-
readonly submitted_at: string;
|
|
4984
|
-
}
|
|
4985
|
-
interface ConsumerInvoicePayment {
|
|
4986
|
-
readonly date: string;
|
|
4987
|
-
readonly description: string;
|
|
4988
|
-
readonly value: io.flow.common.v0.models.Price;
|
|
4989
|
-
readonly billing_address?: io.flow.common.v0.models.BillingAddress;
|
|
4990
|
-
}
|
|
4991
|
-
interface ConsumerInvoiceReference {
|
|
4992
|
-
readonly id: string;
|
|
4993
|
-
readonly key: string;
|
|
4994
|
-
readonly number: string;
|
|
4995
|
-
}
|
|
4996
|
-
interface CreditMemo {
|
|
4997
|
-
readonly id: string;
|
|
4998
|
-
readonly number?: string;
|
|
4999
|
-
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
5000
|
-
readonly date: string;
|
|
5001
|
-
readonly key: string;
|
|
5002
|
-
readonly invoice: io.flow.consumer.invoice.v0.models.ConsumerInvoiceReference;
|
|
5003
|
-
readonly entity: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
5004
|
-
readonly payments: io.flow.consumer.invoice.v0.models.ConsumerInvoicePayment[];
|
|
5005
|
-
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
5006
|
-
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
5007
|
-
readonly attributes: Record<string, string>;
|
|
5008
|
-
readonly tax_registration?: io.flow.harmonization.v0.models.TaxRegistration;
|
|
5009
|
-
}
|
|
5010
|
-
interface CreditMemoForm {
|
|
5011
|
-
readonly refund_id?: string;
|
|
5012
|
-
readonly refund_key?: string;
|
|
5013
|
-
readonly refund_identifier?: string;
|
|
5014
|
-
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLineForm[];
|
|
5015
|
-
readonly attributes?: Record<string, string>;
|
|
5016
|
-
}
|
|
5017
|
-
interface InvoiceExport {
|
|
5018
|
-
readonly id: string;
|
|
5019
|
-
}
|
|
5020
|
-
interface InvoiceExportForm {
|
|
5021
|
-
readonly date_from?: string;
|
|
5022
|
-
readonly date_to?: string;
|
|
5023
|
-
}
|
|
5024
|
-
}
|
|
5025
|
-
declare namespace io.flow.consumer.invoice.v0.unions {
|
|
5026
|
-
type ConsumerInvoiceLine = io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineItem | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineDiscount | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineShipping;
|
|
5027
|
-
type ConsumerInvoiceLineForm = io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineItemForm | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineDiscountForm | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineShippingForm;
|
|
5028
|
-
}
|
|
5029
4638
|
declare namespace io.flow.adyen.v0.enums {
|
|
5030
4639
|
type Channel = 'web';
|
|
5031
4640
|
type Contract = 'RECURRING';
|
|
@@ -5575,6 +5184,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
5575
5184
|
readonly published_at?: string;
|
|
5576
5185
|
readonly created_at: string;
|
|
5577
5186
|
readonly updated_at: string;
|
|
5187
|
+
readonly has_variants_that_requires_components?: boolean;
|
|
5578
5188
|
}
|
|
5579
5189
|
interface ProductDelete {
|
|
5580
5190
|
readonly id: number;
|
|
@@ -6258,7 +5868,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
6258
5868
|
type ShopifyOrderFulfillmentStatusType = 'fulfilled' | 'null' | 'partial';
|
|
6259
5869
|
type ShopifyOrderInventoryBehaviour = 'bypass' | 'decrement_ignoring_policy' | 'decrement_obeying_policy';
|
|
6260
5870
|
type ShopifyOrderKindType = 'authorization' | 'capture' | 'sale' | 'void' | 'refund';
|
|
6261
|
-
type ShopifyOrderPaymentGatewayNames = 'flow_commerce' | 'gift_card' | 'manual' | 'shopify_payments';
|
|
5871
|
+
type ShopifyOrderPaymentGatewayNames = 'flow_commerce' | 'gift_card' | 'manual' | 'shopify_payments' | 'shop_cash' | 'shopify_store_credit';
|
|
6262
5872
|
type ShopifyOrderProcessingMethodType = 'checkout' | 'direct' | 'manual' | 'offsite' | 'express' | 'deferred_payment';
|
|
6263
5873
|
type ShopifyOrderRestockType = 'no_restock' | 'cancel' | 'return';
|
|
6264
5874
|
type ShopifyOrderStatusType = 'open' | 'closed' | 'cancelled' | 'any';
|
|
@@ -6945,7 +6555,7 @@ declare namespace io.flow.order.price.v0.models {
|
|
|
6945
6555
|
declare namespace io.flow.channel.internal.v0.enums {
|
|
6946
6556
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
6947
6557
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
6948
|
-
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';
|
|
6949
6559
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
6950
6560
|
}
|
|
6951
6561
|
declare namespace io.flow.channel.internal.v0.models {
|
|
@@ -7510,8 +7120,9 @@ declare namespace io.flow.common.v0.unions {
|
|
|
7510
7120
|
type RepeatSchedule = io.flow.common.v0.models.RepeatHourly | io.flow.common.v0.models.RepeatDaily | io.flow.common.v0.models.RepeatWeekly | io.flow.common.v0.models.RepeatMonthly;
|
|
7511
7121
|
}
|
|
7512
7122
|
declare namespace io.flow.billing.reporting.v0.enums {
|
|
7123
|
+
type ReportPaymentType = 'credit' | 'debit';
|
|
7513
7124
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
7514
|
-
type ReportType = 'sales_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'account_quarterly_balances';
|
|
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';
|
|
7515
7126
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
7516
7127
|
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
7517
7128
|
}
|
|
@@ -7523,6 +7134,7 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7523
7134
|
readonly subtotal: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7524
7135
|
readonly tax: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7525
7136
|
readonly duty: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7137
|
+
readonly tips?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7526
7138
|
readonly discount: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7527
7139
|
readonly total: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7528
7140
|
}
|
|
@@ -7542,8 +7154,9 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7542
7154
|
readonly id: string;
|
|
7543
7155
|
readonly status: io.flow.billing.reporting.v0.enums.ReportStatus;
|
|
7544
7156
|
readonly type: io.flow.billing.reporting.v0.enums.ReportType;
|
|
7545
|
-
readonly from
|
|
7546
|
-
readonly to
|
|
7157
|
+
readonly from?: string;
|
|
7158
|
+
readonly to?: string;
|
|
7159
|
+
readonly payment_type?: io.flow.billing.reporting.v0.enums.ReportPaymentType;
|
|
7547
7160
|
readonly url?: string;
|
|
7548
7161
|
readonly processed_at?: string;
|
|
7549
7162
|
}
|
|
@@ -7562,9 +7175,18 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7562
7175
|
readonly account_number: string;
|
|
7563
7176
|
}
|
|
7564
7177
|
interface ReportForm {
|
|
7565
|
-
readonly from: string;
|
|
7566
|
-
readonly to: string;
|
|
7567
7178
|
readonly type: io.flow.billing.reporting.v0.enums.ReportType;
|
|
7179
|
+
readonly from?: string;
|
|
7180
|
+
readonly to?: string;
|
|
7181
|
+
readonly payment_type?: io.flow.billing.reporting.v0.enums.ReportPaymentType;
|
|
7182
|
+
readonly orders?: io.flow.billing.reporting.v0.models.ReportOrderReference[];
|
|
7183
|
+
}
|
|
7184
|
+
interface ReportMerchant {
|
|
7185
|
+
readonly id: string;
|
|
7186
|
+
}
|
|
7187
|
+
interface ReportOrderReference {
|
|
7188
|
+
readonly organization_id: string;
|
|
7189
|
+
readonly order_number: string;
|
|
7568
7190
|
}
|
|
7569
7191
|
interface ReportOwner {
|
|
7570
7192
|
readonly name: string;
|
|
@@ -7620,11 +7242,11 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7620
7242
|
readonly sequence_number: number;
|
|
7621
7243
|
readonly fulfilled_at: string;
|
|
7622
7244
|
readonly completes_order: boolean;
|
|
7623
|
-
readonly payment: io.flow.billing.reporting.v0.models.ReportingPayment;
|
|
7624
7245
|
readonly refund?: io.flow.billing.reporting.v0.models.ReportingRefundReference;
|
|
7625
7246
|
readonly value: io.flow.billing.reporting.v0.models.FulfillmentShopperBreakdown;
|
|
7626
7247
|
readonly dispatch_country?: io.flow.billing.reporting.v0.models.ReportingCountry;
|
|
7627
7248
|
readonly destination?: io.flow.billing.reporting.v0.models.ReportingDestination;
|
|
7249
|
+
readonly payment?: io.flow.billing.reporting.v0.models.ReportingPayment;
|
|
7628
7250
|
readonly shipment?: io.flow.billing.reporting.v0.models.ReportingShipment;
|
|
7629
7251
|
readonly is: io.flow.billing.reporting.v0.models.ReportingFulfillmentIs;
|
|
7630
7252
|
readonly has: io.flow.billing.reporting.v0.models.ReportingFulfillmentHas;
|
|
@@ -7641,6 +7263,9 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7641
7263
|
readonly wyol: boolean;
|
|
7642
7264
|
readonly b2b: boolean;
|
|
7643
7265
|
readonly domestic: boolean;
|
|
7266
|
+
readonly combined_shipment?: boolean;
|
|
7267
|
+
readonly order_cancelled?: boolean;
|
|
7268
|
+
readonly lvg?: boolean;
|
|
7644
7269
|
}
|
|
7645
7270
|
interface ReportingFx {
|
|
7646
7271
|
readonly shipping: io.flow.billing.reporting.v0.models.ReportingUsd;
|
|
@@ -7648,6 +7273,7 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7648
7273
|
readonly product: io.flow.billing.reporting.v0.models.ReportingUsd;
|
|
7649
7274
|
readonly tax: io.flow.billing.reporting.v0.models.ReportingUsd;
|
|
7650
7275
|
readonly duty: io.flow.billing.reporting.v0.models.ReportingUsd;
|
|
7276
|
+
readonly tips?: io.flow.billing.reporting.v0.models.ReportingUsd;
|
|
7651
7277
|
readonly total: io.flow.billing.reporting.v0.models.ReportingUsd;
|
|
7652
7278
|
}
|
|
7653
7279
|
interface ReportingMerchantBreakdown {
|
|
@@ -7663,12 +7289,14 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7663
7289
|
readonly processing: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7664
7290
|
readonly rate_lock: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7665
7291
|
readonly transfer: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7292
|
+
readonly total?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7666
7293
|
}
|
|
7667
7294
|
interface ReportingMerchantSubsidies {
|
|
7668
7295
|
readonly shipping: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7669
7296
|
readonly tax: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7670
7297
|
readonly duty: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7671
7298
|
readonly ccf: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7299
|
+
readonly total?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7672
7300
|
}
|
|
7673
7301
|
interface ReportingMerchantTransactions {
|
|
7674
7302
|
readonly adjustment: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
@@ -7676,7 +7304,8 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7676
7304
|
readonly tax: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7677
7305
|
readonly duty: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7678
7306
|
readonly freight: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7679
|
-
readonly
|
|
7307
|
+
readonly discount?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7308
|
+
readonly total?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7680
7309
|
}
|
|
7681
7310
|
interface ReportingMonetaryValue {
|
|
7682
7311
|
readonly transaction: number;
|
|
@@ -7695,22 +7324,13 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7695
7324
|
readonly name: string;
|
|
7696
7325
|
}
|
|
7697
7326
|
interface ReportingPayment {
|
|
7698
|
-
readonly metadata?: io.flow.billing.reporting.v0.models.ReportingPaymentMetadata;
|
|
7699
7327
|
readonly psp: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7700
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;
|
|
7701
7332
|
readonly total: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7702
7333
|
}
|
|
7703
|
-
interface ReportingPaymentMetadata {
|
|
7704
|
-
readonly gateway: io.flow.payment.internal.v0.enums.Processor;
|
|
7705
|
-
readonly method: string;
|
|
7706
|
-
readonly psp_reference?: string;
|
|
7707
|
-
readonly authorization?: io.flow.billing.reporting.v0.models.ReportingAuthorizationReference;
|
|
7708
|
-
readonly settlement_date: string;
|
|
7709
|
-
readonly additional_authorizations?: io.flow.billing.reporting.v0.models.ReportingPaymentMetadataAdditionalAuthorizations;
|
|
7710
|
-
}
|
|
7711
|
-
interface ReportingPaymentMetadataAdditionalAuthorizations {
|
|
7712
|
-
readonly ids: string;
|
|
7713
|
-
}
|
|
7714
7334
|
interface ReportingProvince {
|
|
7715
7335
|
readonly code?: string;
|
|
7716
7336
|
readonly name: string;
|
|
@@ -7735,6 +7355,7 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7735
7355
|
readonly ccf: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7736
7356
|
readonly emergency: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7737
7357
|
readonly peak: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7358
|
+
readonly total?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7738
7359
|
}
|
|
7739
7360
|
interface ReportingUsd {
|
|
7740
7361
|
readonly usd: number;
|
|
@@ -7770,6 +7391,7 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7770
7391
|
readonly payment: io.flow.billing.reporting.v0.models.ReportPayment;
|
|
7771
7392
|
readonly bank_account: io.flow.billing.reporting.v0.models.ReportBankAccountCleartext;
|
|
7772
7393
|
readonly account: io.flow.billing.reporting.v0.models.ReportAccount;
|
|
7394
|
+
readonly merchant: io.flow.billing.reporting.v0.models.ReportMerchant;
|
|
7773
7395
|
readonly owner: io.flow.billing.reporting.v0.models.ReportOwner;
|
|
7774
7396
|
readonly description: string;
|
|
7775
7397
|
}
|
|
@@ -8575,7 +8197,6 @@ declare namespace io.flow.billing.reporting.csv.v0.models {
|
|
|
8575
8197
|
readonly sequence_number: number;
|
|
8576
8198
|
readonly fulfilled_at: string;
|
|
8577
8199
|
readonly completes_order: boolean;
|
|
8578
|
-
readonly payment: io.flow.billing.reporting.v0.models.ReportingPayment;
|
|
8579
8200
|
readonly value: io.flow.billing.reporting.v0.models.FulfillmentShopperBreakdown;
|
|
8580
8201
|
readonly dispatch_country?: io.flow.billing.reporting.v0.models.ReportingCountry;
|
|
8581
8202
|
readonly destination: io.flow.billing.reporting.v0.models.ReportingDestination;
|
|
@@ -8670,6 +8291,33 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
8670
8291
|
readonly channel_id: string;
|
|
8671
8292
|
readonly channel_order_summary: io.flow.shopify.markets.internal.v0.models.ChannelOrderSummary;
|
|
8672
8293
|
}
|
|
8294
|
+
interface ChannelOrganizationIdentifierDeleted {
|
|
8295
|
+
readonly discriminator: 'channel_organization_identifier_deleted';
|
|
8296
|
+
readonly event_id: string;
|
|
8297
|
+
readonly timestamp: string;
|
|
8298
|
+
readonly channel_id: string;
|
|
8299
|
+
readonly id: string;
|
|
8300
|
+
}
|
|
8301
|
+
interface ChannelOrganizationIdentifierUpserted {
|
|
8302
|
+
readonly discriminator: 'channel_organization_identifier_upserted';
|
|
8303
|
+
readonly event_id: string;
|
|
8304
|
+
readonly timestamp: string;
|
|
8305
|
+
readonly channel_id: string;
|
|
8306
|
+
readonly channel_organization_identifier: io.flow.shopify.markets.internal.v0.models.ChannelOrganizationIdentifier;
|
|
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
|
+
}
|
|
8673
8321
|
interface ShopifyMarketsMetricsDeleted {
|
|
8674
8322
|
readonly discriminator: 'shopify_markets_metrics_deleted';
|
|
8675
8323
|
readonly event_id: string;
|
|
@@ -8744,7 +8392,7 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
8744
8392
|
}
|
|
8745
8393
|
}
|
|
8746
8394
|
declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
8747
|
-
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;
|
|
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;
|
|
8748
8396
|
}
|
|
8749
8397
|
declare namespace io.flow.experience.v0.enums {
|
|
8750
8398
|
type AddressFieldName = 'first_name' | 'last_name' | 'street_1' | 'street_2' | 'city' | 'province' | 'postal' | 'country' | 'phone' | 'company' | 'vat_registration_number';
|
|
@@ -10535,7 +10183,7 @@ declare namespace io.flow.price.v0.unions {
|
|
|
10535
10183
|
}
|
|
10536
10184
|
declare namespace io.flow.trueup.v0.enums {
|
|
10537
10185
|
type CarrierChargeReason = 'return_to_origin' | 'rejection' | 'other';
|
|
10538
|
-
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion';
|
|
10186
|
+
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion' | 'prohibited_item' | 'undeliverable_shipment' | 'signature_required' | 'direct_delivery' | 'saturday_stop' | 'residential_extended_area_pickup';
|
|
10539
10187
|
}
|
|
10540
10188
|
declare namespace io.flow.trueup.v0.models {
|
|
10541
10189
|
interface DeadWeight {
|
|
@@ -11473,25 +11121,24 @@ declare namespace io.flow.item.v0.models {
|
|
|
11473
11121
|
}
|
|
11474
11122
|
}
|
|
11475
11123
|
declare namespace io.flow.billing.internal.v0.enums {
|
|
11476
|
-
type AccountPaymentHoldReason = 'fraudulent' | 'invalid_bank_account';
|
|
11124
|
+
type AccountPaymentHoldReason = 'fraudulent' | 'frozen' | 'invalid_bank_account';
|
|
11477
11125
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
11478
11126
|
type AccountType = 'channel' | 'organization';
|
|
11479
11127
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
11480
11128
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
11481
11129
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
11482
11130
|
type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
|
|
11483
|
-
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | '
|
|
11131
|
+
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
|
|
11484
11132
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
11485
|
-
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge'
|
|
11133
|
+
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge';
|
|
11486
11134
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
11487
|
-
type CarrierFeeTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
11488
11135
|
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
11489
11136
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
11490
11137
|
type DisputeTransactionType = 'adjustment' | 'dispute';
|
|
11491
11138
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
11492
11139
|
type FeesSource = 'settings' | 'authorization_bundle';
|
|
11493
11140
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
11494
|
-
type ManualTransactionCategory = 'cancelled_order_refund' | '
|
|
11141
|
+
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';
|
|
11495
11142
|
type OrderCancellationInitiatedBy = 'flow' | 'organization';
|
|
11496
11143
|
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
11497
11144
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
@@ -11585,6 +11232,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11585
11232
|
readonly liabilities_method: io.flow.billing.internal.v0.enums.AccountSettingLiabilitiesMethod;
|
|
11586
11233
|
readonly enable_fee_reversals: boolean;
|
|
11587
11234
|
readonly record_reason_for_transactions_pending_payout: boolean;
|
|
11235
|
+
readonly enable_negative_debits: boolean;
|
|
11588
11236
|
}
|
|
11589
11237
|
interface AccountSource {
|
|
11590
11238
|
readonly id: string;
|
|
@@ -11651,6 +11299,14 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11651
11299
|
readonly transfer_transaction_ids: string[];
|
|
11652
11300
|
readonly attributes?: Record<string, string>;
|
|
11653
11301
|
}
|
|
11302
|
+
interface BankPaymentOrder {
|
|
11303
|
+
readonly id: string;
|
|
11304
|
+
readonly payment: io.flow.billing.internal.v0.models.BankPaymentReference;
|
|
11305
|
+
readonly order: io.flow.billing.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
11306
|
+
}
|
|
11307
|
+
interface BankPaymentReference {
|
|
11308
|
+
readonly id: string;
|
|
11309
|
+
}
|
|
11654
11310
|
interface BankPaymentStatusForm {
|
|
11655
11311
|
readonly code: io.flow.billing.internal.v0.enums.BankPaymentStatusCode;
|
|
11656
11312
|
readonly failure_reason?: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
@@ -11776,7 +11432,6 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11776
11432
|
readonly duty: io.flow.common.v0.models.Price;
|
|
11777
11433
|
readonly trueup: io.flow.common.v0.models.Price;
|
|
11778
11434
|
readonly carrier_charge: io.flow.common.v0.models.Price;
|
|
11779
|
-
readonly carrier_fee: io.flow.common.v0.models.Price;
|
|
11780
11435
|
readonly ending_balance: io.flow.common.v0.models.Price;
|
|
11781
11436
|
}
|
|
11782
11437
|
interface BillingTransaction {
|
|
@@ -11795,20 +11450,8 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11795
11450
|
interface CarrierChargeTransaction {
|
|
11796
11451
|
readonly discriminator: 'carrier_charge_transaction';
|
|
11797
11452
|
readonly order: io.flow.billing.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
11798
|
-
readonly label_created_at: string;
|
|
11799
|
-
readonly outbound_carrier_charge_id?: io.flow.billing.internal.v0.models.CarrierChargeReference;
|
|
11800
|
-
readonly id: string;
|
|
11801
|
-
readonly type: io.flow.billing.internal.v0.enums.BillingTransactionType;
|
|
11802
|
-
readonly status: io.flow.billing.internal.v0.enums.BillingTransactionStatus;
|
|
11803
|
-
readonly posted_at?: string;
|
|
11804
|
-
readonly value: io.flow.common.v0.models.Price;
|
|
11805
|
-
readonly description: string;
|
|
11806
|
-
readonly statement?: io.flow.billing.internal.v0.models.BillingStatementReference;
|
|
11807
|
-
readonly created_at: string;
|
|
11808
|
-
}
|
|
11809
|
-
interface CarrierFeeTransaction {
|
|
11810
|
-
readonly discriminator: 'carrier_fee_transaction';
|
|
11811
|
-
readonly label_reference: io.flow.billing.internal.v0.models.CarrierFeeTransactionLabelReference;
|
|
11453
|
+
readonly label_created_at: string;
|
|
11454
|
+
readonly outbound_carrier_charge_id?: io.flow.billing.internal.v0.models.CarrierChargeReference;
|
|
11812
11455
|
readonly id: string;
|
|
11813
11456
|
readonly type: io.flow.billing.internal.v0.enums.BillingTransactionType;
|
|
11814
11457
|
readonly status: io.flow.billing.internal.v0.enums.BillingTransactionStatus;
|
|
@@ -11818,9 +11461,6 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11818
11461
|
readonly statement?: io.flow.billing.internal.v0.models.BillingStatementReference;
|
|
11819
11462
|
readonly created_at: string;
|
|
11820
11463
|
}
|
|
11821
|
-
interface CarrierFeeTransactionLabelReference {
|
|
11822
|
-
readonly id: string;
|
|
11823
|
-
}
|
|
11824
11464
|
interface ChannelAccount {
|
|
11825
11465
|
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
11826
11466
|
readonly id: string;
|
|
@@ -11911,6 +11551,15 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11911
11551
|
readonly value: number;
|
|
11912
11552
|
readonly timestamp: string;
|
|
11913
11553
|
}
|
|
11554
|
+
interface CliLogEntry {
|
|
11555
|
+
readonly id: string;
|
|
11556
|
+
readonly user: io.flow.common.v0.models.UserReference;
|
|
11557
|
+
readonly task: string;
|
|
11558
|
+
}
|
|
11559
|
+
interface CliLogEntryForm {
|
|
11560
|
+
readonly user_id: string;
|
|
11561
|
+
readonly task: string;
|
|
11562
|
+
}
|
|
11914
11563
|
interface Components {
|
|
11915
11564
|
readonly vat: io.flow.common.v0.models.Price;
|
|
11916
11565
|
readonly duty: io.flow.common.v0.models.Price;
|
|
@@ -12466,7 +12115,7 @@ declare namespace io.flow.billing.internal.v0.unions {
|
|
|
12466
12115
|
type PlatformFee = io.flow.billing.internal.v0.models.PlatformFeePause | io.flow.billing.internal.v0.models.PlatformFeeFlat | io.flow.billing.internal.v0.models.PlatformFeePercentage | io.flow.billing.internal.v0.models.PlatformFeeDisabled;
|
|
12467
12116
|
type ProofOfPosting = io.flow.billing.internal.v0.models.ProofOfPostingFulfilled | io.flow.billing.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.billing.internal.v0.models.ProofOfPostingShippingNotification | io.flow.billing.internal.v0.models.ProofOfPostingOrderCancellation | io.flow.billing.internal.v0.models.ProofOfPostingOrderCombinedShipment | io.flow.billing.internal.v0.models.ProofOfPostingTimeElapsed;
|
|
12468
12117
|
type SpotRateMetadata = io.flow.billing.internal.v0.models.SpotRateMetadataIdentity | io.flow.billing.internal.v0.models.SpotRateMetadataRate;
|
|
12469
|
-
type Transaction = io.flow.billing.internal.v0.models.InvoiceTransaction | io.flow.billing.internal.v0.models.ManualTransaction | io.flow.billing.internal.v0.models.ProcessingTransaction | io.flow.billing.internal.v0.models.SubscriptionTransaction | io.flow.billing.internal.v0.models.TaxRemittanceTransaction | io.flow.billing.internal.v0.models.TransferTransaction | io.flow.billing.internal.v0.models.VirtualCardTransaction | io.flow.billing.internal.v0.models.DisputeTransaction | io.flow.billing.internal.v0.models.ChannelTransaction | io.flow.billing.internal.v0.models.LabelTransaction | io.flow.billing.internal.v0.models.OrderTransaction | io.flow.billing.internal.v0.models.ChannelBilledTransaction | io.flow.billing.internal.v0.models.TaxTransaction | io.flow.billing.internal.v0.models.DutyTransaction | io.flow.billing.internal.v0.models.TrueupTransaction | io.flow.billing.internal.v0.models.CarrierChargeTransaction
|
|
12118
|
+
type Transaction = io.flow.billing.internal.v0.models.InvoiceTransaction | io.flow.billing.internal.v0.models.ManualTransaction | io.flow.billing.internal.v0.models.ProcessingTransaction | io.flow.billing.internal.v0.models.SubscriptionTransaction | io.flow.billing.internal.v0.models.TaxRemittanceTransaction | io.flow.billing.internal.v0.models.TransferTransaction | io.flow.billing.internal.v0.models.VirtualCardTransaction | io.flow.billing.internal.v0.models.DisputeTransaction | io.flow.billing.internal.v0.models.ChannelTransaction | io.flow.billing.internal.v0.models.LabelTransaction | io.flow.billing.internal.v0.models.OrderTransaction | io.flow.billing.internal.v0.models.ChannelBilledTransaction | io.flow.billing.internal.v0.models.TaxTransaction | io.flow.billing.internal.v0.models.DutyTransaction | io.flow.billing.internal.v0.models.TrueupTransaction | io.flow.billing.internal.v0.models.CarrierChargeTransaction;
|
|
12470
12119
|
}
|
|
12471
12120
|
declare namespace io.flow.billing.v0.enums {
|
|
12472
12121
|
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer' | 'negative_balance_guarantee';
|
|
@@ -12474,8 +12123,8 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
12474
12123
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
12475
12124
|
type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance';
|
|
12476
12125
|
type StatementAttachmentType = 'csv';
|
|
12477
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | '
|
|
12478
|
-
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl';
|
|
12126
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout';
|
|
12127
|
+
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
12479
12128
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
12480
12129
|
}
|
|
12481
12130
|
declare namespace io.flow.billing.v0.models {
|
|
@@ -12727,19 +12376,11 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12727
12376
|
readonly revenue_share_percentage: number;
|
|
12728
12377
|
readonly outbound?: io.flow.billing.v0.models.TransactionMetadataOutboundTransaction;
|
|
12729
12378
|
}
|
|
12730
|
-
interface TransactionMetadataCarrierFee {
|
|
12731
|
-
readonly discriminator: 'carrier_fee';
|
|
12732
|
-
readonly outbound: io.flow.billing.v0.models.TransactionMetadataOutboundTransaction;
|
|
12733
|
-
readonly estimate: io.flow.billing.v0.models.TransactionMetadataCarrierFeeData;
|
|
12734
|
-
readonly actual: io.flow.billing.v0.models.TransactionMetadataCarrierFeeData;
|
|
12735
|
-
}
|
|
12736
|
-
interface TransactionMetadataCarrierFeeData {
|
|
12737
|
-
readonly surcharges: io.flow.billing.v0.models.TrueupLabelSurcharge[];
|
|
12738
|
-
}
|
|
12739
12379
|
interface TransactionMetadataChannel {
|
|
12740
12380
|
readonly discriminator: 'channel';
|
|
12741
12381
|
readonly method: string;
|
|
12742
12382
|
readonly card?: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata;
|
|
12383
|
+
readonly organization_transaction: io.flow.billing.v0.models.TransactionMetadataChannelOrganizationTransaction;
|
|
12743
12384
|
}
|
|
12744
12385
|
interface TransactionMetadataChannelCardMetadata {
|
|
12745
12386
|
readonly type: io.flow.payment.v0.enums.CardType;
|
|
@@ -12749,6 +12390,17 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12749
12390
|
readonly iin: string;
|
|
12750
12391
|
readonly country: string;
|
|
12751
12392
|
}
|
|
12393
|
+
interface TransactionMetadataChannelOrganizationTransaction {
|
|
12394
|
+
readonly id: string;
|
|
12395
|
+
readonly metadata: io.flow.billing.v0.models.TransactionMetadataPaymentTransaction;
|
|
12396
|
+
}
|
|
12397
|
+
interface TransactionMetadataFailedPayout {
|
|
12398
|
+
readonly discriminator: 'failed_payout';
|
|
12399
|
+
readonly failed_payout: io.flow.billing.v0.models.TransactionMetadataFailedPayoutReference;
|
|
12400
|
+
}
|
|
12401
|
+
interface TransactionMetadataFailedPayoutReference {
|
|
12402
|
+
readonly id: string;
|
|
12403
|
+
}
|
|
12752
12404
|
interface TransactionMetadataManual {
|
|
12753
12405
|
readonly discriminator: 'manual';
|
|
12754
12406
|
readonly description: string;
|
|
@@ -12763,6 +12415,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12763
12415
|
}
|
|
12764
12416
|
interface TransactionMetadataPaymentTransaction {
|
|
12765
12417
|
readonly discriminator: 'payment_transaction';
|
|
12418
|
+
readonly id?: string;
|
|
12766
12419
|
readonly key?: string;
|
|
12767
12420
|
}
|
|
12768
12421
|
interface TransactionMetadataShippingLabel {
|
|
@@ -12781,6 +12434,20 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12781
12434
|
readonly estimate: io.flow.billing.v0.models.TransactionMetadataTrueupData;
|
|
12782
12435
|
readonly actual: io.flow.billing.v0.models.TransactionMetadataTrueupData;
|
|
12783
12436
|
}
|
|
12437
|
+
interface TransactionMetadataTrueupBase {
|
|
12438
|
+
readonly discriminator: 'trueup_base';
|
|
12439
|
+
readonly original: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
12440
|
+
readonly estimate: io.flow.billing.v0.models.TransactionMetadataTrueupBaseData;
|
|
12441
|
+
readonly actual: io.flow.billing.v0.models.TransactionMetadataTrueupBaseData;
|
|
12442
|
+
}
|
|
12443
|
+
interface TransactionMetadataTrueupBaseData {
|
|
12444
|
+
readonly source: io.flow.billing.v0.enums.TrueupSource;
|
|
12445
|
+
readonly weights: io.flow.billing.v0.models.TrueupLabelWeights;
|
|
12446
|
+
readonly units: io.flow.billing.v0.models.TrueupLabelUnits;
|
|
12447
|
+
readonly base: io.flow.billing.v0.models.TrueupLabelBaseV2;
|
|
12448
|
+
readonly fuel?: io.flow.billing.v0.models.TrueupLabelFuel;
|
|
12449
|
+
readonly total: number;
|
|
12450
|
+
}
|
|
12784
12451
|
interface TransactionMetadataTrueupData {
|
|
12785
12452
|
readonly source: io.flow.billing.v0.enums.TrueupSource;
|
|
12786
12453
|
readonly units: io.flow.billing.v0.models.TrueupLabelUnits;
|
|
@@ -12790,6 +12457,16 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12790
12457
|
readonly dead?: io.flow.trueup.v0.models.DeadWeight;
|
|
12791
12458
|
readonly dimensional?: io.flow.trueup.v0.models.DimensionalWeight;
|
|
12792
12459
|
}
|
|
12460
|
+
interface TransactionMetadataTrueupSurcharge {
|
|
12461
|
+
readonly discriminator: 'trueup_surcharge';
|
|
12462
|
+
readonly original: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
12463
|
+
readonly estimate: io.flow.billing.v0.models.TransactionMetadataTrueupSurchargeData;
|
|
12464
|
+
readonly actual: io.flow.billing.v0.models.TransactionMetadataTrueupSurchargeData;
|
|
12465
|
+
}
|
|
12466
|
+
interface TransactionMetadataTrueupSurchargeData {
|
|
12467
|
+
readonly source: io.flow.billing.v0.enums.TrueupSource;
|
|
12468
|
+
readonly surcharge: io.flow.billing.v0.models.TrueupLabelSurcharge;
|
|
12469
|
+
}
|
|
12793
12470
|
interface TransactionReference {
|
|
12794
12471
|
readonly id: string;
|
|
12795
12472
|
}
|
|
@@ -12797,6 +12474,17 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12797
12474
|
readonly amount: number;
|
|
12798
12475
|
readonly weight: number;
|
|
12799
12476
|
}
|
|
12477
|
+
interface TrueupLabelBaseV2 {
|
|
12478
|
+
readonly amount: number;
|
|
12479
|
+
}
|
|
12480
|
+
interface TrueupLabelBaseWeight {
|
|
12481
|
+
readonly weight: number;
|
|
12482
|
+
}
|
|
12483
|
+
interface TrueupLabelFuel {
|
|
12484
|
+
readonly amount: number;
|
|
12485
|
+
readonly percentage?: number;
|
|
12486
|
+
readonly per_weight_unit?: number;
|
|
12487
|
+
}
|
|
12800
12488
|
interface TrueupLabelSurcharge {
|
|
12801
12489
|
readonly amount: number;
|
|
12802
12490
|
readonly type: io.flow.trueup.v0.enums.TrueupSurchargeType;
|
|
@@ -12807,6 +12495,11 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12807
12495
|
readonly weight: io.flow.units.v0.enums.UnitOfWeight;
|
|
12808
12496
|
readonly length?: io.flow.units.v0.enums.UnitOfLength;
|
|
12809
12497
|
}
|
|
12498
|
+
interface TrueupLabelWeights {
|
|
12499
|
+
readonly base: io.flow.billing.v0.models.TrueupLabelBaseWeight;
|
|
12500
|
+
readonly dead?: io.flow.trueup.v0.models.DeadWeight;
|
|
12501
|
+
readonly dimensional?: io.flow.trueup.v0.models.DimensionalWeight;
|
|
12502
|
+
}
|
|
12810
12503
|
interface WithholdingDeduction {
|
|
12811
12504
|
readonly type: io.flow.billing.v0.enums.WithholdingDeductionType;
|
|
12812
12505
|
readonly amount: number;
|
|
@@ -12817,7 +12510,7 @@ declare namespace io.flow.billing.v0.unions {
|
|
|
12817
12510
|
type BankAccountForm = io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple;
|
|
12818
12511
|
type PayoutStatus = io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed;
|
|
12819
12512
|
type Settlement = io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout;
|
|
12820
|
-
type TransactionMetadata = io.flow.billing.v0.models.TransactionMetadataShippingLabel | io.flow.billing.v0.models.TransactionMetadataChannel | io.flow.billing.v0.models.TransactionMetadataTrueup | io.flow.billing.v0.models.
|
|
12513
|
+
type TransactionMetadata = io.flow.billing.v0.models.TransactionMetadataShippingLabel | io.flow.billing.v0.models.TransactionMetadataChannel | io.flow.billing.v0.models.TransactionMetadataTrueup | io.flow.billing.v0.models.TransactionMetadataTrueupBase | io.flow.billing.v0.models.TransactionMetadataTrueupSurcharge | io.flow.billing.v0.models.TransactionMetadataCarrierCharge | io.flow.billing.v0.models.TransactionMetadataManual | io.flow.billing.v0.models.TransactionMetadataFailedPayout | io.flow.billing.v0.models.TransactionMetadataPaymentTransaction;
|
|
12821
12514
|
}
|
|
12822
12515
|
declare namespace io.flow.harmonization.v0.enums {
|
|
12823
12516
|
type TaxApplicability = 'none' | 'all';
|
|
@@ -13874,7 +13567,7 @@ declare namespace io.flow.checkout.v0.unions {
|
|
|
13874
13567
|
declare namespace io.flow.organization.onboarding.state.v0.enums {
|
|
13875
13568
|
type MerchantDisabledReason = 'merchant_deactivated' | 'merchant_rejected';
|
|
13876
13569
|
type MerchantRejectedReason = 'merchant_ubo_is_pep' | 'merchant_catalog_is_unsupportable' | 'merchant_failed_kyb_review';
|
|
13877
|
-
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';
|
|
13878
13571
|
}
|
|
13879
13572
|
declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
13880
13573
|
interface ActivationPutForm {
|
|
@@ -13924,6 +13617,10 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
13924
13617
|
readonly completed_at?: string;
|
|
13925
13618
|
readonly onboarding_started_at?: string;
|
|
13926
13619
|
}
|
|
13620
|
+
interface RejectionPutForm {
|
|
13621
|
+
readonly reason: io.flow.organization.onboarding.state.v0.enums.MerchantRejectedReason;
|
|
13622
|
+
readonly description: string;
|
|
13623
|
+
}
|
|
13927
13624
|
interface SetupBlocked {
|
|
13928
13625
|
readonly discriminator: 'setup_blocked';
|
|
13929
13626
|
readonly reasons: io.flow.organization.onboarding.state.v0.enums.OnboardingBlockedReason[];
|
|
@@ -14238,8 +13935,176 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
14238
13935
|
declare namespace io.flow.billing.bank.account.v0.unions {
|
|
14239
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;
|
|
14240
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;
|
|
14089
|
+
}
|
|
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;
|
|
14099
|
+
}
|
|
14100
|
+
}
|
|
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;
|
|
14105
|
+
}
|
|
14241
14106
|
declare namespace io.flow.internal.v0.enums {
|
|
14242
|
-
type AccountPaymentHoldReason = 'fraudulent' | 'invalid_bank_account';
|
|
14107
|
+
type AccountPaymentHoldReason = 'fraudulent' | 'frozen' | 'invalid_bank_account';
|
|
14243
14108
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
14244
14109
|
type AccountType = 'channel' | 'organization';
|
|
14245
14110
|
type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
|
|
@@ -14251,28 +14116,27 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14251
14116
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
14252
14117
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
14253
14118
|
type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
|
|
14254
|
-
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | '
|
|
14255
|
-
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | '
|
|
14119
|
+
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_single_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'accounts_with_final_statements_count' | 'accounts_with_final_statements_pending_transaction_count' | 'accounts_with_final_statements_pending_transaction_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction';
|
|
14120
|
+
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
|
|
14256
14121
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
14257
|
-
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge'
|
|
14122
|
+
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge';
|
|
14258
14123
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
14259
14124
|
type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax' | 'dtce_with_inclusive_pricing';
|
|
14260
14125
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
14261
|
-
type CarrierChargeType = 'label' | 'other';
|
|
14262
|
-
type
|
|
14263
|
-
type CarrierFileType = 'charge' | 'fee';
|
|
14126
|
+
type CarrierChargeType = 'label' | 'tax' | 'other';
|
|
14127
|
+
type CarrierFileType = 'freight' | 'tax';
|
|
14264
14128
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
14265
14129
|
type CarrierValidationStatus = 'success' | 'error';
|
|
14266
14130
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
14267
14131
|
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
14268
14132
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
14269
14133
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
14270
|
-
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';
|
|
14271
14135
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
14272
14136
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
14273
14137
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
14274
14138
|
type ChargeEstimateSource = 'global-e' | 'shopify';
|
|
14275
|
-
type ChargeInputType = 'fuelsc' | 'incoterm_ddp' | 'delivery_confirmation' | 'base_charge' | 'package_pickup' | 'insurance' | 'usps_first_mile' | 'oversize_piece' | 'incoterm_dap' | 'emergency_situation' | 'remote_area_delivery' | 'customs_clearance_surcharge' | 'security_surcharge' | 'duties_fx_surcharge' | 'electronic_export_information_surcharge';
|
|
14139
|
+
type ChargeInputType = 'fuelsc' | 'incoterm_ddp' | 'delivery_confirmation' | 'base_charge' | 'package_pickup' | 'insurance' | 'usps_first_mile' | 'oversize_piece' | 'incoterm_dap' | 'emergency_situation' | 'remote_area_delivery' | 'customs_clearance_surcharge' | 'security_surcharge' | 'duties_fx_surcharge' | 'electronic_export_information_surcharge' | 'additional_handling' | 'large_package_surcharge';
|
|
14276
14140
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
14277
14141
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
14278
14142
|
type CheckoutAssetType = 'stylesheet' | 'javascript';
|
|
@@ -14281,8 +14145,13 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14281
14145
|
type CheckoutRedirectMethod = 'get' | 'post';
|
|
14282
14146
|
type CheckoutShippingMethodPromptBehavior = 'always' | 'multiple';
|
|
14283
14147
|
type CheckoutUrlType = 'continue_shopping' | 'confirmation' | 'invalid_checkout';
|
|
14148
|
+
type ClassificationDecision = 'Accept' | 'Reject';
|
|
14284
14149
|
type ClassificationErrorCode = 'generic_error';
|
|
14150
|
+
type ClassificationPlatform = 'GlobalE' | 'Flow' | 'Borderfree';
|
|
14151
|
+
type ClassificationType = 'None' | 'Manual' | 'ML';
|
|
14152
|
+
type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
|
|
14285
14153
|
type ColmItemType = 'physical' | 'digital';
|
|
14154
|
+
type Company = 'globale' | 'flow';
|
|
14286
14155
|
type ComplianceType = 'weee';
|
|
14287
14156
|
type ContentElementType = 'markdown' | 'html' | 'plain_text' | 'href';
|
|
14288
14157
|
type ContentStatus = 'draft' | 'live' | 'archived';
|
|
@@ -14312,11 +14181,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14312
14181
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
14313
14182
|
type EmptyAttribute = 'irrelevant';
|
|
14314
14183
|
type ErpFileType = 'vendor';
|
|
14315
|
-
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' | 'carrier_fee_upserted' | 'carrier_fee_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' | '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';
|
|
14316
14185
|
type ExperienceImportType = 'experience_with_settings';
|
|
14317
14186
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
14318
14187
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
14319
|
-
type ExperimentDiscriminatorKey = 'experience' | 'feature';
|
|
14320
14188
|
type ExportContentType = 'item' | 'price_book_item';
|
|
14321
14189
|
type FeatureScope = 'global' | 'organization';
|
|
14322
14190
|
type FeatureStatus = 'draft' | 'active' | 'archived';
|
|
@@ -14331,6 +14199,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14331
14199
|
type FtpIntent = 'orders_from_flow' | 'pricebooks_from_flow' | 'pricebooks_to_flow' | 'catalog_to_flow' | 'inventory_to_flow';
|
|
14332
14200
|
type FtpProtocol = 'sftp' | 'ftp';
|
|
14333
14201
|
type GoogleAnalyticsPlugin = 'ec';
|
|
14202
|
+
type HarinathItemType = 'digital' | 'physical';
|
|
14203
|
+
type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model';
|
|
14334
14204
|
type HttpMethod = 'get' | 'post';
|
|
14335
14205
|
type InventoryCheckService = 'sfcc' | 'gymboree';
|
|
14336
14206
|
type InventoryReservation = 'synchronous-on-submit';
|
|
@@ -14340,15 +14210,17 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14340
14210
|
type ItemQuantityAction = 'fulfillment_ship' | 'fulfillment_cancel' | 'fulfillment_generate_label';
|
|
14341
14211
|
type ItemType = 'standard' | 'multi_product';
|
|
14342
14212
|
type KeywordType = 'positive' | 'negative';
|
|
14213
|
+
type KonstantinItemType = 'physical' | 'digital';
|
|
14343
14214
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
14344
14215
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
14345
14216
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
14346
|
-
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_system';
|
|
14217
|
+
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'merchant_operations' | 'globale_system';
|
|
14347
14218
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
14348
14219
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
14349
14220
|
type LogisticsCapability = 'logistics_address_correction';
|
|
14221
|
+
type LogisticsPayoutResolutionMethod = 'order_combined_shipment' | 'intransit_label_event' | 'shipping_notification';
|
|
14350
14222
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
14351
|
-
type ManualTransactionCategory = 'cancelled_order_refund' | '
|
|
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';
|
|
14352
14224
|
type MarketingGatewayAccountConnectionStatus = 'not_connected' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected';
|
|
14353
14225
|
type MarketingGatewayChannelIntegrationType = 'automated' | 'manual';
|
|
14354
14226
|
type MarketingGatewayChannelStatus = 'not_connected' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected' | 'unavailable';
|
|
@@ -14360,6 +14232,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14360
14232
|
type MarketingGatewayProductStatus = 'approved' | 'not_approved' | 'pending' | 'not_found' | 'excluded';
|
|
14361
14233
|
type MarketingGatewaySchemaCompatibility = 'google' | 'facebook_primary' | 'facebook_country_override' | 'supplemental';
|
|
14362
14234
|
type MatiasItemType = 'physical' | 'digital';
|
|
14235
|
+
type MichaelyanItemType = 'physical' | 'digital';
|
|
14236
|
+
type MiljenkoItemType = 'physical' | 'digital';
|
|
14363
14237
|
type MixedBagWeight = '0' | '1' | '2';
|
|
14364
14238
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
14365
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';
|
|
@@ -14368,7 +14242,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14368
14242
|
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | 'category_constraints' | 'miscellaneous';
|
|
14369
14243
|
type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
14370
14244
|
type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
14371
|
-
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';
|
|
14372
14246
|
type OrderAction = 'consumer_submit' | 'fraud_review_accept' | 'fraud_review_decline' | 'payment_fully_authorize' | 'payment_fully_capture';
|
|
14373
14247
|
type OrderAddressValidationStatus = 'success' | 'failed';
|
|
14374
14248
|
type OrderAttributeIntent = 'discount_code';
|
|
@@ -14408,8 +14282,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14408
14282
|
type RedirectReason = 'three_d_secure';
|
|
14409
14283
|
type RejectionReason = 'merchant_policy' | 'previous_chargebacks' | 'restricted_party_screening' | 'risky_velocity' | 'suspicious_behavior' | 'suspicious_past_activity';
|
|
14410
14284
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
14285
|
+
type ReportPaymentType = 'credit' | 'debit';
|
|
14411
14286
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
14412
|
-
type ReportType = 'sales_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'account_quarterly_balances';
|
|
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';
|
|
14413
14288
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
14414
14289
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
14415
14290
|
type ResponsibleParty = 'flow' | 'organization';
|
|
@@ -14419,7 +14294,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14419
14294
|
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
14420
14295
|
type RiskCheck = 'three_d_secure';
|
|
14421
14296
|
type RiskEvaluation = 'Pending' | 'High-Risk' | 'Low-Risk' | 'Restricted-Party' | 'none';
|
|
14422
|
-
type Scope = 'organization' | 'global';
|
|
14423
14297
|
type SerialReservationError = 'duration_too_long' | 'items_not_found' | 'reservation_expired';
|
|
14424
14298
|
type ServiceName = 'catalog' | 'demandware' | 'metric';
|
|
14425
14299
|
type SessionCountryStatus = 'enabled' | 'disabled';
|
|
@@ -14427,7 +14301,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14427
14301
|
type ShopifyGrantStatus = 'pass' | 'fail';
|
|
14428
14302
|
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';
|
|
14429
14303
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
14430
|
-
type ShopifyMarketsQueuedRecordType = 'card_payment' | 'catalog_publication_sync' | 'flow_shop' | 'online_payment' | 'order_update' | 'order_edit' | 'product_restriction_result' | 'product_sync' | 'webhook_registrations';
|
|
14304
|
+
type ShopifyMarketsQueuedRecordType = 'card_payment' | 'catalog_publication_sync' | 'flow_shop' | 'online_payment' | 'order_update' | 'order_edit' | 'product_restriction_result' | 'product_sync' | 'webhook_registrations' | 'channel_organization_identifier';
|
|
14431
14305
|
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';
|
|
14432
14306
|
type ShopifyMonitoringMonitorReviewStatus = 'in_review' | 'reviewed';
|
|
14433
14307
|
type ShopifyMonitoringTrackingField = 'tracking_number' | 'carrier_service' | 'tracking_url';
|
|
@@ -14437,24 +14311,23 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14437
14311
|
type ShopifyPromotionStatus = 'active' | 'inactive';
|
|
14438
14312
|
type ShopifyService = 'payment' | 'duty_tax_calculator';
|
|
14439
14313
|
type ShrutiDemoType = 'digital' | 'physical';
|
|
14440
|
-
type SignificanceAction = 'end_and_implement_winner' | 'end_and_revert' | 'do_nothing';
|
|
14441
14314
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
14442
14315
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
14443
14316
|
type SnoozeSourceType = 'task' | 'invariant';
|
|
14444
14317
|
type StatementStatus = 'created' | 'no_transactions' | 'transactions_assigned' | 'statement_generated' | 'statement_regenerated' | 'failed';
|
|
14445
14318
|
type StatementTransferTransactionLocation = 'transactions_file' | 'summary';
|
|
14446
14319
|
type StatisticType = 'time-to-classify' | 'time-to-classify-aggregated' | 'rate-source' | 'rate-freshness';
|
|
14447
|
-
type Status = 'draft' | 'scheduled' | 'live' | 'ended' | 'archived';
|
|
14448
14320
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
14449
14321
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
14450
14322
|
type SvitlanaType = 'physical' | 'digital';
|
|
14451
14323
|
type TamItemType = 'physical' | 'digital';
|
|
14452
14324
|
type TariffEligibilityType = 'rex';
|
|
14453
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';
|
|
14454
14327
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
14455
14328
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
14456
14329
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
|
|
14457
|
-
type
|
|
14330
|
+
type ThiagoItemType = 'digital' | 'physical';
|
|
14458
14331
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
14459
14332
|
type TrackingProcessingFailureClassification = 'tracking_expired' | 'expired_tracking_number_new_event' | 'new_tracking_number_expired_event' | 'origin_mismatch' | 'destination_mismatch' | 'other';
|
|
14460
14333
|
type TransactionPostingMethod = 'time' | 'proof';
|
|
@@ -14603,6 +14476,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14603
14476
|
readonly liabilities_method: io.flow.internal.v0.enums.AccountSettingLiabilitiesMethod;
|
|
14604
14477
|
readonly enable_fee_reversals: boolean;
|
|
14605
14478
|
readonly record_reason_for_transactions_pending_payout: boolean;
|
|
14479
|
+
readonly enable_negative_debits: boolean;
|
|
14606
14480
|
}
|
|
14607
14481
|
interface AccountSettingsDeleted {
|
|
14608
14482
|
readonly discriminator: 'account_settings_deleted';
|
|
@@ -14665,12 +14539,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14665
14539
|
readonly timestamp: string;
|
|
14666
14540
|
readonly account: io.flow.internal.v0.models.FlowAccount;
|
|
14667
14541
|
}
|
|
14668
|
-
interface AccountingFulfillmentMetadata {
|
|
14669
|
-
readonly discriminator: 'accounting_fulfillment_metadata';
|
|
14670
|
-
readonly order: io.flow.internal.v0.models.OrderReference;
|
|
14671
|
-
readonly proof?: io.flow.internal.v0.unions.FulfillmentProof;
|
|
14672
|
-
readonly posting_cutoff: string;
|
|
14673
|
-
}
|
|
14674
14542
|
interface AccountingPendingOrderMetadata {
|
|
14675
14543
|
readonly discriminator: 'accounting_pending_order_metadata';
|
|
14676
14544
|
readonly order: io.flow.internal.v0.models.OrderReference;
|
|
@@ -15155,15 +15023,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15155
15023
|
readonly keywords?: string[];
|
|
15156
15024
|
readonly action?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
15157
15025
|
}
|
|
15158
|
-
interface Backfill {
|
|
15159
|
-
readonly days_to_backfill: string[];
|
|
15160
|
-
}
|
|
15161
|
-
interface BackfillForm {
|
|
15162
|
-
readonly start_date: string;
|
|
15163
|
-
readonly end_date: string;
|
|
15164
|
-
readonly organization_id?: string;
|
|
15165
|
-
readonly experiment_key?: string;
|
|
15166
|
-
}
|
|
15167
15026
|
interface BankAccountReference {
|
|
15168
15027
|
readonly id: string;
|
|
15169
15028
|
}
|
|
@@ -15199,6 +15058,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15199
15058
|
readonly payment: io.flow.internal.v0.models.BankPaymentReference;
|
|
15200
15059
|
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
15201
15060
|
}
|
|
15061
|
+
interface BankPaymentOrderDeleted {
|
|
15062
|
+
readonly discriminator: 'bank_payment_order_deleted';
|
|
15063
|
+
readonly event_id: string;
|
|
15064
|
+
readonly timestamp: string;
|
|
15065
|
+
readonly id: string;
|
|
15066
|
+
}
|
|
15067
|
+
interface BankPaymentOrderUpserted {
|
|
15068
|
+
readonly discriminator: 'bank_payment_order_upserted';
|
|
15069
|
+
readonly event_id: string;
|
|
15070
|
+
readonly timestamp: string;
|
|
15071
|
+
readonly bank_payment_order: io.flow.internal.v0.models.BankPaymentOrder;
|
|
15072
|
+
}
|
|
15202
15073
|
interface BankPaymentReference {
|
|
15203
15074
|
readonly id: string;
|
|
15204
15075
|
}
|
|
@@ -15254,7 +15125,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15254
15125
|
readonly discriminator: 'billing_csv_transaction_upserted';
|
|
15255
15126
|
readonly event_id: string;
|
|
15256
15127
|
readonly timestamp: string;
|
|
15257
|
-
readonly transaction: io.flow.
|
|
15128
|
+
readonly transaction: io.flow.internal.v0.models.CsvTransaction;
|
|
15258
15129
|
}
|
|
15259
15130
|
interface BillingInvoiceSummary {
|
|
15260
15131
|
readonly id: string;
|
|
@@ -15386,7 +15257,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15386
15257
|
readonly duty: io.flow.common.v0.models.Price;
|
|
15387
15258
|
readonly trueup: io.flow.common.v0.models.Price;
|
|
15388
15259
|
readonly carrier_charge: io.flow.common.v0.models.Price;
|
|
15389
|
-
readonly carrier_fee: io.flow.common.v0.models.Price;
|
|
15390
15260
|
readonly ending_balance: io.flow.common.v0.models.Price;
|
|
15391
15261
|
}
|
|
15392
15262
|
interface BillingStatementUpserted {
|
|
@@ -15662,7 +15532,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15662
15532
|
readonly carrier_tracking_number: string;
|
|
15663
15533
|
readonly label_created_at: string;
|
|
15664
15534
|
readonly units: io.flow.internal.v0.models.CarrierChargeUnits;
|
|
15665
|
-
readonly base
|
|
15535
|
+
readonly base?: io.flow.trueup.v0.models.LabelBase;
|
|
15666
15536
|
readonly surcharges: io.flow.internal.v0.models.LabelSurchargeForm;
|
|
15667
15537
|
readonly total: number;
|
|
15668
15538
|
readonly dead?: io.flow.trueup.v0.models.DeadWeight;
|
|
@@ -15728,7 +15598,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15728
15598
|
}
|
|
15729
15599
|
interface CarrierChargeUnits {
|
|
15730
15600
|
readonly currency: string;
|
|
15731
|
-
readonly weight
|
|
15601
|
+
readonly weight?: io.flow.units.v0.enums.UnitOfWeight;
|
|
15732
15602
|
readonly length?: io.flow.units.v0.enums.UnitOfLength;
|
|
15733
15603
|
}
|
|
15734
15604
|
interface CarrierChargeUpserted {
|
|
@@ -15738,54 +15608,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15738
15608
|
readonly organization: string;
|
|
15739
15609
|
readonly carrier_charge: io.flow.internal.v0.models.CarrierCharge;
|
|
15740
15610
|
}
|
|
15741
|
-
interface CarrierFee {
|
|
15742
|
-
readonly id: string;
|
|
15743
|
-
readonly label_invoice_request_id: string;
|
|
15744
|
-
readonly units: io.flow.internal.v0.models.CarrierFeeUnits;
|
|
15745
|
-
readonly surcharges: io.flow.internal.v0.models.LabelSurchargeForm;
|
|
15746
|
-
readonly total: number;
|
|
15747
|
-
readonly attributes?: Record<string, string>;
|
|
15748
|
-
}
|
|
15749
|
-
interface CarrierFeeDeleted {
|
|
15750
|
-
readonly discriminator: 'carrier_fee_deleted';
|
|
15751
|
-
readonly event_id: string;
|
|
15752
|
-
readonly timestamp: string;
|
|
15753
|
-
readonly organization: string;
|
|
15754
|
-
readonly id: string;
|
|
15755
|
-
}
|
|
15756
|
-
interface CarrierFeeForm {
|
|
15757
|
-
readonly id: string;
|
|
15758
|
-
readonly label_invoice_request_id: string;
|
|
15759
|
-
readonly units: io.flow.internal.v0.models.CarrierFeeUnits;
|
|
15760
|
-
readonly surcharges: io.flow.internal.v0.models.LabelSurchargeForm;
|
|
15761
|
-
readonly total: number;
|
|
15762
|
-
readonly attributes?: Record<string, string>;
|
|
15763
|
-
}
|
|
15764
|
-
interface CarrierFeeTransaction {
|
|
15765
|
-
readonly discriminator: 'carrier_fee_transaction';
|
|
15766
|
-
readonly label_reference: io.flow.internal.v0.models.CarrierFeeTransactionLabelReference;
|
|
15767
|
-
readonly id: string;
|
|
15768
|
-
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
15769
|
-
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
15770
|
-
readonly posted_at?: string;
|
|
15771
|
-
readonly value: io.flow.common.v0.models.Price;
|
|
15772
|
-
readonly description: string;
|
|
15773
|
-
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
15774
|
-
readonly created_at: string;
|
|
15775
|
-
}
|
|
15776
|
-
interface CarrierFeeTransactionLabelReference {
|
|
15777
|
-
readonly id: string;
|
|
15778
|
-
}
|
|
15779
|
-
interface CarrierFeeUnits {
|
|
15780
|
-
readonly currency: string;
|
|
15781
|
-
}
|
|
15782
|
-
interface CarrierFeeUpserted {
|
|
15783
|
-
readonly discriminator: 'carrier_fee_upserted';
|
|
15784
|
-
readonly event_id: string;
|
|
15785
|
-
readonly timestamp: string;
|
|
15786
|
-
readonly organization: string;
|
|
15787
|
-
readonly carrier_fee: io.flow.internal.v0.models.CarrierFee;
|
|
15788
|
-
}
|
|
15789
15611
|
interface CarrierFile {
|
|
15790
15612
|
readonly id: string;
|
|
15791
15613
|
readonly type: io.flow.internal.v0.enums.CarrierFileType;
|
|
@@ -15809,6 +15631,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15809
15631
|
readonly number: string;
|
|
15810
15632
|
readonly timestamp: string;
|
|
15811
15633
|
}
|
|
15634
|
+
interface CarrierTaxForm {
|
|
15635
|
+
readonly id: string;
|
|
15636
|
+
readonly label_invoice_request_id: string;
|
|
15637
|
+
readonly units: io.flow.internal.v0.models.CarrierTaxUnits;
|
|
15638
|
+
readonly surcharges: io.flow.internal.v0.models.LabelSurchargeForm;
|
|
15639
|
+
readonly total: number;
|
|
15640
|
+
readonly attributes?: Record<string, string>;
|
|
15641
|
+
}
|
|
15642
|
+
interface CarrierTaxUnits {
|
|
15643
|
+
readonly currency: string;
|
|
15644
|
+
}
|
|
15812
15645
|
interface CatalogImportRequest {
|
|
15813
15646
|
readonly discriminator: 'catalog_import_request';
|
|
15814
15647
|
readonly event_id: string;
|
|
@@ -16120,12 +15953,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16120
15953
|
readonly fulfillment_status: io.flow.internal.v0.enums.ChannelOrderFulfillmentStatusCode;
|
|
16121
15954
|
readonly timestamp: string;
|
|
16122
15955
|
}
|
|
16123
|
-
interface ChannelOrderSummaryUpserted {
|
|
16124
|
-
readonly discriminator: 'channel_order_summary_upserted';
|
|
15956
|
+
interface ChannelOrderSummaryUpserted {
|
|
15957
|
+
readonly discriminator: 'channel_order_summary_upserted';
|
|
15958
|
+
readonly event_id: string;
|
|
15959
|
+
readonly timestamp: string;
|
|
15960
|
+
readonly channel_id: string;
|
|
15961
|
+
readonly channel_order_summary: io.flow.internal.v0.models.ChannelOrderSummary;
|
|
15962
|
+
}
|
|
15963
|
+
interface ChannelOrganizationIdentifier {
|
|
15964
|
+
readonly id: string;
|
|
15965
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
15966
|
+
readonly identifier: string;
|
|
15967
|
+
}
|
|
15968
|
+
interface ChannelOrganizationIdentifierDeleted {
|
|
15969
|
+
readonly discriminator: 'channel_organization_identifier_deleted';
|
|
15970
|
+
readonly event_id: string;
|
|
15971
|
+
readonly timestamp: string;
|
|
15972
|
+
readonly channel_id: string;
|
|
15973
|
+
readonly id: string;
|
|
15974
|
+
}
|
|
15975
|
+
interface ChannelOrganizationIdentifierUpserted {
|
|
15976
|
+
readonly discriminator: 'channel_organization_identifier_upserted';
|
|
16125
15977
|
readonly event_id: string;
|
|
16126
15978
|
readonly timestamp: string;
|
|
16127
15979
|
readonly channel_id: string;
|
|
16128
|
-
readonly
|
|
15980
|
+
readonly channel_organization_identifier: io.flow.internal.v0.models.ChannelOrganizationIdentifier;
|
|
16129
15981
|
}
|
|
16130
15982
|
interface ChannelOrganizationShopify {
|
|
16131
15983
|
readonly organization: io.flow.channel.v0.models.ChannelOrganization;
|
|
@@ -16520,6 +16372,37 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16520
16372
|
readonly organization_id: string;
|
|
16521
16373
|
readonly product_id: string;
|
|
16522
16374
|
}
|
|
16375
|
+
interface ClassificationProductRequest {
|
|
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;
|
|
16391
|
+
}
|
|
16392
|
+
interface ClassificationProductResult {
|
|
16393
|
+
readonly productId: string;
|
|
16394
|
+
readonly merchantId: string;
|
|
16395
|
+
readonly platformId: io.flow.internal.v0.enums.ClassificationPlatform;
|
|
16396
|
+
readonly hsCode?: string;
|
|
16397
|
+
readonly probability?: number;
|
|
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;
|
|
16405
|
+
}
|
|
16523
16406
|
interface ClassificationProductSummary {
|
|
16524
16407
|
readonly product_id: string;
|
|
16525
16408
|
readonly organization_id: string;
|
|
@@ -16565,6 +16448,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16565
16448
|
readonly status: io.flow.internal.v0.enums.ItemClassificationStatus;
|
|
16566
16449
|
readonly classified_by: string;
|
|
16567
16450
|
}
|
|
16451
|
+
interface CliLogEntry {
|
|
16452
|
+
readonly id: string;
|
|
16453
|
+
readonly user: io.flow.common.v0.models.UserReference;
|
|
16454
|
+
readonly task: string;
|
|
16455
|
+
}
|
|
16456
|
+
interface CliLogEntryForm {
|
|
16457
|
+
readonly user_id: string;
|
|
16458
|
+
readonly task: string;
|
|
16459
|
+
}
|
|
16568
16460
|
interface ColmItem {
|
|
16569
16461
|
readonly id: string;
|
|
16570
16462
|
readonly number: string;
|
|
@@ -16793,6 +16685,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16793
16685
|
readonly secret_key: string;
|
|
16794
16686
|
readonly signature_secret: string;
|
|
16795
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
|
+
}
|
|
16796
16706
|
interface CurrencyInternalRate {
|
|
16797
16707
|
readonly id: string;
|
|
16798
16708
|
readonly organization_id: string;
|
|
@@ -16885,49 +16795,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16885
16795
|
readonly material?: io.flow.internal.v0.models.CustomsProductAttributeLabel;
|
|
16886
16796
|
readonly construction?: io.flow.internal.v0.models.CustomsProductAttributeLabel;
|
|
16887
16797
|
}
|
|
16888
|
-
interface DailyExperimentEngineResults {
|
|
16889
|
-
readonly day: string;
|
|
16890
|
-
readonly organization_id: string;
|
|
16891
|
-
readonly experiment_key: string;
|
|
16892
|
-
readonly experiment_variant_key: string;
|
|
16893
|
-
readonly distinct_visitors_count: number;
|
|
16894
|
-
readonly visitors_with_transactions_count: number;
|
|
16895
|
-
readonly total_visitors_count: number;
|
|
16896
|
-
readonly total_revenue: number;
|
|
16897
|
-
}
|
|
16898
|
-
interface DailyExperimentResults {
|
|
16899
|
-
readonly id: string;
|
|
16900
|
-
readonly day: string;
|
|
16901
|
-
readonly experiment_key: string;
|
|
16902
|
-
readonly experiment_variant_key: string;
|
|
16903
|
-
readonly visitor_count: number;
|
|
16904
|
-
readonly visitors_with_transactions_count: number;
|
|
16905
|
-
readonly conversion_rate: number;
|
|
16906
|
-
readonly lower_bound: number;
|
|
16907
|
-
readonly upper_bound: number;
|
|
16908
|
-
readonly probability_of_being_best?: number;
|
|
16909
|
-
readonly currency?: string;
|
|
16910
|
-
readonly average_order_value?: number;
|
|
16911
|
-
readonly revenue_generated?: number;
|
|
16912
|
-
readonly total_order_count?: number;
|
|
16913
|
-
readonly conversion_rate_uplift?: number;
|
|
16914
|
-
readonly average_order_value_uplift?: number;
|
|
16915
|
-
readonly revenue_generated_uplift?: number;
|
|
16916
|
-
}
|
|
16917
|
-
interface DailyExperimentResultsDeleted {
|
|
16918
|
-
readonly discriminator: 'daily_experiment_results_deleted';
|
|
16919
|
-
readonly event_id: string;
|
|
16920
|
-
readonly timestamp: string;
|
|
16921
|
-
readonly organization_id: string;
|
|
16922
|
-
readonly daily_experiment_results: io.flow.internal.v0.models.DailyExperimentResults;
|
|
16923
|
-
}
|
|
16924
|
-
interface DailyExperimentResultsUpserted {
|
|
16925
|
-
readonly discriminator: 'daily_experiment_results_upserted';
|
|
16926
|
-
readonly event_id: string;
|
|
16927
|
-
readonly timestamp: string;
|
|
16928
|
-
readonly organization_id: string;
|
|
16929
|
-
readonly daily_experiment_results: io.flow.internal.v0.models.DailyExperimentResults;
|
|
16930
|
-
}
|
|
16931
16798
|
interface DailyValue {
|
|
16932
16799
|
readonly id: string;
|
|
16933
16800
|
readonly key: io.flow.internal.v0.enums.BillingMetricKey;
|
|
@@ -16955,6 +16822,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16955
16822
|
readonly labels: io.flow.internal.v0.models.DebugLabel[];
|
|
16956
16823
|
readonly captures: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
16957
16824
|
readonly refunds: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
16825
|
+
readonly allocation: io.flow.experience.v0.models.AllocationV2;
|
|
16958
16826
|
}
|
|
16959
16827
|
interface DebugFulfillmentDelta {
|
|
16960
16828
|
readonly posted_transactions_net: number;
|
|
@@ -16976,6 +16844,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16976
16844
|
interface DebugOrder {
|
|
16977
16845
|
readonly organization_id: string;
|
|
16978
16846
|
readonly number: string;
|
|
16847
|
+
readonly prices: io.flow.order.price.v0.models.OrderPriceDetail[];
|
|
16848
|
+
readonly total: io.flow.common.v0.models.MoneyWithBase;
|
|
16979
16849
|
readonly identifiers?: Record<string, string>;
|
|
16980
16850
|
readonly submitted_at?: string;
|
|
16981
16851
|
}
|
|
@@ -17130,14 +17000,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17130
17000
|
}
|
|
17131
17001
|
interface DimensionEstimateOpsInput {
|
|
17132
17002
|
readonly organization_id: string;
|
|
17133
|
-
readonly
|
|
17134
|
-
readonly
|
|
17135
|
-
readonly
|
|
17136
|
-
readonly
|
|
17137
|
-
readonly
|
|
17138
|
-
readonly
|
|
17139
|
-
readonly
|
|
17140
|
-
readonly
|
|
17003
|
+
readonly length_units?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
17004
|
+
readonly length_value?: string;
|
|
17005
|
+
readonly width_units?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
17006
|
+
readonly width_value?: string;
|
|
17007
|
+
readonly depth_units?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
17008
|
+
readonly depth_value?: string;
|
|
17009
|
+
readonly weight_units?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
17010
|
+
readonly weight_value?: string;
|
|
17141
17011
|
}
|
|
17142
17012
|
interface Discount {
|
|
17143
17013
|
readonly amount: number;
|
|
@@ -17544,6 +17414,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17544
17414
|
readonly branch_des?: string;
|
|
17545
17415
|
}
|
|
17546
17416
|
interface ErpPriorityVendorForm {
|
|
17417
|
+
readonly company?: io.flow.internal.v0.enums.Company;
|
|
17547
17418
|
readonly acc_des?: string;
|
|
17548
17419
|
readonly tax_code?: string;
|
|
17549
17420
|
readonly tax_code_2?: string;
|
|
@@ -17633,20 +17504,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17633
17504
|
interface ExpectedOrderSummary {
|
|
17634
17505
|
readonly total?: io.flow.common.v0.models.Money;
|
|
17635
17506
|
}
|
|
17636
|
-
interface ExperienceExperiment {
|
|
17637
|
-
readonly discriminator: 'experience';
|
|
17638
|
-
readonly id: string;
|
|
17639
|
-
readonly key: string;
|
|
17640
|
-
readonly name: string;
|
|
17641
|
-
readonly description?: string;
|
|
17642
|
-
readonly status: io.flow.internal.v0.enums.Status;
|
|
17643
|
-
readonly emails: string[];
|
|
17644
|
-
readonly started_at?: string;
|
|
17645
|
-
readonly ended_at?: string;
|
|
17646
|
-
readonly variants: io.flow.internal.v0.models.ExperienceVariant[];
|
|
17647
|
-
readonly transitions?: io.flow.internal.v0.enums.Status[];
|
|
17648
|
-
readonly significance_action?: io.flow.internal.v0.enums.SignificanceAction;
|
|
17649
|
-
}
|
|
17650
17507
|
interface ExperienceExportRequest {
|
|
17651
17508
|
readonly discriminator: 'experience_export_request';
|
|
17652
17509
|
readonly event_id: string;
|
|
@@ -17673,143 +17530,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17673
17530
|
interface ExperienceSessionReference {
|
|
17674
17531
|
readonly id: string;
|
|
17675
17532
|
}
|
|
17676
|
-
interface ExperienceVariant {
|
|
17677
|
-
readonly discriminator: 'experience_variant';
|
|
17678
|
-
readonly experience: io.flow.internal.v0.models.ExperienceVariantSummary;
|
|
17679
|
-
readonly traffic_percentage: number;
|
|
17680
|
-
readonly experiment_results?: io.flow.internal.v0.models.ExperimentResults;
|
|
17681
|
-
}
|
|
17682
|
-
interface ExperienceVariantForm {
|
|
17683
|
-
readonly discriminator: 'experience';
|
|
17684
|
-
readonly key: string;
|
|
17685
|
-
readonly traffic_percentage: number;
|
|
17686
|
-
}
|
|
17687
|
-
interface ExperienceVariantSummary {
|
|
17688
|
-
readonly key: string;
|
|
17689
|
-
readonly name?: string;
|
|
17690
|
-
}
|
|
17691
|
-
interface ExperimentDeleted {
|
|
17692
|
-
readonly discriminator: 'experiment_deleted';
|
|
17693
|
-
readonly event_id: string;
|
|
17694
|
-
readonly timestamp: string;
|
|
17695
|
-
readonly organization_id: string;
|
|
17696
|
-
readonly id: string;
|
|
17697
|
-
}
|
|
17698
|
-
interface ExperimentEngineResults {
|
|
17699
|
-
readonly organization_id: string;
|
|
17700
|
-
readonly experiment_key: string;
|
|
17701
|
-
readonly experiment_variant_key: string;
|
|
17702
|
-
readonly distinct_visitors_count: number;
|
|
17703
|
-
readonly visitors_with_transactions_count: number;
|
|
17704
|
-
readonly total_visitors_count: number;
|
|
17705
|
-
readonly total_revenue: number;
|
|
17706
|
-
readonly day?: string;
|
|
17707
|
-
}
|
|
17708
|
-
interface ExperimentForm {
|
|
17709
|
-
readonly name: string;
|
|
17710
|
-
readonly description?: string;
|
|
17711
|
-
readonly emails: string[];
|
|
17712
|
-
readonly variants: io.flow.internal.v0.unions.VariantForm[];
|
|
17713
|
-
readonly significance_action?: io.flow.internal.v0.enums.SignificanceAction;
|
|
17714
|
-
readonly session_query?: string;
|
|
17715
|
-
}
|
|
17716
|
-
interface ExperimentFormDefault {
|
|
17717
|
-
readonly discriminator: io.flow.internal.v0.models.ExperimentFormDefaultDiscriminator;
|
|
17718
|
-
readonly variants?: io.flow.internal.v0.models.ExperimentFormDefaultVariant[];
|
|
17719
|
-
}
|
|
17720
|
-
interface ExperimentFormDefaultDiscriminator {
|
|
17721
|
-
readonly key: io.flow.internal.v0.enums.ExperimentDiscriminatorKey;
|
|
17722
|
-
readonly values: io.flow.internal.v0.models.ExperimentFormDefaultDiscriminatorValue[];
|
|
17723
|
-
}
|
|
17724
|
-
interface ExperimentFormDefaultDiscriminatorValue {
|
|
17725
|
-
readonly key: string;
|
|
17726
|
-
readonly name: string;
|
|
17727
|
-
readonly scope: io.flow.internal.v0.enums.Scope;
|
|
17728
|
-
}
|
|
17729
|
-
interface ExperimentFormDefaultVariant {
|
|
17730
|
-
readonly key: string;
|
|
17731
|
-
readonly name: string;
|
|
17732
|
-
readonly traffic_percentage?: number;
|
|
17733
|
-
}
|
|
17734
|
-
interface ExperimentMilestone {
|
|
17735
|
-
readonly id: string;
|
|
17736
|
-
readonly experiment: io.flow.internal.v0.models.ExperimentReference;
|
|
17737
|
-
readonly timestamp: string;
|
|
17738
|
-
readonly description: string;
|
|
17739
|
-
}
|
|
17740
|
-
interface ExperimentMilestoneDeleted {
|
|
17741
|
-
readonly discriminator: 'experiment_milestone_deleted';
|
|
17742
|
-
readonly event_id: string;
|
|
17743
|
-
readonly timestamp: string;
|
|
17744
|
-
readonly organization: string;
|
|
17745
|
-
readonly id: string;
|
|
17746
|
-
}
|
|
17747
|
-
interface ExperimentMilestoneForm {
|
|
17748
|
-
readonly timestamp?: string;
|
|
17749
|
-
readonly description: string;
|
|
17750
|
-
}
|
|
17751
|
-
interface ExperimentMilestoneUpserted {
|
|
17752
|
-
readonly discriminator: 'experiment_milestone_upserted';
|
|
17753
|
-
readonly event_id: string;
|
|
17754
|
-
readonly timestamp: string;
|
|
17755
|
-
readonly organization: string;
|
|
17756
|
-
readonly experiment_milestone: io.flow.internal.v0.models.ExperimentMilestone;
|
|
17757
|
-
}
|
|
17758
|
-
interface ExperimentReference {
|
|
17759
|
-
readonly key: string;
|
|
17760
|
-
}
|
|
17761
|
-
interface ExperimentResults {
|
|
17762
|
-
readonly id: string;
|
|
17763
|
-
readonly experiment_key: string;
|
|
17764
|
-
readonly experiment_variant_key: string;
|
|
17765
|
-
readonly visitor_count: number;
|
|
17766
|
-
readonly visitors_with_transactions_count: number;
|
|
17767
|
-
readonly conversion_rate: number;
|
|
17768
|
-
readonly lower_bound: number;
|
|
17769
|
-
readonly upper_bound: number;
|
|
17770
|
-
readonly probability_of_being_best?: number;
|
|
17771
|
-
readonly currency?: string;
|
|
17772
|
-
readonly average_order_value?: number;
|
|
17773
|
-
readonly revenue_generated?: number;
|
|
17774
|
-
readonly total_order_count?: number;
|
|
17775
|
-
readonly conversion_rate_uplift?: number;
|
|
17776
|
-
readonly average_order_value_uplift?: number;
|
|
17777
|
-
readonly revenue_generated_uplift?: number;
|
|
17778
|
-
}
|
|
17779
|
-
interface ExperimentResultsDeleted {
|
|
17780
|
-
readonly discriminator: 'experiment_results_deleted';
|
|
17781
|
-
readonly event_id: string;
|
|
17782
|
-
readonly timestamp: string;
|
|
17783
|
-
readonly organization_id: string;
|
|
17784
|
-
readonly experiment_results: io.flow.internal.v0.models.ExperimentResults;
|
|
17785
|
-
}
|
|
17786
|
-
interface ExperimentResultsUpserted {
|
|
17787
|
-
readonly discriminator: 'experiment_results_upserted';
|
|
17788
|
-
readonly event_id: string;
|
|
17789
|
-
readonly timestamp: string;
|
|
17790
|
-
readonly organization_id: string;
|
|
17791
|
-
readonly experiment_results: io.flow.internal.v0.models.ExperimentResults;
|
|
17792
|
-
}
|
|
17793
|
-
interface ExperimentResultsWithTimestamp {
|
|
17794
|
-
readonly timestamp: string;
|
|
17795
|
-
readonly results: io.flow.internal.v0.models.ExperimentResults[];
|
|
17796
|
-
}
|
|
17797
|
-
interface ExperimentSessionQueryForm {
|
|
17798
|
-
readonly session_query?: string;
|
|
17799
|
-
}
|
|
17800
|
-
interface ExperimentUpserted {
|
|
17801
|
-
readonly discriminator: 'experiment_upserted';
|
|
17802
|
-
readonly event_id: string;
|
|
17803
|
-
readonly timestamp: string;
|
|
17804
|
-
readonly organization_id: string;
|
|
17805
|
-
readonly experiment: io.flow.internal.v0.unions.Experiment;
|
|
17806
|
-
}
|
|
17807
|
-
interface ExperimentVersion {
|
|
17808
|
-
readonly id: string;
|
|
17809
|
-
readonly timestamp: string;
|
|
17810
|
-
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
17811
|
-
readonly experiment: io.flow.internal.v0.unions.Experiment;
|
|
17812
|
-
}
|
|
17813
17533
|
interface ExplicitStatement {
|
|
17814
17534
|
readonly id: string;
|
|
17815
17535
|
readonly statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
@@ -17870,6 +17590,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17870
17590
|
readonly delivery_estimate?: string;
|
|
17871
17591
|
readonly description?: string;
|
|
17872
17592
|
readonly order_number?: string;
|
|
17593
|
+
readonly raw_carrier_event_code?: string;
|
|
17873
17594
|
}
|
|
17874
17595
|
interface ExternalFulfillmentProof {
|
|
17875
17596
|
readonly id: string;
|
|
@@ -17898,6 +17619,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17898
17619
|
readonly name?: string;
|
|
17899
17620
|
readonly tracker_id: string;
|
|
17900
17621
|
}
|
|
17622
|
+
interface FailedDimensionEstimateOpsInputWithReason {
|
|
17623
|
+
readonly organization_id: string;
|
|
17624
|
+
readonly length_units?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
17625
|
+
readonly length_value?: string;
|
|
17626
|
+
readonly width_units?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
17627
|
+
readonly width_value?: string;
|
|
17628
|
+
readonly depth_units?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
17629
|
+
readonly depth_value?: string;
|
|
17630
|
+
readonly weight_units?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
17631
|
+
readonly weight_value?: string;
|
|
17632
|
+
readonly reason?: string;
|
|
17633
|
+
}
|
|
17901
17634
|
interface Feature {
|
|
17902
17635
|
readonly id: string;
|
|
17903
17636
|
readonly key: string;
|
|
@@ -17921,22 +17654,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17921
17654
|
readonly organization: string;
|
|
17922
17655
|
readonly feature: io.flow.internal.v0.models.Feature;
|
|
17923
17656
|
}
|
|
17924
|
-
interface FeatureExperiment {
|
|
17925
|
-
readonly discriminator: 'feature';
|
|
17926
|
-
readonly id: string;
|
|
17927
|
-
readonly key: string;
|
|
17928
|
-
readonly name: string;
|
|
17929
|
-
readonly description?: string;
|
|
17930
|
-
readonly status: io.flow.internal.v0.enums.Status;
|
|
17931
|
-
readonly emails: string[];
|
|
17932
|
-
readonly scope: io.flow.internal.v0.enums.Scope;
|
|
17933
|
-
readonly started_at?: string;
|
|
17934
|
-
readonly ended_at?: string;
|
|
17935
|
-
readonly variants: io.flow.internal.v0.models.FeatureVariant[];
|
|
17936
|
-
readonly transitions?: io.flow.internal.v0.enums.Status[];
|
|
17937
|
-
readonly significance_action?: io.flow.internal.v0.enums.SignificanceAction;
|
|
17938
|
-
readonly session_query?: string;
|
|
17939
|
-
}
|
|
17940
17657
|
interface FeatureForm {
|
|
17941
17658
|
readonly name: string;
|
|
17942
17659
|
readonly description?: string;
|
|
@@ -17984,29 +17701,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17984
17701
|
readonly feature_query: string;
|
|
17985
17702
|
readonly context: io.flow.internal.v0.models.FeatureContextForm;
|
|
17986
17703
|
}
|
|
17987
|
-
interface FeatureValueReference {
|
|
17988
|
-
readonly feature_key: string;
|
|
17989
|
-
readonly value: string;
|
|
17990
|
-
}
|
|
17991
17704
|
interface FeatureValueResult {
|
|
17992
17705
|
readonly values: io.flow.internal.v0.unions.FeatureValue[];
|
|
17993
17706
|
}
|
|
17994
|
-
interface FeatureVariant {
|
|
17995
|
-
readonly discriminator: 'feature_variant';
|
|
17996
|
-
readonly value: io.flow.internal.v0.models.FeatureVariantSummary;
|
|
17997
|
-
readonly traffic_percentage: number;
|
|
17998
|
-
readonly experiment_results?: io.flow.internal.v0.models.ExperimentResults;
|
|
17999
|
-
}
|
|
18000
|
-
interface FeatureVariantForm {
|
|
18001
|
-
readonly discriminator: 'feature';
|
|
18002
|
-
readonly key: string;
|
|
18003
|
-
readonly traffic_percentage: number;
|
|
18004
|
-
}
|
|
18005
|
-
interface FeatureVariantSummary {
|
|
18006
|
-
readonly key: string;
|
|
18007
|
-
readonly feature_value: io.flow.internal.v0.models.FeatureValueReference;
|
|
18008
|
-
readonly name?: string;
|
|
18009
|
-
}
|
|
18010
17707
|
interface Fedex {
|
|
18011
17708
|
readonly discriminator: 'fedex';
|
|
18012
17709
|
readonly key: string;
|
|
@@ -18228,6 +17925,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18228
17925
|
readonly reason: string;
|
|
18229
17926
|
readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
18230
17927
|
}
|
|
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;
|
|
17932
|
+
}
|
|
18231
17933
|
interface FraudPendingReview {
|
|
18232
17934
|
readonly id: string;
|
|
18233
17935
|
readonly fraud_review_id: string;
|
|
@@ -18237,6 +17939,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18237
17939
|
readonly apply_at?: string;
|
|
18238
17940
|
readonly liability?: io.flow.fraud.v0.enums.FraudLiability;
|
|
18239
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
|
+
}
|
|
18240
17965
|
interface FraudPendingReviewDeleted {
|
|
18241
17966
|
readonly discriminator: 'fraud_pending_review_deleted';
|
|
18242
17967
|
readonly event_id: string;
|
|
@@ -18309,6 +18034,61 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18309
18034
|
readonly decline_reason?: io.flow.internal.v0.unions.DeclineReason;
|
|
18310
18035
|
readonly created_at?: string;
|
|
18311
18036
|
}
|
|
18037
|
+
interface FraudReviewAuthorization {
|
|
18038
|
+
readonly id: string;
|
|
18039
|
+
readonly organization_id: string;
|
|
18040
|
+
readonly order: io.flow.experience.v0.models.OrderReference;
|
|
18041
|
+
readonly fraud_order_reference?: io.flow.fraud.v0.unions.FraudOrderReference;
|
|
18042
|
+
readonly status: io.flow.fraud.v0.enums.FraudStatus;
|
|
18043
|
+
readonly responsible_party: io.flow.internal.v0.enums.FraudReviewResponsibleParty;
|
|
18044
|
+
readonly description?: string;
|
|
18045
|
+
readonly risk_evaluation?: io.flow.internal.v0.enums.RiskEvaluation;
|
|
18046
|
+
readonly liability?: io.flow.fraud.v0.enums.FraudLiability;
|
|
18047
|
+
readonly status_updated_at?: string;
|
|
18048
|
+
readonly attributes?: Record<string, string>;
|
|
18049
|
+
readonly provider?: io.flow.internal.v0.enums.FraudProvider;
|
|
18050
|
+
readonly payment_authorization_id?: string;
|
|
18051
|
+
readonly decline_reason?: io.flow.internal.v0.unions.DeclineReason;
|
|
18052
|
+
readonly created_at?: string;
|
|
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
|
+
}
|
|
18312
18092
|
interface FraudReviewDecision {
|
|
18313
18093
|
readonly id: string;
|
|
18314
18094
|
readonly fraud_review_id: string;
|
|
@@ -18360,6 +18140,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18360
18140
|
readonly fraud_review: io.flow.internal.v0.models.FraudReview;
|
|
18361
18141
|
readonly fraud_pending_review?: io.flow.internal.v0.models.FraudPendingReview;
|
|
18362
18142
|
readonly fraud_review_decision?: io.flow.internal.v0.models.FraudReviewDecision;
|
|
18143
|
+
readonly fraud_review_authorizations?: io.flow.internal.v0.models.FraudAuthorizationSummary[];
|
|
18363
18144
|
}
|
|
18364
18145
|
interface FtpFileDeleted {
|
|
18365
18146
|
readonly discriminator: 'ftp_file_deleted';
|
|
@@ -18424,11 +18205,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18424
18205
|
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
18425
18206
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
18426
18207
|
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
18208
|
+
readonly payment?: io.flow.internal.v0.models.PaymentSummary;
|
|
18427
18209
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
18428
18210
|
readonly sequence_number: number;
|
|
18429
18211
|
readonly posting_cutoff: string;
|
|
18430
|
-
readonly trigger
|
|
18212
|
+
readonly trigger?: io.flow.internal.v0.unions.FulfillmentTrigger;
|
|
18431
18213
|
readonly fulfilled_at: string;
|
|
18214
|
+
readonly carrier?: io.flow.internal.v0.models.FulfillmentCarrier;
|
|
18432
18215
|
readonly owner: io.flow.internal.v0.enums.ResponsibleParty;
|
|
18433
18216
|
readonly origin?: io.flow.internal.v0.models.FulfillmentOrigin;
|
|
18434
18217
|
readonly business?: io.flow.internal.v0.models.FulfillmentBusiness;
|
|
@@ -18454,6 +18237,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18454
18237
|
readonly reason: io.flow.order.management.v0.enums.CancelReason;
|
|
18455
18238
|
readonly cancelled_lines: io.flow.order.management.v0.models.FulfillmentLineCancelForm[];
|
|
18456
18239
|
}
|
|
18240
|
+
interface FulfillmentCarrier {
|
|
18241
|
+
readonly id: string;
|
|
18242
|
+
readonly service_id?: string;
|
|
18243
|
+
readonly tracking_number?: string;
|
|
18244
|
+
}
|
|
18457
18245
|
interface FulfillmentDeleted {
|
|
18458
18246
|
readonly discriminator: 'fulfillment_deleted';
|
|
18459
18247
|
readonly event_id: string;
|
|
@@ -18522,6 +18310,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18522
18310
|
readonly subtotal: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
18523
18311
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
18524
18312
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
18313
|
+
readonly tips?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
18525
18314
|
readonly discount: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
18526
18315
|
readonly total: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
18527
18316
|
}
|
|
@@ -18659,6 +18448,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18659
18448
|
readonly discriminator: 'google_tag_manager';
|
|
18660
18449
|
readonly tracker_id: string;
|
|
18661
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
|
+
}
|
|
18662
18478
|
interface HarmonizationClassificationStatisticsData {
|
|
18663
18479
|
readonly statistics: io.flow.internal.v0.models.ClassificationStatistics;
|
|
18664
18480
|
}
|
|
@@ -18914,6 +18730,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18914
18730
|
interface InvalidCheckoutData {
|
|
18915
18731
|
readonly order: io.flow.experience.v0.models.OrderPutForm;
|
|
18916
18732
|
}
|
|
18733
|
+
interface Invariant {
|
|
18734
|
+
readonly name: string;
|
|
18735
|
+
readonly count: number;
|
|
18736
|
+
readonly fired_at: string;
|
|
18737
|
+
readonly sql: string;
|
|
18738
|
+
}
|
|
18917
18739
|
interface InventoryOrganizationSettings {
|
|
18918
18740
|
readonly id: string;
|
|
18919
18741
|
readonly inventory_reservation: io.flow.internal.v0.enums.InventoryReservation;
|
|
@@ -19039,6 +18861,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19039
18861
|
}
|
|
19040
18862
|
interface ItemCustomsDetails {
|
|
19041
18863
|
readonly item_number: string;
|
|
18864
|
+
readonly product_title?: string;
|
|
18865
|
+
readonly sanitized_product_title?: string;
|
|
18866
|
+
readonly sanitized_rule_ids?: string[];
|
|
19042
18867
|
readonly sub_item_number?: string;
|
|
19043
18868
|
readonly customs_description?: string;
|
|
19044
18869
|
readonly origin: string;
|
|
@@ -19109,6 +18934,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19109
18934
|
readonly price_amount?: number;
|
|
19110
18935
|
readonly status: io.flow.internal.v0.enums.ItemHarmonizationStatus;
|
|
19111
18936
|
readonly tariffs?: Record<string, io.flow.internal.v0.models.TariffCodeDuty>;
|
|
18937
|
+
readonly decision_source?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
19112
18938
|
readonly created_at?: string;
|
|
19113
18939
|
readonly updated_at?: string;
|
|
19114
18940
|
readonly updated_by_user_id?: string;
|
|
@@ -19243,6 +19069,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19243
19069
|
readonly standard_asset_urls?: string;
|
|
19244
19070
|
readonly descriptive_asset_urls?: string;
|
|
19245
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
|
+
}
|
|
19246
19099
|
interface LabProjectSettings {
|
|
19247
19100
|
readonly id: string;
|
|
19248
19101
|
readonly flow_lab_project_key: string;
|
|
@@ -19390,6 +19243,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19390
19243
|
readonly service?: io.flow.reference.v0.models.CarrierService;
|
|
19391
19244
|
}
|
|
19392
19245
|
interface LabelSurchargeForm {
|
|
19246
|
+
readonly all?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19247
|
+
readonly base_and_fuel?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19393
19248
|
readonly fuel?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19394
19249
|
readonly remote_area?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19395
19250
|
readonly oversize?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
@@ -19401,6 +19256,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19401
19256
|
readonly eei_filing?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19402
19257
|
readonly fixed_ddp?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19403
19258
|
readonly fixed_currency_conversion?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19259
|
+
readonly prohibited_item?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19260
|
+
readonly undeliverable_shipment?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19261
|
+
readonly signature_required?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19262
|
+
readonly direct_delivery?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19263
|
+
readonly saturday_stop?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19264
|
+
readonly residential_extended_area_pickup?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19404
19265
|
}
|
|
19405
19266
|
interface LabelSurchargeSingleForm {
|
|
19406
19267
|
readonly amount: number;
|
|
@@ -19715,6 +19576,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19715
19576
|
interface LogisticsCapabilitiesForm {
|
|
19716
19577
|
readonly capabilities: io.flow.internal.v0.enums.LogisticsCapability[];
|
|
19717
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
|
+
}
|
|
19718
19597
|
interface Logo {
|
|
19719
19598
|
readonly url: string;
|
|
19720
19599
|
}
|
|
@@ -20204,6 +20083,60 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20204
20083
|
readonly id: string;
|
|
20205
20084
|
readonly proposition: io.flow.internal.v0.models.MetadataProposition;
|
|
20206
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
|
+
}
|
|
20207
20140
|
interface NextBillingStatement {
|
|
20208
20141
|
readonly date: string;
|
|
20209
20142
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -20556,6 +20489,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20556
20489
|
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
20557
20490
|
readonly currency: string;
|
|
20558
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
|
+
}
|
|
20559
20512
|
interface OrderTransaction {
|
|
20560
20513
|
readonly discriminator: 'order_transaction';
|
|
20561
20514
|
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -20810,6 +20763,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20810
20763
|
readonly from: string;
|
|
20811
20764
|
readonly to: string;
|
|
20812
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
|
+
}
|
|
20813
20791
|
interface OrganizationOnboardingStateAdjustmentResult {
|
|
20814
20792
|
readonly organization_onboarding_state?: io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState;
|
|
20815
20793
|
}
|
|
@@ -20975,6 +20953,124 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20975
20953
|
readonly onboarding_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
20976
20954
|
readonly audit_result: io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
20977
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
|
+
}
|
|
20978
21074
|
interface Partner {
|
|
20979
21075
|
readonly id: string;
|
|
20980
21076
|
readonly name: string;
|
|
@@ -21120,6 +21216,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21120
21216
|
readonly id: string;
|
|
21121
21217
|
readonly merchant: io.flow.internal.v0.unions.ProcessorMerchant;
|
|
21122
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
|
+
}
|
|
21123
21227
|
interface PaymentSummaryV2 {
|
|
21124
21228
|
readonly discriminator: 'payment_summary_v2';
|
|
21125
21229
|
readonly id: string;
|
|
@@ -21314,6 +21418,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21314
21418
|
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
21315
21419
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
21316
21420
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
21421
|
+
readonly payment?: io.flow.internal.v0.models.PaymentSummary;
|
|
21317
21422
|
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
21318
21423
|
readonly sequence_number: number;
|
|
21319
21424
|
readonly posting_cutoff: string;
|
|
@@ -21568,6 +21673,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21568
21673
|
readonly auto_review_status?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
21569
21674
|
readonly manually_reviewed_at?: string;
|
|
21570
21675
|
readonly manually_reviewed_by?: string;
|
|
21676
|
+
readonly cause_rule_id?: string;
|
|
21571
21677
|
}
|
|
21572
21678
|
interface ProductRestrictionRuleDecisionDeleted {
|
|
21573
21679
|
readonly discriminator: 'product_restriction_rule_decision_deleted';
|
|
@@ -22030,8 +22136,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22030
22136
|
readonly id: string;
|
|
22031
22137
|
readonly status: io.flow.internal.v0.enums.ReportStatus;
|
|
22032
22138
|
readonly type: io.flow.internal.v0.enums.ReportType;
|
|
22033
|
-
readonly from
|
|
22034
|
-
readonly to
|
|
22139
|
+
readonly from?: string;
|
|
22140
|
+
readonly to?: string;
|
|
22141
|
+
readonly payment_type?: io.flow.internal.v0.enums.ReportPaymentType;
|
|
22035
22142
|
readonly url?: string;
|
|
22036
22143
|
readonly processed_at?: string;
|
|
22037
22144
|
}
|
|
@@ -22050,9 +22157,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22050
22157
|
readonly account_number: string;
|
|
22051
22158
|
}
|
|
22052
22159
|
interface ReportForm {
|
|
22053
|
-
readonly from: string;
|
|
22054
|
-
readonly to: string;
|
|
22055
22160
|
readonly type: io.flow.internal.v0.enums.ReportType;
|
|
22161
|
+
readonly from?: string;
|
|
22162
|
+
readonly to?: string;
|
|
22163
|
+
readonly payment_type?: io.flow.internal.v0.enums.ReportPaymentType;
|
|
22164
|
+
readonly orders?: io.flow.internal.v0.models.ReportOrderReference[];
|
|
22165
|
+
}
|
|
22166
|
+
interface ReportMerchant {
|
|
22167
|
+
readonly id: string;
|
|
22168
|
+
}
|
|
22169
|
+
interface ReportOrderReference {
|
|
22170
|
+
readonly organization_id: string;
|
|
22171
|
+
readonly order_number: string;
|
|
22056
22172
|
}
|
|
22057
22173
|
interface ReportOwner {
|
|
22058
22174
|
readonly name: string;
|
|
@@ -22124,11 +22240,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22124
22240
|
readonly sequence_number: number;
|
|
22125
22241
|
readonly fulfilled_at: string;
|
|
22126
22242
|
readonly completes_order: boolean;
|
|
22127
|
-
readonly payment: io.flow.internal.v0.models.ReportingPayment;
|
|
22128
22243
|
readonly refund?: io.flow.internal.v0.models.ReportingRefundReference;
|
|
22129
22244
|
readonly value: io.flow.internal.v0.models.FulfillmentShopperBreakdown;
|
|
22130
22245
|
readonly dispatch_country?: io.flow.internal.v0.models.ReportingCountry;
|
|
22131
22246
|
readonly destination?: io.flow.internal.v0.models.ReportingDestination;
|
|
22247
|
+
readonly payment?: io.flow.internal.v0.models.ReportingPayment;
|
|
22132
22248
|
readonly shipment?: io.flow.internal.v0.models.ReportingShipment;
|
|
22133
22249
|
readonly is: io.flow.internal.v0.models.ReportingFulfillmentIs;
|
|
22134
22250
|
readonly has: io.flow.internal.v0.models.ReportingFulfillmentHas;
|
|
@@ -22145,6 +22261,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22145
22261
|
readonly wyol: boolean;
|
|
22146
22262
|
readonly b2b: boolean;
|
|
22147
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;
|
|
22148
22269
|
}
|
|
22149
22270
|
interface ReportingFx {
|
|
22150
22271
|
readonly shipping: io.flow.internal.v0.models.ReportingUsd;
|
|
@@ -22152,6 +22273,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22152
22273
|
readonly product: io.flow.internal.v0.models.ReportingUsd;
|
|
22153
22274
|
readonly tax: io.flow.internal.v0.models.ReportingUsd;
|
|
22154
22275
|
readonly duty: io.flow.internal.v0.models.ReportingUsd;
|
|
22276
|
+
readonly tips?: io.flow.internal.v0.models.ReportingUsd;
|
|
22155
22277
|
readonly total: io.flow.internal.v0.models.ReportingUsd;
|
|
22156
22278
|
}
|
|
22157
22279
|
interface ReportingMerchantBreakdown {
|
|
@@ -22167,12 +22289,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22167
22289
|
readonly processing: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22168
22290
|
readonly rate_lock: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22169
22291
|
readonly transfer: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22292
|
+
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22170
22293
|
}
|
|
22171
22294
|
interface ReportingMerchantSubsidies {
|
|
22172
22295
|
readonly shipping: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22173
22296
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22174
22297
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22175
22298
|
readonly ccf: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22299
|
+
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22176
22300
|
}
|
|
22177
22301
|
interface ReportingMerchantTransactions {
|
|
22178
22302
|
readonly adjustment: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
@@ -22180,7 +22304,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22180
22304
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22181
22305
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22182
22306
|
readonly freight: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22183
|
-
readonly
|
|
22307
|
+
readonly discount?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22308
|
+
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22184
22309
|
}
|
|
22185
22310
|
interface ReportingMonetaryValue {
|
|
22186
22311
|
readonly transaction: number;
|
|
@@ -22199,22 +22324,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22199
22324
|
readonly name: string;
|
|
22200
22325
|
}
|
|
22201
22326
|
interface ReportingPayment {
|
|
22202
|
-
readonly metadata?: io.flow.internal.v0.models.ReportingPaymentMetadata;
|
|
22203
22327
|
readonly psp: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22204
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;
|
|
22205
22332
|
readonly total: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22206
22333
|
}
|
|
22207
|
-
interface ReportingPaymentMetadata {
|
|
22208
|
-
readonly gateway: io.flow.internal.v0.enums.Processor;
|
|
22209
|
-
readonly method: string;
|
|
22210
|
-
readonly psp_reference?: string;
|
|
22211
|
-
readonly authorization?: io.flow.internal.v0.models.ReportingAuthorizationReference;
|
|
22212
|
-
readonly settlement_date: string;
|
|
22213
|
-
readonly additional_authorizations?: io.flow.internal.v0.models.ReportingPaymentMetadataAdditionalAuthorizations;
|
|
22214
|
-
}
|
|
22215
|
-
interface ReportingPaymentMetadataAdditionalAuthorizations {
|
|
22216
|
-
readonly ids: string;
|
|
22217
|
-
}
|
|
22218
22334
|
interface ReportingProvince {
|
|
22219
22335
|
readonly code?: string;
|
|
22220
22336
|
readonly name: string;
|
|
@@ -22239,6 +22355,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22239
22355
|
readonly ccf: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22240
22356
|
readonly emergency: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22241
22357
|
readonly peak: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22358
|
+
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22242
22359
|
}
|
|
22243
22360
|
interface ReportingUsd {
|
|
22244
22361
|
readonly usd: number;
|
|
@@ -22260,6 +22377,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22260
22377
|
readonly ignore_classification_status: boolean;
|
|
22261
22378
|
readonly select_mismatching_item_types: boolean;
|
|
22262
22379
|
}
|
|
22380
|
+
interface RescreenRestrictionsProducts {
|
|
22381
|
+
readonly placeholder?: boolean;
|
|
22382
|
+
}
|
|
22263
22383
|
interface RestrictionCategory {
|
|
22264
22384
|
readonly category: string;
|
|
22265
22385
|
}
|
|
@@ -22500,6 +22620,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22500
22620
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
22501
22621
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
22502
22622
|
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
22623
|
+
readonly payment?: io.flow.internal.v0.models.PaymentSummary;
|
|
22503
22624
|
readonly sequence_number: number;
|
|
22504
22625
|
readonly posting_cutoff: string;
|
|
22505
22626
|
readonly trigger: io.flow.internal.v0.unions.ReturnTrigger;
|
|
@@ -22614,6 +22735,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22614
22735
|
readonly payment: io.flow.internal.v0.models.ReportPayment;
|
|
22615
22736
|
readonly bank_account: io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
22616
22737
|
readonly account: io.flow.internal.v0.models.ReportAccount;
|
|
22738
|
+
readonly merchant: io.flow.internal.v0.models.ReportMerchant;
|
|
22617
22739
|
readonly owner: io.flow.internal.v0.models.ReportOwner;
|
|
22618
22740
|
readonly description: string;
|
|
22619
22741
|
}
|
|
@@ -22673,7 +22795,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22673
22795
|
readonly discriminator: 'search_experiment_summary';
|
|
22674
22796
|
readonly key: string;
|
|
22675
22797
|
readonly name: string;
|
|
22676
|
-
readonly status: io.flow.internal.v0.enums.Status;
|
|
22798
|
+
readonly status: io.flow.experiment.internal.v0.enums.Status;
|
|
22677
22799
|
}
|
|
22678
22800
|
interface SearchItemSummary {
|
|
22679
22801
|
readonly discriminator: 'search_item_summary';
|
|
@@ -23218,7 +23340,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23218
23340
|
readonly id: string;
|
|
23219
23341
|
readonly initial_catalog_synced_at?: string;
|
|
23220
23342
|
readonly catalog_sync_duration?: number;
|
|
23343
|
+
readonly restrictions_sync_duration?: number;
|
|
23344
|
+
readonly classifications_sync_duration?: number;
|
|
23221
23345
|
readonly catalog_products_count?: number;
|
|
23346
|
+
readonly initial_product_restrictions_synced_at?: string;
|
|
23222
23347
|
}
|
|
23223
23348
|
interface ShopifyShopUpserted {
|
|
23224
23349
|
readonly discriminator: 'shopify_shop_upserted';
|
|
@@ -23226,9 +23351,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23226
23351
|
readonly timestamp: string;
|
|
23227
23352
|
readonly shop: io.flow.internal.v0.models.Shop;
|
|
23228
23353
|
}
|
|
23229
|
-
interface
|
|
23230
|
-
readonly
|
|
23231
|
-
readonly
|
|
23354
|
+
interface ShopifyStoreDetail {
|
|
23355
|
+
readonly shopify_domain: string;
|
|
23356
|
+
readonly shop_id: string;
|
|
23232
23357
|
}
|
|
23233
23358
|
interface ShopifyWebhook {
|
|
23234
23359
|
readonly id: string;
|
|
@@ -23280,6 +23405,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23280
23405
|
readonly product: io.flow.internal.v0.models.ShopperLines;
|
|
23281
23406
|
readonly fees: io.flow.internal.v0.models.ShopperFees;
|
|
23282
23407
|
readonly freight: io.flow.internal.v0.models.ShopperFreight;
|
|
23408
|
+
readonly tips?: number;
|
|
23283
23409
|
readonly order_discount: number;
|
|
23284
23410
|
readonly total: number;
|
|
23285
23411
|
}
|
|
@@ -23752,7 +23878,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23752
23878
|
readonly type_id: string;
|
|
23753
23879
|
readonly source_type?: string;
|
|
23754
23880
|
readonly source_id?: string;
|
|
23755
|
-
readonly environment
|
|
23881
|
+
readonly environment: io.flow.common.v0.enums.Environment;
|
|
23756
23882
|
readonly created_at: string;
|
|
23757
23883
|
readonly num_attempts: number;
|
|
23758
23884
|
readonly next_attempt_at: string;
|
|
@@ -23899,6 +24025,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23899
24025
|
interface TestForm {
|
|
23900
24026
|
readonly name: string;
|
|
23901
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
|
+
}
|
|
23902
24043
|
interface ThirdPartyLogisticsPartner {
|
|
23903
24044
|
readonly warehouse_address: io.flow.common.v0.models.BillingAddress;
|
|
23904
24045
|
readonly warehouse_url?: string;
|
|
@@ -23966,6 +24107,43 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23966
24107
|
readonly time: string;
|
|
23967
24108
|
readonly timezone: string;
|
|
23968
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
|
+
}
|
|
23969
24147
|
interface TrackingDebugLabel {
|
|
23970
24148
|
readonly in_transit_location?: io.flow.internal.v0.models.TrackingDebugLabelLocation;
|
|
23971
24149
|
readonly delivery_location?: io.flow.internal.v0.models.TrackingDebugLabelLocation;
|
|
@@ -24363,8 +24541,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
24363
24541
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
24364
24542
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
24365
24543
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
24366
|
-
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.CarrierFeeUpserted | io.flow.internal.v0.models.CarrierFeeDeleted | 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.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;
|
|
24367
|
-
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;
|
|
24368
24545
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
24369
24546
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
24370
24547
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -24417,14 +24594,12 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
24417
24594
|
type TariffEligibilityData = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData;
|
|
24418
24595
|
type TariffEligibilityForm = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
|
|
24419
24596
|
type TaskData = io.flow.internal.v0.models.TaskProcessQueuedEvent | io.flow.internal.v0.models.TaskSummarizeCode | io.flow.internal.v0.models.TaskItemUpserted | io.flow.internal.v0.models.TaskImport;
|
|
24420
|
-
type TaskMetadata = io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.
|
|
24597
|
+
type TaskMetadata = io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingPendingOrderMetadata;
|
|
24421
24598
|
type TaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
24422
24599
|
type Tracker = io.flow.internal.v0.models.GoogleAnalytics | io.flow.internal.v0.models.GoogleGlobalSiteTag | io.flow.internal.v0.models.GoogleTagManager | io.flow.internal.v0.models.FacebookPixel | io.flow.internal.v0.models.SnapchatPixel;
|
|
24423
|
-
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
|
|
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;
|
|
24424
24601
|
type TransactionSummary = io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary;
|
|
24425
24602
|
type ValidationRule = io.flow.internal.v0.models.ValidationCharacterLength;
|
|
24426
|
-
type Variant = io.flow.internal.v0.models.ExperienceVariant | io.flow.internal.v0.models.FeatureVariant;
|
|
24427
|
-
type VariantForm = io.flow.internal.v0.models.ExperienceVariantForm | io.flow.internal.v0.models.FeatureVariantForm;
|
|
24428
24603
|
}
|
|
24429
24604
|
export declare type Acceptance = io.flow.internal.v0.models.Acceptance;
|
|
24430
24605
|
export declare type AccountContact = io.flow.internal.v0.models.AccountContact;
|
|
@@ -24457,7 +24632,6 @@ export declare type AccountTransactionsExportRequest = io.flow.internal.v0.model
|
|
|
24457
24632
|
export declare type AccountType = io.flow.internal.v0.enums.AccountType;
|
|
24458
24633
|
export declare type AccountUpserted = io.flow.internal.v0.models.AccountUpserted;
|
|
24459
24634
|
export declare type AccountUpsertedV2 = io.flow.internal.v0.models.AccountUpsertedV2;
|
|
24460
|
-
export declare type AccountingFulfillmentMetadata = io.flow.internal.v0.models.AccountingFulfillmentMetadata;
|
|
24461
24635
|
export declare type AccountingPendingOrderMetadata = io.flow.internal.v0.models.AccountingPendingOrderMetadata;
|
|
24462
24636
|
export declare type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
|
|
24463
24637
|
export declare type AdditionalImportTax = io.flow.internal.v0.models.AdditionalImportTax;
|
|
@@ -24547,13 +24721,13 @@ export declare type AuthorizedOrderCharge = io.flow.internal.v0.unions.Authorize
|
|
|
24547
24721
|
export declare type AuthorizedShippingCharge = io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
24548
24722
|
export declare type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
|
|
24549
24723
|
export declare type AutoReviewCriteria = io.flow.internal.v0.models.AutoReviewCriteria;
|
|
24550
|
-
export declare type Backfill = io.flow.internal.v0.models.Backfill;
|
|
24551
|
-
export declare type BackfillForm = io.flow.internal.v0.models.BackfillForm;
|
|
24552
24724
|
export declare type BankAccountReference = io.flow.internal.v0.models.BankAccountReference;
|
|
24553
24725
|
export declare type BankPayment = io.flow.internal.v0.models.BankPayment;
|
|
24554
24726
|
export declare type BankPaymentDeletedV2 = io.flow.internal.v0.models.BankPaymentDeletedV2;
|
|
24555
24727
|
export declare type BankPaymentForm = io.flow.internal.v0.models.BankPaymentForm;
|
|
24556
24728
|
export declare type BankPaymentOrder = io.flow.internal.v0.models.BankPaymentOrder;
|
|
24729
|
+
export declare type BankPaymentOrderDeleted = io.flow.internal.v0.models.BankPaymentOrderDeleted;
|
|
24730
|
+
export declare type BankPaymentOrderUpserted = io.flow.internal.v0.models.BankPaymentOrderUpserted;
|
|
24557
24731
|
export declare type BankPaymentPromiseCompletedMethod = io.flow.internal.v0.enums.BankPaymentPromiseCompletedMethod;
|
|
24558
24732
|
export declare type BankPaymentReference = io.flow.internal.v0.models.BankPaymentReference;
|
|
24559
24733
|
export declare type BankPaymentStatusCode = io.flow.internal.v0.enums.BankPaymentStatusCode;
|
|
@@ -24647,20 +24821,14 @@ export declare type CarrierChargeType = io.flow.internal.v0.enums.CarrierChargeT
|
|
|
24647
24821
|
export declare type CarrierChargeUnits = io.flow.internal.v0.models.CarrierChargeUnits;
|
|
24648
24822
|
export declare type CarrierChargeUpserted = io.flow.internal.v0.models.CarrierChargeUpserted;
|
|
24649
24823
|
export declare type CarrierCredentials = io.flow.internal.v0.unions.CarrierCredentials;
|
|
24650
|
-
export declare type CarrierFee = io.flow.internal.v0.models.CarrierFee;
|
|
24651
|
-
export declare type CarrierFeeDeleted = io.flow.internal.v0.models.CarrierFeeDeleted;
|
|
24652
|
-
export declare type CarrierFeeForm = io.flow.internal.v0.models.CarrierFeeForm;
|
|
24653
|
-
export declare type CarrierFeeTransaction = io.flow.internal.v0.models.CarrierFeeTransaction;
|
|
24654
|
-
export declare type CarrierFeeTransactionLabelReference = io.flow.internal.v0.models.CarrierFeeTransactionLabelReference;
|
|
24655
|
-
export declare type CarrierFeeTransactionType = io.flow.internal.v0.enums.CarrierFeeTransactionType;
|
|
24656
|
-
export declare type CarrierFeeUnits = io.flow.internal.v0.models.CarrierFeeUnits;
|
|
24657
|
-
export declare type CarrierFeeUpserted = io.flow.internal.v0.models.CarrierFeeUpserted;
|
|
24658
24824
|
export declare type CarrierFile = io.flow.internal.v0.models.CarrierFile;
|
|
24659
24825
|
export declare type CarrierFileForm = io.flow.internal.v0.models.CarrierFileForm;
|
|
24660
24826
|
export declare type CarrierFileResult = io.flow.internal.v0.models.CarrierFileResult;
|
|
24661
24827
|
export declare type CarrierFileType = io.flow.internal.v0.enums.CarrierFileType;
|
|
24662
24828
|
export declare type CarrierInvoice = io.flow.internal.v0.models.CarrierInvoice;
|
|
24663
24829
|
export declare type CarrierLabelGenerationMethod = io.flow.internal.v0.enums.CarrierLabelGenerationMethod;
|
|
24830
|
+
export declare type CarrierTaxForm = io.flow.internal.v0.models.CarrierTaxForm;
|
|
24831
|
+
export declare type CarrierTaxUnits = io.flow.internal.v0.models.CarrierTaxUnits;
|
|
24664
24832
|
export declare type CarrierValidationStatus = io.flow.internal.v0.enums.CarrierValidationStatus;
|
|
24665
24833
|
export declare type CatalogImportRequest = io.flow.internal.v0.models.CatalogImportRequest;
|
|
24666
24834
|
export declare type CatalogImportType = io.flow.internal.v0.enums.CatalogImportType;
|
|
@@ -24719,6 +24887,9 @@ export declare type ChannelOrderSummary = io.flow.internal.v0.models.ChannelOrde
|
|
|
24719
24887
|
export declare type ChannelOrderSummaryDeleted = io.flow.internal.v0.models.ChannelOrderSummaryDeleted;
|
|
24720
24888
|
export declare type ChannelOrderSummaryFulfillmentDetails = io.flow.internal.v0.models.ChannelOrderSummaryFulfillmentDetails;
|
|
24721
24889
|
export declare type ChannelOrderSummaryUpserted = io.flow.internal.v0.models.ChannelOrderSummaryUpserted;
|
|
24890
|
+
export declare type ChannelOrganizationIdentifier = io.flow.internal.v0.models.ChannelOrganizationIdentifier;
|
|
24891
|
+
export declare type ChannelOrganizationIdentifierDeleted = io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted;
|
|
24892
|
+
export declare type ChannelOrganizationIdentifierUpserted = io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted;
|
|
24722
24893
|
export declare type ChannelOrganizationShopify = io.flow.internal.v0.models.ChannelOrganizationShopify;
|
|
24723
24894
|
export declare type ChannelOrganizationShopifyForm = io.flow.internal.v0.models.ChannelOrganizationShopifyForm;
|
|
24724
24895
|
export declare type ChannelOrganizationShopifyPostForm = io.flow.internal.v0.models.ChannelOrganizationShopifyPostForm;
|
|
@@ -24791,6 +24962,7 @@ export declare type Classification = io.flow.internal.v0.models.Classification;
|
|
|
24791
24962
|
export declare type ClassificationAction = io.flow.internal.v0.unions.ClassificationAction;
|
|
24792
24963
|
export declare type ClassificationActionForm = io.flow.internal.v0.unions.ClassificationActionForm;
|
|
24793
24964
|
export declare type ClassificationActionFormUndo = io.flow.internal.v0.models.ClassificationActionFormUndo;
|
|
24965
|
+
export declare type ClassificationDecision = io.flow.internal.v0.enums.ClassificationDecision;
|
|
24794
24966
|
export declare type ClassificationDetails = io.flow.internal.v0.models.ClassificationDetails;
|
|
24795
24967
|
export declare type ClassificationError = io.flow.internal.v0.models.ClassificationError;
|
|
24796
24968
|
export declare type ClassificationErrorCode = io.flow.internal.v0.enums.ClassificationErrorCode;
|
|
@@ -24799,9 +24971,14 @@ export declare type ClassificationFormWrapper = io.flow.internal.v0.models.Class
|
|
|
24799
24971
|
export declare type ClassificationItem = io.flow.internal.v0.models.ClassificationItem;
|
|
24800
24972
|
export declare type ClassificationJudgementForm = io.flow.internal.v0.unions.ClassificationJudgementForm;
|
|
24801
24973
|
export declare type ClassificationLabelAttribute = io.flow.internal.v0.unions.ClassificationLabelAttribute;
|
|
24974
|
+
export declare type ClassificationPlatform = io.flow.internal.v0.enums.ClassificationPlatform;
|
|
24802
24975
|
export declare type ClassificationProduct = io.flow.internal.v0.models.ClassificationProduct;
|
|
24803
24976
|
export declare type ClassificationProductHarmonization = io.flow.internal.v0.models.ClassificationProductHarmonization;
|
|
24804
24977
|
export declare type ClassificationProductId = io.flow.internal.v0.models.ClassificationProductId;
|
|
24978
|
+
export declare type ClassificationProductRequest = io.flow.internal.v0.models.ClassificationProductRequest;
|
|
24979
|
+
export declare type ClassificationProductRequestEnvelope = io.flow.internal.v0.models.ClassificationProductRequestEnvelope;
|
|
24980
|
+
export declare type ClassificationProductResult = io.flow.internal.v0.models.ClassificationProductResult;
|
|
24981
|
+
export declare type ClassificationProductResultEnvelope = io.flow.internal.v0.models.ClassificationProductResultEnvelope;
|
|
24805
24982
|
export declare type ClassificationProductSummary = io.flow.internal.v0.models.ClassificationProductSummary;
|
|
24806
24983
|
export declare type ClassificationProductSummaryPage = io.flow.internal.v0.models.ClassificationProductSummaryPage;
|
|
24807
24984
|
export declare type ClassificationRequeueRequest = io.flow.internal.v0.models.ClassificationRequeueRequest;
|
|
@@ -24809,9 +24986,13 @@ export declare type ClassificationResponse = io.flow.internal.v0.unions.Classifi
|
|
|
24809
24986
|
export declare type ClassificationStatistics = io.flow.internal.v0.models.ClassificationStatistics;
|
|
24810
24987
|
export declare type ClassificationSummaryReportPayload = io.flow.internal.v0.models.ClassificationSummaryReportPayload;
|
|
24811
24988
|
export declare type ClassificationTaxonomy = io.flow.internal.v0.unions.ClassificationTaxonomy;
|
|
24989
|
+
export declare type ClassificationType = io.flow.internal.v0.enums.ClassificationType;
|
|
24812
24990
|
export declare type ClassificationWrapper = io.flow.internal.v0.models.ClassificationWrapper;
|
|
24813
24991
|
export declare type ClassifiedProduct = io.flow.internal.v0.models.ClassifiedProduct;
|
|
24814
24992
|
export declare type ClassifiedProductDetail = io.flow.internal.v0.models.ClassifiedProductDetail;
|
|
24993
|
+
export declare type CliLogEntry = io.flow.internal.v0.models.CliLogEntry;
|
|
24994
|
+
export declare type CliLogEntryForm = io.flow.internal.v0.models.CliLogEntryForm;
|
|
24995
|
+
export declare type ClothingAgeClassification = io.flow.internal.v0.enums.ClothingAgeClassification;
|
|
24815
24996
|
export declare type ColmItem = io.flow.internal.v0.models.ColmItem;
|
|
24816
24997
|
export declare type ColmItemDeleted = io.flow.internal.v0.models.ColmItemDeleted;
|
|
24817
24998
|
export declare type ColmItemForm = io.flow.internal.v0.models.ColmItemForm;
|
|
@@ -24822,6 +25003,7 @@ export declare type CommercialInvoiceInternal = io.flow.internal.v0.models.Comme
|
|
|
24822
25003
|
export declare type CommercialInvoiceInternalDeleted = io.flow.internal.v0.models.CommercialInvoiceInternalDeleted;
|
|
24823
25004
|
export declare type CommercialInvoiceInternalUpserted = io.flow.internal.v0.models.CommercialInvoiceInternalUpserted;
|
|
24824
25005
|
export declare type CommercialInvoiceSummary = io.flow.internal.v0.models.CommercialInvoiceSummary;
|
|
25006
|
+
export declare type Company = io.flow.internal.v0.enums.Company;
|
|
24825
25007
|
export declare type CompanyReference = io.flow.internal.v0.models.CompanyReference;
|
|
24826
25008
|
export declare type Compliance = io.flow.internal.v0.models.Compliance;
|
|
24827
25009
|
export declare type ComplianceData = io.flow.internal.v0.unions.ComplianceData;
|
|
@@ -24856,6 +25038,7 @@ export declare type CryptoAccountModificationForm = io.flow.internal.v0.models.C
|
|
|
24856
25038
|
export declare type CryptoAccountPutForm = io.flow.internal.v0.models.CryptoAccountPutForm;
|
|
24857
25039
|
export declare type CryptoAuthentication = io.flow.internal.v0.models.CryptoAuthentication;
|
|
24858
25040
|
export declare type CryptoAuthenticationForm = io.flow.internal.v0.models.CryptoAuthenticationForm;
|
|
25041
|
+
export declare type CsvTransaction = io.flow.internal.v0.models.CsvTransaction;
|
|
24859
25042
|
export declare type CurrencyInternalRate = io.flow.internal.v0.models.CurrencyInternalRate;
|
|
24860
25043
|
export declare type CustomerPurgeUpserted = io.flow.internal.v0.models.CustomerPurgeUpserted;
|
|
24861
25044
|
export declare type CustomerSecret = io.flow.internal.v0.models.CustomerSecret;
|
|
@@ -24869,10 +25052,6 @@ export declare type CustomsDetails = io.flow.internal.v0.models.CustomsDetails;
|
|
|
24869
25052
|
export declare type CustomsDetailsForm = io.flow.internal.v0.models.CustomsDetailsForm;
|
|
24870
25053
|
export declare type CustomsProductAttributeLabel = io.flow.internal.v0.models.CustomsProductAttributeLabel;
|
|
24871
25054
|
export declare type CustomsProductLabels = io.flow.internal.v0.models.CustomsProductLabels;
|
|
24872
|
-
export declare type DailyExperimentEngineResults = io.flow.internal.v0.models.DailyExperimentEngineResults;
|
|
24873
|
-
export declare type DailyExperimentResults = io.flow.internal.v0.models.DailyExperimentResults;
|
|
24874
|
-
export declare type DailyExperimentResultsDeleted = io.flow.internal.v0.models.DailyExperimentResultsDeleted;
|
|
24875
|
-
export declare type DailyExperimentResultsUpserted = io.flow.internal.v0.models.DailyExperimentResultsUpserted;
|
|
24876
25055
|
export declare type DailyValue = io.flow.internal.v0.models.DailyValue;
|
|
24877
25056
|
export declare type DailyValueDeleted = io.flow.internal.v0.models.DailyValueDeleted;
|
|
24878
25057
|
export declare type DailyValueUpserted = io.flow.internal.v0.models.DailyValueUpserted;
|
|
@@ -25002,7 +25181,6 @@ export declare type ExclusionRuleDeleted = io.flow.internal.v0.models.ExclusionR
|
|
|
25002
25181
|
export declare type ExclusionRuleExportRequest = io.flow.internal.v0.models.ExclusionRuleExportRequest;
|
|
25003
25182
|
export declare type ExclusionRuleUpserted = io.flow.internal.v0.models.ExclusionRuleUpserted;
|
|
25004
25183
|
export declare type ExpectedOrderSummary = io.flow.internal.v0.models.ExpectedOrderSummary;
|
|
25005
|
-
export declare type ExperienceExperiment = io.flow.internal.v0.models.ExperienceExperiment;
|
|
25006
25184
|
export declare type ExperienceExportRequest = io.flow.internal.v0.models.ExperienceExportRequest;
|
|
25007
25185
|
export declare type ExperienceImportRequest = io.flow.internal.v0.models.ExperienceImportRequest;
|
|
25008
25186
|
export declare type ExperienceImportType = io.flow.internal.v0.enums.ExperienceImportType;
|
|
@@ -25010,30 +25188,6 @@ export declare type ExperienceOrderAction = io.flow.internal.v0.enums.Experience
|
|
|
25010
25188
|
export declare type ExperienceOrderActionRule = io.flow.internal.v0.models.ExperienceOrderActionRule;
|
|
25011
25189
|
export declare type ExperienceOrderActionTrigger = io.flow.internal.v0.enums.ExperienceOrderActionTrigger;
|
|
25012
25190
|
export declare type ExperienceSessionReference = io.flow.internal.v0.models.ExperienceSessionReference;
|
|
25013
|
-
export declare type ExperienceVariant = io.flow.internal.v0.models.ExperienceVariant;
|
|
25014
|
-
export declare type ExperienceVariantForm = io.flow.internal.v0.models.ExperienceVariantForm;
|
|
25015
|
-
export declare type ExperienceVariantSummary = io.flow.internal.v0.models.ExperienceVariantSummary;
|
|
25016
|
-
export declare type Experiment = io.flow.internal.v0.unions.Experiment;
|
|
25017
|
-
export declare type ExperimentDeleted = io.flow.internal.v0.models.ExperimentDeleted;
|
|
25018
|
-
export declare type ExperimentDiscriminatorKey = io.flow.internal.v0.enums.ExperimentDiscriminatorKey;
|
|
25019
|
-
export declare type ExperimentEngineResults = io.flow.internal.v0.models.ExperimentEngineResults;
|
|
25020
|
-
export declare type ExperimentForm = io.flow.internal.v0.models.ExperimentForm;
|
|
25021
|
-
export declare type ExperimentFormDefault = io.flow.internal.v0.models.ExperimentFormDefault;
|
|
25022
|
-
export declare type ExperimentFormDefaultDiscriminator = io.flow.internal.v0.models.ExperimentFormDefaultDiscriminator;
|
|
25023
|
-
export declare type ExperimentFormDefaultDiscriminatorValue = io.flow.internal.v0.models.ExperimentFormDefaultDiscriminatorValue;
|
|
25024
|
-
export declare type ExperimentFormDefaultVariant = io.flow.internal.v0.models.ExperimentFormDefaultVariant;
|
|
25025
|
-
export declare type ExperimentMilestone = io.flow.internal.v0.models.ExperimentMilestone;
|
|
25026
|
-
export declare type ExperimentMilestoneDeleted = io.flow.internal.v0.models.ExperimentMilestoneDeleted;
|
|
25027
|
-
export declare type ExperimentMilestoneForm = io.flow.internal.v0.models.ExperimentMilestoneForm;
|
|
25028
|
-
export declare type ExperimentMilestoneUpserted = io.flow.internal.v0.models.ExperimentMilestoneUpserted;
|
|
25029
|
-
export declare type ExperimentReference = io.flow.internal.v0.models.ExperimentReference;
|
|
25030
|
-
export declare type ExperimentResults = io.flow.internal.v0.models.ExperimentResults;
|
|
25031
|
-
export declare type ExperimentResultsDeleted = io.flow.internal.v0.models.ExperimentResultsDeleted;
|
|
25032
|
-
export declare type ExperimentResultsUpserted = io.flow.internal.v0.models.ExperimentResultsUpserted;
|
|
25033
|
-
export declare type ExperimentResultsWithTimestamp = io.flow.internal.v0.models.ExperimentResultsWithTimestamp;
|
|
25034
|
-
export declare type ExperimentSessionQueryForm = io.flow.internal.v0.models.ExperimentSessionQueryForm;
|
|
25035
|
-
export declare type ExperimentUpserted = io.flow.internal.v0.models.ExperimentUpserted;
|
|
25036
|
-
export declare type ExperimentVersion = io.flow.internal.v0.models.ExperimentVersion;
|
|
25037
25191
|
export declare type ExplicitStatement = io.flow.internal.v0.models.ExplicitStatement;
|
|
25038
25192
|
export declare type ExplicitStatementForm = io.flow.internal.v0.unions.ExplicitStatementForm;
|
|
25039
25193
|
export declare type ExplicitStatementFormAllPendingPostedTransactions = io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
@@ -25051,11 +25205,11 @@ export declare type ExternalFulfillmentProofForm = io.flow.internal.v0.models.Ex
|
|
|
25051
25205
|
export declare type ExternalFulfillmentProofTracking = io.flow.internal.v0.models.ExternalFulfillmentProofTracking;
|
|
25052
25206
|
export declare type ExternalFulfillmentProofTrackingForm = io.flow.internal.v0.models.ExternalFulfillmentProofTrackingForm;
|
|
25053
25207
|
export declare type FacebookPixel = io.flow.internal.v0.models.FacebookPixel;
|
|
25208
|
+
export declare type FailedDimensionEstimateOpsInputWithReason = io.flow.internal.v0.models.FailedDimensionEstimateOpsInputWithReason;
|
|
25054
25209
|
export declare type Feature = io.flow.internal.v0.models.Feature;
|
|
25055
25210
|
export declare type FeatureContextForm = io.flow.internal.v0.models.FeatureContextForm;
|
|
25056
25211
|
export declare type FeatureDefaultValue = io.flow.internal.v0.unions.FeatureDefaultValue;
|
|
25057
25212
|
export declare type FeatureDeleted = io.flow.internal.v0.models.FeatureDeleted;
|
|
25058
|
-
export declare type FeatureExperiment = io.flow.internal.v0.models.FeatureExperiment;
|
|
25059
25213
|
export declare type FeatureForm = io.flow.internal.v0.models.FeatureForm;
|
|
25060
25214
|
export declare type FeatureGeoForm = io.flow.internal.v0.models.FeatureGeoForm;
|
|
25061
25215
|
export declare type FeatureIdReference = io.flow.internal.v0.models.FeatureIdReference;
|
|
@@ -25073,11 +25227,7 @@ export declare type FeatureType = io.flow.internal.v0.enums.FeatureType;
|
|
|
25073
25227
|
export declare type FeatureUpserted = io.flow.internal.v0.models.FeatureUpserted;
|
|
25074
25228
|
export declare type FeatureValue = io.flow.internal.v0.unions.FeatureValue;
|
|
25075
25229
|
export declare type FeatureValueForm = io.flow.internal.v0.models.FeatureValueForm;
|
|
25076
|
-
export declare type FeatureValueReference = io.flow.internal.v0.models.FeatureValueReference;
|
|
25077
25230
|
export declare type FeatureValueResult = io.flow.internal.v0.models.FeatureValueResult;
|
|
25078
|
-
export declare type FeatureVariant = io.flow.internal.v0.models.FeatureVariant;
|
|
25079
|
-
export declare type FeatureVariantForm = io.flow.internal.v0.models.FeatureVariantForm;
|
|
25080
|
-
export declare type FeatureVariantSummary = io.flow.internal.v0.models.FeatureVariantSummary;
|
|
25081
25231
|
export declare type Fedex = io.flow.internal.v0.models.Fedex;
|
|
25082
25232
|
export declare type FedexCrossborder = io.flow.internal.v0.models.FedexCrossborder;
|
|
25083
25233
|
export declare type Fee = io.flow.internal.v0.models.Fee;
|
|
@@ -25113,7 +25263,11 @@ export declare type FlowLabelSetting = io.flow.internal.v0.models.FlowLabelSetti
|
|
|
25113
25263
|
export declare type FlowLabelSettingForm = io.flow.internal.v0.models.FlowLabelSettingForm;
|
|
25114
25264
|
export declare type FlowShopValidationError = io.flow.internal.v0.models.FlowShopValidationError;
|
|
25115
25265
|
export declare type Format = io.flow.internal.v0.enums.Format;
|
|
25266
|
+
export declare type FraudAuthorizationSummary = io.flow.internal.v0.models.FraudAuthorizationSummary;
|
|
25116
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;
|
|
25117
25271
|
export declare type FraudPendingReviewDeleted = io.flow.internal.v0.models.FraudPendingReviewDeleted;
|
|
25118
25272
|
export declare type FraudPendingReviewDetail = io.flow.internal.v0.models.FraudPendingReviewDetail;
|
|
25119
25273
|
export declare type FraudPendingReviewUpserted = io.flow.internal.v0.models.FraudPendingReviewUpserted;
|
|
@@ -25126,6 +25280,12 @@ export declare type FraudProviderConfigurationRiskified = io.flow.internal.v0.mo
|
|
|
25126
25280
|
export declare type FraudProviderConfigurationUpserted = io.flow.internal.v0.models.FraudProviderConfigurationUpserted;
|
|
25127
25281
|
export declare type FraudProviderStatus = io.flow.internal.v0.enums.FraudProviderStatus;
|
|
25128
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;
|
|
25129
25289
|
export declare type FraudReviewDecision = io.flow.internal.v0.models.FraudReviewDecision;
|
|
25130
25290
|
export declare type FraudReviewDecisionDeleted = io.flow.internal.v0.models.FraudReviewDecisionDeleted;
|
|
25131
25291
|
export declare type FraudReviewDecisionForm = io.flow.internal.v0.models.FraudReviewDecisionForm;
|
|
@@ -25151,6 +25311,7 @@ export declare type Fulfillment = io.flow.internal.v0.models.Fulfillment;
|
|
|
25151
25311
|
export declare type FulfillmentActionForm = io.flow.internal.v0.models.FulfillmentActionForm;
|
|
25152
25312
|
export declare type FulfillmentBusiness = io.flow.internal.v0.models.FulfillmentBusiness;
|
|
25153
25313
|
export declare type FulfillmentCancel = io.flow.internal.v0.models.FulfillmentCancel;
|
|
25314
|
+
export declare type FulfillmentCarrier = io.flow.internal.v0.models.FulfillmentCarrier;
|
|
25154
25315
|
export declare type FulfillmentDeleted = io.flow.internal.v0.models.FulfillmentDeleted;
|
|
25155
25316
|
export declare type FulfillmentInternalExperienceReference = io.flow.internal.v0.models.FulfillmentInternalExperienceReference;
|
|
25156
25317
|
export declare type FulfillmentOrigin = io.flow.internal.v0.models.FulfillmentOrigin;
|
|
@@ -25192,10 +25353,16 @@ export declare type GoogleLinker = io.flow.internal.v0.models.GoogleLinker;
|
|
|
25192
25353
|
export declare type GoogleShoppingAccountParameters = io.flow.internal.v0.models.GoogleShoppingAccountParameters;
|
|
25193
25354
|
export declare type GoogleShoppingSetting = io.flow.internal.v0.models.GoogleShoppingSetting;
|
|
25194
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;
|
|
25195
25361
|
export declare type HarmonizationClassificationStatisticsData = io.flow.internal.v0.models.HarmonizationClassificationStatisticsData;
|
|
25196
25362
|
export declare type HarmonizationClassificationStatisticsPublished = io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished;
|
|
25197
25363
|
export declare type HarmonizationCodesImport = io.flow.internal.v0.models.HarmonizationCodesImport;
|
|
25198
25364
|
export declare type HarmonizationColumnSetting = io.flow.internal.v0.models.HarmonizationColumnSetting;
|
|
25365
|
+
export declare type HarmonizationDecisionSource = io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
25199
25366
|
export declare type HarmonizationItemClassification = io.flow.internal.v0.models.HarmonizationItemClassification;
|
|
25200
25367
|
export declare type HarmonizationItemClassificationDeleted = io.flow.internal.v0.models.HarmonizationItemClassificationDeleted;
|
|
25201
25368
|
export declare type HarmonizationItemClassificationUpserted = io.flow.internal.v0.models.HarmonizationItemClassificationUpserted;
|
|
@@ -25244,6 +25411,7 @@ export declare type InternalStripeAuthorizationDetails = io.flow.internal.v0.mod
|
|
|
25244
25411
|
export declare type InternalTransactionDetails = io.flow.internal.v0.unions.InternalTransactionDetails;
|
|
25245
25412
|
export declare type InternalTransactionDetailsCard = io.flow.internal.v0.models.InternalTransactionDetailsCard;
|
|
25246
25413
|
export declare type InvalidCheckoutData = io.flow.internal.v0.models.InvalidCheckoutData;
|
|
25414
|
+
export declare type Invariant = io.flow.internal.v0.models.Invariant;
|
|
25247
25415
|
export declare type InventoryCheckService = io.flow.internal.v0.enums.InventoryCheckService;
|
|
25248
25416
|
export declare type InventoryOrganizationSettings = io.flow.internal.v0.models.InventoryOrganizationSettings;
|
|
25249
25417
|
export declare type InventoryOrganizationSettingsForm = io.flow.internal.v0.models.InventoryOrganizationSettingsForm;
|
|
@@ -25298,6 +25466,11 @@ export declare type KeyReference = io.flow.internal.v0.models.KeyReference;
|
|
|
25298
25466
|
export declare type KeywordType = io.flow.internal.v0.enums.KeywordType;
|
|
25299
25467
|
export declare type KlarnaAuthorizationParameters = io.flow.internal.v0.models.KlarnaAuthorizationParameters;
|
|
25300
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;
|
|
25301
25474
|
export declare type LabProjectSettings = io.flow.internal.v0.models.LabProjectSettings;
|
|
25302
25475
|
export declare type LabProjectSettingsForm = io.flow.internal.v0.models.LabProjectSettingsForm;
|
|
25303
25476
|
export declare type LabProjectSettingsFormAcceptance = io.flow.internal.v0.models.LabProjectSettingsFormAcceptance;
|
|
@@ -25374,6 +25547,9 @@ export declare type Location = io.flow.internal.v0.models.Location;
|
|
|
25374
25547
|
export declare type LogisticsCapabilities = io.flow.internal.v0.models.LogisticsCapabilities;
|
|
25375
25548
|
export declare type LogisticsCapabilitiesForm = io.flow.internal.v0.models.LogisticsCapabilitiesForm;
|
|
25376
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;
|
|
25377
25553
|
export declare type Logo = io.flow.internal.v0.models.Logo;
|
|
25378
25554
|
export declare type LostChargeback = io.flow.internal.v0.models.LostChargeback;
|
|
25379
25555
|
export declare type LoyaltyProgram = io.flow.internal.v0.models.LoyaltyProgram;
|
|
@@ -25473,6 +25649,16 @@ export declare type MerchantUpserted = io.flow.internal.v0.models.MerchantUpsert
|
|
|
25473
25649
|
export declare type MessageStamp = io.flow.internal.v0.models.MessageStamp;
|
|
25474
25650
|
export declare type MetadataProposition = io.flow.internal.v0.models.MetadataProposition;
|
|
25475
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;
|
|
25476
25662
|
export declare type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|
|
25477
25663
|
export declare type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
|
|
25478
25664
|
export declare type NextBillingStatement = io.flow.internal.v0.models.NextBillingStatement;
|
|
@@ -25547,6 +25733,9 @@ export declare type OrderServiceChangeCsvForm = io.flow.internal.v0.models.Order
|
|
|
25547
25733
|
export declare type OrderShipped = io.flow.internal.v0.models.OrderShipped;
|
|
25548
25734
|
export declare type OrderSubmissionForm = io.flow.internal.v0.models.OrderSubmissionForm;
|
|
25549
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;
|
|
25550
25739
|
export declare type OrderTransaction = io.flow.internal.v0.models.OrderTransaction;
|
|
25551
25740
|
export declare type OrderTransactionDeleted = io.flow.internal.v0.models.OrderTransactionDeleted;
|
|
25552
25741
|
export declare type OrderTransactionType = io.flow.internal.v0.enums.OrderTransactionType;
|
|
@@ -25586,6 +25775,9 @@ export declare type OrganizationDebugTransaction = io.flow.internal.v0.models.Or
|
|
|
25586
25775
|
export declare type OrganizationInvitationAcceptForm = io.flow.internal.v0.models.OrganizationInvitationAcceptForm;
|
|
25587
25776
|
export declare type OrganizationMembershipCopy = io.flow.internal.v0.models.OrganizationMembershipCopy;
|
|
25588
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;
|
|
25589
25781
|
export declare type OrganizationMetricType = io.flow.internal.v0.enums.OrganizationMetricType;
|
|
25590
25782
|
export declare type OrganizationOnboardingStateAdjustmentResult = io.flow.internal.v0.models.OrganizationOnboardingStateAdjustmentResult;
|
|
25591
25783
|
export declare type OrganizationOnboardingStateAuditResult = io.flow.internal.v0.models.OrganizationOnboardingStateAuditResult;
|
|
@@ -25615,6 +25807,26 @@ export declare type OrganizationStatusChange = io.flow.internal.v0.models.Organi
|
|
|
25615
25807
|
export declare type OrganizationStatusChangeDeleted = io.flow.internal.v0.models.OrganizationStatusChangeDeleted;
|
|
25616
25808
|
export declare type OrganizationStatusChangeUpserted = io.flow.internal.v0.models.OrganizationStatusChangeUpserted;
|
|
25617
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;
|
|
25618
25830
|
export declare type OutputStyle = io.flow.internal.v0.enums.OutputStyle;
|
|
25619
25831
|
export declare type Owner = io.flow.internal.v0.enums.Owner;
|
|
25620
25832
|
export declare type Partner = io.flow.internal.v0.models.Partner;
|
|
@@ -25644,6 +25856,7 @@ export declare type PaymentProcessorAccountUpserted = io.flow.internal.v0.models
|
|
|
25644
25856
|
export declare type PaymentProcessorMerchantDeleted = io.flow.internal.v0.models.PaymentProcessorMerchantDeleted;
|
|
25645
25857
|
export declare type PaymentProcessorMerchantUpserted = io.flow.internal.v0.models.PaymentProcessorMerchantUpserted;
|
|
25646
25858
|
export declare type PaymentRedirect = io.flow.internal.v0.unions.PaymentRedirect;
|
|
25859
|
+
export declare type PaymentSummary = io.flow.internal.v0.models.PaymentSummary;
|
|
25647
25860
|
export declare type PaymentSummaryDetails = io.flow.internal.v0.unions.PaymentSummaryDetails;
|
|
25648
25861
|
export declare type PaymentSummaryStatus = io.flow.internal.v0.enums.PaymentSummaryStatus;
|
|
25649
25862
|
export declare type PaymentSummaryType = io.flow.internal.v0.enums.PaymentSummaryType;
|
|
@@ -25813,8 +26026,11 @@ export declare type ReportBankAccount = io.flow.internal.v0.models.ReportBankAcc
|
|
|
25813
26026
|
export declare type ReportBankAccountCleartext = io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
25814
26027
|
export declare type ReportForm = io.flow.internal.v0.models.ReportForm;
|
|
25815
26028
|
export declare type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
|
|
26029
|
+
export declare type ReportMerchant = io.flow.internal.v0.models.ReportMerchant;
|
|
26030
|
+
export declare type ReportOrderReference = io.flow.internal.v0.models.ReportOrderReference;
|
|
25816
26031
|
export declare type ReportOwner = io.flow.internal.v0.models.ReportOwner;
|
|
25817
26032
|
export declare type ReportPayment = io.flow.internal.v0.models.ReportPayment;
|
|
26033
|
+
export declare type ReportPaymentType = io.flow.internal.v0.enums.ReportPaymentType;
|
|
25818
26034
|
export declare type ReportRuleDecision = io.flow.internal.v0.models.ReportRuleDecision;
|
|
25819
26035
|
export declare type ReportStatus = io.flow.internal.v0.enums.ReportStatus;
|
|
25820
26036
|
export declare type ReportSummary = io.flow.internal.v0.models.ReportSummary;
|
|
@@ -25842,8 +26058,6 @@ export declare type ReportingMonetaryValue = io.flow.internal.v0.models.Reportin
|
|
|
25842
26058
|
export declare type ReportingOrderSummary = io.flow.internal.v0.models.ReportingOrderSummary;
|
|
25843
26059
|
export declare type ReportingOrganizationSummary = io.flow.internal.v0.models.ReportingOrganizationSummary;
|
|
25844
26060
|
export declare type ReportingPayment = io.flow.internal.v0.models.ReportingPayment;
|
|
25845
|
-
export declare type ReportingPaymentMetadata = io.flow.internal.v0.models.ReportingPaymentMetadata;
|
|
25846
|
-
export declare type ReportingPaymentMetadataAdditionalAuthorizations = io.flow.internal.v0.models.ReportingPaymentMetadataAdditionalAuthorizations;
|
|
25847
26061
|
export declare type ReportingProvince = io.flow.internal.v0.models.ReportingProvince;
|
|
25848
26062
|
export declare type ReportingReconciliation = io.flow.internal.v0.models.ReportingReconciliation;
|
|
25849
26063
|
export declare type ReportingRefundReference = io.flow.internal.v0.models.ReportingRefundReference;
|
|
@@ -25855,6 +26069,7 @@ export declare type ReportingVatRemittance = io.flow.internal.v0.models.Reportin
|
|
|
25855
26069
|
export declare type ReportingVatRemittanceRate = io.flow.internal.v0.models.ReportingVatRemittanceRate;
|
|
25856
26070
|
export declare type ReportingVendor = io.flow.internal.v0.models.ReportingVendor;
|
|
25857
26071
|
export declare type RequeueRequestForm = io.flow.internal.v0.models.RequeueRequestForm;
|
|
26072
|
+
export declare type RescreenRestrictionsProducts = io.flow.internal.v0.models.RescreenRestrictionsProducts;
|
|
25858
26073
|
export declare type ResponsibleParty = io.flow.internal.v0.enums.ResponsibleParty;
|
|
25859
26074
|
export declare type RestrictionAction = io.flow.internal.v0.enums.RestrictionAction;
|
|
25860
26075
|
export declare type RestrictionCategory = io.flow.internal.v0.models.RestrictionCategory;
|
|
@@ -25915,7 +26130,6 @@ export declare type SalesRecordUpserted = io.flow.internal.v0.models.SalesRecord
|
|
|
25915
26130
|
export declare type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
|
|
25916
26131
|
export declare type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
|
|
25917
26132
|
export declare type ScheduledPayment = io.flow.internal.v0.models.ScheduledPayment;
|
|
25918
|
-
export declare type Scope = io.flow.internal.v0.enums.Scope;
|
|
25919
26133
|
export declare type Screen = io.flow.internal.v0.models.Screen;
|
|
25920
26134
|
export declare type ScreenForm = io.flow.internal.v0.models.ScreenForm;
|
|
25921
26135
|
export declare type ScreeningStatusChange = io.flow.internal.v0.models.ScreeningStatusChange;
|
|
@@ -26047,7 +26261,7 @@ export declare type ShopifyService = io.flow.internal.v0.enums.ShopifyService;
|
|
|
26047
26261
|
export declare type ShopifyShopDeleted = io.flow.internal.v0.models.ShopifyShopDeleted;
|
|
26048
26262
|
export declare type ShopifyShopStatistics = io.flow.internal.v0.models.ShopifyShopStatistics;
|
|
26049
26263
|
export declare type ShopifyShopUpserted = io.flow.internal.v0.models.ShopifyShopUpserted;
|
|
26050
|
-
export declare type
|
|
26264
|
+
export declare type ShopifyStoreDetail = io.flow.internal.v0.models.ShopifyStoreDetail;
|
|
26051
26265
|
export declare type ShopifyWebhook = io.flow.internal.v0.models.ShopifyWebhook;
|
|
26052
26266
|
export declare type ShopifyWebhookEvent = io.flow.internal.v0.models.ShopifyWebhookEvent;
|
|
26053
26267
|
export declare type ShopifyWebhookForm = io.flow.internal.v0.models.ShopifyWebhookForm;
|
|
@@ -26061,7 +26275,6 @@ export declare type ShrutiDemoItemDeleted = io.flow.internal.v0.models.ShrutiDem
|
|
|
26061
26275
|
export declare type ShrutiDemoItemForm = io.flow.internal.v0.models.ShrutiDemoItemForm;
|
|
26062
26276
|
export declare type ShrutiDemoItemUpserted = io.flow.internal.v0.models.ShrutiDemoItemUpserted;
|
|
26063
26277
|
export declare type ShrutiDemoType = io.flow.internal.v0.enums.ShrutiDemoType;
|
|
26064
|
-
export declare type SignificanceAction = io.flow.internal.v0.enums.SignificanceAction;
|
|
26065
26278
|
export declare type SimpleAccountReference = io.flow.internal.v0.models.SimpleAccountReference;
|
|
26066
26279
|
export declare type SimpleRoundingStrategy = io.flow.internal.v0.enums.SimpleRoundingStrategy;
|
|
26067
26280
|
export declare type SimplifiedClassificationTaxonomy = io.flow.internal.v0.unions.SimplifiedClassificationTaxonomy;
|
|
@@ -26091,7 +26304,6 @@ export declare type StatementCreationMetadata = io.flow.internal.v0.models.State
|
|
|
26091
26304
|
export declare type StatementStatus = io.flow.internal.v0.enums.StatementStatus;
|
|
26092
26305
|
export declare type StatementTransferTransactionLocation = io.flow.internal.v0.enums.StatementTransferTransactionLocation;
|
|
26093
26306
|
export declare type StatisticType = io.flow.internal.v0.enums.StatisticType;
|
|
26094
|
-
export declare type Status = io.flow.internal.v0.enums.Status;
|
|
26095
26307
|
export declare type StoreConnection = io.flow.internal.v0.models.StoreConnection;
|
|
26096
26308
|
export declare type StoreConnectionForm = io.flow.internal.v0.models.StoreConnectionForm;
|
|
26097
26309
|
export declare type StringFeatureDefaultValue = io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -26154,6 +26366,7 @@ export declare type TaskProcessQueuedEvent = io.flow.internal.v0.models.TaskProc
|
|
|
26154
26366
|
export declare type TaskProcessorKey = io.flow.internal.v0.enums.TaskProcessorKey;
|
|
26155
26367
|
export declare type TaskSummarizeCode = io.flow.internal.v0.models.TaskSummarizeCode;
|
|
26156
26368
|
export declare type TaxAmount = io.flow.internal.v0.unions.TaxAmount;
|
|
26369
|
+
export declare type TaxAndDutyInclusivitySetting = io.flow.internal.v0.enums.TaxAndDutyInclusivitySetting;
|
|
26157
26370
|
export declare type TaxCalculation = io.flow.internal.v0.models.TaxCalculation;
|
|
26158
26371
|
export declare type TaxCalculationError = io.flow.internal.v0.models.TaxCalculationError;
|
|
26159
26372
|
export declare type TaxCalculationErrorCode = io.flow.internal.v0.enums.TaxCalculationErrorCode;
|
|
@@ -26173,6 +26386,9 @@ export declare type TaxonomyNode = io.flow.internal.v0.models.TaxonomyNode;
|
|
|
26173
26386
|
export declare type TechOnboardingDescription = io.flow.internal.v0.models.TechOnboardingDescription;
|
|
26174
26387
|
export declare type Test = io.flow.internal.v0.models.Test;
|
|
26175
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;
|
|
26176
26392
|
export declare type ThirdPartyLogisticsPartner = io.flow.internal.v0.models.ThirdPartyLogisticsPartner;
|
|
26177
26393
|
export declare type ThirdPartyLogisticsPickUpTimeWindow = io.flow.internal.v0.models.ThirdPartyLogisticsPickUpTimeWindow;
|
|
26178
26394
|
export declare type TieredFee = io.flow.internal.v0.models.TieredFee;
|
|
@@ -26184,8 +26400,11 @@ export declare type TimeToClassifyAggregatedUpserted = io.flow.internal.v0.model
|
|
|
26184
26400
|
export declare type TimeToClassifyDeleted = io.flow.internal.v0.models.TimeToClassifyDeleted;
|
|
26185
26401
|
export declare type TimeToClassifyUpserted = io.flow.internal.v0.models.TimeToClassifyUpserted;
|
|
26186
26402
|
export declare type TimeWithTimezone = io.flow.internal.v0.models.TimeWithTimezone;
|
|
26187
|
-
export declare type TimeseriesType = io.flow.internal.v0.enums.TimeseriesType;
|
|
26188
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;
|
|
26189
26408
|
export declare type TrackingDebugLabel = io.flow.internal.v0.models.TrackingDebugLabel;
|
|
26190
26409
|
export declare type TrackingDebugLabelEvent = io.flow.internal.v0.models.TrackingDebugLabelEvent;
|
|
26191
26410
|
export declare type TrackingDebugLabelLocation = io.flow.internal.v0.models.TrackingDebugLabelLocation;
|
|
@@ -26248,8 +26467,6 @@ export declare type UserUpsertedV2 = io.flow.internal.v0.models.UserUpsertedV2;
|
|
|
26248
26467
|
export declare type V1Checkout = io.flow.internal.v0.models.V1Checkout;
|
|
26249
26468
|
export declare type ValidationCharacterLength = io.flow.internal.v0.models.ValidationCharacterLength;
|
|
26250
26469
|
export declare type ValidationRule = io.flow.internal.v0.unions.ValidationRule;
|
|
26251
|
-
export declare type Variant = io.flow.internal.v0.unions.Variant;
|
|
26252
|
-
export declare type VariantForm = io.flow.internal.v0.unions.VariantForm;
|
|
26253
26470
|
export declare type ViesResult = io.flow.internal.v0.models.ViesResult;
|
|
26254
26471
|
export declare type VirtualCardTransaction = io.flow.internal.v0.models.VirtualCardTransaction;
|
|
26255
26472
|
export declare type WasteElectricalAndElectronicEquipmentComplianceData = io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceData;
|