@flowio/types 11.24.95 → 11.24.96
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +1140 -1099
- package/dist/api.d.ts +108 -7
- package/package.json +2 -2
- package/src/api-internal.ts +1468 -1267
- package/src/api.ts +176 -7
package/src/api-internal.ts
CHANGED
|
@@ -1,3 +1,155 @@
|
|
|
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
|
+
|
|
11
|
+
declare namespace io.flow.google.pay.v0.models {
|
|
12
|
+
interface Address {
|
|
13
|
+
readonly name: string;
|
|
14
|
+
readonly postalCode: string;
|
|
15
|
+
readonly countryCode: string;
|
|
16
|
+
readonly phoneNumber: string;
|
|
17
|
+
readonly companyName: string;
|
|
18
|
+
readonly address1: string;
|
|
19
|
+
readonly address2: string;
|
|
20
|
+
readonly address3: string;
|
|
21
|
+
readonly locality: string;
|
|
22
|
+
readonly administrativeArea: string;
|
|
23
|
+
readonly sortingCode: string;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
interface BillingAddressParameters {
|
|
27
|
+
readonly format?: io.flow.google.pay.v0.enums.BillingAddressFormat;
|
|
28
|
+
readonly phoneNumberRequired?: boolean;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
interface CardAdyenTokenizationParameters {
|
|
32
|
+
readonly gateway: string;
|
|
33
|
+
readonly gatewayMerchantId: string;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
interface CardDirectTokenizationParameters {
|
|
37
|
+
readonly protocolVersion: string;
|
|
38
|
+
readonly publicKey: string;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
interface CardPaymentMethodDataInfo {
|
|
42
|
+
readonly cardDetails: string;
|
|
43
|
+
readonly cardNetwork: string;
|
|
44
|
+
readonly billingAddress?: io.flow.google.pay.v0.models.Address;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
interface CardPaymentMethodParameters {
|
|
48
|
+
readonly allowedAuthMethods: io.flow.google.pay.v0.enums.AuthMethod[];
|
|
49
|
+
readonly allowedCardNetworks: io.flow.google.pay.v0.enums.CardNetwork[];
|
|
50
|
+
readonly billingAddressRequired?: boolean;
|
|
51
|
+
readonly billingAddressParameters?: io.flow.google.pay.v0.models.BillingAddressParameters;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
interface DirectPaymentMethodToken {
|
|
55
|
+
readonly discriminator: 'direct_payment_method_token';
|
|
56
|
+
readonly protocolVersion: string;
|
|
57
|
+
readonly signature: string;
|
|
58
|
+
readonly signedMessage: string;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
interface EncryptedMessage {
|
|
62
|
+
readonly messageExpiration: string;
|
|
63
|
+
readonly messageId: string;
|
|
64
|
+
readonly paymentMethod: io.flow.google.pay.v0.models.PaymentMethod;
|
|
65
|
+
readonly paymentMethodDetails: io.flow.google.pay.v0.models.PaymentMethodDetails;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
interface MerchantInfo {
|
|
69
|
+
readonly merchantId: string;
|
|
70
|
+
readonly merchantName?: string;
|
|
71
|
+
readonly authJwt?: string;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
interface PaymentData {
|
|
75
|
+
readonly apiVersion: number;
|
|
76
|
+
readonly apiVersionMinor: number;
|
|
77
|
+
readonly paymentMethodData: io.flow.google.pay.v0.models.PaymentMethodData;
|
|
78
|
+
readonly email?: string;
|
|
79
|
+
readonly shippingAddress?: io.flow.google.pay.v0.models.Address;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
interface PaymentDataRequest {
|
|
83
|
+
readonly apiVersion: number;
|
|
84
|
+
readonly apiVersionMinor: number;
|
|
85
|
+
readonly merchantInfo: io.flow.google.pay.v0.models.MerchantInfo;
|
|
86
|
+
readonly allowedPaymentMethods: io.flow.google.pay.v0.models.PaymentMethod[];
|
|
87
|
+
readonly transactionInfo: io.flow.google.pay.v0.models.TransactionInfo;
|
|
88
|
+
readonly emailRequired?: boolean;
|
|
89
|
+
readonly shippingAddressRequired?: boolean;
|
|
90
|
+
readonly shippingAddressParameters?: io.flow.google.pay.v0.models.ShippingAddressParameters;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
interface PaymentMethod {
|
|
94
|
+
readonly type: io.flow.google.pay.v0.enums.PaymentMethodType;
|
|
95
|
+
readonly parameters: io.flow.google.pay.v0.models.CardPaymentMethodParameters;
|
|
96
|
+
readonly tokenizationSpecification: io.flow.google.pay.v0.models.PaymentMethodTokenizationSpecification;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
interface PaymentMethodData {
|
|
100
|
+
readonly type: io.flow.google.pay.v0.enums.PaymentMethodType;
|
|
101
|
+
readonly description: string;
|
|
102
|
+
readonly info: io.flow.google.pay.v0.models.CardPaymentMethodDataInfo;
|
|
103
|
+
readonly tokenizationData: io.flow.google.pay.v0.models.PaymentMethodTokenizationData;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
interface PaymentMethodDetails {
|
|
107
|
+
readonly pan: string;
|
|
108
|
+
readonly expirationMonth: number;
|
|
109
|
+
readonly expirationYear: number;
|
|
110
|
+
readonly authMethod: io.flow.google.pay.v0.enums.AuthMethod;
|
|
111
|
+
readonly cryptogram?: string;
|
|
112
|
+
readonly eciIndicator?: string;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
interface PaymentMethodTokenizationData {
|
|
116
|
+
readonly type: string;
|
|
117
|
+
readonly token?: string;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
interface PaymentMethodTokenizationSpecification {
|
|
121
|
+
readonly type: io.flow.google.pay.v0.enums.TokenizationType;
|
|
122
|
+
readonly parameters: any /*object*/;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
interface ShippingAddressParameters {
|
|
126
|
+
readonly allowedCountryCodes?: string[];
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
interface SignedMessage {
|
|
130
|
+
readonly encryptedMessage: string;
|
|
131
|
+
readonly ephemeralPublicKey: string;
|
|
132
|
+
readonly tag: string;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
interface StripePaymentMethodToken {
|
|
136
|
+
readonly discriminator: 'stripe_payment_method_token';
|
|
137
|
+
readonly token: io.flow.stripe.v0.models.Token;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
interface TransactionInfo {
|
|
141
|
+
readonly totalPriceStatus: io.flow.google.pay.v0.enums.TotalPriceStatus;
|
|
142
|
+
readonly totalPrice?: string;
|
|
143
|
+
readonly currencyCode?: string;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
declare namespace io.flow.google.pay.v0.unions {
|
|
148
|
+
type PaymentMethodToken =
|
|
149
|
+
| io.flow.google.pay.v0.models.DirectPaymentMethodToken
|
|
150
|
+
| io.flow.google.pay.v0.models.StripePaymentMethodToken;
|
|
151
|
+
}
|
|
152
|
+
|
|
1
153
|
declare namespace io.flow.RESERVED_WORD_return.v0.enums {
|
|
2
154
|
type ReturnStatus = 'open' | 'refunded';
|
|
3
155
|
type ReturnTrackingStatus =
|
|
@@ -148,7 +300,8 @@ declare namespace io.flow.payment.gateway.v0.enums {
|
|
|
148
300
|
| 'order_unsupported_destination'
|
|
149
301
|
| 'order_missing_information'
|
|
150
302
|
| 'order_domestic'
|
|
151
|
-
| 'order_mismatched_currencies'
|
|
303
|
+
| 'order_mismatched_currencies'
|
|
304
|
+
| 'order_missing';
|
|
152
305
|
type PaymentRequestReviewStatus = 'pending' | 'approved' | 'rejected';
|
|
153
306
|
type PaymentStatus =
|
|
154
307
|
| 'requires_payment_method'
|
|
@@ -720,6 +873,11 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
720
873
|
readonly review?: io.flow.payment.gateway.v0.models.PaymentRequestReview;
|
|
721
874
|
}
|
|
722
875
|
|
|
876
|
+
interface PaymentRequestCancellationReasonOrderMissing {
|
|
877
|
+
readonly type: 'order_missing';
|
|
878
|
+
readonly description?: string;
|
|
879
|
+
}
|
|
880
|
+
|
|
723
881
|
interface PaymentRequestForm {
|
|
724
882
|
readonly amount: number;
|
|
725
883
|
readonly currency: string;
|
|
@@ -856,6 +1014,8 @@ declare namespace io.flow.payment.gateway.v0.unions {
|
|
|
856
1014
|
| io.flow.payment.gateway.v0.models.PaymentMethodSummaryIdeal
|
|
857
1015
|
| io.flow.payment.gateway.v0.models.PaymentMethodSummarySofort
|
|
858
1016
|
| io.flow.payment.gateway.v0.models.PaymentMethodSummaryBancontact;
|
|
1017
|
+
type PaymentRequestCancellationReason =
|
|
1018
|
+
io.flow.payment.gateway.v0.models.PaymentRequestCancellationReasonOrderMissing;
|
|
859
1019
|
type SdkAdyenV3AuthenticationToken =
|
|
860
1020
|
| io.flow.payment.gateway.v0.models.AdyenV3FingerprintToken
|
|
861
1021
|
| io.flow.payment.gateway.v0.models.AdyenV3ChallengeToken;
|
|
@@ -965,6 +1125,7 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
965
1125
|
readonly order: io.flow.billing.accounting.v0.models.OrderSummary;
|
|
966
1126
|
readonly shopper: io.flow.billing.accounting.v0.models.ShopperSummary;
|
|
967
1127
|
readonly remittance: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
1128
|
+
readonly payment?: io.flow.billing.accounting.v0.models.PaymentSummary;
|
|
968
1129
|
readonly merchant: io.flow.billing.accounting.v0.models.MerchantSummary;
|
|
969
1130
|
readonly sequence_number: number;
|
|
970
1131
|
readonly posting_cutoff: string;
|
|
@@ -1109,11 +1270,21 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
1109
1270
|
readonly currency: string;
|
|
1110
1271
|
}
|
|
1111
1272
|
|
|
1273
|
+
interface PaymentSummary {
|
|
1274
|
+
readonly psp: number;
|
|
1275
|
+
readonly credit: number;
|
|
1276
|
+
readonly subsidized: number;
|
|
1277
|
+
readonly manual: number;
|
|
1278
|
+
readonly cod: number;
|
|
1279
|
+
readonly total: number;
|
|
1280
|
+
}
|
|
1281
|
+
|
|
1112
1282
|
interface PendingOrder {
|
|
1113
1283
|
readonly id: string;
|
|
1114
1284
|
readonly order: io.flow.billing.accounting.v0.models.OrderSummary;
|
|
1115
1285
|
readonly shopper: io.flow.billing.accounting.v0.models.ShopperSummary;
|
|
1116
1286
|
readonly merchant: io.flow.billing.accounting.v0.models.MerchantSummary;
|
|
1287
|
+
readonly payment?: io.flow.billing.accounting.v0.models.PaymentSummary;
|
|
1117
1288
|
readonly remittance: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
1118
1289
|
readonly sequence_number: number;
|
|
1119
1290
|
readonly posting_cutoff: string;
|
|
@@ -1130,6 +1301,7 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
1130
1301
|
readonly shopper: io.flow.billing.accounting.v0.models.ShopperSummary;
|
|
1131
1302
|
readonly merchant: io.flow.billing.accounting.v0.models.MerchantSummary;
|
|
1132
1303
|
readonly remittance: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
1304
|
+
readonly payment?: io.flow.billing.accounting.v0.models.PaymentSummary;
|
|
1133
1305
|
readonly sequence_number: number;
|
|
1134
1306
|
readonly posting_cutoff: string;
|
|
1135
1307
|
readonly trigger: io.flow.billing.accounting.v0.unions.ReturnTrigger;
|
|
@@ -1182,6 +1354,7 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
1182
1354
|
readonly product: io.flow.billing.accounting.v0.models.ShopperLines;
|
|
1183
1355
|
readonly fees: io.flow.billing.accounting.v0.models.ShopperFees;
|
|
1184
1356
|
readonly freight: io.flow.billing.accounting.v0.models.ShopperFreight;
|
|
1357
|
+
readonly tips?: number;
|
|
1185
1358
|
readonly order_discount: number;
|
|
1186
1359
|
readonly total: number;
|
|
1187
1360
|
}
|
|
@@ -2482,6 +2655,15 @@ declare namespace io.flow.payment.v0.models {
|
|
|
2482
2655
|
readonly processor: string;
|
|
2483
2656
|
}
|
|
2484
2657
|
|
|
2658
|
+
interface PaymentProcessorTransactionDetailsApm {
|
|
2659
|
+
readonly discriminator: 'apm';
|
|
2660
|
+
readonly transaction_identifier?: string;
|
|
2661
|
+
readonly capture_identifier?: string;
|
|
2662
|
+
readonly method_type?: string;
|
|
2663
|
+
readonly result_status?: string;
|
|
2664
|
+
readonly reason_code?: string;
|
|
2665
|
+
}
|
|
2666
|
+
|
|
2485
2667
|
interface PaymentProcessorTransactionDetailsCard {
|
|
2486
2668
|
readonly discriminator: 'card';
|
|
2487
2669
|
readonly transaction_identifier?: string;
|
|
@@ -2511,6 +2693,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
2511
2693
|
interface PaypalAuthorizationDetails {
|
|
2512
2694
|
readonly discriminator: 'paypal_authorization_details';
|
|
2513
2695
|
readonly payment_id: string;
|
|
2696
|
+
readonly internal_payment_id?: string;
|
|
2514
2697
|
readonly payment_method?: string;
|
|
2515
2698
|
readonly payment_state?: string;
|
|
2516
2699
|
readonly payer_id?: string;
|
|
@@ -2871,7 +3054,8 @@ declare namespace io.flow.payment.v0.unions {
|
|
|
2871
3054
|
| io.flow.payment.v0.models.AuthorizationOrderReference
|
|
2872
3055
|
| io.flow.payment.v0.models.PaymentPaymentRequestReference;
|
|
2873
3056
|
type PaymentProcessorTransactionDetails =
|
|
2874
|
-
io.flow.payment.v0.models.PaymentProcessorTransactionDetailsCard
|
|
3057
|
+
| io.flow.payment.v0.models.PaymentProcessorTransactionDetailsCard
|
|
3058
|
+
| io.flow.payment.v0.models.PaymentProcessorTransactionDetailsApm;
|
|
2875
3059
|
type PaymentSource = io.flow.payment.v0.models.CardPaymentSource;
|
|
2876
3060
|
type PaymentSourceForm = io.flow.payment.v0.models.CardPaymentSourceForm;
|
|
2877
3061
|
type ThreedsChallengeAction =
|
|
@@ -2880,613 +3064,6 @@ declare namespace io.flow.payment.v0.unions {
|
|
|
2880
3064
|
type TransactionDetails = io.flow.payment.v0.models.TransactionDetailsCard;
|
|
2881
3065
|
}
|
|
2882
3066
|
|
|
2883
|
-
declare namespace io.flow.google.pay.v0.enums {
|
|
2884
|
-
type AuthMethod = 'PAN_ONLY' | 'CRYPTOGRAM_3DS';
|
|
2885
|
-
type BillingAddressFormat = 'MIN' | 'FULL';
|
|
2886
|
-
type CardGateway = 'adyen' | 'stripe';
|
|
2887
|
-
type CardNetwork = 'AMEX' | 'DISCOVER' | 'JCB' | 'MASTERCARD' | 'VISA';
|
|
2888
|
-
type PaymentMethodType = 'CARD';
|
|
2889
|
-
type TokenizationType = 'PAYMENT_GATEWAY' | 'DIRECT';
|
|
2890
|
-
type TotalPriceStatus = 'NOT_CURRENTLY_KNOWN' | 'ESTIMATED' | 'FINAL';
|
|
2891
|
-
}
|
|
2892
|
-
|
|
2893
|
-
declare namespace io.flow.google.pay.v0.models {
|
|
2894
|
-
interface Address {
|
|
2895
|
-
readonly name: string;
|
|
2896
|
-
readonly postalCode: string;
|
|
2897
|
-
readonly countryCode: string;
|
|
2898
|
-
readonly phoneNumber: string;
|
|
2899
|
-
readonly companyName: string;
|
|
2900
|
-
readonly address1: string;
|
|
2901
|
-
readonly address2: string;
|
|
2902
|
-
readonly address3: string;
|
|
2903
|
-
readonly locality: string;
|
|
2904
|
-
readonly administrativeArea: string;
|
|
2905
|
-
readonly sortingCode: string;
|
|
2906
|
-
}
|
|
2907
|
-
|
|
2908
|
-
interface BillingAddressParameters {
|
|
2909
|
-
readonly format?: io.flow.google.pay.v0.enums.BillingAddressFormat;
|
|
2910
|
-
readonly phoneNumberRequired?: boolean;
|
|
2911
|
-
}
|
|
2912
|
-
|
|
2913
|
-
interface CardAdyenTokenizationParameters {
|
|
2914
|
-
readonly gateway: string;
|
|
2915
|
-
readonly gatewayMerchantId: string;
|
|
2916
|
-
}
|
|
2917
|
-
|
|
2918
|
-
interface CardDirectTokenizationParameters {
|
|
2919
|
-
readonly protocolVersion: string;
|
|
2920
|
-
readonly publicKey: string;
|
|
2921
|
-
}
|
|
2922
|
-
|
|
2923
|
-
interface CardPaymentMethodDataInfo {
|
|
2924
|
-
readonly cardDetails: string;
|
|
2925
|
-
readonly cardNetwork: string;
|
|
2926
|
-
readonly billingAddress?: io.flow.google.pay.v0.models.Address;
|
|
2927
|
-
}
|
|
2928
|
-
|
|
2929
|
-
interface CardPaymentMethodParameters {
|
|
2930
|
-
readonly allowedAuthMethods: io.flow.google.pay.v0.enums.AuthMethod[];
|
|
2931
|
-
readonly allowedCardNetworks: io.flow.google.pay.v0.enums.CardNetwork[];
|
|
2932
|
-
readonly billingAddressRequired?: boolean;
|
|
2933
|
-
readonly billingAddressParameters?: io.flow.google.pay.v0.models.BillingAddressParameters;
|
|
2934
|
-
}
|
|
2935
|
-
|
|
2936
|
-
interface DirectPaymentMethodToken {
|
|
2937
|
-
readonly discriminator: 'direct_payment_method_token';
|
|
2938
|
-
readonly protocolVersion: string;
|
|
2939
|
-
readonly signature: string;
|
|
2940
|
-
readonly signedMessage: string;
|
|
2941
|
-
}
|
|
2942
|
-
|
|
2943
|
-
interface EncryptedMessage {
|
|
2944
|
-
readonly messageExpiration: string;
|
|
2945
|
-
readonly messageId: string;
|
|
2946
|
-
readonly paymentMethod: io.flow.google.pay.v0.models.PaymentMethod;
|
|
2947
|
-
readonly paymentMethodDetails: io.flow.google.pay.v0.models.PaymentMethodDetails;
|
|
2948
|
-
}
|
|
2949
|
-
|
|
2950
|
-
interface MerchantInfo {
|
|
2951
|
-
readonly merchantId: string;
|
|
2952
|
-
readonly merchantName?: string;
|
|
2953
|
-
readonly authJwt?: string;
|
|
2954
|
-
}
|
|
2955
|
-
|
|
2956
|
-
interface PaymentData {
|
|
2957
|
-
readonly apiVersion: number;
|
|
2958
|
-
readonly apiVersionMinor: number;
|
|
2959
|
-
readonly paymentMethodData: io.flow.google.pay.v0.models.PaymentMethodData;
|
|
2960
|
-
readonly email?: string;
|
|
2961
|
-
readonly shippingAddress?: io.flow.google.pay.v0.models.Address;
|
|
2962
|
-
}
|
|
2963
|
-
|
|
2964
|
-
interface PaymentDataRequest {
|
|
2965
|
-
readonly apiVersion: number;
|
|
2966
|
-
readonly apiVersionMinor: number;
|
|
2967
|
-
readonly merchantInfo: io.flow.google.pay.v0.models.MerchantInfo;
|
|
2968
|
-
readonly allowedPaymentMethods: io.flow.google.pay.v0.models.PaymentMethod[];
|
|
2969
|
-
readonly transactionInfo: io.flow.google.pay.v0.models.TransactionInfo;
|
|
2970
|
-
readonly emailRequired?: boolean;
|
|
2971
|
-
readonly shippingAddressRequired?: boolean;
|
|
2972
|
-
readonly shippingAddressParameters?: io.flow.google.pay.v0.models.ShippingAddressParameters;
|
|
2973
|
-
}
|
|
2974
|
-
|
|
2975
|
-
interface PaymentMethod {
|
|
2976
|
-
readonly type: io.flow.google.pay.v0.enums.PaymentMethodType;
|
|
2977
|
-
readonly parameters: io.flow.google.pay.v0.models.CardPaymentMethodParameters;
|
|
2978
|
-
readonly tokenizationSpecification: io.flow.google.pay.v0.models.PaymentMethodTokenizationSpecification;
|
|
2979
|
-
}
|
|
2980
|
-
|
|
2981
|
-
interface PaymentMethodData {
|
|
2982
|
-
readonly type: io.flow.google.pay.v0.enums.PaymentMethodType;
|
|
2983
|
-
readonly description: string;
|
|
2984
|
-
readonly info: io.flow.google.pay.v0.models.CardPaymentMethodDataInfo;
|
|
2985
|
-
readonly tokenizationData: io.flow.google.pay.v0.models.PaymentMethodTokenizationData;
|
|
2986
|
-
}
|
|
2987
|
-
|
|
2988
|
-
interface PaymentMethodDetails {
|
|
2989
|
-
readonly pan: string;
|
|
2990
|
-
readonly expirationMonth: number;
|
|
2991
|
-
readonly expirationYear: number;
|
|
2992
|
-
readonly authMethod: io.flow.google.pay.v0.enums.AuthMethod;
|
|
2993
|
-
readonly cryptogram?: string;
|
|
2994
|
-
readonly eciIndicator?: string;
|
|
2995
|
-
}
|
|
2996
|
-
|
|
2997
|
-
interface PaymentMethodTokenizationData {
|
|
2998
|
-
readonly type: string;
|
|
2999
|
-
readonly token?: string;
|
|
3000
|
-
}
|
|
3001
|
-
|
|
3002
|
-
interface PaymentMethodTokenizationSpecification {
|
|
3003
|
-
readonly type: io.flow.google.pay.v0.enums.TokenizationType;
|
|
3004
|
-
readonly parameters: any /*object*/;
|
|
3005
|
-
}
|
|
3006
|
-
|
|
3007
|
-
interface ShippingAddressParameters {
|
|
3008
|
-
readonly allowedCountryCodes?: string[];
|
|
3009
|
-
}
|
|
3010
|
-
|
|
3011
|
-
interface SignedMessage {
|
|
3012
|
-
readonly encryptedMessage: string;
|
|
3013
|
-
readonly ephemeralPublicKey: string;
|
|
3014
|
-
readonly tag: string;
|
|
3015
|
-
}
|
|
3016
|
-
|
|
3017
|
-
interface StripePaymentMethodToken {
|
|
3018
|
-
readonly discriminator: 'stripe_payment_method_token';
|
|
3019
|
-
readonly token: io.flow.stripe.v0.models.Token;
|
|
3020
|
-
}
|
|
3021
|
-
|
|
3022
|
-
interface TransactionInfo {
|
|
3023
|
-
readonly totalPriceStatus: io.flow.google.pay.v0.enums.TotalPriceStatus;
|
|
3024
|
-
readonly totalPrice?: string;
|
|
3025
|
-
readonly currencyCode?: string;
|
|
3026
|
-
}
|
|
3027
|
-
}
|
|
3028
|
-
|
|
3029
|
-
declare namespace io.flow.google.pay.v0.unions {
|
|
3030
|
-
type PaymentMethodToken =
|
|
3031
|
-
| io.flow.google.pay.v0.models.DirectPaymentMethodToken
|
|
3032
|
-
| io.flow.google.pay.v0.models.StripePaymentMethodToken;
|
|
3033
|
-
}
|
|
3034
|
-
|
|
3035
|
-
declare namespace io.flow.billing.csv.v0.models {
|
|
3036
|
-
interface AccountSummary {
|
|
3037
|
-
readonly id: string;
|
|
3038
|
-
readonly currency: string;
|
|
3039
|
-
}
|
|
3040
|
-
|
|
3041
|
-
interface BillingChannelCsvOrder {
|
|
3042
|
-
readonly number: string;
|
|
3043
|
-
readonly submitted_at: string;
|
|
3044
|
-
readonly local: io.flow.billing.csv.v0.models.BillingChannelCsvOrderDetail;
|
|
3045
|
-
readonly deliveries: io.flow.billing.csv.v0.models.BillingChannelCsvOrderDelivery[];
|
|
3046
|
-
}
|
|
3047
|
-
|
|
3048
|
-
interface BillingChannelCsvOrderDelivery {
|
|
3049
|
-
readonly carrier: io.flow.billing.csv.v0.models.BillingCsvCarrier;
|
|
3050
|
-
readonly service: io.flow.billing.csv.v0.models.BillingCsvService;
|
|
3051
|
-
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
3052
|
-
readonly ratecard_owner: io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
3053
|
-
readonly tier: io.flow.billing.csv.v0.models.BillingCsvTier;
|
|
3054
|
-
}
|
|
3055
|
-
|
|
3056
|
-
interface BillingChannelCsvOrderDetail {
|
|
3057
|
-
readonly currency: string;
|
|
3058
|
-
readonly freight: number;
|
|
3059
|
-
readonly total: number;
|
|
3060
|
-
readonly subtotal: number;
|
|
3061
|
-
readonly vat: number;
|
|
3062
|
-
readonly duty: number;
|
|
3063
|
-
readonly discount: number;
|
|
3064
|
-
readonly adjustment: number;
|
|
3065
|
-
readonly insurance: number;
|
|
3066
|
-
readonly shipping: number;
|
|
3067
|
-
}
|
|
3068
|
-
|
|
3069
|
-
interface BillingCsvCarrier {
|
|
3070
|
-
readonly id: string;
|
|
3071
|
-
}
|
|
3072
|
-
|
|
3073
|
-
interface BillingCsvCenter {
|
|
3074
|
-
readonly key: string;
|
|
3075
|
-
}
|
|
3076
|
-
|
|
3077
|
-
interface BillingCsvChannelBilledTransaction {
|
|
3078
|
-
readonly id: string;
|
|
3079
|
-
readonly type: string;
|
|
3080
|
-
readonly net: number;
|
|
3081
|
-
readonly description: string;
|
|
3082
|
-
readonly account: io.flow.billing.csv.v0.models.AccountSummary;
|
|
3083
|
-
readonly organization?: io.flow.common.v0.models.OrganizationReference;
|
|
3084
|
-
readonly order?: io.flow.billing.csv.v0.models.BillingCsvOrderSummary;
|
|
3085
|
-
}
|
|
3086
|
-
|
|
3087
|
-
interface BillingCsvChannelTransaction {
|
|
3088
|
-
readonly id: string;
|
|
3089
|
-
readonly account: io.flow.billing.csv.v0.models.AccountSummary;
|
|
3090
|
-
readonly type: string;
|
|
3091
|
-
readonly description?: string;
|
|
3092
|
-
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
3093
|
-
readonly order: io.flow.billing.csv.v0.models.BillingCsvOrderWithMorSummary;
|
|
3094
|
-
readonly processing_transaction: io.flow.billing.csv.v0.models.BillingCsvChannelTransactionProcessingTransaction;
|
|
3095
|
-
readonly spot_rate: io.flow.billing.csv.v0.models.BillingCsvExchangeRate;
|
|
3096
|
-
readonly processing_transaction_base_amount_in_channel_account_currency: number;
|
|
3097
|
-
readonly processing_transaction_total_fees_in_channel_account_currency: number;
|
|
3098
|
-
readonly processing_fee?: io.flow.billing.csv.v0.models.BillingCsvFee;
|
|
3099
|
-
readonly fraud_fee?: io.flow.billing.csv.v0.models.BillingCsvFee;
|
|
3100
|
-
readonly mor_fee?: io.flow.billing.csv.v0.models.BillingCsvFee;
|
|
3101
|
-
readonly fx_fee?: io.flow.billing.csv.v0.models.BillingCsvFee;
|
|
3102
|
-
readonly duty_guarantee_fee?: io.flow.billing.csv.v0.models.BillingCsvFee;
|
|
3103
|
-
readonly rate_lock_fee?: io.flow.billing.csv.v0.models.BillingCsvFee;
|
|
3104
|
-
readonly transfer_fee?: io.flow.billing.csv.v0.models.BillingCsvFee;
|
|
3105
|
-
readonly total_fees: number;
|
|
3106
|
-
readonly amount: number;
|
|
3107
|
-
}
|
|
3108
|
-
|
|
3109
|
-
interface BillingCsvChannelTransactionProcessingTransaction {
|
|
3110
|
-
readonly id: string;
|
|
3111
|
-
readonly account: io.flow.billing.csv.v0.models.AccountSummary;
|
|
3112
|
-
readonly local_currency: string;
|
|
3113
|
-
readonly base_amount: number;
|
|
3114
|
-
readonly total_fees: number;
|
|
3115
|
-
readonly payment_method: string;
|
|
3116
|
-
}
|
|
3117
|
-
|
|
3118
|
-
interface BillingCsvConsumerInvoice {
|
|
3119
|
-
readonly invoice: io.flow.billing.csv.v0.models.BillingCsvConsumerInvoiceSummary;
|
|
3120
|
-
readonly order: io.flow.billing.internal.v0.models.BillingOrderSummary;
|
|
3121
|
-
readonly lines: io.flow.billing.csv.v0.models.BillingCsvConsumerInvoiceLineDetail[];
|
|
3122
|
-
}
|
|
3123
|
-
|
|
3124
|
-
interface BillingCsvConsumerInvoiceLine {
|
|
3125
|
-
readonly invoice: io.flow.billing.csv.v0.models.BillingCsvConsumerInvoiceSummary;
|
|
3126
|
-
readonly order: io.flow.billing.internal.v0.models.BillingOrderSummary;
|
|
3127
|
-
readonly line: io.flow.billing.csv.v0.models.BillingCsvConsumerInvoiceLineDetail;
|
|
3128
|
-
}
|
|
3129
|
-
|
|
3130
|
-
interface BillingCsvConsumerInvoiceLineDetail {
|
|
3131
|
-
readonly discriminator: string;
|
|
3132
|
-
readonly item_number?: string;
|
|
3133
|
-
readonly quantity: number;
|
|
3134
|
-
readonly unit_price: io.flow.common.v0.models.Price;
|
|
3135
|
-
readonly unit_discount?: io.flow.common.v0.models.Price;
|
|
3136
|
-
readonly unit_tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
3137
|
-
readonly unit_duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
3138
|
-
}
|
|
3139
|
-
|
|
3140
|
-
interface BillingCsvConsumerInvoiceSummary {
|
|
3141
|
-
readonly id: string;
|
|
3142
|
-
readonly number: string;
|
|
3143
|
-
readonly date: string;
|
|
3144
|
-
readonly key: string;
|
|
3145
|
-
}
|
|
3146
|
-
|
|
3147
|
-
interface BillingCsvDelivery {
|
|
3148
|
-
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
3149
|
-
readonly carrier: io.flow.billing.csv.v0.models.BillingCsvCarrier;
|
|
3150
|
-
readonly center: io.flow.billing.csv.v0.models.BillingCsvCenter;
|
|
3151
|
-
readonly service: io.flow.billing.csv.v0.models.BillingCsvService;
|
|
3152
|
-
readonly tier: io.flow.billing.csv.v0.models.BillingCsvTier;
|
|
3153
|
-
readonly cost: io.flow.billing.csv.v0.models.BillingCsvDeliveryCostDetail;
|
|
3154
|
-
readonly ratecard_owner: io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
3155
|
-
}
|
|
3156
|
-
|
|
3157
|
-
interface BillingCsvDeliveryCostDetail {
|
|
3158
|
-
readonly ratecard_base_cost: number;
|
|
3159
|
-
readonly ratecard_ddp_fee: number;
|
|
3160
|
-
readonly ratecard_emergency_situation_surcharge: number;
|
|
3161
|
-
readonly ratecard_peak_surcharge: number;
|
|
3162
|
-
readonly ratecard_fuel_surcharge: number;
|
|
3163
|
-
readonly ratecard_oversized_shipment_fee: number;
|
|
3164
|
-
readonly ratecard_rural_shipment_fee: number;
|
|
3165
|
-
readonly center_commercial_invoice_fee: number;
|
|
3166
|
-
readonly center_inbound_carton_fee: number;
|
|
3167
|
-
readonly center_outbound_carton_fee: number;
|
|
3168
|
-
}
|
|
3169
|
-
|
|
3170
|
-
interface BillingCsvExchangeRate {
|
|
3171
|
-
readonly base_currency: string;
|
|
3172
|
-
readonly local_currency: string;
|
|
3173
|
-
readonly rate: number;
|
|
3174
|
-
}
|
|
3175
|
-
|
|
3176
|
-
interface BillingCsvFee {
|
|
3177
|
-
readonly amount: number;
|
|
3178
|
-
readonly description?: string;
|
|
3179
|
-
}
|
|
3180
|
-
|
|
3181
|
-
interface BillingCsvGenericTransaction {
|
|
3182
|
-
readonly id: string;
|
|
3183
|
-
readonly posted_at?: string;
|
|
3184
|
-
readonly type: io.flow.billing.internal.v0.enums.BillingTransactionType;
|
|
3185
|
-
readonly amount: number;
|
|
3186
|
-
readonly description: string;
|
|
3187
|
-
}
|
|
3188
|
-
|
|
3189
|
-
interface BillingCsvLabelTransaction {
|
|
3190
|
-
readonly id: string;
|
|
3191
|
-
readonly type: string;
|
|
3192
|
-
readonly gross: number;
|
|
3193
|
-
readonly net: number;
|
|
3194
|
-
readonly discounts: io.flow.billing.internal.v0.models.Discount[];
|
|
3195
|
-
readonly description?: string;
|
|
3196
|
-
readonly account: io.flow.billing.csv.v0.models.AccountSummary;
|
|
3197
|
-
readonly label: io.flow.billing.csv.v0.models.BillingCsvLabelTransactionBillableLabelSummary;
|
|
3198
|
-
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
3199
|
-
readonly order?: io.flow.billing.csv.v0.models.BillingCsvOrderWithMorSummary;
|
|
3200
|
-
}
|
|
3201
|
-
|
|
3202
|
-
interface BillingCsvLabelTransactionBillableLabelSummary {
|
|
3203
|
-
readonly id: string;
|
|
3204
|
-
readonly owner?: io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
3205
|
-
readonly carrier_id: string;
|
|
3206
|
-
readonly carrier_tracking_number: string;
|
|
3207
|
-
readonly cost: io.flow.billing.csv.v0.models.BillingCsvLabelTransactionBillableLabelSummaryCost;
|
|
3208
|
-
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
3209
|
-
readonly trigger_method?: io.flow.label.v0.enums.LabelTriggerMethod;
|
|
3210
|
-
readonly identifiers?: Record<string, string>;
|
|
3211
|
-
}
|
|
3212
|
-
|
|
3213
|
-
interface BillingCsvLabelTransactionBillableLabelSummaryCost {
|
|
3214
|
-
readonly amount: number;
|
|
3215
|
-
readonly currency: string;
|
|
3216
|
-
readonly source?: io.flow.label.v0.enums.CostEstimateSource;
|
|
3217
|
-
}
|
|
3218
|
-
|
|
3219
|
-
interface BillingCsvMerchantReference {
|
|
3220
|
-
readonly id: string;
|
|
3221
|
-
}
|
|
3222
|
-
|
|
3223
|
-
interface BillingCsvOrder {
|
|
3224
|
-
readonly number: string;
|
|
3225
|
-
readonly primary_identifier?: string;
|
|
3226
|
-
readonly submitted_at?: string;
|
|
3227
|
-
readonly timezone: string;
|
|
3228
|
-
readonly local: io.flow.billing.csv.v0.models.BillingCsvOrderDetail;
|
|
3229
|
-
readonly base: io.flow.billing.csv.v0.models.BillingCsvOrderDetail;
|
|
3230
|
-
readonly transaction_amount: number;
|
|
3231
|
-
readonly deliveries: io.flow.billing.csv.v0.models.BillingCsvDelivery[];
|
|
3232
|
-
readonly exchange_rate?: io.flow.billing.csv.v0.models.BillingCsvExchangeRate;
|
|
3233
|
-
}
|
|
3234
|
-
|
|
3235
|
-
interface BillingCsvOrderDestination {
|
|
3236
|
-
readonly city?: string;
|
|
3237
|
-
readonly province?: string;
|
|
3238
|
-
readonly postal?: string;
|
|
3239
|
-
readonly country?: string;
|
|
3240
|
-
}
|
|
3241
|
-
|
|
3242
|
-
interface BillingCsvOrderDetail {
|
|
3243
|
-
readonly currency: string;
|
|
3244
|
-
readonly adjustment: number;
|
|
3245
|
-
readonly subtotal: number;
|
|
3246
|
-
readonly vat: number;
|
|
3247
|
-
readonly duty: number;
|
|
3248
|
-
readonly shipping: number;
|
|
3249
|
-
readonly insurance: number;
|
|
3250
|
-
readonly discount: number;
|
|
3251
|
-
readonly total: number;
|
|
3252
|
-
readonly freight: number;
|
|
3253
|
-
}
|
|
3254
|
-
|
|
3255
|
-
interface BillingCsvOrderSummary {
|
|
3256
|
-
readonly number: string;
|
|
3257
|
-
readonly identifiers: Record<string, string>;
|
|
3258
|
-
}
|
|
3259
|
-
|
|
3260
|
-
interface BillingCsvOrderTransaction {
|
|
3261
|
-
readonly id: string;
|
|
3262
|
-
readonly type: string;
|
|
3263
|
-
readonly amount: number;
|
|
3264
|
-
readonly description?: string;
|
|
3265
|
-
readonly account: io.flow.billing.csv.v0.models.AccountSummary;
|
|
3266
|
-
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
3267
|
-
readonly order: io.flow.billing.csv.v0.models.BillingCsvOrderWithMorSummary;
|
|
3268
|
-
}
|
|
3269
|
-
|
|
3270
|
-
interface BillingCsvOrderWithMorSummary {
|
|
3271
|
-
readonly number: string;
|
|
3272
|
-
readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
|
|
3273
|
-
readonly identifiers: Record<string, string>;
|
|
3274
|
-
}
|
|
3275
|
-
|
|
3276
|
-
interface BillingCsvProcessingTransaction {
|
|
3277
|
-
readonly id: string;
|
|
3278
|
-
readonly reference: string;
|
|
3279
|
-
readonly primary_identifier?: string;
|
|
3280
|
-
readonly parent_id?: string;
|
|
3281
|
-
readonly created_at?: string;
|
|
3282
|
-
readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
|
|
3283
|
-
readonly posted_at?: string;
|
|
3284
|
-
readonly type: io.flow.billing.internal.v0.enums.BillingTransactionType;
|
|
3285
|
-
readonly timezone: string;
|
|
3286
|
-
readonly order_number?: string;
|
|
3287
|
-
readonly order_primary_identifier?: string;
|
|
3288
|
-
readonly order_identifiers?: Record<string, string>;
|
|
3289
|
-
readonly order_submitted_at?: string;
|
|
3290
|
-
readonly order?: io.flow.billing.internal.v0.models.BillingOrderSummary;
|
|
3291
|
-
readonly payment_method: string;
|
|
3292
|
-
readonly local_amount: number;
|
|
3293
|
-
readonly local_currency: string;
|
|
3294
|
-
readonly base_amount: number;
|
|
3295
|
-
readonly base_currency: string;
|
|
3296
|
-
readonly processing_fee?: number;
|
|
3297
|
-
readonly processing_fee_description?: string;
|
|
3298
|
-
readonly rate_lock_fee: number;
|
|
3299
|
-
readonly rate_lock_fee_description?: string;
|
|
3300
|
-
readonly vat_withholding: number;
|
|
3301
|
-
readonly duty_withholding: number;
|
|
3302
|
-
readonly freight_withholding?: number;
|
|
3303
|
-
readonly insurance_withholding: number;
|
|
3304
|
-
readonly revenue_share?: number;
|
|
3305
|
-
readonly revenue_share_currency?: string;
|
|
3306
|
-
readonly amount: number;
|
|
3307
|
-
readonly order_detail?: io.flow.billing.csv.v0.models.BillingCsvProcessingTransactionOrderDetail;
|
|
3308
|
-
readonly mor_fee?: number;
|
|
3309
|
-
readonly mor_fee_description?: string;
|
|
3310
|
-
readonly fx_fee?: number;
|
|
3311
|
-
readonly fx_fee_description?: string;
|
|
3312
|
-
readonly duty_guarantee_fee?: number;
|
|
3313
|
-
readonly duty_guarantee_fee_description?: string;
|
|
3314
|
-
readonly negative_balance_fee?: number;
|
|
3315
|
-
readonly negative_balance_fee_description?: string;
|
|
3316
|
-
}
|
|
3317
|
-
|
|
3318
|
-
interface BillingCsvProcessingTransactionDelivery {
|
|
3319
|
-
readonly delivery_option_id: string;
|
|
3320
|
-
readonly ratecard_owner: io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
3321
|
-
readonly service: io.flow.billing.csv.v0.models.BillingCsvService;
|
|
3322
|
-
readonly center: io.flow.billing.csv.v0.models.BillingCsvCenter;
|
|
3323
|
-
readonly ship_from_country: string;
|
|
3324
|
-
readonly delivered_duty: string;
|
|
3325
|
-
}
|
|
3326
|
-
|
|
3327
|
-
interface BillingCsvProcessingTransactionOrderDetail {
|
|
3328
|
-
readonly total: number;
|
|
3329
|
-
readonly subtotal: number;
|
|
3330
|
-
readonly discount: number;
|
|
3331
|
-
readonly vat: number;
|
|
3332
|
-
readonly duty: number;
|
|
3333
|
-
readonly shipping: number;
|
|
3334
|
-
readonly vat_subsidy?: number;
|
|
3335
|
-
readonly duty_subsidy?: number;
|
|
3336
|
-
readonly estimated_freight: number;
|
|
3337
|
-
readonly selected_deliveries: io.flow.billing.csv.v0.models.BillingCsvProcessingTransactionDelivery[];
|
|
3338
|
-
}
|
|
3339
|
-
|
|
3340
|
-
interface BillingCsvService {
|
|
3341
|
-
readonly id: string;
|
|
3342
|
-
}
|
|
3343
|
-
|
|
3344
|
-
interface BillingCsvTier {
|
|
3345
|
-
readonly name: string;
|
|
3346
|
-
}
|
|
3347
|
-
|
|
3348
|
-
interface BillingCsvTransaction {
|
|
3349
|
-
readonly id: string;
|
|
3350
|
-
readonly type: io.flow.billing.internal.v0.enums.BillingTransactionType;
|
|
3351
|
-
readonly account: io.flow.billing.csv.v0.models.BillingCsvTransactionAccount;
|
|
3352
|
-
readonly metadata?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadata;
|
|
3353
|
-
readonly order?: io.flow.billing.csv.v0.models.BillingCsvTransactionOrderSummary;
|
|
3354
|
-
readonly currency: string;
|
|
3355
|
-
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
3356
|
-
readonly parent?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
3357
|
-
readonly gross: number;
|
|
3358
|
-
readonly fees: io.flow.billing.csv.v0.models.BillingCsvTransactionFees;
|
|
3359
|
-
readonly withholdings: io.flow.billing.csv.v0.models.BillingCsvTransactionWithholdings;
|
|
3360
|
-
readonly discount: io.flow.billing.csv.v0.models.BillingCsvTransactionDiscount;
|
|
3361
|
-
readonly net: number;
|
|
3362
|
-
readonly identifiers: io.flow.billing.csv.v0.models.BillingCsvTransactionIdentifiers;
|
|
3363
|
-
readonly created_at: string;
|
|
3364
|
-
readonly updated_at: string;
|
|
3365
|
-
}
|
|
3366
|
-
|
|
3367
|
-
interface BillingCsvTransactionAccount {
|
|
3368
|
-
readonly id: string;
|
|
3369
|
-
readonly merchant?: io.flow.billing.csv.v0.models.BillingCsvMerchantReference;
|
|
3370
|
-
readonly environment: io.flow.common.v0.enums.Environment;
|
|
3371
|
-
readonly source: io.flow.billing.csv.v0.models.BillingCsvTransactionAccountSourceSummary;
|
|
3372
|
-
}
|
|
3373
|
-
|
|
3374
|
-
interface BillingCsvTransactionAccountSourceSummary {
|
|
3375
|
-
readonly id: string;
|
|
3376
|
-
readonly type: io.flow.billing.internal.v0.enums.AccountType;
|
|
3377
|
-
}
|
|
3378
|
-
|
|
3379
|
-
interface BillingCsvTransactionDiscount {
|
|
3380
|
-
readonly amount: number;
|
|
3381
|
-
readonly description?: string;
|
|
3382
|
-
}
|
|
3383
|
-
|
|
3384
|
-
interface BillingCsvTransactionFees {
|
|
3385
|
-
readonly duty_guarantee: number;
|
|
3386
|
-
readonly mor: number;
|
|
3387
|
-
readonly fraud: number;
|
|
3388
|
-
readonly fx: number;
|
|
3389
|
-
readonly processing: number;
|
|
3390
|
-
readonly rate_lock: number;
|
|
3391
|
-
readonly transfer: number;
|
|
3392
|
-
readonly negative_balance: number;
|
|
3393
|
-
}
|
|
3394
|
-
|
|
3395
|
-
interface BillingCsvTransactionIdentifiers {
|
|
3396
|
-
readonly reference_id?: string;
|
|
3397
|
-
}
|
|
3398
|
-
|
|
3399
|
-
interface BillingCsvTransactionMetadata {
|
|
3400
|
-
readonly channel?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataChannel;
|
|
3401
|
-
readonly shipping_label?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataShippingLabel;
|
|
3402
|
-
readonly shipping_label_revenue_share?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataShippingLabelRevenueShare;
|
|
3403
|
-
readonly trueup?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataTrueup;
|
|
3404
|
-
readonly carrier_charge?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataCarrierCharge;
|
|
3405
|
-
readonly manual?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataManual;
|
|
3406
|
-
readonly failed_payout?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataFailedPayout;
|
|
3407
|
-
}
|
|
3408
|
-
|
|
3409
|
-
interface BillingCsvTransactionMetadataCarrierCharge {
|
|
3410
|
-
readonly reason: io.flow.trueup.v0.enums.CarrierChargeReason;
|
|
3411
|
-
readonly label_created_at: string;
|
|
3412
|
-
readonly carrier_id: string;
|
|
3413
|
-
readonly carrier_tracking_number: string;
|
|
3414
|
-
readonly revenue_share_percentage: number;
|
|
3415
|
-
readonly outbound_transaction_id?: string;
|
|
3416
|
-
}
|
|
3417
|
-
|
|
3418
|
-
interface BillingCsvTransactionMetadataChannel {
|
|
3419
|
-
readonly method: string;
|
|
3420
|
-
readonly card?: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata;
|
|
3421
|
-
}
|
|
3422
|
-
|
|
3423
|
-
interface BillingCsvTransactionMetadataFailedPayout {
|
|
3424
|
-
readonly failed_payment: io.flow.billing.v0.models.TransactionMetadataFailedPayoutReference;
|
|
3425
|
-
}
|
|
3426
|
-
|
|
3427
|
-
interface BillingCsvTransactionMetadataManual {
|
|
3428
|
-
readonly description: string;
|
|
3429
|
-
readonly original?: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
3430
|
-
readonly category?: io.flow.billing.internal.v0.enums.ManualTransactionCategory;
|
|
3431
|
-
readonly url?: string;
|
|
3432
|
-
}
|
|
3433
|
-
|
|
3434
|
-
interface BillingCsvTransactionMetadataShippingLabel {
|
|
3435
|
-
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
3436
|
-
}
|
|
3437
|
-
|
|
3438
|
-
interface BillingCsvTransactionMetadataShippingLabelRevenueShare {
|
|
3439
|
-
readonly label_id: string;
|
|
3440
|
-
readonly base_amount?: number;
|
|
3441
|
-
readonly percentage?: number;
|
|
3442
|
-
}
|
|
3443
|
-
|
|
3444
|
-
interface BillingCsvTransactionMetadataTrueup {
|
|
3445
|
-
readonly original: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
3446
|
-
readonly label_transaction_id: string;
|
|
3447
|
-
readonly label_invoice_request_id: string;
|
|
3448
|
-
readonly carrier_charge_id: string;
|
|
3449
|
-
}
|
|
3450
|
-
|
|
3451
|
-
interface BillingCsvTransactionOrderSummary {
|
|
3452
|
-
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
3453
|
-
readonly number: string;
|
|
3454
|
-
readonly identifiers: io.flow.billing.csv.v0.models.BillingCsvTransactionOrderSummaryIdentifiers;
|
|
3455
|
-
}
|
|
3456
|
-
|
|
3457
|
-
interface BillingCsvTransactionOrderSummaryIdentifiers {
|
|
3458
|
-
readonly shopify_order_id?: string;
|
|
3459
|
-
}
|
|
3460
|
-
|
|
3461
|
-
interface BillingCsvTransactionWithholdings {
|
|
3462
|
-
readonly tax: number;
|
|
3463
|
-
readonly duty: number;
|
|
3464
|
-
readonly freight: number;
|
|
3465
|
-
readonly insurance: number;
|
|
3466
|
-
}
|
|
3467
|
-
|
|
3468
|
-
interface FlowFinancePaymentSummary {
|
|
3469
|
-
readonly id: string;
|
|
3470
|
-
readonly status: io.flow.billing.internal.v0.enums.BankPaymentStatusCode;
|
|
3471
|
-
readonly amount: number;
|
|
3472
|
-
readonly bank_account_last4?: string;
|
|
3473
|
-
}
|
|
3474
|
-
|
|
3475
|
-
interface FlowFinanceStatementSummary {
|
|
3476
|
-
readonly account_id: string;
|
|
3477
|
-
readonly payment?: io.flow.billing.csv.v0.models.FlowFinancePaymentSummary;
|
|
3478
|
-
readonly statement_id: string;
|
|
3479
|
-
readonly settlement_currency: string;
|
|
3480
|
-
readonly starting_balance: number;
|
|
3481
|
-
readonly balance_forward: number;
|
|
3482
|
-
readonly transactions_posted: number;
|
|
3483
|
-
readonly platform_fee: number;
|
|
3484
|
-
readonly account_balance: number;
|
|
3485
|
-
readonly dispute_balance: number;
|
|
3486
|
-
readonly one_time_adjustments: Record<string, number>;
|
|
3487
|
-
}
|
|
3488
|
-
}
|
|
3489
|
-
|
|
3490
3067
|
declare namespace io.flow.field.validation.v0.models {
|
|
3491
3068
|
interface FieldValidationMax {
|
|
3492
3069
|
readonly discriminator: 'max';
|
|
@@ -3526,6 +3103,41 @@ declare namespace io.flow.field.validation.v0.unions {
|
|
|
3526
3103
|
declare namespace io.flow.stripe.v0.enums {
|
|
3527
3104
|
type AccountType = 'platform' | 'custom' | 'standard' | 'express';
|
|
3528
3105
|
type ApplePayType = 'apple_pay' | 'apple_pay_later';
|
|
3106
|
+
type BankIdeal =
|
|
3107
|
+
| 'abn_amro'
|
|
3108
|
+
| 'asn_bank'
|
|
3109
|
+
| 'bunq'
|
|
3110
|
+
| 'handelsbanken'
|
|
3111
|
+
| 'ing'
|
|
3112
|
+
| 'knab'
|
|
3113
|
+
| 'moneyou'
|
|
3114
|
+
| 'n26'
|
|
3115
|
+
| 'nn'
|
|
3116
|
+
| 'rabobank'
|
|
3117
|
+
| 'regiobank'
|
|
3118
|
+
| 'revolut'
|
|
3119
|
+
| 'sns_bank'
|
|
3120
|
+
| 'triodos_bank'
|
|
3121
|
+
| 'van_lanschot'
|
|
3122
|
+
| 'yoursafe';
|
|
3123
|
+
type BicIdeal =
|
|
3124
|
+
| 'ABNANL2A'
|
|
3125
|
+
| 'ASNBNL21'
|
|
3126
|
+
| 'BITSNL2A'
|
|
3127
|
+
| 'BUNQNL2A'
|
|
3128
|
+
| 'FVLBNL22'
|
|
3129
|
+
| 'HANDNL2A'
|
|
3130
|
+
| 'INGBNL2A'
|
|
3131
|
+
| 'KNABNL2H'
|
|
3132
|
+
| 'MOYONL21'
|
|
3133
|
+
| 'NNBANL2G'
|
|
3134
|
+
| 'NTSBDEB1'
|
|
3135
|
+
| 'RABONL2U'
|
|
3136
|
+
| 'RBRBNL21'
|
|
3137
|
+
| 'REVOIE23'
|
|
3138
|
+
| 'REVOLT21'
|
|
3139
|
+
| 'SNSBNL2A'
|
|
3140
|
+
| 'TRIONL2U';
|
|
3529
3141
|
type CancellationReason =
|
|
3530
3142
|
| 'abandoned'
|
|
3531
3143
|
| 'automatic'
|
|
@@ -3605,6 +3217,37 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
3605
3217
|
| 'previously_declined_do_not_retry'
|
|
3606
3218
|
| 'highest_risk_level'
|
|
3607
3219
|
| 'requested_block_on_incorrect_cvc';
|
|
3220
|
+
type DisputeEventType =
|
|
3221
|
+
| 'charge.dispute.closed'
|
|
3222
|
+
| 'charge.dispute.created'
|
|
3223
|
+
| 'charge.dispute.funds_reinstated'
|
|
3224
|
+
| 'charge.dispute.funds_withdrawn'
|
|
3225
|
+
| 'charge.dispute.updated';
|
|
3226
|
+
type DisputePaymentMethodDetailsCardCaseType = 'chargeback' | 'inquiry';
|
|
3227
|
+
type DisputePaymentMethodDetailsType = 'card' | 'klarna' | 'paypal';
|
|
3228
|
+
type DisputeReason =
|
|
3229
|
+
| 'bank_cannot_process'
|
|
3230
|
+
| 'check_returned'
|
|
3231
|
+
| 'credit_not_processed'
|
|
3232
|
+
| 'customer_initiated'
|
|
3233
|
+
| 'debit_not_authorized'
|
|
3234
|
+
| 'duplicate'
|
|
3235
|
+
| 'fraudulent'
|
|
3236
|
+
| 'general'
|
|
3237
|
+
| 'incorrect_account_details'
|
|
3238
|
+
| 'insufficient_funds'
|
|
3239
|
+
| 'product_not_received'
|
|
3240
|
+
| 'product_unacceptable'
|
|
3241
|
+
| 'subscription_canceled'
|
|
3242
|
+
| 'unrecognized';
|
|
3243
|
+
type DisputeStatus =
|
|
3244
|
+
| 'warning_needs_response'
|
|
3245
|
+
| 'warning_under_review'
|
|
3246
|
+
| 'warning_closed'
|
|
3247
|
+
| 'needs_response'
|
|
3248
|
+
| 'under_review'
|
|
3249
|
+
| 'won'
|
|
3250
|
+
| 'lost';
|
|
3608
3251
|
type ErrorCode =
|
|
3609
3252
|
| 'invalid_number'
|
|
3610
3253
|
| 'invalid_expiry_month'
|
|
@@ -3695,6 +3338,11 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
3695
3338
|
| 'charge.succeeded'
|
|
3696
3339
|
| 'charge.updated'
|
|
3697
3340
|
| 'charge.refund.updated'
|
|
3341
|
+
| 'charge.dispute.closed'
|
|
3342
|
+
| 'charge.dispute.created'
|
|
3343
|
+
| 'charge.dispute.funds_reinstated'
|
|
3344
|
+
| 'charge.dispute.funds_withdrawn'
|
|
3345
|
+
| 'charge.dispute.updated'
|
|
3698
3346
|
| 'payment_intent.created'
|
|
3699
3347
|
| 'payment_intent.amount_capturable_updated'
|
|
3700
3348
|
| 'payment_intent.payment_failed'
|
|
@@ -3734,7 +3382,12 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
3734
3382
|
| 'pay_now'
|
|
3735
3383
|
| 'pay_with_financing'
|
|
3736
3384
|
| 'pay_in_installments';
|
|
3737
|
-
type PaymentMethodType =
|
|
3385
|
+
type PaymentMethodType =
|
|
3386
|
+
| 'card'
|
|
3387
|
+
| 'card_present'
|
|
3388
|
+
| 'ideal'
|
|
3389
|
+
| 'klarna'
|
|
3390
|
+
| 'bancontact';
|
|
3738
3391
|
type PaymentOutcomeType =
|
|
3739
3392
|
| 'authorized'
|
|
3740
3393
|
| 'manual_review'
|
|
@@ -3742,6 +3395,7 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
3742
3395
|
| 'blocked'
|
|
3743
3396
|
| 'invalid';
|
|
3744
3397
|
type PaymentStatus = 'succeeded' | 'pending' | 'failed';
|
|
3398
|
+
type PreferredLanguageBancontact = 'de' | 'en' | 'fr' | 'nl';
|
|
3745
3399
|
type PreferredLocaleKlarna =
|
|
3746
3400
|
| 'de-AT'
|
|
3747
3401
|
| 'en-AT'
|
|
@@ -4069,6 +3723,54 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
4069
3723
|
readonly description?: string;
|
|
4070
3724
|
}
|
|
4071
3725
|
|
|
3726
|
+
interface Dispute {
|
|
3727
|
+
readonly id: string;
|
|
3728
|
+
readonly amount: number;
|
|
3729
|
+
readonly charge: string;
|
|
3730
|
+
readonly currency: string;
|
|
3731
|
+
readonly evidence: any /*object*/;
|
|
3732
|
+
readonly metadata: Record<string, string>;
|
|
3733
|
+
readonly payment_intent: string;
|
|
3734
|
+
readonly reason: io.flow.stripe.v0.enums.DisputeReason;
|
|
3735
|
+
readonly status: io.flow.stripe.v0.enums.DisputeStatus;
|
|
3736
|
+
readonly object: string;
|
|
3737
|
+
readonly balance_transactions: any /*object*/[];
|
|
3738
|
+
readonly created: number;
|
|
3739
|
+
readonly evidence_details: io.flow.stripe.v0.models.DisputeEvidenceDetails;
|
|
3740
|
+
readonly is_charge_refundable: boolean;
|
|
3741
|
+
readonly livemode: boolean;
|
|
3742
|
+
readonly payment_method_details?: io.flow.stripe.v0.models.DisputePaymentMethodDetails;
|
|
3743
|
+
}
|
|
3744
|
+
|
|
3745
|
+
interface DisputeEvidenceDetails {
|
|
3746
|
+
readonly due_by?: number;
|
|
3747
|
+
readonly has_evidence: boolean;
|
|
3748
|
+
readonly past_due: boolean;
|
|
3749
|
+
readonly submission_count: number;
|
|
3750
|
+
}
|
|
3751
|
+
|
|
3752
|
+
interface DisputePaymentMethodDetails {
|
|
3753
|
+
readonly card?: io.flow.stripe.v0.models.DisputePaymentMethodDetailsCard;
|
|
3754
|
+
readonly klarna?: io.flow.stripe.v0.models.DisputePaymentMethodDetailsKlarna;
|
|
3755
|
+
readonly paypal?: io.flow.stripe.v0.models.DisputePaymentMethodDetailsPaypal;
|
|
3756
|
+
readonly type: io.flow.stripe.v0.enums.DisputePaymentMethodDetailsType;
|
|
3757
|
+
}
|
|
3758
|
+
|
|
3759
|
+
interface DisputePaymentMethodDetailsCard {
|
|
3760
|
+
readonly brand: string;
|
|
3761
|
+
readonly case_type: io.flow.stripe.v0.enums.DisputePaymentMethodDetailsCardCaseType;
|
|
3762
|
+
readonly network_reason_code?: string;
|
|
3763
|
+
}
|
|
3764
|
+
|
|
3765
|
+
interface DisputePaymentMethodDetailsKlarna {
|
|
3766
|
+
readonly reason_code?: string;
|
|
3767
|
+
}
|
|
3768
|
+
|
|
3769
|
+
interface DisputePaymentMethodDetailsPaypal {
|
|
3770
|
+
readonly case_id?: string;
|
|
3771
|
+
readonly reason_code?: string;
|
|
3772
|
+
}
|
|
3773
|
+
|
|
4072
3774
|
interface Error {
|
|
4073
3775
|
readonly error: io.flow.stripe.v0.models.StripeError;
|
|
4074
3776
|
}
|
|
@@ -4325,8 +4027,10 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
4325
4027
|
readonly id: string;
|
|
4326
4028
|
readonly object: string;
|
|
4327
4029
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
4030
|
+
readonly bancontact?: any /*object*/;
|
|
4328
4031
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodCardDetails;
|
|
4329
4032
|
readonly card_present?: any /*object*/;
|
|
4033
|
+
readonly ideal?: any /*object*/;
|
|
4330
4034
|
readonly klarna?: any /*object*/;
|
|
4331
4035
|
readonly created: number;
|
|
4332
4036
|
readonly customer?: string;
|
|
@@ -4361,6 +4065,12 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
4361
4065
|
readonly cvc?: string;
|
|
4362
4066
|
}
|
|
4363
4067
|
|
|
4068
|
+
interface PaymentMethodDataBancontact {
|
|
4069
|
+
readonly type: 'bancontact';
|
|
4070
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
4071
|
+
readonly metadata?: any /*object*/;
|
|
4072
|
+
}
|
|
4073
|
+
|
|
4364
4074
|
interface PaymentMethodDataCard {
|
|
4365
4075
|
readonly type: 'card';
|
|
4366
4076
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
@@ -4368,6 +4078,13 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
4368
4078
|
readonly card: io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
4369
4079
|
}
|
|
4370
4080
|
|
|
4081
|
+
interface PaymentMethodDataIdeal {
|
|
4082
|
+
readonly type: 'ideal';
|
|
4083
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
4084
|
+
readonly metadata?: any /*object*/;
|
|
4085
|
+
readonly ideal: io.flow.stripe.v0.models.PaymentMethodIdealForm;
|
|
4086
|
+
}
|
|
4087
|
+
|
|
4371
4088
|
interface PaymentMethodDataKlarna {
|
|
4372
4089
|
readonly type: 'klarna';
|
|
4373
4090
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
@@ -4375,6 +4092,22 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
4375
4092
|
readonly klarna: io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
4376
4093
|
}
|
|
4377
4094
|
|
|
4095
|
+
interface PaymentMethodDetailsBancontact {
|
|
4096
|
+
readonly type: 'bancontact';
|
|
4097
|
+
readonly bancontact: io.flow.stripe.v0.models.PaymentMethodDetailsBancontactInformation;
|
|
4098
|
+
}
|
|
4099
|
+
|
|
4100
|
+
interface PaymentMethodDetailsBancontactInformation {
|
|
4101
|
+
readonly bank_code?: string;
|
|
4102
|
+
readonly bank_name?: string;
|
|
4103
|
+
readonly bic?: string;
|
|
4104
|
+
readonly generated_sepa_debit?: string;
|
|
4105
|
+
readonly generated_sepa_debit_mandate?: string;
|
|
4106
|
+
readonly iban_last4?: string;
|
|
4107
|
+
readonly preferred_language?: io.flow.stripe.v0.enums.PreferredLanguageBancontact;
|
|
4108
|
+
readonly verified_name?: string;
|
|
4109
|
+
}
|
|
4110
|
+
|
|
4378
4111
|
interface PaymentMethodDetailsCard {
|
|
4379
4112
|
readonly type: 'card';
|
|
4380
4113
|
readonly card: io.flow.stripe.v0.models.PaymentMethodDetailsCardInformation;
|
|
@@ -4406,6 +4139,20 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
4406
4139
|
readonly overcapture?: io.flow.stripe.v0.models.Overcapture;
|
|
4407
4140
|
}
|
|
4408
4141
|
|
|
4142
|
+
interface PaymentMethodDetailsIdeal {
|
|
4143
|
+
readonly type: 'ideal';
|
|
4144
|
+
readonly ideal: io.flow.stripe.v0.models.PaymentMethodDetailsIdealInformation;
|
|
4145
|
+
}
|
|
4146
|
+
|
|
4147
|
+
interface PaymentMethodDetailsIdealInformation {
|
|
4148
|
+
readonly bank?: io.flow.stripe.v0.enums.BankIdeal;
|
|
4149
|
+
readonly bic?: io.flow.stripe.v0.enums.BicIdeal;
|
|
4150
|
+
readonly generated_sepa_debit?: string;
|
|
4151
|
+
readonly generated_sepa_debit_mandate?: string;
|
|
4152
|
+
readonly iban_last4?: string;
|
|
4153
|
+
readonly verified_name?: string;
|
|
4154
|
+
}
|
|
4155
|
+
|
|
4409
4156
|
interface PaymentMethodDetailsKlarna {
|
|
4410
4157
|
readonly type: 'klarna';
|
|
4411
4158
|
readonly klarna: io.flow.stripe.v0.models.PaymentMethodDetailsKlarnaInformation;
|
|
@@ -4416,6 +4163,13 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
4416
4163
|
readonly preferred_locale?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
4417
4164
|
}
|
|
4418
4165
|
|
|
4166
|
+
interface PaymentMethodFormBancontact {
|
|
4167
|
+
readonly type: 'bancontact';
|
|
4168
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
4169
|
+
readonly metadata?: any /*object*/;
|
|
4170
|
+
readonly bancontact: any /*object*/;
|
|
4171
|
+
}
|
|
4172
|
+
|
|
4419
4173
|
interface PaymentMethodFormCard {
|
|
4420
4174
|
readonly type: 'card';
|
|
4421
4175
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
@@ -4423,6 +4177,13 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
4423
4177
|
readonly card: io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
4424
4178
|
}
|
|
4425
4179
|
|
|
4180
|
+
interface PaymentMethodFormIdeal {
|
|
4181
|
+
readonly type: 'ideal';
|
|
4182
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
4183
|
+
readonly metadata?: any /*object*/;
|
|
4184
|
+
readonly ideal: io.flow.stripe.v0.models.PaymentMethodIdealForm;
|
|
4185
|
+
}
|
|
4186
|
+
|
|
4426
4187
|
interface PaymentMethodFormKlarna {
|
|
4427
4188
|
readonly type: 'klarna';
|
|
4428
4189
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
@@ -4430,13 +4191,27 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
4430
4191
|
readonly klarna: io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
4431
4192
|
}
|
|
4432
4193
|
|
|
4194
|
+
interface PaymentMethodIdealForm {
|
|
4195
|
+
readonly bank?: string;
|
|
4196
|
+
}
|
|
4197
|
+
|
|
4433
4198
|
interface PaymentMethodKlarnaForm {
|
|
4434
4199
|
readonly dob?: io.flow.stripe.v0.models.KlarnaDobForm;
|
|
4435
4200
|
}
|
|
4436
4201
|
|
|
4437
4202
|
interface PaymentMethodOptions {
|
|
4438
4203
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodOptionsCard;
|
|
4204
|
+
readonly ideal?: io.flow.stripe.v0.models.PaymentMethodOptionsIdeal;
|
|
4439
4205
|
readonly klarna?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarna;
|
|
4206
|
+
readonly bancontact?: io.flow.stripe.v0.models.PaymentMethodOptionsBancontact;
|
|
4207
|
+
}
|
|
4208
|
+
|
|
4209
|
+
interface PaymentMethodOptionsBancontact {
|
|
4210
|
+
readonly preferred_language: io.flow.stripe.v0.enums.PreferredLanguageBancontact;
|
|
4211
|
+
}
|
|
4212
|
+
|
|
4213
|
+
interface PaymentMethodOptionsBancontactForm {
|
|
4214
|
+
readonly preferred_language: io.flow.stripe.v0.enums.PreferredLanguageBancontact;
|
|
4440
4215
|
}
|
|
4441
4216
|
|
|
4442
4217
|
interface PaymentMethodOptionsCard {
|
|
@@ -4456,7 +4231,17 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
4456
4231
|
|
|
4457
4232
|
interface PaymentMethodOptionsForm {
|
|
4458
4233
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodOptionsCardForm;
|
|
4234
|
+
readonly ideal?: io.flow.stripe.v0.models.PaymentMethodOptionsIdealForm;
|
|
4459
4235
|
readonly klarna?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarnaForm;
|
|
4236
|
+
readonly bancontact?: io.flow.stripe.v0.models.PaymentMethodOptionsBancontactForm;
|
|
4237
|
+
}
|
|
4238
|
+
|
|
4239
|
+
interface PaymentMethodOptionsIdeal {
|
|
4240
|
+
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
4241
|
+
}
|
|
4242
|
+
|
|
4243
|
+
interface PaymentMethodOptionsIdealForm {
|
|
4244
|
+
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
4460
4245
|
}
|
|
4461
4246
|
|
|
4462
4247
|
interface PaymentMethodOptionsKlarna {
|
|
@@ -4671,6 +4456,24 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
4671
4456
|
readonly directory_server_encryption?: any /*object*/;
|
|
4672
4457
|
}
|
|
4673
4458
|
|
|
4459
|
+
interface StripeDisputeEvent {
|
|
4460
|
+
readonly id: string;
|
|
4461
|
+
readonly api_version?: string;
|
|
4462
|
+
readonly data: io.flow.stripe.v0.models.StripeDisputeEventData;
|
|
4463
|
+
readonly request?: any /*object*/;
|
|
4464
|
+
readonly type: io.flow.stripe.v0.enums.DisputeEventType;
|
|
4465
|
+
readonly object: string;
|
|
4466
|
+
readonly account?: string;
|
|
4467
|
+
readonly created: number;
|
|
4468
|
+
readonly livemode: boolean;
|
|
4469
|
+
readonly pending_webhooks: number;
|
|
4470
|
+
}
|
|
4471
|
+
|
|
4472
|
+
interface StripeDisputeEventData {
|
|
4473
|
+
readonly object: io.flow.stripe.v0.models.Dispute;
|
|
4474
|
+
readonly previous_attributes?: any /*object*/;
|
|
4475
|
+
}
|
|
4476
|
+
|
|
4674
4477
|
interface StripeError {
|
|
4675
4478
|
readonly type: io.flow.stripe.v0.enums.ErrorType;
|
|
4676
4479
|
readonly charge?: string;
|
|
@@ -4773,13 +4576,19 @@ declare namespace io.flow.stripe.v0.unions {
|
|
|
4773
4576
|
| io.flow.stripe.v0.models.VisaCheckout;
|
|
4774
4577
|
type PaymentMethodData =
|
|
4775
4578
|
| io.flow.stripe.v0.models.PaymentMethodDataCard
|
|
4776
|
-
| io.flow.stripe.v0.models.
|
|
4579
|
+
| io.flow.stripe.v0.models.PaymentMethodDataIdeal
|
|
4580
|
+
| io.flow.stripe.v0.models.PaymentMethodDataKlarna
|
|
4581
|
+
| io.flow.stripe.v0.models.PaymentMethodDataBancontact;
|
|
4777
4582
|
type PaymentMethodDetails =
|
|
4778
4583
|
| io.flow.stripe.v0.models.PaymentMethodDetailsCard
|
|
4779
|
-
| io.flow.stripe.v0.models.
|
|
4584
|
+
| io.flow.stripe.v0.models.PaymentMethodDetailsIdeal
|
|
4585
|
+
| io.flow.stripe.v0.models.PaymentMethodDetailsKlarna
|
|
4586
|
+
| io.flow.stripe.v0.models.PaymentMethodDetailsBancontact;
|
|
4780
4587
|
type PaymentMethodForm =
|
|
4781
4588
|
| io.flow.stripe.v0.models.PaymentMethodFormCard
|
|
4782
|
-
| io.flow.stripe.v0.models.
|
|
4589
|
+
| io.flow.stripe.v0.models.PaymentMethodFormIdeal
|
|
4590
|
+
| io.flow.stripe.v0.models.PaymentMethodFormKlarna
|
|
4591
|
+
| io.flow.stripe.v0.models.PaymentMethodFormBancontact;
|
|
4783
4592
|
}
|
|
4784
4593
|
|
|
4785
4594
|
declare namespace io.flow.customer.v0.enums {
|
|
@@ -6397,6 +6206,11 @@ declare namespace io.flow.shopify.markets.internal.v0.enums {
|
|
|
6397
6206
|
| 'sports_and_fitness'
|
|
6398
6207
|
| 'toys_hobbies_gifts'
|
|
6399
6208
|
| 'other';
|
|
6209
|
+
type TaxAndDutyInclusivitySetting =
|
|
6210
|
+
| 'duty_exclusive_tax_exclusive'
|
|
6211
|
+
| 'duty_inclusive_tax_exclusive'
|
|
6212
|
+
| 'duty_exclusive_tax_inclusive'
|
|
6213
|
+
| 'duty_inclusive_tax_inclusive';
|
|
6400
6214
|
}
|
|
6401
6215
|
|
|
6402
6216
|
declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
@@ -6446,6 +6260,14 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
6446
6260
|
readonly id: string;
|
|
6447
6261
|
}
|
|
6448
6262
|
|
|
6263
|
+
interface OrderTaxAndDutyInclusivitySetting {
|
|
6264
|
+
readonly id: string;
|
|
6265
|
+
readonly organization_id: string;
|
|
6266
|
+
readonly shopify_order_id: string;
|
|
6267
|
+
readonly order_number: string;
|
|
6268
|
+
readonly tax_and_duty_inclusivity_setting: io.flow.shopify.markets.internal.v0.enums.TaxAndDutyInclusivitySetting;
|
|
6269
|
+
}
|
|
6270
|
+
|
|
6449
6271
|
interface OrderValidationError {
|
|
6450
6272
|
readonly message: string;
|
|
6451
6273
|
readonly reason: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
@@ -6574,6 +6396,8 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
6574
6396
|
readonly id: string;
|
|
6575
6397
|
readonly initial_catalog_synced_at?: string;
|
|
6576
6398
|
readonly catalog_sync_duration?: number;
|
|
6399
|
+
readonly restrictions_sync_duration?: number;
|
|
6400
|
+
readonly classifications_sync_duration?: number;
|
|
6577
6401
|
readonly catalog_products_count?: number;
|
|
6578
6402
|
readonly initial_product_restrictions_synced_at?: string;
|
|
6579
6403
|
}
|
|
@@ -6593,220 +6417,6 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
6593
6417
|
}
|
|
6594
6418
|
}
|
|
6595
6419
|
|
|
6596
|
-
declare namespace io.flow.consumer.invoice.v0.enums {
|
|
6597
|
-
type B2BInvoiceType = 'self_bill_invoice' | 'invoice';
|
|
6598
|
-
type ConsumerInvoiceCustomerType =
|
|
6599
|
-
| 'business_eu_verified'
|
|
6600
|
-
| 'business_non_verified'
|
|
6601
|
-
| 'individual';
|
|
6602
|
-
type ConsumerInvoiceDocumentType = 'pdf';
|
|
6603
|
-
type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
|
|
6604
|
-
}
|
|
6605
|
-
|
|
6606
|
-
declare namespace io.flow.consumer.invoice.v0.models {
|
|
6607
|
-
interface B2BCreditMemo {
|
|
6608
|
-
readonly id: string;
|
|
6609
|
-
readonly number: string;
|
|
6610
|
-
readonly buyer: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
6611
|
-
readonly seller: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
6612
|
-
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
6613
|
-
readonly date: string;
|
|
6614
|
-
readonly key: string;
|
|
6615
|
-
readonly invoice: io.flow.consumer.invoice.v0.models.B2BInvoiceReference;
|
|
6616
|
-
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
6617
|
-
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
6618
|
-
readonly attributes: Record<string, string>;
|
|
6619
|
-
readonly b2b_invoice_type: io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
|
|
6620
|
-
}
|
|
6621
|
-
|
|
6622
|
-
interface B2BInvoice {
|
|
6623
|
-
readonly id: string;
|
|
6624
|
-
readonly number: string;
|
|
6625
|
-
readonly buyer: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
6626
|
-
readonly seller: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
6627
|
-
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
6628
|
-
readonly date: string;
|
|
6629
|
-
readonly key: string;
|
|
6630
|
-
readonly order: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
6631
|
-
readonly economic_title_location: io.flow.merchant.of.record.v0.enums.EconomicTitleLocation;
|
|
6632
|
-
readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
6633
|
-
readonly destination?: io.flow.experience.v0.models.OrderAddress;
|
|
6634
|
-
readonly tax: io.flow.common.v0.models.Money;
|
|
6635
|
-
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
6636
|
-
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
6637
|
-
readonly attributes: Record<string, string>;
|
|
6638
|
-
readonly estimated_delivery_date?: string;
|
|
6639
|
-
readonly b2b_invoice_type: io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
|
|
6640
|
-
}
|
|
6641
|
-
|
|
6642
|
-
interface B2BInvoiceReference {
|
|
6643
|
-
readonly id: string;
|
|
6644
|
-
readonly key: string;
|
|
6645
|
-
readonly number: string;
|
|
6646
|
-
}
|
|
6647
|
-
|
|
6648
|
-
interface ConsumerInvoice {
|
|
6649
|
-
readonly id: string;
|
|
6650
|
-
readonly number: string;
|
|
6651
|
-
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
6652
|
-
readonly date: string;
|
|
6653
|
-
readonly key: string;
|
|
6654
|
-
readonly order: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
6655
|
-
readonly entity: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
6656
|
-
readonly payments: io.flow.consumer.invoice.v0.models.ConsumerInvoicePayment[];
|
|
6657
|
-
readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
6658
|
-
readonly destination: io.flow.experience.v0.models.OrderAddress;
|
|
6659
|
-
readonly billing_address?: io.flow.common.v0.models.BillingAddress;
|
|
6660
|
-
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
6661
|
-
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
6662
|
-
readonly attributes: Record<string, string>;
|
|
6663
|
-
readonly tax_registration?: io.flow.harmonization.v0.models.TaxRegistration;
|
|
6664
|
-
readonly customer_type?: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceCustomerType;
|
|
6665
|
-
readonly estimated_delivery_date?: string;
|
|
6666
|
-
}
|
|
6667
|
-
|
|
6668
|
-
interface ConsumerInvoiceCenterReference {
|
|
6669
|
-
readonly id: string;
|
|
6670
|
-
readonly key: string;
|
|
6671
|
-
readonly name: string;
|
|
6672
|
-
readonly address: io.flow.common.v0.models.Address;
|
|
6673
|
-
}
|
|
6674
|
-
|
|
6675
|
-
interface ConsumerInvoiceDocument {
|
|
6676
|
-
readonly type: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceDocumentType;
|
|
6677
|
-
readonly language: string;
|
|
6678
|
-
readonly url: string;
|
|
6679
|
-
}
|
|
6680
|
-
|
|
6681
|
-
interface ConsumerInvoiceForm {
|
|
6682
|
-
readonly order_number: string;
|
|
6683
|
-
readonly attributes?: Record<string, string>;
|
|
6684
|
-
}
|
|
6685
|
-
|
|
6686
|
-
interface ConsumerInvoiceFormByOrder {
|
|
6687
|
-
readonly attributes?: Record<string, string>;
|
|
6688
|
-
}
|
|
6689
|
-
|
|
6690
|
-
interface ConsumerInvoiceLevy {
|
|
6691
|
-
readonly rate: number;
|
|
6692
|
-
readonly value: io.flow.common.v0.models.Price;
|
|
6693
|
-
}
|
|
6694
|
-
|
|
6695
|
-
interface ConsumerInvoiceLevyForm {
|
|
6696
|
-
readonly rate: number;
|
|
6697
|
-
readonly amount: number;
|
|
6698
|
-
}
|
|
6699
|
-
|
|
6700
|
-
interface ConsumerInvoiceLineDiscount {
|
|
6701
|
-
readonly discriminator: 'discount';
|
|
6702
|
-
readonly price: io.flow.common.v0.models.Price;
|
|
6703
|
-
}
|
|
6704
|
-
|
|
6705
|
-
interface ConsumerInvoiceLineDiscountForm {
|
|
6706
|
-
readonly discriminator: 'discount';
|
|
6707
|
-
readonly price: number;
|
|
6708
|
-
}
|
|
6709
|
-
|
|
6710
|
-
interface ConsumerInvoiceLineItem {
|
|
6711
|
-
readonly discriminator: 'item';
|
|
6712
|
-
readonly item: io.flow.common.v0.models.ItemReference;
|
|
6713
|
-
readonly description: string;
|
|
6714
|
-
readonly quantity: number;
|
|
6715
|
-
readonly unit_price: io.flow.common.v0.models.Price;
|
|
6716
|
-
readonly unit_discount?: io.flow.common.v0.models.Price;
|
|
6717
|
-
readonly unit_tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
6718
|
-
readonly unit_duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
6719
|
-
}
|
|
6720
|
-
|
|
6721
|
-
interface ConsumerInvoiceLineItemForm {
|
|
6722
|
-
readonly discriminator: 'item';
|
|
6723
|
-
readonly item_number: string;
|
|
6724
|
-
readonly quantity: number;
|
|
6725
|
-
readonly unit_price: number;
|
|
6726
|
-
readonly unit_discount?: number;
|
|
6727
|
-
readonly unit_tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
6728
|
-
readonly unit_duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
6729
|
-
}
|
|
6730
|
-
|
|
6731
|
-
interface ConsumerInvoiceLineShipping {
|
|
6732
|
-
readonly discriminator: 'shipping';
|
|
6733
|
-
readonly price: io.flow.common.v0.models.Price;
|
|
6734
|
-
readonly discount?: io.flow.common.v0.models.Price;
|
|
6735
|
-
readonly tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
6736
|
-
readonly duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
6737
|
-
}
|
|
6738
|
-
|
|
6739
|
-
interface ConsumerInvoiceLineShippingForm {
|
|
6740
|
-
readonly discriminator: 'shipping';
|
|
6741
|
-
readonly price: number;
|
|
6742
|
-
readonly discount?: number;
|
|
6743
|
-
readonly tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
6744
|
-
readonly duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
6745
|
-
}
|
|
6746
|
-
|
|
6747
|
-
interface ConsumerInvoiceOrderSummary {
|
|
6748
|
-
readonly id: string;
|
|
6749
|
-
readonly number: string;
|
|
6750
|
-
readonly submitted_at: string;
|
|
6751
|
-
}
|
|
6752
|
-
|
|
6753
|
-
interface ConsumerInvoicePayment {
|
|
6754
|
-
readonly date: string;
|
|
6755
|
-
readonly description: string;
|
|
6756
|
-
readonly value: io.flow.common.v0.models.Price;
|
|
6757
|
-
readonly billing_address?: io.flow.common.v0.models.BillingAddress;
|
|
6758
|
-
}
|
|
6759
|
-
|
|
6760
|
-
interface ConsumerInvoiceReference {
|
|
6761
|
-
readonly id: string;
|
|
6762
|
-
readonly key: string;
|
|
6763
|
-
readonly number: string;
|
|
6764
|
-
}
|
|
6765
|
-
|
|
6766
|
-
interface CreditMemo {
|
|
6767
|
-
readonly id: string;
|
|
6768
|
-
readonly number?: string;
|
|
6769
|
-
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
6770
|
-
readonly date: string;
|
|
6771
|
-
readonly key: string;
|
|
6772
|
-
readonly invoice: io.flow.consumer.invoice.v0.models.ConsumerInvoiceReference;
|
|
6773
|
-
readonly entity: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
6774
|
-
readonly payments: io.flow.consumer.invoice.v0.models.ConsumerInvoicePayment[];
|
|
6775
|
-
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
6776
|
-
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
6777
|
-
readonly attributes: Record<string, string>;
|
|
6778
|
-
readonly tax_registration?: io.flow.harmonization.v0.models.TaxRegistration;
|
|
6779
|
-
}
|
|
6780
|
-
|
|
6781
|
-
interface CreditMemoForm {
|
|
6782
|
-
readonly refund_id?: string;
|
|
6783
|
-
readonly refund_key?: string;
|
|
6784
|
-
readonly refund_identifier?: string;
|
|
6785
|
-
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLineForm[];
|
|
6786
|
-
readonly attributes?: Record<string, string>;
|
|
6787
|
-
}
|
|
6788
|
-
|
|
6789
|
-
interface InvoiceExport {
|
|
6790
|
-
readonly id: string;
|
|
6791
|
-
}
|
|
6792
|
-
|
|
6793
|
-
interface InvoiceExportForm {
|
|
6794
|
-
readonly date_from?: string;
|
|
6795
|
-
readonly date_to?: string;
|
|
6796
|
-
}
|
|
6797
|
-
}
|
|
6798
|
-
|
|
6799
|
-
declare namespace io.flow.consumer.invoice.v0.unions {
|
|
6800
|
-
type ConsumerInvoiceLine =
|
|
6801
|
-
| io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineItem
|
|
6802
|
-
| io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineDiscount
|
|
6803
|
-
| io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineShipping;
|
|
6804
|
-
type ConsumerInvoiceLineForm =
|
|
6805
|
-
| io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineItemForm
|
|
6806
|
-
| io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineDiscountForm
|
|
6807
|
-
| io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineShippingForm;
|
|
6808
|
-
}
|
|
6809
|
-
|
|
6810
6420
|
declare namespace io.flow.adyen.v0.enums {
|
|
6811
6421
|
type Channel = 'web';
|
|
6812
6422
|
type Contract = 'RECURRING';
|
|
@@ -7638,6 +7248,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
7638
7248
|
readonly published_at?: string;
|
|
7639
7249
|
readonly created_at: string;
|
|
7640
7250
|
readonly updated_at: string;
|
|
7251
|
+
readonly has_variants_that_requires_components?: boolean;
|
|
7641
7252
|
}
|
|
7642
7253
|
|
|
7643
7254
|
interface ProductDelete {
|
|
@@ -8498,7 +8109,8 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
8498
8109
|
| 'gift_card'
|
|
8499
8110
|
| 'manual'
|
|
8500
8111
|
| 'shopify_payments'
|
|
8501
|
-
| 'shop_cash'
|
|
8112
|
+
| 'shop_cash'
|
|
8113
|
+
| 'shopify_store_credit';
|
|
8502
8114
|
type ShopifyOrderProcessingMethodType =
|
|
8503
8115
|
| 'checkout'
|
|
8504
8116
|
| 'direct'
|
|
@@ -9402,7 +9014,8 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
9402
9014
|
| 'unsupported_subsidized_order'
|
|
9403
9015
|
| 'unsupported_virtual_goods'
|
|
9404
9016
|
| 'non_matching_currencies'
|
|
9405
|
-
| 'unsupported_order_edit'
|
|
9017
|
+
| 'unsupported_order_edit'
|
|
9018
|
+
| 'order_missing';
|
|
9406
9019
|
type ChannelOrderAcceptanceStatus =
|
|
9407
9020
|
| 'accepted'
|
|
9408
9021
|
| 'rejected'
|
|
@@ -10143,11 +9756,15 @@ declare namespace io.flow.billing.reporting.v0.enums {
|
|
|
10143
9756
|
| 'failed';
|
|
10144
9757
|
type ReportType =
|
|
10145
9758
|
| 'sales_record'
|
|
9759
|
+
| 'refund_record'
|
|
9760
|
+
| 'other_record'
|
|
9761
|
+
| 'pending_record'
|
|
10146
9762
|
| 'trueup_overview'
|
|
10147
9763
|
| 'non_channel_payment_bank_account'
|
|
10148
9764
|
| 'scheduled_payment'
|
|
10149
9765
|
| 'account_quarterly_balances'
|
|
10150
|
-
| 'invariants'
|
|
9766
|
+
| 'invariants'
|
|
9767
|
+
| 'payments';
|
|
10151
9768
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
10152
9769
|
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
10153
9770
|
}
|
|
@@ -10160,6 +9777,7 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
10160
9777
|
readonly subtotal: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10161
9778
|
readonly tax: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10162
9779
|
readonly duty: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
9780
|
+
readonly tips?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10163
9781
|
readonly discount: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10164
9782
|
readonly total: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10165
9783
|
}
|
|
@@ -10289,11 +9907,11 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
10289
9907
|
readonly sequence_number: number;
|
|
10290
9908
|
readonly fulfilled_at: string;
|
|
10291
9909
|
readonly completes_order: boolean;
|
|
10292
|
-
readonly payment: io.flow.billing.reporting.v0.models.ReportingPayment;
|
|
10293
9910
|
readonly refund?: io.flow.billing.reporting.v0.models.ReportingRefundReference;
|
|
10294
9911
|
readonly value: io.flow.billing.reporting.v0.models.FulfillmentShopperBreakdown;
|
|
10295
9912
|
readonly dispatch_country?: io.flow.billing.reporting.v0.models.ReportingCountry;
|
|
10296
9913
|
readonly destination?: io.flow.billing.reporting.v0.models.ReportingDestination;
|
|
9914
|
+
readonly payment?: io.flow.billing.reporting.v0.models.ReportingPayment;
|
|
10297
9915
|
readonly shipment?: io.flow.billing.reporting.v0.models.ReportingShipment;
|
|
10298
9916
|
readonly is: io.flow.billing.reporting.v0.models.ReportingFulfillmentIs;
|
|
10299
9917
|
readonly has: io.flow.billing.reporting.v0.models.ReportingFulfillmentHas;
|
|
@@ -10312,6 +9930,9 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
10312
9930
|
readonly wyol: boolean;
|
|
10313
9931
|
readonly b2b: boolean;
|
|
10314
9932
|
readonly domestic: boolean;
|
|
9933
|
+
readonly combined_shipment?: boolean;
|
|
9934
|
+
readonly order_cancelled?: boolean;
|
|
9935
|
+
readonly lvg?: boolean;
|
|
10315
9936
|
}
|
|
10316
9937
|
|
|
10317
9938
|
interface ReportingFx {
|
|
@@ -10320,6 +9941,7 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
10320
9941
|
readonly product: io.flow.billing.reporting.v0.models.ReportingUsd;
|
|
10321
9942
|
readonly tax: io.flow.billing.reporting.v0.models.ReportingUsd;
|
|
10322
9943
|
readonly duty: io.flow.billing.reporting.v0.models.ReportingUsd;
|
|
9944
|
+
readonly tips?: io.flow.billing.reporting.v0.models.ReportingUsd;
|
|
10323
9945
|
readonly total: io.flow.billing.reporting.v0.models.ReportingUsd;
|
|
10324
9946
|
}
|
|
10325
9947
|
|
|
@@ -10337,6 +9959,7 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
10337
9959
|
readonly processing: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10338
9960
|
readonly rate_lock: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10339
9961
|
readonly transfer: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
9962
|
+
readonly total?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10340
9963
|
}
|
|
10341
9964
|
|
|
10342
9965
|
interface ReportingMerchantSubsidies {
|
|
@@ -10344,6 +9967,7 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
10344
9967
|
readonly tax: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10345
9968
|
readonly duty: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10346
9969
|
readonly ccf: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
9970
|
+
readonly total?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10347
9971
|
}
|
|
10348
9972
|
|
|
10349
9973
|
interface ReportingMerchantTransactions {
|
|
@@ -10352,6 +9976,8 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
10352
9976
|
readonly tax: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10353
9977
|
readonly duty: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10354
9978
|
readonly freight: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
9979
|
+
readonly discount?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
9980
|
+
readonly total?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10355
9981
|
}
|
|
10356
9982
|
|
|
10357
9983
|
interface ReportingMonetaryValue {
|
|
@@ -10374,25 +10000,14 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
10374
10000
|
}
|
|
10375
10001
|
|
|
10376
10002
|
interface ReportingPayment {
|
|
10377
|
-
readonly metadata?: io.flow.billing.reporting.v0.models.ReportingPaymentMetadata;
|
|
10378
10003
|
readonly psp: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10379
10004
|
readonly credit: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10005
|
+
readonly subsidized: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10006
|
+
readonly manual: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10007
|
+
readonly cod: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10380
10008
|
readonly total: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10381
10009
|
}
|
|
10382
10010
|
|
|
10383
|
-
interface ReportingPaymentMetadata {
|
|
10384
|
-
readonly gateway: io.flow.payment.internal.v0.enums.Processor;
|
|
10385
|
-
readonly method: string;
|
|
10386
|
-
readonly psp_reference?: string;
|
|
10387
|
-
readonly authorization?: io.flow.billing.reporting.v0.models.ReportingAuthorizationReference;
|
|
10388
|
-
readonly settlement_date: string;
|
|
10389
|
-
readonly additional_authorizations?: io.flow.billing.reporting.v0.models.ReportingPaymentMetadataAdditionalAuthorizations;
|
|
10390
|
-
}
|
|
10391
|
-
|
|
10392
|
-
interface ReportingPaymentMetadataAdditionalAuthorizations {
|
|
10393
|
-
readonly ids: string;
|
|
10394
|
-
}
|
|
10395
|
-
|
|
10396
10011
|
interface ReportingProvince {
|
|
10397
10012
|
readonly code?: string;
|
|
10398
10013
|
readonly name: string;
|
|
@@ -10421,6 +10036,7 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
10421
10036
|
readonly ccf: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10422
10037
|
readonly emergency: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10423
10038
|
readonly peak: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10039
|
+
readonly total?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10424
10040
|
}
|
|
10425
10041
|
|
|
10426
10042
|
interface ReportingUsd {
|
|
@@ -11447,7 +11063,6 @@ declare namespace io.flow.billing.reporting.csv.v0.models {
|
|
|
11447
11063
|
readonly sequence_number: number;
|
|
11448
11064
|
readonly fulfilled_at: string;
|
|
11449
11065
|
readonly completes_order: boolean;
|
|
11450
|
-
readonly payment: io.flow.billing.reporting.v0.models.ReportingPayment;
|
|
11451
11066
|
readonly value: io.flow.billing.reporting.v0.models.FulfillmentShopperBreakdown;
|
|
11452
11067
|
readonly dispatch_country?: io.flow.billing.reporting.v0.models.ReportingCountry;
|
|
11453
11068
|
readonly destination: io.flow.billing.reporting.v0.models.ReportingDestination;
|
|
@@ -11573,6 +11188,21 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
11573
11188
|
readonly channel_organization_identifier: io.flow.shopify.markets.internal.v0.models.ChannelOrganizationIdentifier;
|
|
11574
11189
|
}
|
|
11575
11190
|
|
|
11191
|
+
interface OrderTaxAndDutyInclusivitySettingDeleted {
|
|
11192
|
+
readonly discriminator: 'order_tax_and_duty_inclusivity_setting_deleted';
|
|
11193
|
+
readonly event_id: string;
|
|
11194
|
+
readonly timestamp: string;
|
|
11195
|
+
readonly organization: string;
|
|
11196
|
+
readonly id: string;
|
|
11197
|
+
}
|
|
11198
|
+
|
|
11199
|
+
interface OrderTaxAndDutyInclusivitySettingUpserted {
|
|
11200
|
+
readonly discriminator: 'order_tax_and_duty_inclusivity_setting_upserted';
|
|
11201
|
+
readonly event_id: string;
|
|
11202
|
+
readonly timestamp: string;
|
|
11203
|
+
readonly order_tax_and_duty_inclusivity_setting: io.flow.shopify.markets.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
11204
|
+
}
|
|
11205
|
+
|
|
11576
11206
|
interface ShopifyMarketsMetricsDeleted {
|
|
11577
11207
|
readonly discriminator: 'shopify_markets_metrics_deleted';
|
|
11578
11208
|
readonly event_id: string;
|
|
@@ -11672,7 +11302,9 @@ declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
|
11672
11302
|
| io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted
|
|
11673
11303
|
| io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted
|
|
11674
11304
|
| io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted
|
|
11675
|
-
| io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted
|
|
11305
|
+
| io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted
|
|
11306
|
+
| io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted
|
|
11307
|
+
| io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted;
|
|
11676
11308
|
}
|
|
11677
11309
|
|
|
11678
11310
|
declare namespace io.flow.experience.v0.enums {
|
|
@@ -15160,7 +14792,10 @@ declare namespace io.flow.item.v0.models {
|
|
|
15160
14792
|
}
|
|
15161
14793
|
|
|
15162
14794
|
declare namespace io.flow.billing.internal.v0.enums {
|
|
15163
|
-
type AccountPaymentHoldReason =
|
|
14795
|
+
type AccountPaymentHoldReason =
|
|
14796
|
+
| 'fraudulent'
|
|
14797
|
+
| 'frozen'
|
|
14798
|
+
| 'invalid_bank_account';
|
|
15164
14799
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
15165
14800
|
type AccountType = 'channel' | 'organization';
|
|
15166
14801
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
@@ -16775,7 +16410,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
16775
16410
|
readonly discriminator: 'channel';
|
|
16776
16411
|
readonly method: string;
|
|
16777
16412
|
readonly card?: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata;
|
|
16778
|
-
readonly organization_transaction: io.flow.billing.v0.models.
|
|
16413
|
+
readonly organization_transaction: io.flow.billing.v0.models.TransactionMetadataChannelOrganizationTransaction;
|
|
16779
16414
|
}
|
|
16780
16415
|
|
|
16781
16416
|
interface TransactionMetadataChannelCardMetadata {
|
|
@@ -16788,6 +16423,11 @@ declare namespace io.flow.billing.v0.models {
|
|
|
16788
16423
|
readonly country: string;
|
|
16789
16424
|
}
|
|
16790
16425
|
|
|
16426
|
+
interface TransactionMetadataChannelOrganizationTransaction {
|
|
16427
|
+
readonly id: string;
|
|
16428
|
+
readonly metadata: io.flow.billing.v0.models.TransactionMetadataPaymentTransaction;
|
|
16429
|
+
}
|
|
16430
|
+
|
|
16791
16431
|
interface TransactionMetadataFailedPayout {
|
|
16792
16432
|
readonly discriminator: 'failed_payout';
|
|
16793
16433
|
readonly failed_payout: io.flow.billing.v0.models.TransactionMetadataFailedPayoutReference;
|
|
@@ -18252,7 +17892,8 @@ declare namespace io.flow.organization.onboarding.state.v0.enums {
|
|
|
18252
17892
|
| 'business_street_address_is_blank'
|
|
18253
17893
|
| 'business_street_address_is_po_box'
|
|
18254
17894
|
| 'exception_merchant'
|
|
18255
|
-
| 'application_missing'
|
|
17895
|
+
| 'application_missing'
|
|
17896
|
+
| 'missing_logistics_contact_info';
|
|
18256
17897
|
}
|
|
18257
17898
|
|
|
18258
17899
|
declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
@@ -18312,6 +17953,11 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
18312
17953
|
readonly onboarding_started_at?: string;
|
|
18313
17954
|
}
|
|
18314
17955
|
|
|
17956
|
+
interface RejectionPutForm {
|
|
17957
|
+
readonly reason: io.flow.organization.onboarding.state.v0.enums.MerchantRejectedReason;
|
|
17958
|
+
readonly description: string;
|
|
17959
|
+
}
|
|
17960
|
+
|
|
18315
17961
|
interface SetupBlocked {
|
|
18316
17962
|
readonly discriminator: 'setup_blocked';
|
|
18317
17963
|
readonly reasons: io.flow.organization.onboarding.state.v0.enums.OnboardingBlockedReason[];
|
|
@@ -18712,8 +18358,212 @@ declare namespace io.flow.billing.bank.account.v0.unions {
|
|
|
18712
18358
|
| io.flow.billing.bank.account.v0.models.BankAccountInfoIta;
|
|
18713
18359
|
}
|
|
18714
18360
|
|
|
18361
|
+
declare namespace io.flow.experiment.internal.v0.enums {
|
|
18362
|
+
type ExperimentDiscriminatorKey = 'experience' | 'feature';
|
|
18363
|
+
type Scope = 'organization' | 'global';
|
|
18364
|
+
type SignificanceAction =
|
|
18365
|
+
| 'end_and_implement_winner'
|
|
18366
|
+
| 'end_and_revert'
|
|
18367
|
+
| 'do_nothing';
|
|
18368
|
+
type Status = 'draft' | 'scheduled' | 'live' | 'ended' | 'archived';
|
|
18369
|
+
type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
|
|
18370
|
+
}
|
|
18371
|
+
|
|
18372
|
+
declare namespace io.flow.experiment.internal.v0.models {
|
|
18373
|
+
interface DailyExperimentResults {
|
|
18374
|
+
readonly id: string;
|
|
18375
|
+
readonly day: string;
|
|
18376
|
+
readonly experiment_key: string;
|
|
18377
|
+
readonly experiment_variant_key: string;
|
|
18378
|
+
readonly visitor_count: number;
|
|
18379
|
+
readonly visitors_with_transactions_count: number;
|
|
18380
|
+
readonly conversion_rate: number;
|
|
18381
|
+
readonly lower_bound: number;
|
|
18382
|
+
readonly upper_bound: number;
|
|
18383
|
+
readonly probability_of_being_best?: number;
|
|
18384
|
+
readonly currency?: string;
|
|
18385
|
+
readonly average_order_value?: number;
|
|
18386
|
+
readonly revenue_generated?: number;
|
|
18387
|
+
readonly total_order_count?: number;
|
|
18388
|
+
readonly conversion_rate_uplift?: number;
|
|
18389
|
+
readonly average_order_value_uplift?: number;
|
|
18390
|
+
readonly revenue_generated_uplift?: number;
|
|
18391
|
+
}
|
|
18392
|
+
|
|
18393
|
+
interface ExperienceExperiment {
|
|
18394
|
+
readonly discriminator: 'experience';
|
|
18395
|
+
readonly id: string;
|
|
18396
|
+
readonly key: string;
|
|
18397
|
+
readonly name: string;
|
|
18398
|
+
readonly description?: string;
|
|
18399
|
+
readonly status: io.flow.experiment.internal.v0.enums.Status;
|
|
18400
|
+
readonly emails: string[];
|
|
18401
|
+
readonly started_at?: string;
|
|
18402
|
+
readonly ended_at?: string;
|
|
18403
|
+
readonly variants: io.flow.experiment.internal.v0.models.ExperienceVariant[];
|
|
18404
|
+
readonly transitions?: io.flow.experiment.internal.v0.enums.Status[];
|
|
18405
|
+
readonly significance_action?: io.flow.experiment.internal.v0.enums.SignificanceAction;
|
|
18406
|
+
}
|
|
18407
|
+
|
|
18408
|
+
interface ExperienceVariant {
|
|
18409
|
+
readonly discriminator: 'experience_variant';
|
|
18410
|
+
readonly experience: io.flow.experiment.internal.v0.models.ExperienceVariantSummary;
|
|
18411
|
+
readonly traffic_percentage: number;
|
|
18412
|
+
readonly experiment_results?: io.flow.experiment.internal.v0.models.ExperimentResults;
|
|
18413
|
+
}
|
|
18414
|
+
|
|
18415
|
+
interface ExperienceVariantForm {
|
|
18416
|
+
readonly discriminator: 'experience';
|
|
18417
|
+
readonly key: string;
|
|
18418
|
+
readonly traffic_percentage: number;
|
|
18419
|
+
}
|
|
18420
|
+
|
|
18421
|
+
interface ExperienceVariantSummary {
|
|
18422
|
+
readonly key: string;
|
|
18423
|
+
readonly name?: string;
|
|
18424
|
+
}
|
|
18425
|
+
|
|
18426
|
+
interface ExperimentForm {
|
|
18427
|
+
readonly name: string;
|
|
18428
|
+
readonly description?: string;
|
|
18429
|
+
readonly emails: string[];
|
|
18430
|
+
readonly variants: io.flow.experiment.internal.v0.unions.VariantForm[];
|
|
18431
|
+
readonly significance_action?: io.flow.experiment.internal.v0.enums.SignificanceAction;
|
|
18432
|
+
readonly session_query?: string;
|
|
18433
|
+
}
|
|
18434
|
+
|
|
18435
|
+
interface ExperimentFormDefault {
|
|
18436
|
+
readonly discriminator: io.flow.experiment.internal.v0.models.ExperimentFormDefaultDiscriminator;
|
|
18437
|
+
readonly variants?: io.flow.experiment.internal.v0.models.ExperimentFormDefaultVariant[];
|
|
18438
|
+
}
|
|
18439
|
+
|
|
18440
|
+
interface ExperimentFormDefaultDiscriminator {
|
|
18441
|
+
readonly key: io.flow.experiment.internal.v0.enums.ExperimentDiscriminatorKey;
|
|
18442
|
+
readonly values: io.flow.experiment.internal.v0.models.ExperimentFormDefaultDiscriminatorValue[];
|
|
18443
|
+
}
|
|
18444
|
+
|
|
18445
|
+
interface ExperimentFormDefaultDiscriminatorValue {
|
|
18446
|
+
readonly key: string;
|
|
18447
|
+
readonly name: string;
|
|
18448
|
+
readonly scope: io.flow.experiment.internal.v0.enums.Scope;
|
|
18449
|
+
}
|
|
18450
|
+
|
|
18451
|
+
interface ExperimentFormDefaultVariant {
|
|
18452
|
+
readonly key: string;
|
|
18453
|
+
readonly name: string;
|
|
18454
|
+
readonly traffic_percentage?: number;
|
|
18455
|
+
}
|
|
18456
|
+
|
|
18457
|
+
interface ExperimentMilestone {
|
|
18458
|
+
readonly id: string;
|
|
18459
|
+
readonly experiment: io.flow.experiment.internal.v0.models.ExperimentReference;
|
|
18460
|
+
readonly timestamp: string;
|
|
18461
|
+
readonly description: string;
|
|
18462
|
+
}
|
|
18463
|
+
|
|
18464
|
+
interface ExperimentMilestoneForm {
|
|
18465
|
+
readonly timestamp?: string;
|
|
18466
|
+
readonly description: string;
|
|
18467
|
+
}
|
|
18468
|
+
|
|
18469
|
+
interface ExperimentReference {
|
|
18470
|
+
readonly key: string;
|
|
18471
|
+
}
|
|
18472
|
+
|
|
18473
|
+
interface ExperimentResults {
|
|
18474
|
+
readonly id: string;
|
|
18475
|
+
readonly experiment_key: string;
|
|
18476
|
+
readonly experiment_variant_key: string;
|
|
18477
|
+
readonly visitor_count: number;
|
|
18478
|
+
readonly visitors_with_transactions_count: number;
|
|
18479
|
+
readonly conversion_rate: number;
|
|
18480
|
+
readonly lower_bound: number;
|
|
18481
|
+
readonly upper_bound: number;
|
|
18482
|
+
readonly probability_of_being_best?: number;
|
|
18483
|
+
readonly currency?: string;
|
|
18484
|
+
readonly average_order_value?: number;
|
|
18485
|
+
readonly revenue_generated?: number;
|
|
18486
|
+
readonly total_order_count?: number;
|
|
18487
|
+
readonly conversion_rate_uplift?: number;
|
|
18488
|
+
readonly average_order_value_uplift?: number;
|
|
18489
|
+
readonly revenue_generated_uplift?: number;
|
|
18490
|
+
}
|
|
18491
|
+
|
|
18492
|
+
interface ExperimentResultsWithTimestamp {
|
|
18493
|
+
readonly timestamp: string;
|
|
18494
|
+
readonly results: io.flow.experiment.internal.v0.models.ExperimentResults[];
|
|
18495
|
+
}
|
|
18496
|
+
|
|
18497
|
+
interface ExperimentSessionQueryForm {
|
|
18498
|
+
readonly session_query?: string;
|
|
18499
|
+
}
|
|
18500
|
+
|
|
18501
|
+
interface ExperimentVersion {
|
|
18502
|
+
readonly id: string;
|
|
18503
|
+
readonly timestamp: string;
|
|
18504
|
+
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
18505
|
+
readonly experiment: io.flow.experiment.internal.v0.unions.Experiment;
|
|
18506
|
+
}
|
|
18507
|
+
|
|
18508
|
+
interface FeatureExperiment {
|
|
18509
|
+
readonly discriminator: 'feature';
|
|
18510
|
+
readonly id: string;
|
|
18511
|
+
readonly key: string;
|
|
18512
|
+
readonly name: string;
|
|
18513
|
+
readonly description?: string;
|
|
18514
|
+
readonly status: io.flow.experiment.internal.v0.enums.Status;
|
|
18515
|
+
readonly emails: string[];
|
|
18516
|
+
readonly scope: io.flow.experiment.internal.v0.enums.Scope;
|
|
18517
|
+
readonly started_at?: string;
|
|
18518
|
+
readonly ended_at?: string;
|
|
18519
|
+
readonly variants: io.flow.experiment.internal.v0.models.FeatureVariant[];
|
|
18520
|
+
readonly transitions?: io.flow.experiment.internal.v0.enums.Status[];
|
|
18521
|
+
readonly significance_action?: io.flow.experiment.internal.v0.enums.SignificanceAction;
|
|
18522
|
+
readonly session_query?: string;
|
|
18523
|
+
}
|
|
18524
|
+
|
|
18525
|
+
interface FeatureValueReference {
|
|
18526
|
+
readonly feature_key: string;
|
|
18527
|
+
readonly value: string;
|
|
18528
|
+
}
|
|
18529
|
+
|
|
18530
|
+
interface FeatureVariant {
|
|
18531
|
+
readonly discriminator: 'feature_variant';
|
|
18532
|
+
readonly value: io.flow.experiment.internal.v0.models.FeatureVariantSummary;
|
|
18533
|
+
readonly traffic_percentage: number;
|
|
18534
|
+
readonly experiment_results?: io.flow.experiment.internal.v0.models.ExperimentResults;
|
|
18535
|
+
}
|
|
18536
|
+
|
|
18537
|
+
interface FeatureVariantForm {
|
|
18538
|
+
readonly discriminator: 'feature';
|
|
18539
|
+
readonly key: string;
|
|
18540
|
+
readonly traffic_percentage: number;
|
|
18541
|
+
}
|
|
18542
|
+
|
|
18543
|
+
interface FeatureVariantSummary {
|
|
18544
|
+
readonly key: string;
|
|
18545
|
+
readonly feature_value: io.flow.experiment.internal.v0.models.FeatureValueReference;
|
|
18546
|
+
readonly name?: string;
|
|
18547
|
+
}
|
|
18548
|
+
}
|
|
18549
|
+
|
|
18550
|
+
declare namespace io.flow.experiment.internal.v0.unions {
|
|
18551
|
+
type Experiment =
|
|
18552
|
+
| io.flow.experiment.internal.v0.models.ExperienceExperiment
|
|
18553
|
+
| io.flow.experiment.internal.v0.models.FeatureExperiment;
|
|
18554
|
+
type Variant =
|
|
18555
|
+
| io.flow.experiment.internal.v0.models.ExperienceVariant
|
|
18556
|
+
| io.flow.experiment.internal.v0.models.FeatureVariant;
|
|
18557
|
+
type VariantForm =
|
|
18558
|
+
| io.flow.experiment.internal.v0.models.ExperienceVariantForm
|
|
18559
|
+
| io.flow.experiment.internal.v0.models.FeatureVariantForm;
|
|
18560
|
+
}
|
|
18561
|
+
|
|
18715
18562
|
declare namespace io.flow.internal.v0.enums {
|
|
18716
|
-
type AccountPaymentHoldReason =
|
|
18563
|
+
type AccountPaymentHoldReason =
|
|
18564
|
+
| 'fraudulent'
|
|
18565
|
+
| 'frozen'
|
|
18566
|
+
| 'invalid_bank_account';
|
|
18717
18567
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
18718
18568
|
type AccountType = 'channel' | 'organization';
|
|
18719
18569
|
type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
|
|
@@ -18974,7 +18824,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18974
18824
|
| 'unsupported_subsidized_order'
|
|
18975
18825
|
| 'unsupported_virtual_goods'
|
|
18976
18826
|
| 'non_matching_currencies'
|
|
18977
|
-
| 'unsupported_order_edit'
|
|
18827
|
+
| 'unsupported_order_edit'
|
|
18828
|
+
| 'order_missing';
|
|
18978
18829
|
type ChannelOrderAcceptanceStatus =
|
|
18979
18830
|
| 'accepted'
|
|
18980
18831
|
| 'rejected'
|
|
@@ -19039,6 +18890,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19039
18890
|
| 'Age10_13'
|
|
19040
18891
|
| 'Age13_14';
|
|
19041
18892
|
type ColmItemType = 'physical' | 'digital';
|
|
18893
|
+
type Company = 'globale' | 'flow';
|
|
19042
18894
|
type ComplianceType = 'weee';
|
|
19043
18895
|
type ContentElementType = 'markdown' | 'html' | 'plain_text' | 'href';
|
|
19044
18896
|
type ContentStatus = 'draft' | 'live' | 'archived';
|
|
@@ -19147,6 +18999,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19147
18999
|
| 'sales_record_deleted'
|
|
19148
19000
|
| 'revenue_record_upserted'
|
|
19149
19001
|
| 'revenue_record_deleted'
|
|
19002
|
+
| 'other_record_upserted'
|
|
19003
|
+
| 'other_record_deleted'
|
|
19150
19004
|
| 'calculator_organization_settings_upserted'
|
|
19151
19005
|
| 'calculator_organization_settings_deleted'
|
|
19152
19006
|
| 'carrier_account_upserted_v2'
|
|
@@ -19209,14 +19063,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19209
19063
|
| 'experience_import_request'
|
|
19210
19064
|
| 'submitted_order_upserted'
|
|
19211
19065
|
| 'levy_rate_summary_upserted'
|
|
19212
|
-
| 'experiment_upserted'
|
|
19213
|
-
| 'experiment_deleted'
|
|
19214
|
-
| 'experiment_results_upserted'
|
|
19215
|
-
| 'experiment_results_deleted'
|
|
19216
|
-
| 'daily_experiment_results_upserted'
|
|
19217
|
-
| 'daily_experiment_results_deleted'
|
|
19218
|
-
| 'experiment_milestone_upserted'
|
|
19219
|
-
| 'experiment_milestone_deleted'
|
|
19220
19066
|
| 'export_completed'
|
|
19221
19067
|
| 'export_failed'
|
|
19222
19068
|
| 'feature_upserted'
|
|
@@ -19251,6 +19097,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19251
19097
|
| 'fraud_pending_review_deleted'
|
|
19252
19098
|
| 'fraud_review_decision_upserted'
|
|
19253
19099
|
| 'fraud_review_decision_deleted'
|
|
19100
|
+
| 'fraud_review_authorization_upserted'
|
|
19101
|
+
| 'fraud_review_authorization_deleted'
|
|
19102
|
+
| 'fraud_pending_review_authorization_upserted'
|
|
19103
|
+
| 'fraud_pending_review_authorization_deleted'
|
|
19104
|
+
| 'fraud_review_authorization_decision_upserted'
|
|
19105
|
+
| 'fraud_review_authorization_decision_deleted'
|
|
19254
19106
|
| 'fraud_provider_configuration_upserted'
|
|
19255
19107
|
| 'fraud_provider_configuration_deleted'
|
|
19256
19108
|
| 'manual_review_rule_upserted'
|
|
@@ -19328,6 +19180,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19328
19180
|
| 'organization_deactivation_deleted'
|
|
19329
19181
|
| 'merchant_guid_assignment_upserted'
|
|
19330
19182
|
| 'merchant_guid_assignment_deleted'
|
|
19183
|
+
| 'organization_metadata_upserted'
|
|
19184
|
+
| 'organization_metadata_deleted'
|
|
19331
19185
|
| 'partner_organization_settings_upserted'
|
|
19332
19186
|
| 'partner_organization_settings_deleted'
|
|
19333
19187
|
| 'unassigned_merchant_guid_upserted'
|
|
@@ -19403,6 +19257,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19403
19257
|
| 'channel_order_summary_deleted'
|
|
19404
19258
|
| 'channel_organization_identifier_upserted'
|
|
19405
19259
|
| 'channel_organization_identifier_deleted'
|
|
19260
|
+
| 'order_tax_and_duty_inclusivity_setting_upserted'
|
|
19261
|
+
| 'order_tax_and_duty_inclusivity_setting_deleted'
|
|
19406
19262
|
| 'shopify_monitoring_order_monitor_event_upserted'
|
|
19407
19263
|
| 'shopify_monitoring_order_monitor_event_deleted'
|
|
19408
19264
|
| 'shopify_order_fulfillments_snapshot_upserted'
|
|
@@ -19421,8 +19277,16 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19421
19277
|
| 'svitlana_item_deleted'
|
|
19422
19278
|
| 'colm_item_upserted'
|
|
19423
19279
|
| 'colm_item_deleted'
|
|
19280
|
+
| 'harinath_item_upserted'
|
|
19281
|
+
| 'harinath_item_deleted'
|
|
19282
|
+
| 'konstantin_item_upserted'
|
|
19283
|
+
| 'konstantin_item_deleted'
|
|
19424
19284
|
| 'matias_item_upserted'
|
|
19425
19285
|
| 'matias_item_deleted'
|
|
19286
|
+
| 'michaelyan_item_upserted'
|
|
19287
|
+
| 'michaelyan_item_deleted'
|
|
19288
|
+
| 'miljenko_item_upserted'
|
|
19289
|
+
| 'miljenko_item_deleted'
|
|
19426
19290
|
| 'shruti_demo_item_upserted'
|
|
19427
19291
|
| 'shruti_demo_item_deleted'
|
|
19428
19292
|
| 'tam_item_upserted'
|
|
@@ -19435,6 +19299,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19435
19299
|
| 'tracking_label_deleted'
|
|
19436
19300
|
| 'tracking_upserted'
|
|
19437
19301
|
| 'tracking_deleted'
|
|
19302
|
+
| 'tracking_assurance_analysis_upserted'
|
|
19303
|
+
| 'tracking_assurance_analysis_deleted'
|
|
19438
19304
|
| 'tracking_request_upserted'
|
|
19439
19305
|
| 'tracking_response_upserted'
|
|
19440
19306
|
| 'user_upserted_v2'
|
|
@@ -19442,7 +19308,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19442
19308
|
type ExperienceImportType = 'experience_with_settings';
|
|
19443
19309
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
19444
19310
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
19445
|
-
type ExperimentDiscriminatorKey = 'experience' | 'feature';
|
|
19446
19311
|
type ExportContentType = 'item' | 'price_book_item';
|
|
19447
19312
|
type FeatureScope = 'global' | 'organization';
|
|
19448
19313
|
type FeatureStatus = 'draft' | 'active' | 'archived';
|
|
@@ -19469,6 +19334,11 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19469
19334
|
| 'inventory_to_flow';
|
|
19470
19335
|
type FtpProtocol = 'sftp' | 'ftp';
|
|
19471
19336
|
type GoogleAnalyticsPlugin = 'ec';
|
|
19337
|
+
type HarinathItemType = 'digital' | 'physical';
|
|
19338
|
+
type HarmonizationDecisionSource =
|
|
19339
|
+
| 'human'
|
|
19340
|
+
| 'legacy_model'
|
|
19341
|
+
| 'enterprise_model';
|
|
19472
19342
|
type HttpMethod = 'get' | 'post';
|
|
19473
19343
|
type InventoryCheckService = 'sfcc' | 'gymboree';
|
|
19474
19344
|
type InventoryReservation = 'synchronous-on-submit';
|
|
@@ -19491,6 +19361,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19491
19361
|
| 'fulfillment_generate_label';
|
|
19492
19362
|
type ItemType = 'standard' | 'multi_product';
|
|
19493
19363
|
type KeywordType = 'positive' | 'negative';
|
|
19364
|
+
type KonstantinItemType = 'physical' | 'digital';
|
|
19494
19365
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
19495
19366
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
19496
19367
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
@@ -19513,6 +19384,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19513
19384
|
| 'high_value_goods_tax'
|
|
19514
19385
|
| 'duties';
|
|
19515
19386
|
type LogisticsCapability = 'logistics_address_correction';
|
|
19387
|
+
type LogisticsPayoutResolutionMethod =
|
|
19388
|
+
| 'order_combined_shipment'
|
|
19389
|
+
| 'intransit_label_event'
|
|
19390
|
+
| 'shipping_notification';
|
|
19516
19391
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
19517
19392
|
type ManualTransactionCategory =
|
|
19518
19393
|
| 'cancelled_order_refund'
|
|
@@ -19577,6 +19452,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19577
19452
|
| 'facebook_country_override'
|
|
19578
19453
|
| 'supplemental';
|
|
19579
19454
|
type MatiasItemType = 'physical' | 'digital';
|
|
19455
|
+
type MichaelyanItemType = 'physical' | 'digital';
|
|
19456
|
+
type MiljenkoItemType = 'physical' | 'digital';
|
|
19580
19457
|
type MixedBagWeight = '0' | '1' | '2';
|
|
19581
19458
|
type NatureOfSale =
|
|
19582
19459
|
| 'consumer'
|
|
@@ -19628,6 +19505,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19628
19505
|
| 'unit_test'
|
|
19629
19506
|
| 'api'
|
|
19630
19507
|
| 'api_activation'
|
|
19508
|
+
| 'api_reject'
|
|
19631
19509
|
| 'audit_auto_activation'
|
|
19632
19510
|
| 'api_deactivation'
|
|
19633
19511
|
| 'api_sandbox_setup'
|
|
@@ -19751,11 +19629,15 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19751
19629
|
| 'failed';
|
|
19752
19630
|
type ReportType =
|
|
19753
19631
|
| 'sales_record'
|
|
19632
|
+
| 'refund_record'
|
|
19633
|
+
| 'other_record'
|
|
19634
|
+
| 'pending_record'
|
|
19754
19635
|
| 'trueup_overview'
|
|
19755
19636
|
| 'non_channel_payment_bank_account'
|
|
19756
19637
|
| 'scheduled_payment'
|
|
19757
19638
|
| 'account_quarterly_balances'
|
|
19758
|
-
| 'invariants'
|
|
19639
|
+
| 'invariants'
|
|
19640
|
+
| 'payments';
|
|
19759
19641
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
19760
19642
|
type ReportingScheme =
|
|
19761
19643
|
| 'immediate_reporting_to_tax_authority'
|
|
@@ -19779,7 +19661,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19779
19661
|
| 'Low-Risk'
|
|
19780
19662
|
| 'Restricted-Party'
|
|
19781
19663
|
| 'none';
|
|
19782
|
-
type Scope = 'organization' | 'global';
|
|
19783
19664
|
type SerialReservationError =
|
|
19784
19665
|
| 'duration_too_long'
|
|
19785
19666
|
| 'items_not_found'
|
|
@@ -19849,10 +19730,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19849
19730
|
type ShopifyPromotionStatus = 'active' | 'inactive';
|
|
19850
19731
|
type ShopifyService = 'payment' | 'duty_tax_calculator';
|
|
19851
19732
|
type ShrutiDemoType = 'digital' | 'physical';
|
|
19852
|
-
type SignificanceAction =
|
|
19853
|
-
| 'end_and_implement_winner'
|
|
19854
|
-
| 'end_and_revert'
|
|
19855
|
-
| 'do_nothing';
|
|
19856
19733
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
19857
19734
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
19858
19735
|
type SnoozeSourceType = 'task' | 'invariant';
|
|
@@ -19869,7 +19746,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19869
19746
|
| 'time-to-classify-aggregated'
|
|
19870
19747
|
| 'rate-source'
|
|
19871
19748
|
| 'rate-freshness';
|
|
19872
|
-
type Status = 'draft' | 'scheduled' | 'live' | 'ended' | 'archived';
|
|
19873
19749
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
19874
19750
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
19875
19751
|
type SvitlanaType = 'physical' | 'digital';
|
|
@@ -19883,10 +19759,15 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19883
19759
|
| 'payment'
|
|
19884
19760
|
| 'rate_levels'
|
|
19885
19761
|
| 'center_defaults';
|
|
19762
|
+
type TaxAndDutyInclusivitySetting =
|
|
19763
|
+
| 'duty_exclusive_tax_exclusive'
|
|
19764
|
+
| 'duty_inclusive_tax_exclusive'
|
|
19765
|
+
| 'duty_exclusive_tax_inclusive'
|
|
19766
|
+
| 'duty_inclusive_tax_inclusive';
|
|
19886
19767
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
19887
19768
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
19888
19769
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
|
|
19889
|
-
type
|
|
19770
|
+
type ThiagoItemType = 'digital' | 'physical';
|
|
19890
19771
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
19891
19772
|
type TrackingProcessingFailureClassification =
|
|
19892
19773
|
| 'tracking_expired'
|
|
@@ -20702,17 +20583,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20702
20583
|
readonly action?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
20703
20584
|
}
|
|
20704
20585
|
|
|
20705
|
-
interface Backfill {
|
|
20706
|
-
readonly days_to_backfill: string[];
|
|
20707
|
-
}
|
|
20708
|
-
|
|
20709
|
-
interface BackfillForm {
|
|
20710
|
-
readonly start_date: string;
|
|
20711
|
-
readonly end_date: string;
|
|
20712
|
-
readonly organization_id?: string;
|
|
20713
|
-
readonly experiment_key?: string;
|
|
20714
|
-
}
|
|
20715
|
-
|
|
20716
20586
|
interface BankAccountReference {
|
|
20717
20587
|
readonly id: string;
|
|
20718
20588
|
}
|
|
@@ -20833,7 +20703,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20833
20703
|
readonly discriminator: 'billing_csv_transaction_upserted';
|
|
20834
20704
|
readonly event_id: string;
|
|
20835
20705
|
readonly timestamp: string;
|
|
20836
|
-
readonly transaction: io.flow.
|
|
20706
|
+
readonly transaction: io.flow.internal.v0.models.CsvTransaction;
|
|
20837
20707
|
}
|
|
20838
20708
|
|
|
20839
20709
|
interface BillingInvoiceSummary {
|
|
@@ -22270,28 +22140,38 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22270
22140
|
}
|
|
22271
22141
|
|
|
22272
22142
|
interface ClassificationProductRequest {
|
|
22273
|
-
readonly
|
|
22274
|
-
readonly
|
|
22275
|
-
readonly
|
|
22276
|
-
readonly
|
|
22277
|
-
readonly
|
|
22278
|
-
readonly
|
|
22279
|
-
readonly
|
|
22280
|
-
readonly
|
|
22281
|
-
readonly
|
|
22282
|
-
readonly
|
|
22283
|
-
readonly
|
|
22143
|
+
readonly MerchantId: string;
|
|
22144
|
+
readonly ProductName: string;
|
|
22145
|
+
readonly ProductDescription: string;
|
|
22146
|
+
readonly ProductIdInternal: string;
|
|
22147
|
+
readonly ProductIdExternal: string;
|
|
22148
|
+
readonly ProductGroupCode?: string;
|
|
22149
|
+
readonly ProductUrl?: string;
|
|
22150
|
+
readonly ProductImage?: string;
|
|
22151
|
+
readonly ProductAttributes: Record<string, string>;
|
|
22152
|
+
readonly Categories?: string[];
|
|
22153
|
+
readonly PlatformId: io.flow.internal.v0.enums.ClassificationPlatform;
|
|
22154
|
+
}
|
|
22155
|
+
|
|
22156
|
+
interface ClassificationProductRequestEnvelope {
|
|
22157
|
+
readonly messageType: string[];
|
|
22158
|
+
readonly message: io.flow.internal.v0.models.ClassificationProductRequest;
|
|
22284
22159
|
}
|
|
22285
22160
|
|
|
22286
22161
|
interface ClassificationProductResult {
|
|
22287
|
-
readonly
|
|
22288
|
-
readonly
|
|
22289
|
-
readonly
|
|
22290
|
-
readonly
|
|
22162
|
+
readonly productId: string;
|
|
22163
|
+
readonly merchantId: string;
|
|
22164
|
+
readonly platformId: io.flow.internal.v0.enums.ClassificationPlatform;
|
|
22165
|
+
readonly hsCode?: string;
|
|
22291
22166
|
readonly probability?: number;
|
|
22292
|
-
readonly
|
|
22293
|
-
readonly
|
|
22294
|
-
readonly
|
|
22167
|
+
readonly classificationDecision: io.flow.internal.v0.enums.ClassificationDecision;
|
|
22168
|
+
readonly classificationType: io.flow.internal.v0.enums.ClassificationType;
|
|
22169
|
+
readonly clothingAgeClassification?: io.flow.internal.v0.enums.ClothingAgeClassification;
|
|
22170
|
+
}
|
|
22171
|
+
|
|
22172
|
+
interface ClassificationProductResultEnvelope {
|
|
22173
|
+
readonly messageType: string[];
|
|
22174
|
+
readonly message: io.flow.internal.v0.models.ClassificationProductResult;
|
|
22295
22175
|
}
|
|
22296
22176
|
|
|
22297
22177
|
interface ClassificationProductSummary {
|
|
@@ -22625,6 +22505,25 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22625
22505
|
readonly signature_secret: string;
|
|
22626
22506
|
}
|
|
22627
22507
|
|
|
22508
|
+
interface CsvTransaction {
|
|
22509
|
+
readonly id: string;
|
|
22510
|
+
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
22511
|
+
readonly account: io.flow.internal.v0.models.OtherRecordAccount;
|
|
22512
|
+
readonly metadata?: io.flow.internal.v0.models.OtherRecordMetadata;
|
|
22513
|
+
readonly order?: io.flow.internal.v0.models.OtherRecordOrderSummary;
|
|
22514
|
+
readonly currency: string;
|
|
22515
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
22516
|
+
readonly parent?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
22517
|
+
readonly gross: number;
|
|
22518
|
+
readonly fees: io.flow.internal.v0.models.OtherRecordFees;
|
|
22519
|
+
readonly withholdings: io.flow.internal.v0.models.OtherRecordWithholdings;
|
|
22520
|
+
readonly discount: io.flow.internal.v0.models.OtherRecordDiscount;
|
|
22521
|
+
readonly net: number;
|
|
22522
|
+
readonly identifiers: io.flow.internal.v0.models.OtherRecordIdentifiers;
|
|
22523
|
+
readonly created_at: string;
|
|
22524
|
+
readonly updated_at: string;
|
|
22525
|
+
}
|
|
22526
|
+
|
|
22628
22527
|
interface CurrencyInternalRate {
|
|
22629
22528
|
readonly id: string;
|
|
22630
22529
|
readonly organization_id: string;
|
|
@@ -22736,53 +22635,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22736
22635
|
readonly construction?: io.flow.internal.v0.models.CustomsProductAttributeLabel;
|
|
22737
22636
|
}
|
|
22738
22637
|
|
|
22739
|
-
interface DailyExperimentEngineResults {
|
|
22740
|
-
readonly day: string;
|
|
22741
|
-
readonly organization_id: string;
|
|
22742
|
-
readonly experiment_key: string;
|
|
22743
|
-
readonly experiment_variant_key: string;
|
|
22744
|
-
readonly distinct_visitors_count: number;
|
|
22745
|
-
readonly visitors_with_transactions_count: number;
|
|
22746
|
-
readonly total_visitors_count: number;
|
|
22747
|
-
readonly total_revenue: number;
|
|
22748
|
-
}
|
|
22749
|
-
|
|
22750
|
-
interface DailyExperimentResults {
|
|
22751
|
-
readonly id: string;
|
|
22752
|
-
readonly day: string;
|
|
22753
|
-
readonly experiment_key: string;
|
|
22754
|
-
readonly experiment_variant_key: string;
|
|
22755
|
-
readonly visitor_count: number;
|
|
22756
|
-
readonly visitors_with_transactions_count: number;
|
|
22757
|
-
readonly conversion_rate: number;
|
|
22758
|
-
readonly lower_bound: number;
|
|
22759
|
-
readonly upper_bound: number;
|
|
22760
|
-
readonly probability_of_being_best?: number;
|
|
22761
|
-
readonly currency?: string;
|
|
22762
|
-
readonly average_order_value?: number;
|
|
22763
|
-
readonly revenue_generated?: number;
|
|
22764
|
-
readonly total_order_count?: number;
|
|
22765
|
-
readonly conversion_rate_uplift?: number;
|
|
22766
|
-
readonly average_order_value_uplift?: number;
|
|
22767
|
-
readonly revenue_generated_uplift?: number;
|
|
22768
|
-
}
|
|
22769
|
-
|
|
22770
|
-
interface DailyExperimentResultsDeleted {
|
|
22771
|
-
readonly discriminator: 'daily_experiment_results_deleted';
|
|
22772
|
-
readonly event_id: string;
|
|
22773
|
-
readonly timestamp: string;
|
|
22774
|
-
readonly organization_id: string;
|
|
22775
|
-
readonly daily_experiment_results: io.flow.internal.v0.models.DailyExperimentResults;
|
|
22776
|
-
}
|
|
22777
|
-
|
|
22778
|
-
interface DailyExperimentResultsUpserted {
|
|
22779
|
-
readonly discriminator: 'daily_experiment_results_upserted';
|
|
22780
|
-
readonly event_id: string;
|
|
22781
|
-
readonly timestamp: string;
|
|
22782
|
-
readonly organization_id: string;
|
|
22783
|
-
readonly daily_experiment_results: io.flow.internal.v0.models.DailyExperimentResults;
|
|
22784
|
-
}
|
|
22785
|
-
|
|
22786
22638
|
interface DailyValue {
|
|
22787
22639
|
readonly id: string;
|
|
22788
22640
|
readonly key: io.flow.internal.v0.enums.BillingMetricKey;
|
|
@@ -23492,6 +23344,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23492
23344
|
}
|
|
23493
23345
|
|
|
23494
23346
|
interface ErpPriorityVendorForm {
|
|
23347
|
+
readonly company?: io.flow.internal.v0.enums.Company;
|
|
23495
23348
|
readonly acc_des?: string;
|
|
23496
23349
|
readonly tax_code?: string;
|
|
23497
23350
|
readonly tax_code_2?: string;
|
|
@@ -23591,21 +23444,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23591
23444
|
readonly total?: io.flow.common.v0.models.Money;
|
|
23592
23445
|
}
|
|
23593
23446
|
|
|
23594
|
-
interface ExperienceExperiment {
|
|
23595
|
-
readonly discriminator: 'experience';
|
|
23596
|
-
readonly id: string;
|
|
23597
|
-
readonly key: string;
|
|
23598
|
-
readonly name: string;
|
|
23599
|
-
readonly description?: string;
|
|
23600
|
-
readonly status: io.flow.internal.v0.enums.Status;
|
|
23601
|
-
readonly emails: string[];
|
|
23602
|
-
readonly started_at?: string;
|
|
23603
|
-
readonly ended_at?: string;
|
|
23604
|
-
readonly variants: io.flow.internal.v0.models.ExperienceVariant[];
|
|
23605
|
-
readonly transitions?: io.flow.internal.v0.enums.Status[];
|
|
23606
|
-
readonly significance_action?: io.flow.internal.v0.enums.SignificanceAction;
|
|
23607
|
-
}
|
|
23608
|
-
|
|
23609
23447
|
interface ExperienceExportRequest {
|
|
23610
23448
|
readonly discriminator: 'experience_export_request';
|
|
23611
23449
|
readonly event_id: string;
|
|
@@ -23636,165 +23474,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23636
23474
|
readonly id: string;
|
|
23637
23475
|
}
|
|
23638
23476
|
|
|
23639
|
-
interface ExperienceVariant {
|
|
23640
|
-
readonly discriminator: 'experience_variant';
|
|
23641
|
-
readonly experience: io.flow.internal.v0.models.ExperienceVariantSummary;
|
|
23642
|
-
readonly traffic_percentage: number;
|
|
23643
|
-
readonly experiment_results?: io.flow.internal.v0.models.ExperimentResults;
|
|
23644
|
-
}
|
|
23645
|
-
|
|
23646
|
-
interface ExperienceVariantForm {
|
|
23647
|
-
readonly discriminator: 'experience';
|
|
23648
|
-
readonly key: string;
|
|
23649
|
-
readonly traffic_percentage: number;
|
|
23650
|
-
}
|
|
23651
|
-
|
|
23652
|
-
interface ExperienceVariantSummary {
|
|
23653
|
-
readonly key: string;
|
|
23654
|
-
readonly name?: string;
|
|
23655
|
-
}
|
|
23656
|
-
|
|
23657
|
-
interface ExperimentDeleted {
|
|
23658
|
-
readonly discriminator: 'experiment_deleted';
|
|
23659
|
-
readonly event_id: string;
|
|
23660
|
-
readonly timestamp: string;
|
|
23661
|
-
readonly organization_id: string;
|
|
23662
|
-
readonly id: string;
|
|
23663
|
-
}
|
|
23664
|
-
|
|
23665
|
-
interface ExperimentEngineResults {
|
|
23666
|
-
readonly organization_id: string;
|
|
23667
|
-
readonly experiment_key: string;
|
|
23668
|
-
readonly experiment_variant_key: string;
|
|
23669
|
-
readonly distinct_visitors_count: number;
|
|
23670
|
-
readonly visitors_with_transactions_count: number;
|
|
23671
|
-
readonly total_visitors_count: number;
|
|
23672
|
-
readonly total_revenue: number;
|
|
23673
|
-
readonly day?: string;
|
|
23674
|
-
}
|
|
23675
|
-
|
|
23676
|
-
interface ExperimentForm {
|
|
23677
|
-
readonly name: string;
|
|
23678
|
-
readonly description?: string;
|
|
23679
|
-
readonly emails: string[];
|
|
23680
|
-
readonly variants: io.flow.internal.v0.unions.VariantForm[];
|
|
23681
|
-
readonly significance_action?: io.flow.internal.v0.enums.SignificanceAction;
|
|
23682
|
-
readonly session_query?: string;
|
|
23683
|
-
}
|
|
23684
|
-
|
|
23685
|
-
interface ExperimentFormDefault {
|
|
23686
|
-
readonly discriminator: io.flow.internal.v0.models.ExperimentFormDefaultDiscriminator;
|
|
23687
|
-
readonly variants?: io.flow.internal.v0.models.ExperimentFormDefaultVariant[];
|
|
23688
|
-
}
|
|
23689
|
-
|
|
23690
|
-
interface ExperimentFormDefaultDiscriminator {
|
|
23691
|
-
readonly key: io.flow.internal.v0.enums.ExperimentDiscriminatorKey;
|
|
23692
|
-
readonly values: io.flow.internal.v0.models.ExperimentFormDefaultDiscriminatorValue[];
|
|
23693
|
-
}
|
|
23694
|
-
|
|
23695
|
-
interface ExperimentFormDefaultDiscriminatorValue {
|
|
23696
|
-
readonly key: string;
|
|
23697
|
-
readonly name: string;
|
|
23698
|
-
readonly scope: io.flow.internal.v0.enums.Scope;
|
|
23699
|
-
}
|
|
23700
|
-
|
|
23701
|
-
interface ExperimentFormDefaultVariant {
|
|
23702
|
-
readonly key: string;
|
|
23703
|
-
readonly name: string;
|
|
23704
|
-
readonly traffic_percentage?: number;
|
|
23705
|
-
}
|
|
23706
|
-
|
|
23707
|
-
interface ExperimentMilestone {
|
|
23708
|
-
readonly id: string;
|
|
23709
|
-
readonly experiment: io.flow.internal.v0.models.ExperimentReference;
|
|
23710
|
-
readonly timestamp: string;
|
|
23711
|
-
readonly description: string;
|
|
23712
|
-
}
|
|
23713
|
-
|
|
23714
|
-
interface ExperimentMilestoneDeleted {
|
|
23715
|
-
readonly discriminator: 'experiment_milestone_deleted';
|
|
23716
|
-
readonly event_id: string;
|
|
23717
|
-
readonly timestamp: string;
|
|
23718
|
-
readonly organization: string;
|
|
23719
|
-
readonly id: string;
|
|
23720
|
-
}
|
|
23721
|
-
|
|
23722
|
-
interface ExperimentMilestoneForm {
|
|
23723
|
-
readonly timestamp?: string;
|
|
23724
|
-
readonly description: string;
|
|
23725
|
-
}
|
|
23726
|
-
|
|
23727
|
-
interface ExperimentMilestoneUpserted {
|
|
23728
|
-
readonly discriminator: 'experiment_milestone_upserted';
|
|
23729
|
-
readonly event_id: string;
|
|
23730
|
-
readonly timestamp: string;
|
|
23731
|
-
readonly organization: string;
|
|
23732
|
-
readonly experiment_milestone: io.flow.internal.v0.models.ExperimentMilestone;
|
|
23733
|
-
}
|
|
23734
|
-
|
|
23735
|
-
interface ExperimentReference {
|
|
23736
|
-
readonly key: string;
|
|
23737
|
-
}
|
|
23738
|
-
|
|
23739
|
-
interface ExperimentResults {
|
|
23740
|
-
readonly id: string;
|
|
23741
|
-
readonly experiment_key: string;
|
|
23742
|
-
readonly experiment_variant_key: string;
|
|
23743
|
-
readonly visitor_count: number;
|
|
23744
|
-
readonly visitors_with_transactions_count: number;
|
|
23745
|
-
readonly conversion_rate: number;
|
|
23746
|
-
readonly lower_bound: number;
|
|
23747
|
-
readonly upper_bound: number;
|
|
23748
|
-
readonly probability_of_being_best?: number;
|
|
23749
|
-
readonly currency?: string;
|
|
23750
|
-
readonly average_order_value?: number;
|
|
23751
|
-
readonly revenue_generated?: number;
|
|
23752
|
-
readonly total_order_count?: number;
|
|
23753
|
-
readonly conversion_rate_uplift?: number;
|
|
23754
|
-
readonly average_order_value_uplift?: number;
|
|
23755
|
-
readonly revenue_generated_uplift?: number;
|
|
23756
|
-
}
|
|
23757
|
-
|
|
23758
|
-
interface ExperimentResultsDeleted {
|
|
23759
|
-
readonly discriminator: 'experiment_results_deleted';
|
|
23760
|
-
readonly event_id: string;
|
|
23761
|
-
readonly timestamp: string;
|
|
23762
|
-
readonly organization_id: string;
|
|
23763
|
-
readonly experiment_results: io.flow.internal.v0.models.ExperimentResults;
|
|
23764
|
-
}
|
|
23765
|
-
|
|
23766
|
-
interface ExperimentResultsUpserted {
|
|
23767
|
-
readonly discriminator: 'experiment_results_upserted';
|
|
23768
|
-
readonly event_id: string;
|
|
23769
|
-
readonly timestamp: string;
|
|
23770
|
-
readonly organization_id: string;
|
|
23771
|
-
readonly experiment_results: io.flow.internal.v0.models.ExperimentResults;
|
|
23772
|
-
}
|
|
23773
|
-
|
|
23774
|
-
interface ExperimentResultsWithTimestamp {
|
|
23775
|
-
readonly timestamp: string;
|
|
23776
|
-
readonly results: io.flow.internal.v0.models.ExperimentResults[];
|
|
23777
|
-
}
|
|
23778
|
-
|
|
23779
|
-
interface ExperimentSessionQueryForm {
|
|
23780
|
-
readonly session_query?: string;
|
|
23781
|
-
}
|
|
23782
|
-
|
|
23783
|
-
interface ExperimentUpserted {
|
|
23784
|
-
readonly discriminator: 'experiment_upserted';
|
|
23785
|
-
readonly event_id: string;
|
|
23786
|
-
readonly timestamp: string;
|
|
23787
|
-
readonly organization_id: string;
|
|
23788
|
-
readonly experiment: io.flow.internal.v0.unions.Experiment;
|
|
23789
|
-
}
|
|
23790
|
-
|
|
23791
|
-
interface ExperimentVersion {
|
|
23792
|
-
readonly id: string;
|
|
23793
|
-
readonly timestamp: string;
|
|
23794
|
-
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
23795
|
-
readonly experiment: io.flow.internal.v0.unions.Experiment;
|
|
23796
|
-
}
|
|
23797
|
-
|
|
23798
23477
|
interface ExplicitStatement {
|
|
23799
23478
|
readonly id: string;
|
|
23800
23479
|
readonly statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
@@ -23863,6 +23542,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23863
23542
|
readonly delivery_estimate?: string;
|
|
23864
23543
|
readonly description?: string;
|
|
23865
23544
|
readonly order_number?: string;
|
|
23545
|
+
readonly raw_carrier_event_code?: string;
|
|
23866
23546
|
}
|
|
23867
23547
|
|
|
23868
23548
|
interface ExternalFulfillmentProof {
|
|
@@ -23936,23 +23616,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23936
23616
|
readonly feature: io.flow.internal.v0.models.Feature;
|
|
23937
23617
|
}
|
|
23938
23618
|
|
|
23939
|
-
interface FeatureExperiment {
|
|
23940
|
-
readonly discriminator: 'feature';
|
|
23941
|
-
readonly id: string;
|
|
23942
|
-
readonly key: string;
|
|
23943
|
-
readonly name: string;
|
|
23944
|
-
readonly description?: string;
|
|
23945
|
-
readonly status: io.flow.internal.v0.enums.Status;
|
|
23946
|
-
readonly emails: string[];
|
|
23947
|
-
readonly scope: io.flow.internal.v0.enums.Scope;
|
|
23948
|
-
readonly started_at?: string;
|
|
23949
|
-
readonly ended_at?: string;
|
|
23950
|
-
readonly variants: io.flow.internal.v0.models.FeatureVariant[];
|
|
23951
|
-
readonly transitions?: io.flow.internal.v0.enums.Status[];
|
|
23952
|
-
readonly significance_action?: io.flow.internal.v0.enums.SignificanceAction;
|
|
23953
|
-
readonly session_query?: string;
|
|
23954
|
-
}
|
|
23955
|
-
|
|
23956
23619
|
interface FeatureForm {
|
|
23957
23620
|
readonly name: string;
|
|
23958
23621
|
readonly description?: string;
|
|
@@ -24010,34 +23673,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24010
23673
|
readonly context: io.flow.internal.v0.models.FeatureContextForm;
|
|
24011
23674
|
}
|
|
24012
23675
|
|
|
24013
|
-
interface FeatureValueReference {
|
|
24014
|
-
readonly feature_key: string;
|
|
24015
|
-
readonly value: string;
|
|
24016
|
-
}
|
|
24017
|
-
|
|
24018
23676
|
interface FeatureValueResult {
|
|
24019
23677
|
readonly values: io.flow.internal.v0.unions.FeatureValue[];
|
|
24020
23678
|
}
|
|
24021
23679
|
|
|
24022
|
-
interface FeatureVariant {
|
|
24023
|
-
readonly discriminator: 'feature_variant';
|
|
24024
|
-
readonly value: io.flow.internal.v0.models.FeatureVariantSummary;
|
|
24025
|
-
readonly traffic_percentage: number;
|
|
24026
|
-
readonly experiment_results?: io.flow.internal.v0.models.ExperimentResults;
|
|
24027
|
-
}
|
|
24028
|
-
|
|
24029
|
-
interface FeatureVariantForm {
|
|
24030
|
-
readonly discriminator: 'feature';
|
|
24031
|
-
readonly key: string;
|
|
24032
|
-
readonly traffic_percentage: number;
|
|
24033
|
-
}
|
|
24034
|
-
|
|
24035
|
-
interface FeatureVariantSummary {
|
|
24036
|
-
readonly key: string;
|
|
24037
|
-
readonly feature_value: io.flow.internal.v0.models.FeatureValueReference;
|
|
24038
|
-
readonly name?: string;
|
|
24039
|
-
}
|
|
24040
|
-
|
|
24041
23680
|
interface Fedex {
|
|
24042
23681
|
readonly discriminator: 'fedex';
|
|
24043
23682
|
readonly key: string;
|
|
@@ -24290,8 +23929,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24290
23929
|
readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
24291
23930
|
}
|
|
24292
23931
|
|
|
24293
|
-
interface
|
|
24294
|
-
readonly
|
|
23932
|
+
interface FraudAuthorizationSummary {
|
|
23933
|
+
readonly fraud_review_authorization: io.flow.internal.v0.models.FraudReviewAuthorization;
|
|
23934
|
+
readonly fraud_pending_review_authorization?: io.flow.internal.v0.models.FraudPendingReviewAuthorization;
|
|
23935
|
+
readonly fraud_review_authorization_decision?: io.flow.internal.v0.models.FraudReviewAuthorizationDecision;
|
|
24295
23936
|
}
|
|
24296
23937
|
|
|
24297
23938
|
interface FraudPendingReview {
|
|
@@ -24304,6 +23945,32 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24304
23945
|
readonly liability?: io.flow.fraud.v0.enums.FraudLiability;
|
|
24305
23946
|
}
|
|
24306
23947
|
|
|
23948
|
+
interface FraudPendingReviewAuthorization {
|
|
23949
|
+
readonly id: string;
|
|
23950
|
+
readonly fraud_review_authorization_id: string;
|
|
23951
|
+
readonly order: io.flow.experience.v0.models.OrderReference;
|
|
23952
|
+
readonly fraud_order_reference?: io.flow.fraud.v0.unions.FraudOrderReference;
|
|
23953
|
+
readonly recommended_status: io.flow.fraud.v0.enums.FraudStatus;
|
|
23954
|
+
readonly apply_at?: string;
|
|
23955
|
+
readonly liability?: io.flow.fraud.v0.enums.FraudLiability;
|
|
23956
|
+
}
|
|
23957
|
+
|
|
23958
|
+
interface FraudPendingReviewAuthorizationDeleted {
|
|
23959
|
+
readonly discriminator: 'fraud_pending_review_authorization_deleted';
|
|
23960
|
+
readonly event_id: string;
|
|
23961
|
+
readonly timestamp: string;
|
|
23962
|
+
readonly organization: string;
|
|
23963
|
+
readonly id: string;
|
|
23964
|
+
}
|
|
23965
|
+
|
|
23966
|
+
interface FraudPendingReviewAuthorizationUpserted {
|
|
23967
|
+
readonly discriminator: 'fraud_pending_review_authorization_upserted';
|
|
23968
|
+
readonly event_id: string;
|
|
23969
|
+
readonly timestamp: string;
|
|
23970
|
+
readonly organization: string;
|
|
23971
|
+
readonly fraud_pending_review_authorization: io.flow.internal.v0.models.FraudPendingReviewAuthorization;
|
|
23972
|
+
}
|
|
23973
|
+
|
|
24307
23974
|
interface FraudPendingReviewDeleted {
|
|
24308
23975
|
readonly discriminator: 'fraud_pending_review_deleted';
|
|
24309
23976
|
readonly event_id: string;
|
|
@@ -24384,6 +24051,67 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24384
24051
|
readonly created_at?: string;
|
|
24385
24052
|
}
|
|
24386
24053
|
|
|
24054
|
+
interface FraudReviewAuthorization {
|
|
24055
|
+
readonly id: string;
|
|
24056
|
+
readonly organization_id: string;
|
|
24057
|
+
readonly order: io.flow.experience.v0.models.OrderReference;
|
|
24058
|
+
readonly fraud_order_reference?: io.flow.fraud.v0.unions.FraudOrderReference;
|
|
24059
|
+
readonly status: io.flow.fraud.v0.enums.FraudStatus;
|
|
24060
|
+
readonly responsible_party: io.flow.internal.v0.enums.FraudReviewResponsibleParty;
|
|
24061
|
+
readonly description?: string;
|
|
24062
|
+
readonly risk_evaluation?: io.flow.internal.v0.enums.RiskEvaluation;
|
|
24063
|
+
readonly liability?: io.flow.fraud.v0.enums.FraudLiability;
|
|
24064
|
+
readonly status_updated_at?: string;
|
|
24065
|
+
readonly attributes?: Record<string, string>;
|
|
24066
|
+
readonly provider?: io.flow.internal.v0.enums.FraudProvider;
|
|
24067
|
+
readonly payment_authorization_id?: string;
|
|
24068
|
+
readonly decline_reason?: io.flow.internal.v0.unions.DeclineReason;
|
|
24069
|
+
readonly created_at?: string;
|
|
24070
|
+
}
|
|
24071
|
+
|
|
24072
|
+
interface FraudReviewAuthorizationDecision {
|
|
24073
|
+
readonly id: string;
|
|
24074
|
+
readonly fraud_review_authorization_id: string;
|
|
24075
|
+
readonly order: io.flow.experience.v0.models.OrderReference;
|
|
24076
|
+
readonly fraud_order_reference?: io.flow.fraud.v0.unions.FraudOrderReference;
|
|
24077
|
+
readonly status: io.flow.fraud.v0.enums.FraudStatus;
|
|
24078
|
+
readonly created_at: string;
|
|
24079
|
+
readonly liability?: io.flow.fraud.v0.enums.FraudLiability;
|
|
24080
|
+
readonly updated_by_user?: io.flow.common.v0.models.UserReference;
|
|
24081
|
+
}
|
|
24082
|
+
|
|
24083
|
+
interface FraudReviewAuthorizationDecisionDeleted {
|
|
24084
|
+
readonly discriminator: 'fraud_review_authorization_decision_deleted';
|
|
24085
|
+
readonly event_id: string;
|
|
24086
|
+
readonly timestamp: string;
|
|
24087
|
+
readonly organization: string;
|
|
24088
|
+
readonly id: string;
|
|
24089
|
+
}
|
|
24090
|
+
|
|
24091
|
+
interface FraudReviewAuthorizationDecisionUpserted {
|
|
24092
|
+
readonly discriminator: 'fraud_review_authorization_decision_upserted';
|
|
24093
|
+
readonly event_id: string;
|
|
24094
|
+
readonly timestamp: string;
|
|
24095
|
+
readonly organization: string;
|
|
24096
|
+
readonly fraud_review_authorization_decision: io.flow.internal.v0.models.FraudReviewAuthorizationDecision;
|
|
24097
|
+
}
|
|
24098
|
+
|
|
24099
|
+
interface FraudReviewAuthorizationDeleted {
|
|
24100
|
+
readonly discriminator: 'fraud_review_authorization_deleted';
|
|
24101
|
+
readonly event_id: string;
|
|
24102
|
+
readonly timestamp: string;
|
|
24103
|
+
readonly organization: string;
|
|
24104
|
+
readonly id: string;
|
|
24105
|
+
}
|
|
24106
|
+
|
|
24107
|
+
interface FraudReviewAuthorizationUpserted {
|
|
24108
|
+
readonly discriminator: 'fraud_review_authorization_upserted';
|
|
24109
|
+
readonly event_id: string;
|
|
24110
|
+
readonly timestamp: string;
|
|
24111
|
+
readonly organization: string;
|
|
24112
|
+
readonly fraud_review_authorization: io.flow.internal.v0.models.FraudReviewAuthorization;
|
|
24113
|
+
}
|
|
24114
|
+
|
|
24387
24115
|
interface FraudReviewDecision {
|
|
24388
24116
|
readonly id: string;
|
|
24389
24117
|
readonly fraud_review_id: string;
|
|
@@ -24442,6 +24170,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24442
24170
|
readonly fraud_review: io.flow.internal.v0.models.FraudReview;
|
|
24443
24171
|
readonly fraud_pending_review?: io.flow.internal.v0.models.FraudPendingReview;
|
|
24444
24172
|
readonly fraud_review_decision?: io.flow.internal.v0.models.FraudReviewDecision;
|
|
24173
|
+
readonly fraud_review_authorizations?: io.flow.internal.v0.models.FraudAuthorizationSummary[];
|
|
24445
24174
|
}
|
|
24446
24175
|
|
|
24447
24176
|
interface FtpFileDeleted {
|
|
@@ -24516,6 +24245,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24516
24245
|
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
24517
24246
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
24518
24247
|
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
24248
|
+
readonly payment?: io.flow.internal.v0.models.PaymentSummary;
|
|
24519
24249
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
24520
24250
|
readonly sequence_number: number;
|
|
24521
24251
|
readonly posting_cutoff: string;
|
|
@@ -24634,6 +24364,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24634
24364
|
readonly subtotal: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24635
24365
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24636
24366
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24367
|
+
readonly tips?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24637
24368
|
readonly discount: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24638
24369
|
readonly total: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24639
24370
|
}
|
|
@@ -24798,6 +24529,37 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24798
24529
|
readonly tracker_id: string;
|
|
24799
24530
|
}
|
|
24800
24531
|
|
|
24532
|
+
interface HarinathItem {
|
|
24533
|
+
readonly id: string;
|
|
24534
|
+
readonly number: string;
|
|
24535
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
24536
|
+
readonly description?: string;
|
|
24537
|
+
readonly type: io.flow.internal.v0.enums.HarinathItemType;
|
|
24538
|
+
readonly added_on: string;
|
|
24539
|
+
}
|
|
24540
|
+
|
|
24541
|
+
interface HarinathItemDeleted {
|
|
24542
|
+
readonly discriminator: 'harinath_item_deleted';
|
|
24543
|
+
readonly event_id: string;
|
|
24544
|
+
readonly timestamp: string;
|
|
24545
|
+
readonly id: string;
|
|
24546
|
+
}
|
|
24547
|
+
|
|
24548
|
+
interface HarinathItemForm {
|
|
24549
|
+
readonly number: string;
|
|
24550
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
24551
|
+
readonly description?: string;
|
|
24552
|
+
readonly type: io.flow.internal.v0.enums.HarinathItemType;
|
|
24553
|
+
readonly added_on: string;
|
|
24554
|
+
}
|
|
24555
|
+
|
|
24556
|
+
interface HarinathItemUpserted {
|
|
24557
|
+
readonly discriminator: 'harinath_item_upserted';
|
|
24558
|
+
readonly event_id: string;
|
|
24559
|
+
readonly timestamp: string;
|
|
24560
|
+
readonly item: io.flow.internal.v0.models.HarinathItem;
|
|
24561
|
+
}
|
|
24562
|
+
|
|
24801
24563
|
interface HarmonizationClassificationStatisticsData {
|
|
24802
24564
|
readonly statistics: io.flow.internal.v0.models.ClassificationStatistics;
|
|
24803
24565
|
}
|
|
@@ -25330,6 +25092,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25330
25092
|
string,
|
|
25331
25093
|
io.flow.internal.v0.models.TariffCodeDuty
|
|
25332
25094
|
>;
|
|
25095
|
+
readonly decision_source?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
25333
25096
|
readonly created_at?: string;
|
|
25334
25097
|
readonly updated_at?: string;
|
|
25335
25098
|
readonly updated_by_user_id?: string;
|
|
@@ -25486,6 +25249,37 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25486
25249
|
readonly descriptive_asset_urls?: string;
|
|
25487
25250
|
}
|
|
25488
25251
|
|
|
25252
|
+
interface KonstantinItem {
|
|
25253
|
+
readonly id: string;
|
|
25254
|
+
readonly number: string;
|
|
25255
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
25256
|
+
readonly description?: string;
|
|
25257
|
+
readonly type: io.flow.internal.v0.enums.KonstantinItemType;
|
|
25258
|
+
readonly added_on: string;
|
|
25259
|
+
}
|
|
25260
|
+
|
|
25261
|
+
interface KonstantinItemDeleted {
|
|
25262
|
+
readonly discriminator: 'konstantin_item_deleted';
|
|
25263
|
+
readonly event_id: string;
|
|
25264
|
+
readonly timestamp: string;
|
|
25265
|
+
readonly id: string;
|
|
25266
|
+
}
|
|
25267
|
+
|
|
25268
|
+
interface KonstantinItemForm {
|
|
25269
|
+
readonly number: string;
|
|
25270
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
25271
|
+
readonly description?: string;
|
|
25272
|
+
readonly type: io.flow.internal.v0.enums.KonstantinItemType;
|
|
25273
|
+
readonly added_on: string;
|
|
25274
|
+
}
|
|
25275
|
+
|
|
25276
|
+
interface KonstantinItemUpserted {
|
|
25277
|
+
readonly discriminator: 'konstantin_item_upserted';
|
|
25278
|
+
readonly event_id: string;
|
|
25279
|
+
readonly timestamp: string;
|
|
25280
|
+
readonly item: io.flow.internal.v0.models.KonstantinItem;
|
|
25281
|
+
}
|
|
25282
|
+
|
|
25489
25283
|
interface LabProjectSettings {
|
|
25490
25284
|
readonly id: string;
|
|
25491
25285
|
readonly flow_lab_project_key: string;
|
|
@@ -26040,6 +25834,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26040
25834
|
readonly capabilities: io.flow.internal.v0.enums.LogisticsCapability[];
|
|
26041
25835
|
}
|
|
26042
25836
|
|
|
25837
|
+
interface LogisticsPayoutRequest {
|
|
25838
|
+
readonly organization_id: string;
|
|
25839
|
+
readonly order_number: string;
|
|
25840
|
+
readonly carrier: string;
|
|
25841
|
+
readonly carrier_tracking_number: string;
|
|
25842
|
+
readonly dry_run: boolean;
|
|
25843
|
+
readonly payout_resolution_method: io.flow.internal.v0.enums.LogisticsPayoutResolutionMethod;
|
|
25844
|
+
readonly label_id?: string;
|
|
25845
|
+
readonly combined_shipment_order_number?: string;
|
|
25846
|
+
}
|
|
25847
|
+
|
|
25848
|
+
interface LogisticsPayoutRequestForm {
|
|
25849
|
+
readonly organization_id: string;
|
|
25850
|
+
readonly order_identifier: string;
|
|
25851
|
+
readonly carrier_id?: string;
|
|
25852
|
+
readonly carrier_name?: string;
|
|
25853
|
+
readonly carrier_tracking_number?: string;
|
|
25854
|
+
readonly external_reference_number?: string;
|
|
25855
|
+
}
|
|
25856
|
+
|
|
26043
25857
|
interface Logo {
|
|
26044
25858
|
readonly url: string;
|
|
26045
25859
|
}
|
|
@@ -26610,6 +26424,68 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26610
26424
|
readonly proposition: io.flow.internal.v0.models.MetadataProposition;
|
|
26611
26425
|
}
|
|
26612
26426
|
|
|
26427
|
+
interface MichaelyanItem {
|
|
26428
|
+
readonly id: string;
|
|
26429
|
+
readonly number: string;
|
|
26430
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
26431
|
+
readonly description?: string;
|
|
26432
|
+
readonly type: io.flow.internal.v0.enums.MichaelyanItemType;
|
|
26433
|
+
readonly added_on: string;
|
|
26434
|
+
}
|
|
26435
|
+
|
|
26436
|
+
interface MichaelyanItemDeleted {
|
|
26437
|
+
readonly discriminator: 'michaelyan_item_deleted';
|
|
26438
|
+
readonly event_id: string;
|
|
26439
|
+
readonly timestamp: string;
|
|
26440
|
+
readonly id: string;
|
|
26441
|
+
}
|
|
26442
|
+
|
|
26443
|
+
interface MichaelyanItemForm {
|
|
26444
|
+
readonly number: string;
|
|
26445
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
26446
|
+
readonly description?: string;
|
|
26447
|
+
readonly type: io.flow.internal.v0.enums.MichaelyanItemType;
|
|
26448
|
+
readonly added_on: string;
|
|
26449
|
+
}
|
|
26450
|
+
|
|
26451
|
+
interface MichaelyanItemUpserted {
|
|
26452
|
+
readonly discriminator: 'michaelyan_item_upserted';
|
|
26453
|
+
readonly event_id: string;
|
|
26454
|
+
readonly timestamp: string;
|
|
26455
|
+
readonly item: io.flow.internal.v0.models.MichaelyanItem;
|
|
26456
|
+
}
|
|
26457
|
+
|
|
26458
|
+
interface MiljenkoItem {
|
|
26459
|
+
readonly id: string;
|
|
26460
|
+
readonly number: string;
|
|
26461
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
26462
|
+
readonly description?: string;
|
|
26463
|
+
readonly type: io.flow.internal.v0.enums.MiljenkoItemType;
|
|
26464
|
+
readonly added_on: string;
|
|
26465
|
+
}
|
|
26466
|
+
|
|
26467
|
+
interface MiljenkoItemDeleted {
|
|
26468
|
+
readonly discriminator: 'miljenko_item_deleted';
|
|
26469
|
+
readonly event_id: string;
|
|
26470
|
+
readonly timestamp: string;
|
|
26471
|
+
readonly id: string;
|
|
26472
|
+
}
|
|
26473
|
+
|
|
26474
|
+
interface MiljenkoItemForm {
|
|
26475
|
+
readonly number: string;
|
|
26476
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
26477
|
+
readonly description?: string;
|
|
26478
|
+
readonly type: io.flow.internal.v0.enums.MiljenkoItemType;
|
|
26479
|
+
readonly added_on: string;
|
|
26480
|
+
}
|
|
26481
|
+
|
|
26482
|
+
interface MiljenkoItemUpserted {
|
|
26483
|
+
readonly discriminator: 'miljenko_item_upserted';
|
|
26484
|
+
readonly event_id: string;
|
|
26485
|
+
readonly timestamp: string;
|
|
26486
|
+
readonly item: io.flow.internal.v0.models.MiljenkoItem;
|
|
26487
|
+
}
|
|
26488
|
+
|
|
26613
26489
|
interface NextBillingStatement {
|
|
26614
26490
|
readonly date: string;
|
|
26615
26491
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -27018,6 +26894,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27018
26894
|
readonly currency: string;
|
|
27019
26895
|
}
|
|
27020
26896
|
|
|
26897
|
+
interface OrderTaxAndDutyInclusivitySetting {
|
|
26898
|
+
readonly id: string;
|
|
26899
|
+
readonly organization_id: string;
|
|
26900
|
+
readonly shopify_order_id: string;
|
|
26901
|
+
readonly order_number: string;
|
|
26902
|
+
readonly tax_and_duty_inclusivity_setting: io.flow.internal.v0.enums.TaxAndDutyInclusivitySetting;
|
|
26903
|
+
}
|
|
26904
|
+
|
|
26905
|
+
interface OrderTaxAndDutyInclusivitySettingDeleted {
|
|
26906
|
+
readonly discriminator: 'order_tax_and_duty_inclusivity_setting_deleted';
|
|
26907
|
+
readonly event_id: string;
|
|
26908
|
+
readonly timestamp: string;
|
|
26909
|
+
readonly organization: string;
|
|
26910
|
+
readonly id: string;
|
|
26911
|
+
}
|
|
26912
|
+
|
|
26913
|
+
interface OrderTaxAndDutyInclusivitySettingUpserted {
|
|
26914
|
+
readonly discriminator: 'order_tax_and_duty_inclusivity_setting_upserted';
|
|
26915
|
+
readonly event_id: string;
|
|
26916
|
+
readonly timestamp: string;
|
|
26917
|
+
readonly order_tax_and_duty_inclusivity_setting: io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
26918
|
+
}
|
|
26919
|
+
|
|
27021
26920
|
interface OrderTransaction {
|
|
27022
26921
|
readonly discriminator: 'order_transaction';
|
|
27023
26922
|
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -27308,6 +27207,34 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27308
27207
|
readonly to: string;
|
|
27309
27208
|
}
|
|
27310
27209
|
|
|
27210
|
+
interface OrganizationMetadata {
|
|
27211
|
+
readonly id: string;
|
|
27212
|
+
readonly organization_id: string;
|
|
27213
|
+
readonly pending_restriction_count: number;
|
|
27214
|
+
readonly pending_verification_count: number;
|
|
27215
|
+
readonly oldest_pending_restriction_date?: string;
|
|
27216
|
+
readonly oldest_pending_verification_date?: string;
|
|
27217
|
+
readonly product_count: number;
|
|
27218
|
+
readonly restricted_product_count: number;
|
|
27219
|
+
readonly last_order_submitted_at?: string;
|
|
27220
|
+
}
|
|
27221
|
+
|
|
27222
|
+
interface OrganizationMetadataDeleted {
|
|
27223
|
+
readonly discriminator: 'organization_metadata_deleted';
|
|
27224
|
+
readonly event_id: string;
|
|
27225
|
+
readonly timestamp: string;
|
|
27226
|
+
readonly organization: string;
|
|
27227
|
+
readonly id: string;
|
|
27228
|
+
}
|
|
27229
|
+
|
|
27230
|
+
interface OrganizationMetadataUpserted {
|
|
27231
|
+
readonly discriminator: 'organization_metadata_upserted';
|
|
27232
|
+
readonly event_id: string;
|
|
27233
|
+
readonly timestamp: string;
|
|
27234
|
+
readonly organization: string;
|
|
27235
|
+
readonly organization_metadata: io.flow.internal.v0.models.OrganizationMetadata;
|
|
27236
|
+
}
|
|
27237
|
+
|
|
27311
27238
|
interface OrganizationOnboardingStateAdjustmentResult {
|
|
27312
27239
|
readonly organization_onboarding_state?: io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState;
|
|
27313
27240
|
}
|
|
@@ -27495,6 +27422,144 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27495
27422
|
readonly audit_result: io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
27496
27423
|
}
|
|
27497
27424
|
|
|
27425
|
+
interface OtherRecord {
|
|
27426
|
+
readonly id: string;
|
|
27427
|
+
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
27428
|
+
readonly account: io.flow.internal.v0.models.OtherRecordAccount;
|
|
27429
|
+
readonly metadata?: io.flow.internal.v0.models.OtherRecordMetadata;
|
|
27430
|
+
readonly order?: io.flow.internal.v0.models.OtherRecordOrderSummary;
|
|
27431
|
+
readonly currency: string;
|
|
27432
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
27433
|
+
readonly parent?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
27434
|
+
readonly gross: number;
|
|
27435
|
+
readonly fees: io.flow.internal.v0.models.OtherRecordFees;
|
|
27436
|
+
readonly withholdings: io.flow.internal.v0.models.OtherRecordWithholdings;
|
|
27437
|
+
readonly discount: io.flow.internal.v0.models.OtherRecordDiscount;
|
|
27438
|
+
readonly net: number;
|
|
27439
|
+
readonly identifiers: io.flow.internal.v0.models.OtherRecordIdentifiers;
|
|
27440
|
+
readonly created_at: string;
|
|
27441
|
+
readonly updated_at: string;
|
|
27442
|
+
}
|
|
27443
|
+
|
|
27444
|
+
interface OtherRecordAccount {
|
|
27445
|
+
readonly id: string;
|
|
27446
|
+
readonly merchant?: io.flow.internal.v0.models.OtherRecordMerchantReference;
|
|
27447
|
+
readonly environment: io.flow.common.v0.enums.Environment;
|
|
27448
|
+
readonly source: io.flow.internal.v0.models.OtherRecordAccountSourceSummary;
|
|
27449
|
+
}
|
|
27450
|
+
|
|
27451
|
+
interface OtherRecordAccountSourceSummary {
|
|
27452
|
+
readonly id: string;
|
|
27453
|
+
readonly type: io.flow.internal.v0.enums.AccountType;
|
|
27454
|
+
}
|
|
27455
|
+
|
|
27456
|
+
interface OtherRecordDeleted {
|
|
27457
|
+
readonly discriminator: 'other_record_deleted';
|
|
27458
|
+
readonly event_id: string;
|
|
27459
|
+
readonly timestamp: string;
|
|
27460
|
+
readonly id: string;
|
|
27461
|
+
}
|
|
27462
|
+
|
|
27463
|
+
interface OtherRecordDiscount {
|
|
27464
|
+
readonly amount: number;
|
|
27465
|
+
readonly description?: string;
|
|
27466
|
+
}
|
|
27467
|
+
|
|
27468
|
+
interface OtherRecordFees {
|
|
27469
|
+
readonly duty_guarantee: number;
|
|
27470
|
+
readonly mor: number;
|
|
27471
|
+
readonly fraud: number;
|
|
27472
|
+
readonly fx: number;
|
|
27473
|
+
readonly processing: number;
|
|
27474
|
+
readonly rate_lock: number;
|
|
27475
|
+
readonly transfer: number;
|
|
27476
|
+
readonly negative_balance: number;
|
|
27477
|
+
}
|
|
27478
|
+
|
|
27479
|
+
interface OtherRecordIdentifiers {
|
|
27480
|
+
readonly reference_id?: string;
|
|
27481
|
+
}
|
|
27482
|
+
|
|
27483
|
+
interface OtherRecordMerchantReference {
|
|
27484
|
+
readonly id: string;
|
|
27485
|
+
}
|
|
27486
|
+
|
|
27487
|
+
interface OtherRecordMetadata {
|
|
27488
|
+
readonly channel?: io.flow.internal.v0.models.OtherRecordMetadataChannel;
|
|
27489
|
+
readonly shipping_label?: io.flow.internal.v0.models.OtherRecordMetadataShippingLabel;
|
|
27490
|
+
readonly shipping_label_revenue_share?: io.flow.internal.v0.models.OtherRecordMetadataShippingLabelRevenueShare;
|
|
27491
|
+
readonly trueup?: io.flow.internal.v0.models.OtherRecordMetadataTrueup;
|
|
27492
|
+
readonly carrier_charge?: io.flow.internal.v0.models.OtherRecordMetadataCarrierCharge;
|
|
27493
|
+
readonly manual?: io.flow.internal.v0.models.OtherRecordMetadataManual;
|
|
27494
|
+
readonly failed_payout?: io.flow.internal.v0.models.OtherRecordMetadataFailedPayout;
|
|
27495
|
+
}
|
|
27496
|
+
|
|
27497
|
+
interface OtherRecordMetadataCarrierCharge {
|
|
27498
|
+
readonly reason: io.flow.trueup.v0.enums.CarrierChargeReason;
|
|
27499
|
+
readonly label_created_at: string;
|
|
27500
|
+
readonly carrier_id: string;
|
|
27501
|
+
readonly carrier_tracking_number: string;
|
|
27502
|
+
readonly revenue_share_percentage: number;
|
|
27503
|
+
readonly outbound_transaction_id?: string;
|
|
27504
|
+
}
|
|
27505
|
+
|
|
27506
|
+
interface OtherRecordMetadataChannel {
|
|
27507
|
+
readonly method: string;
|
|
27508
|
+
readonly card?: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata;
|
|
27509
|
+
}
|
|
27510
|
+
|
|
27511
|
+
interface OtherRecordMetadataFailedPayout {
|
|
27512
|
+
readonly failed_payment: io.flow.billing.v0.models.TransactionMetadataFailedPayoutReference;
|
|
27513
|
+
}
|
|
27514
|
+
|
|
27515
|
+
interface OtherRecordMetadataManual {
|
|
27516
|
+
readonly description: string;
|
|
27517
|
+
readonly original?: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
27518
|
+
readonly category?: io.flow.internal.v0.enums.ManualTransactionCategory;
|
|
27519
|
+
readonly url?: string;
|
|
27520
|
+
}
|
|
27521
|
+
|
|
27522
|
+
interface OtherRecordMetadataShippingLabel {
|
|
27523
|
+
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
27524
|
+
}
|
|
27525
|
+
|
|
27526
|
+
interface OtherRecordMetadataShippingLabelRevenueShare {
|
|
27527
|
+
readonly label_id: string;
|
|
27528
|
+
readonly base_amount?: number;
|
|
27529
|
+
readonly percentage?: number;
|
|
27530
|
+
}
|
|
27531
|
+
|
|
27532
|
+
interface OtherRecordMetadataTrueup {
|
|
27533
|
+
readonly original: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
27534
|
+
readonly label_transaction_id: string;
|
|
27535
|
+
readonly label_invoice_request_id: string;
|
|
27536
|
+
readonly carrier_charge_id: string;
|
|
27537
|
+
}
|
|
27538
|
+
|
|
27539
|
+
interface OtherRecordOrderSummary {
|
|
27540
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
27541
|
+
readonly number: string;
|
|
27542
|
+
readonly identifiers: io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers;
|
|
27543
|
+
}
|
|
27544
|
+
|
|
27545
|
+
interface OtherRecordOrderSummaryIdentifiers {
|
|
27546
|
+
readonly shopify_order_id?: string;
|
|
27547
|
+
}
|
|
27548
|
+
|
|
27549
|
+
interface OtherRecordUpserted {
|
|
27550
|
+
readonly discriminator: 'other_record_upserted';
|
|
27551
|
+
readonly event_id: string;
|
|
27552
|
+
readonly timestamp: string;
|
|
27553
|
+
readonly other_record: io.flow.internal.v0.models.OtherRecord;
|
|
27554
|
+
}
|
|
27555
|
+
|
|
27556
|
+
interface OtherRecordWithholdings {
|
|
27557
|
+
readonly tax: number;
|
|
27558
|
+
readonly duty: number;
|
|
27559
|
+
readonly freight: number;
|
|
27560
|
+
readonly insurance: number;
|
|
27561
|
+
}
|
|
27562
|
+
|
|
27498
27563
|
interface Partner {
|
|
27499
27564
|
readonly id: string;
|
|
27500
27565
|
readonly name: string;
|
|
@@ -27666,6 +27731,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27666
27731
|
readonly merchant: io.flow.internal.v0.unions.ProcessorMerchant;
|
|
27667
27732
|
}
|
|
27668
27733
|
|
|
27734
|
+
interface PaymentSummary {
|
|
27735
|
+
readonly psp: number;
|
|
27736
|
+
readonly credit: number;
|
|
27737
|
+
readonly subsidized: number;
|
|
27738
|
+
readonly manual: number;
|
|
27739
|
+
readonly cod: number;
|
|
27740
|
+
readonly total: number;
|
|
27741
|
+
}
|
|
27742
|
+
|
|
27669
27743
|
interface PaymentSummaryV2 {
|
|
27670
27744
|
readonly discriminator: 'payment_summary_v2';
|
|
27671
27745
|
readonly id: string;
|
|
@@ -27883,6 +27957,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27883
27957
|
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
27884
27958
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
27885
27959
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
27960
|
+
readonly payment?: io.flow.internal.v0.models.PaymentSummary;
|
|
27886
27961
|
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
27887
27962
|
readonly sequence_number: number;
|
|
27888
27963
|
readonly posting_cutoff: string;
|
|
@@ -28835,11 +28910,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28835
28910
|
readonly sequence_number: number;
|
|
28836
28911
|
readonly fulfilled_at: string;
|
|
28837
28912
|
readonly completes_order: boolean;
|
|
28838
|
-
readonly payment: io.flow.internal.v0.models.ReportingPayment;
|
|
28839
28913
|
readonly refund?: io.flow.internal.v0.models.ReportingRefundReference;
|
|
28840
28914
|
readonly value: io.flow.internal.v0.models.FulfillmentShopperBreakdown;
|
|
28841
28915
|
readonly dispatch_country?: io.flow.internal.v0.models.ReportingCountry;
|
|
28842
28916
|
readonly destination?: io.flow.internal.v0.models.ReportingDestination;
|
|
28917
|
+
readonly payment?: io.flow.internal.v0.models.ReportingPayment;
|
|
28843
28918
|
readonly shipment?: io.flow.internal.v0.models.ReportingShipment;
|
|
28844
28919
|
readonly is: io.flow.internal.v0.models.ReportingFulfillmentIs;
|
|
28845
28920
|
readonly has: io.flow.internal.v0.models.ReportingFulfillmentHas;
|
|
@@ -28858,6 +28933,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28858
28933
|
readonly wyol: boolean;
|
|
28859
28934
|
readonly b2b: boolean;
|
|
28860
28935
|
readonly domestic: boolean;
|
|
28936
|
+
readonly combined_shipment?: boolean;
|
|
28937
|
+
readonly order_cancelled?: boolean;
|
|
28938
|
+
readonly lvg?: boolean;
|
|
28939
|
+
readonly tax_inclusive?: boolean;
|
|
28940
|
+
readonly duty_inclusive?: boolean;
|
|
28861
28941
|
}
|
|
28862
28942
|
|
|
28863
28943
|
interface ReportingFx {
|
|
@@ -28866,6 +28946,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28866
28946
|
readonly product: io.flow.internal.v0.models.ReportingUsd;
|
|
28867
28947
|
readonly tax: io.flow.internal.v0.models.ReportingUsd;
|
|
28868
28948
|
readonly duty: io.flow.internal.v0.models.ReportingUsd;
|
|
28949
|
+
readonly tips?: io.flow.internal.v0.models.ReportingUsd;
|
|
28869
28950
|
readonly total: io.flow.internal.v0.models.ReportingUsd;
|
|
28870
28951
|
}
|
|
28871
28952
|
|
|
@@ -28883,6 +28964,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28883
28964
|
readonly processing: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28884
28965
|
readonly rate_lock: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28885
28966
|
readonly transfer: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28967
|
+
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28886
28968
|
}
|
|
28887
28969
|
|
|
28888
28970
|
interface ReportingMerchantSubsidies {
|
|
@@ -28890,6 +28972,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28890
28972
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28891
28973
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28892
28974
|
readonly ccf: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28975
|
+
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28893
28976
|
}
|
|
28894
28977
|
|
|
28895
28978
|
interface ReportingMerchantTransactions {
|
|
@@ -28898,6 +28981,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28898
28981
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28899
28982
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28900
28983
|
readonly freight: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28984
|
+
readonly discount?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28985
|
+
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28901
28986
|
}
|
|
28902
28987
|
|
|
28903
28988
|
interface ReportingMonetaryValue {
|
|
@@ -28920,25 +29005,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28920
29005
|
}
|
|
28921
29006
|
|
|
28922
29007
|
interface ReportingPayment {
|
|
28923
|
-
readonly metadata?: io.flow.internal.v0.models.ReportingPaymentMetadata;
|
|
28924
29008
|
readonly psp: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28925
29009
|
readonly credit: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
29010
|
+
readonly subsidized: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
29011
|
+
readonly manual: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
29012
|
+
readonly cod: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28926
29013
|
readonly total: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28927
29014
|
}
|
|
28928
29015
|
|
|
28929
|
-
interface ReportingPaymentMetadata {
|
|
28930
|
-
readonly gateway: io.flow.internal.v0.enums.Processor;
|
|
28931
|
-
readonly method: string;
|
|
28932
|
-
readonly psp_reference?: string;
|
|
28933
|
-
readonly authorization?: io.flow.internal.v0.models.ReportingAuthorizationReference;
|
|
28934
|
-
readonly settlement_date: string;
|
|
28935
|
-
readonly additional_authorizations?: io.flow.internal.v0.models.ReportingPaymentMetadataAdditionalAuthorizations;
|
|
28936
|
-
}
|
|
28937
|
-
|
|
28938
|
-
interface ReportingPaymentMetadataAdditionalAuthorizations {
|
|
28939
|
-
readonly ids: string;
|
|
28940
|
-
}
|
|
28941
|
-
|
|
28942
29016
|
interface ReportingProvince {
|
|
28943
29017
|
readonly code?: string;
|
|
28944
29018
|
readonly name: string;
|
|
@@ -28967,6 +29041,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28967
29041
|
readonly ccf: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28968
29042
|
readonly emergency: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28969
29043
|
readonly peak: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
29044
|
+
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28970
29045
|
}
|
|
28971
29046
|
|
|
28972
29047
|
interface ReportingUsd {
|
|
@@ -28994,6 +29069,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28994
29069
|
readonly select_mismatching_item_types: boolean;
|
|
28995
29070
|
}
|
|
28996
29071
|
|
|
29072
|
+
interface RescreenRestrictionsProducts {
|
|
29073
|
+
readonly placeholder?: boolean;
|
|
29074
|
+
}
|
|
29075
|
+
|
|
28997
29076
|
interface RestrictionCategory {
|
|
28998
29077
|
readonly category: string;
|
|
28999
29078
|
}
|
|
@@ -29267,6 +29346,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29267
29346
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
29268
29347
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
29269
29348
|
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
29349
|
+
readonly payment?: io.flow.internal.v0.models.PaymentSummary;
|
|
29270
29350
|
readonly sequence_number: number;
|
|
29271
29351
|
readonly posting_cutoff: string;
|
|
29272
29352
|
readonly trigger: io.flow.internal.v0.unions.ReturnTrigger;
|
|
@@ -29467,7 +29547,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29467
29547
|
readonly discriminator: 'search_experiment_summary';
|
|
29468
29548
|
readonly key: string;
|
|
29469
29549
|
readonly name: string;
|
|
29470
|
-
readonly status: io.flow.internal.v0.enums.Status;
|
|
29550
|
+
readonly status: io.flow.experiment.internal.v0.enums.Status;
|
|
29471
29551
|
}
|
|
29472
29552
|
|
|
29473
29553
|
interface SearchItemSummary {
|
|
@@ -30112,6 +30192,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30112
30192
|
readonly id: string;
|
|
30113
30193
|
readonly initial_catalog_synced_at?: string;
|
|
30114
30194
|
readonly catalog_sync_duration?: number;
|
|
30195
|
+
readonly restrictions_sync_duration?: number;
|
|
30196
|
+
readonly classifications_sync_duration?: number;
|
|
30115
30197
|
readonly catalog_products_count?: number;
|
|
30116
30198
|
readonly initial_product_restrictions_synced_at?: string;
|
|
30117
30199
|
}
|
|
@@ -30185,6 +30267,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30185
30267
|
readonly product: io.flow.internal.v0.models.ShopperLines;
|
|
30186
30268
|
readonly fees: io.flow.internal.v0.models.ShopperFees;
|
|
30187
30269
|
readonly freight: io.flow.internal.v0.models.ShopperFreight;
|
|
30270
|
+
readonly tips?: number;
|
|
30188
30271
|
readonly order_discount: number;
|
|
30189
30272
|
readonly total: number;
|
|
30190
30273
|
}
|
|
@@ -30897,6 +30980,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30897
30980
|
readonly name: string;
|
|
30898
30981
|
}
|
|
30899
30982
|
|
|
30983
|
+
interface ThiagoItem {
|
|
30984
|
+
readonly id: string;
|
|
30985
|
+
readonly number: string;
|
|
30986
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
30987
|
+
readonly description?: string;
|
|
30988
|
+
readonly type: io.flow.internal.v0.enums.ThiagoItemType;
|
|
30989
|
+
readonly added_on: string;
|
|
30990
|
+
}
|
|
30991
|
+
|
|
30992
|
+
interface ThiagoItemForm {
|
|
30993
|
+
readonly number: string;
|
|
30994
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
30995
|
+
readonly description?: string;
|
|
30996
|
+
readonly type: io.flow.internal.v0.enums.ThiagoItemType;
|
|
30997
|
+
readonly added_on: string;
|
|
30998
|
+
}
|
|
30999
|
+
|
|
30900
31000
|
interface ThirdPartyLogisticsPartner {
|
|
30901
31001
|
readonly warehouse_address: io.flow.common.v0.models.BillingAddress;
|
|
30902
31002
|
readonly warehouse_url?: string;
|
|
@@ -30975,6 +31075,47 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30975
31075
|
readonly timezone: string;
|
|
30976
31076
|
}
|
|
30977
31077
|
|
|
31078
|
+
interface TrackingAssuranceAnalysis {
|
|
31079
|
+
readonly id: string;
|
|
31080
|
+
readonly job_id: string;
|
|
31081
|
+
readonly label_id: string;
|
|
31082
|
+
readonly order_number: string;
|
|
31083
|
+
readonly carrier_tracking_number: string;
|
|
31084
|
+
readonly flow_tracking_number: string;
|
|
31085
|
+
readonly carrier_status: string;
|
|
31086
|
+
readonly aftership_status: string;
|
|
31087
|
+
readonly flow_status: string;
|
|
31088
|
+
readonly latest_carrier_event_date: string;
|
|
31089
|
+
readonly latest_aftership_event_date: string;
|
|
31090
|
+
readonly latest_flow_event_date: string;
|
|
31091
|
+
readonly label_created_at: string;
|
|
31092
|
+
readonly carrier_id: string;
|
|
31093
|
+
readonly carrier_origin_country?: string;
|
|
31094
|
+
readonly label_origin_country: string;
|
|
31095
|
+
readonly label_destination_country: string;
|
|
31096
|
+
readonly carrier_destination_country?: string;
|
|
31097
|
+
}
|
|
31098
|
+
|
|
31099
|
+
interface TrackingAssuranceAnalysisDeleted {
|
|
31100
|
+
readonly discriminator: 'tracking_assurance_analysis_deleted';
|
|
31101
|
+
readonly event_id: string;
|
|
31102
|
+
readonly timestamp: string;
|
|
31103
|
+
readonly organization: string;
|
|
31104
|
+
readonly id: string;
|
|
31105
|
+
}
|
|
31106
|
+
|
|
31107
|
+
interface TrackingAssuranceAnalysisUpserted {
|
|
31108
|
+
readonly discriminator: 'tracking_assurance_analysis_upserted';
|
|
31109
|
+
readonly event_id: string;
|
|
31110
|
+
readonly timestamp: string;
|
|
31111
|
+
readonly organization: string;
|
|
31112
|
+
readonly analysis: io.flow.internal.v0.models.TrackingAssuranceAnalysis;
|
|
31113
|
+
}
|
|
31114
|
+
|
|
31115
|
+
interface TrackingDebugForceTransitForm {
|
|
31116
|
+
readonly description: string;
|
|
31117
|
+
}
|
|
31118
|
+
|
|
30978
31119
|
interface TrackingDebugLabel {
|
|
30979
31120
|
readonly in_transit_location?: io.flow.internal.v0.models.TrackingDebugLabelLocation;
|
|
30980
31121
|
readonly delivery_location?: io.flow.internal.v0.models.TrackingDebugLabelLocation;
|
|
@@ -31549,6 +31690,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31549
31690
|
| io.flow.internal.v0.models.SalesRecordDeleted
|
|
31550
31691
|
| io.flow.internal.v0.models.RevenueRecordUpserted
|
|
31551
31692
|
| io.flow.internal.v0.models.RevenueRecordDeleted
|
|
31693
|
+
| io.flow.internal.v0.models.OtherRecordUpserted
|
|
31694
|
+
| io.flow.internal.v0.models.OtherRecordDeleted
|
|
31552
31695
|
| io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted
|
|
31553
31696
|
| io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted
|
|
31554
31697
|
| io.flow.internal.v0.models.CarrierAccountUpsertedV2
|
|
@@ -31611,14 +31754,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31611
31754
|
| io.flow.internal.v0.models.ExperienceImportRequest
|
|
31612
31755
|
| io.flow.internal.v0.models.SubmittedOrderUpserted
|
|
31613
31756
|
| io.flow.internal.v0.models.LevyRateSummaryUpserted
|
|
31614
|
-
| io.flow.internal.v0.models.ExperimentUpserted
|
|
31615
|
-
| io.flow.internal.v0.models.ExperimentDeleted
|
|
31616
|
-
| io.flow.internal.v0.models.ExperimentResultsUpserted
|
|
31617
|
-
| io.flow.internal.v0.models.ExperimentResultsDeleted
|
|
31618
|
-
| io.flow.internal.v0.models.DailyExperimentResultsUpserted
|
|
31619
|
-
| io.flow.internal.v0.models.DailyExperimentResultsDeleted
|
|
31620
|
-
| io.flow.internal.v0.models.ExperimentMilestoneUpserted
|
|
31621
|
-
| io.flow.internal.v0.models.ExperimentMilestoneDeleted
|
|
31622
31757
|
| io.flow.internal.v0.models.ExportCompleted
|
|
31623
31758
|
| io.flow.internal.v0.models.ExportFailed
|
|
31624
31759
|
| io.flow.internal.v0.models.FeatureUpserted
|
|
@@ -31653,6 +31788,12 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31653
31788
|
| io.flow.internal.v0.models.FraudPendingReviewDeleted
|
|
31654
31789
|
| io.flow.internal.v0.models.FraudReviewDecisionUpserted
|
|
31655
31790
|
| io.flow.internal.v0.models.FraudReviewDecisionDeleted
|
|
31791
|
+
| io.flow.internal.v0.models.FraudReviewAuthorizationUpserted
|
|
31792
|
+
| io.flow.internal.v0.models.FraudReviewAuthorizationDeleted
|
|
31793
|
+
| io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted
|
|
31794
|
+
| io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted
|
|
31795
|
+
| io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted
|
|
31796
|
+
| io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted
|
|
31656
31797
|
| io.flow.internal.v0.models.FraudProviderConfigurationUpserted
|
|
31657
31798
|
| io.flow.internal.v0.models.FraudProviderConfigurationDeleted
|
|
31658
31799
|
| io.flow.internal.v0.models.ManualReviewRuleUpserted
|
|
@@ -31730,6 +31871,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31730
31871
|
| io.flow.internal.v0.models.OrganizationDeactivationDeleted
|
|
31731
31872
|
| io.flow.internal.v0.models.MerchantGuidAssignmentUpserted
|
|
31732
31873
|
| io.flow.internal.v0.models.MerchantGuidAssignmentDeleted
|
|
31874
|
+
| io.flow.internal.v0.models.OrganizationMetadataUpserted
|
|
31875
|
+
| io.flow.internal.v0.models.OrganizationMetadataDeleted
|
|
31733
31876
|
| io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted
|
|
31734
31877
|
| io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted
|
|
31735
31878
|
| io.flow.internal.v0.models.UnassignedMerchantGuidUpserted
|
|
@@ -31805,6 +31948,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31805
31948
|
| io.flow.internal.v0.models.ChannelOrderSummaryDeleted
|
|
31806
31949
|
| io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted
|
|
31807
31950
|
| io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted
|
|
31951
|
+
| io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted
|
|
31952
|
+
| io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted
|
|
31808
31953
|
| io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted
|
|
31809
31954
|
| io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted
|
|
31810
31955
|
| io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted
|
|
@@ -31823,8 +31968,16 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31823
31968
|
| io.flow.internal.v0.models.SvitlanaItemDeleted
|
|
31824
31969
|
| io.flow.internal.v0.models.ColmItemUpserted
|
|
31825
31970
|
| io.flow.internal.v0.models.ColmItemDeleted
|
|
31971
|
+
| io.flow.internal.v0.models.HarinathItemUpserted
|
|
31972
|
+
| io.flow.internal.v0.models.HarinathItemDeleted
|
|
31973
|
+
| io.flow.internal.v0.models.KonstantinItemUpserted
|
|
31974
|
+
| io.flow.internal.v0.models.KonstantinItemDeleted
|
|
31826
31975
|
| io.flow.internal.v0.models.MatiasItemUpserted
|
|
31827
31976
|
| io.flow.internal.v0.models.MatiasItemDeleted
|
|
31977
|
+
| io.flow.internal.v0.models.MichaelyanItemUpserted
|
|
31978
|
+
| io.flow.internal.v0.models.MichaelyanItemDeleted
|
|
31979
|
+
| io.flow.internal.v0.models.MiljenkoItemUpserted
|
|
31980
|
+
| io.flow.internal.v0.models.MiljenkoItemDeleted
|
|
31828
31981
|
| io.flow.internal.v0.models.ShrutiDemoItemUpserted
|
|
31829
31982
|
| io.flow.internal.v0.models.ShrutiDemoItemDeleted
|
|
31830
31983
|
| io.flow.internal.v0.models.TamItemUpserted
|
|
@@ -31837,13 +31990,12 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31837
31990
|
| io.flow.internal.v0.models.TrackingLabelDeleted
|
|
31838
31991
|
| io.flow.internal.v0.models.TrackingUpserted
|
|
31839
31992
|
| io.flow.internal.v0.models.TrackingDeleted
|
|
31993
|
+
| io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted
|
|
31994
|
+
| io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted
|
|
31840
31995
|
| io.flow.internal.v0.models.TrackingRequestUpserted
|
|
31841
31996
|
| io.flow.internal.v0.models.TrackingResponseUpserted
|
|
31842
31997
|
| io.flow.internal.v0.models.UserUpsertedV2
|
|
31843
31998
|
| io.flow.internal.v0.models.UserDeletedV2;
|
|
31844
|
-
type Experiment =
|
|
31845
|
-
| io.flow.internal.v0.models.ExperienceExperiment
|
|
31846
|
-
| io.flow.internal.v0.models.FeatureExperiment;
|
|
31847
31999
|
type ExplicitStatementForm =
|
|
31848
32000
|
| io.flow.internal.v0.models.ExplicitStatementFormTransactionIds
|
|
31849
32001
|
| io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
@@ -32064,12 +32216,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
32064
32216
|
| io.flow.internal.v0.models.PaymentSummaryV2
|
|
32065
32217
|
| io.flow.internal.v0.models.FraudSummary;
|
|
32066
32218
|
type ValidationRule = io.flow.internal.v0.models.ValidationCharacterLength;
|
|
32067
|
-
type Variant =
|
|
32068
|
-
| io.flow.internal.v0.models.ExperienceVariant
|
|
32069
|
-
| io.flow.internal.v0.models.FeatureVariant;
|
|
32070
|
-
type VariantForm =
|
|
32071
|
-
| io.flow.internal.v0.models.ExperienceVariantForm
|
|
32072
|
-
| io.flow.internal.v0.models.FeatureVariantForm;
|
|
32073
32219
|
}
|
|
32074
32220
|
|
|
32075
32221
|
export type Acceptance = io.flow.internal.v0.models.Acceptance;
|
|
@@ -32274,8 +32420,6 @@ export type AuthorizedShippingCharge =
|
|
|
32274
32420
|
io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
32275
32421
|
export type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
|
|
32276
32422
|
export type AutoReviewCriteria = io.flow.internal.v0.models.AutoReviewCriteria;
|
|
32277
|
-
export type Backfill = io.flow.internal.v0.models.Backfill;
|
|
32278
|
-
export type BackfillForm = io.flow.internal.v0.models.BackfillForm;
|
|
32279
32423
|
export type BankAccountReference =
|
|
32280
32424
|
io.flow.internal.v0.models.BankAccountReference;
|
|
32281
32425
|
export type BankPayment = io.flow.internal.v0.models.BankPayment;
|
|
@@ -32716,8 +32860,12 @@ export type ClassificationProductId =
|
|
|
32716
32860
|
io.flow.internal.v0.models.ClassificationProductId;
|
|
32717
32861
|
export type ClassificationProductRequest =
|
|
32718
32862
|
io.flow.internal.v0.models.ClassificationProductRequest;
|
|
32863
|
+
export type ClassificationProductRequestEnvelope =
|
|
32864
|
+
io.flow.internal.v0.models.ClassificationProductRequestEnvelope;
|
|
32719
32865
|
export type ClassificationProductResult =
|
|
32720
32866
|
io.flow.internal.v0.models.ClassificationProductResult;
|
|
32867
|
+
export type ClassificationProductResultEnvelope =
|
|
32868
|
+
io.flow.internal.v0.models.ClassificationProductResultEnvelope;
|
|
32721
32869
|
export type ClassificationProductSummary =
|
|
32722
32870
|
io.flow.internal.v0.models.ClassificationProductSummary;
|
|
32723
32871
|
export type ClassificationProductSummaryPage =
|
|
@@ -32757,6 +32905,7 @@ export type CommercialInvoiceInternalUpserted =
|
|
|
32757
32905
|
io.flow.internal.v0.models.CommercialInvoiceInternalUpserted;
|
|
32758
32906
|
export type CommercialInvoiceSummary =
|
|
32759
32907
|
io.flow.internal.v0.models.CommercialInvoiceSummary;
|
|
32908
|
+
export type Company = io.flow.internal.v0.enums.Company;
|
|
32760
32909
|
export type CompanyReference = io.flow.internal.v0.models.CompanyReference;
|
|
32761
32910
|
export type Compliance = io.flow.internal.v0.models.Compliance;
|
|
32762
32911
|
export type ComplianceData = io.flow.internal.v0.unions.ComplianceData;
|
|
@@ -32809,6 +32958,7 @@ export type CryptoAuthentication =
|
|
|
32809
32958
|
io.flow.internal.v0.models.CryptoAuthentication;
|
|
32810
32959
|
export type CryptoAuthenticationForm =
|
|
32811
32960
|
io.flow.internal.v0.models.CryptoAuthenticationForm;
|
|
32961
|
+
export type CsvTransaction = io.flow.internal.v0.models.CsvTransaction;
|
|
32812
32962
|
export type CurrencyInternalRate =
|
|
32813
32963
|
io.flow.internal.v0.models.CurrencyInternalRate;
|
|
32814
32964
|
export type CustomerPurgeUpserted =
|
|
@@ -32832,14 +32982,6 @@ export type CustomsProductAttributeLabel =
|
|
|
32832
32982
|
io.flow.internal.v0.models.CustomsProductAttributeLabel;
|
|
32833
32983
|
export type CustomsProductLabels =
|
|
32834
32984
|
io.flow.internal.v0.models.CustomsProductLabels;
|
|
32835
|
-
export type DailyExperimentEngineResults =
|
|
32836
|
-
io.flow.internal.v0.models.DailyExperimentEngineResults;
|
|
32837
|
-
export type DailyExperimentResults =
|
|
32838
|
-
io.flow.internal.v0.models.DailyExperimentResults;
|
|
32839
|
-
export type DailyExperimentResultsDeleted =
|
|
32840
|
-
io.flow.internal.v0.models.DailyExperimentResultsDeleted;
|
|
32841
|
-
export type DailyExperimentResultsUpserted =
|
|
32842
|
-
io.flow.internal.v0.models.DailyExperimentResultsUpserted;
|
|
32843
32985
|
export type DailyValue = io.flow.internal.v0.models.DailyValue;
|
|
32844
32986
|
export type DailyValueDeleted = io.flow.internal.v0.models.DailyValueDeleted;
|
|
32845
32987
|
export type DailyValueUpserted = io.flow.internal.v0.models.DailyValueUpserted;
|
|
@@ -33029,8 +33171,6 @@ export type ExclusionRuleUpserted =
|
|
|
33029
33171
|
io.flow.internal.v0.models.ExclusionRuleUpserted;
|
|
33030
33172
|
export type ExpectedOrderSummary =
|
|
33031
33173
|
io.flow.internal.v0.models.ExpectedOrderSummary;
|
|
33032
|
-
export type ExperienceExperiment =
|
|
33033
|
-
io.flow.internal.v0.models.ExperienceExperiment;
|
|
33034
33174
|
export type ExperienceExportRequest =
|
|
33035
33175
|
io.flow.internal.v0.models.ExperienceExportRequest;
|
|
33036
33176
|
export type ExperienceImportRequest =
|
|
@@ -33045,47 +33185,6 @@ export type ExperienceOrderActionTrigger =
|
|
|
33045
33185
|
io.flow.internal.v0.enums.ExperienceOrderActionTrigger;
|
|
33046
33186
|
export type ExperienceSessionReference =
|
|
33047
33187
|
io.flow.internal.v0.models.ExperienceSessionReference;
|
|
33048
|
-
export type ExperienceVariant = io.flow.internal.v0.models.ExperienceVariant;
|
|
33049
|
-
export type ExperienceVariantForm =
|
|
33050
|
-
io.flow.internal.v0.models.ExperienceVariantForm;
|
|
33051
|
-
export type ExperienceVariantSummary =
|
|
33052
|
-
io.flow.internal.v0.models.ExperienceVariantSummary;
|
|
33053
|
-
export type Experiment = io.flow.internal.v0.unions.Experiment;
|
|
33054
|
-
export type ExperimentDeleted = io.flow.internal.v0.models.ExperimentDeleted;
|
|
33055
|
-
export type ExperimentDiscriminatorKey =
|
|
33056
|
-
io.flow.internal.v0.enums.ExperimentDiscriminatorKey;
|
|
33057
|
-
export type ExperimentEngineResults =
|
|
33058
|
-
io.flow.internal.v0.models.ExperimentEngineResults;
|
|
33059
|
-
export type ExperimentForm = io.flow.internal.v0.models.ExperimentForm;
|
|
33060
|
-
export type ExperimentFormDefault =
|
|
33061
|
-
io.flow.internal.v0.models.ExperimentFormDefault;
|
|
33062
|
-
export type ExperimentFormDefaultDiscriminator =
|
|
33063
|
-
io.flow.internal.v0.models.ExperimentFormDefaultDiscriminator;
|
|
33064
|
-
export type ExperimentFormDefaultDiscriminatorValue =
|
|
33065
|
-
io.flow.internal.v0.models.ExperimentFormDefaultDiscriminatorValue;
|
|
33066
|
-
export type ExperimentFormDefaultVariant =
|
|
33067
|
-
io.flow.internal.v0.models.ExperimentFormDefaultVariant;
|
|
33068
|
-
export type ExperimentMilestone =
|
|
33069
|
-
io.flow.internal.v0.models.ExperimentMilestone;
|
|
33070
|
-
export type ExperimentMilestoneDeleted =
|
|
33071
|
-
io.flow.internal.v0.models.ExperimentMilestoneDeleted;
|
|
33072
|
-
export type ExperimentMilestoneForm =
|
|
33073
|
-
io.flow.internal.v0.models.ExperimentMilestoneForm;
|
|
33074
|
-
export type ExperimentMilestoneUpserted =
|
|
33075
|
-
io.flow.internal.v0.models.ExperimentMilestoneUpserted;
|
|
33076
|
-
export type ExperimentReference =
|
|
33077
|
-
io.flow.internal.v0.models.ExperimentReference;
|
|
33078
|
-
export type ExperimentResults = io.flow.internal.v0.models.ExperimentResults;
|
|
33079
|
-
export type ExperimentResultsDeleted =
|
|
33080
|
-
io.flow.internal.v0.models.ExperimentResultsDeleted;
|
|
33081
|
-
export type ExperimentResultsUpserted =
|
|
33082
|
-
io.flow.internal.v0.models.ExperimentResultsUpserted;
|
|
33083
|
-
export type ExperimentResultsWithTimestamp =
|
|
33084
|
-
io.flow.internal.v0.models.ExperimentResultsWithTimestamp;
|
|
33085
|
-
export type ExperimentSessionQueryForm =
|
|
33086
|
-
io.flow.internal.v0.models.ExperimentSessionQueryForm;
|
|
33087
|
-
export type ExperimentUpserted = io.flow.internal.v0.models.ExperimentUpserted;
|
|
33088
|
-
export type ExperimentVersion = io.flow.internal.v0.models.ExperimentVersion;
|
|
33089
33188
|
export type ExplicitStatement = io.flow.internal.v0.models.ExplicitStatement;
|
|
33090
33189
|
export type ExplicitStatementForm =
|
|
33091
33190
|
io.flow.internal.v0.unions.ExplicitStatementForm;
|
|
@@ -33121,7 +33220,6 @@ export type FeatureContextForm = io.flow.internal.v0.models.FeatureContextForm;
|
|
|
33121
33220
|
export type FeatureDefaultValue =
|
|
33122
33221
|
io.flow.internal.v0.unions.FeatureDefaultValue;
|
|
33123
33222
|
export type FeatureDeleted = io.flow.internal.v0.models.FeatureDeleted;
|
|
33124
|
-
export type FeatureExperiment = io.flow.internal.v0.models.FeatureExperiment;
|
|
33125
33223
|
export type FeatureForm = io.flow.internal.v0.models.FeatureForm;
|
|
33126
33224
|
export type FeatureGeoForm = io.flow.internal.v0.models.FeatureGeoForm;
|
|
33127
33225
|
export type FeatureIdReference = io.flow.internal.v0.models.FeatureIdReference;
|
|
@@ -33141,13 +33239,7 @@ export type FeatureType = io.flow.internal.v0.enums.FeatureType;
|
|
|
33141
33239
|
export type FeatureUpserted = io.flow.internal.v0.models.FeatureUpserted;
|
|
33142
33240
|
export type FeatureValue = io.flow.internal.v0.unions.FeatureValue;
|
|
33143
33241
|
export type FeatureValueForm = io.flow.internal.v0.models.FeatureValueForm;
|
|
33144
|
-
export type FeatureValueReference =
|
|
33145
|
-
io.flow.internal.v0.models.FeatureValueReference;
|
|
33146
33242
|
export type FeatureValueResult = io.flow.internal.v0.models.FeatureValueResult;
|
|
33147
|
-
export type FeatureVariant = io.flow.internal.v0.models.FeatureVariant;
|
|
33148
|
-
export type FeatureVariantForm = io.flow.internal.v0.models.FeatureVariantForm;
|
|
33149
|
-
export type FeatureVariantSummary =
|
|
33150
|
-
io.flow.internal.v0.models.FeatureVariantSummary;
|
|
33151
33243
|
export type Fedex = io.flow.internal.v0.models.Fedex;
|
|
33152
33244
|
export type FedexCrossborder = io.flow.internal.v0.models.FedexCrossborder;
|
|
33153
33245
|
export type Fee = io.flow.internal.v0.models.Fee;
|
|
@@ -33200,9 +33292,16 @@ export type FlowLabelSettingForm =
|
|
|
33200
33292
|
io.flow.internal.v0.models.FlowLabelSettingForm;
|
|
33201
33293
|
export type FlowShopValidationError =
|
|
33202
33294
|
io.flow.internal.v0.models.FlowShopValidationError;
|
|
33203
|
-
export type ForceTransitForm = io.flow.internal.v0.models.ForceTransitForm;
|
|
33204
33295
|
export type Format = io.flow.internal.v0.enums.Format;
|
|
33296
|
+
export type FraudAuthorizationSummary =
|
|
33297
|
+
io.flow.internal.v0.models.FraudAuthorizationSummary;
|
|
33205
33298
|
export type FraudPendingReview = io.flow.internal.v0.models.FraudPendingReview;
|
|
33299
|
+
export type FraudPendingReviewAuthorization =
|
|
33300
|
+
io.flow.internal.v0.models.FraudPendingReviewAuthorization;
|
|
33301
|
+
export type FraudPendingReviewAuthorizationDeleted =
|
|
33302
|
+
io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted;
|
|
33303
|
+
export type FraudPendingReviewAuthorizationUpserted =
|
|
33304
|
+
io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted;
|
|
33206
33305
|
export type FraudPendingReviewDeleted =
|
|
33207
33306
|
io.flow.internal.v0.models.FraudPendingReviewDeleted;
|
|
33208
33307
|
export type FraudPendingReviewDetail =
|
|
@@ -33224,6 +33323,18 @@ export type FraudProviderConfigurationUpserted =
|
|
|
33224
33323
|
io.flow.internal.v0.models.FraudProviderConfigurationUpserted;
|
|
33225
33324
|
export type FraudProviderStatus = io.flow.internal.v0.enums.FraudProviderStatus;
|
|
33226
33325
|
export type FraudReview = io.flow.internal.v0.models.FraudReview;
|
|
33326
|
+
export type FraudReviewAuthorization =
|
|
33327
|
+
io.flow.internal.v0.models.FraudReviewAuthorization;
|
|
33328
|
+
export type FraudReviewAuthorizationDecision =
|
|
33329
|
+
io.flow.internal.v0.models.FraudReviewAuthorizationDecision;
|
|
33330
|
+
export type FraudReviewAuthorizationDecisionDeleted =
|
|
33331
|
+
io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted;
|
|
33332
|
+
export type FraudReviewAuthorizationDecisionUpserted =
|
|
33333
|
+
io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted;
|
|
33334
|
+
export type FraudReviewAuthorizationDeleted =
|
|
33335
|
+
io.flow.internal.v0.models.FraudReviewAuthorizationDeleted;
|
|
33336
|
+
export type FraudReviewAuthorizationUpserted =
|
|
33337
|
+
io.flow.internal.v0.models.FraudReviewAuthorizationUpserted;
|
|
33227
33338
|
export type FraudReviewDecision =
|
|
33228
33339
|
io.flow.internal.v0.models.FraudReviewDecision;
|
|
33229
33340
|
export type FraudReviewDecisionDeleted =
|
|
@@ -33331,6 +33442,13 @@ export type GoogleShoppingAccountParameters =
|
|
|
33331
33442
|
export type GoogleShoppingSetting =
|
|
33332
33443
|
io.flow.internal.v0.models.GoogleShoppingSetting;
|
|
33333
33444
|
export type GoogleTagManager = io.flow.internal.v0.models.GoogleTagManager;
|
|
33445
|
+
export type HarinathItem = io.flow.internal.v0.models.HarinathItem;
|
|
33446
|
+
export type HarinathItemDeleted =
|
|
33447
|
+
io.flow.internal.v0.models.HarinathItemDeleted;
|
|
33448
|
+
export type HarinathItemForm = io.flow.internal.v0.models.HarinathItemForm;
|
|
33449
|
+
export type HarinathItemType = io.flow.internal.v0.enums.HarinathItemType;
|
|
33450
|
+
export type HarinathItemUpserted =
|
|
33451
|
+
io.flow.internal.v0.models.HarinathItemUpserted;
|
|
33334
33452
|
export type HarmonizationClassificationStatisticsData =
|
|
33335
33453
|
io.flow.internal.v0.models.HarmonizationClassificationStatisticsData;
|
|
33336
33454
|
export type HarmonizationClassificationStatisticsPublished =
|
|
@@ -33339,6 +33457,8 @@ export type HarmonizationCodesImport =
|
|
|
33339
33457
|
io.flow.internal.v0.models.HarmonizationCodesImport;
|
|
33340
33458
|
export type HarmonizationColumnSetting =
|
|
33341
33459
|
io.flow.internal.v0.models.HarmonizationColumnSetting;
|
|
33460
|
+
export type HarmonizationDecisionSource =
|
|
33461
|
+
io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
33342
33462
|
export type HarmonizationItemClassification =
|
|
33343
33463
|
io.flow.internal.v0.models.HarmonizationItemClassification;
|
|
33344
33464
|
export type HarmonizationItemClassificationDeleted =
|
|
@@ -33508,6 +33628,13 @@ export type KlarnaAuthorizationParameters =
|
|
|
33508
33628
|
io.flow.internal.v0.models.KlarnaAuthorizationParameters;
|
|
33509
33629
|
export type KlarnaPaymentMethodCategory =
|
|
33510
33630
|
io.flow.internal.v0.models.KlarnaPaymentMethodCategory;
|
|
33631
|
+
export type KonstantinItem = io.flow.internal.v0.models.KonstantinItem;
|
|
33632
|
+
export type KonstantinItemDeleted =
|
|
33633
|
+
io.flow.internal.v0.models.KonstantinItemDeleted;
|
|
33634
|
+
export type KonstantinItemForm = io.flow.internal.v0.models.KonstantinItemForm;
|
|
33635
|
+
export type KonstantinItemType = io.flow.internal.v0.enums.KonstantinItemType;
|
|
33636
|
+
export type KonstantinItemUpserted =
|
|
33637
|
+
io.flow.internal.v0.models.KonstantinItemUpserted;
|
|
33511
33638
|
export type LabProjectSettings = io.flow.internal.v0.models.LabProjectSettings;
|
|
33512
33639
|
export type LabProjectSettingsForm =
|
|
33513
33640
|
io.flow.internal.v0.models.LabProjectSettingsForm;
|
|
@@ -33630,6 +33757,12 @@ export type LogisticsCapabilities =
|
|
|
33630
33757
|
export type LogisticsCapabilitiesForm =
|
|
33631
33758
|
io.flow.internal.v0.models.LogisticsCapabilitiesForm;
|
|
33632
33759
|
export type LogisticsCapability = io.flow.internal.v0.enums.LogisticsCapability;
|
|
33760
|
+
export type LogisticsPayoutRequest =
|
|
33761
|
+
io.flow.internal.v0.models.LogisticsPayoutRequest;
|
|
33762
|
+
export type LogisticsPayoutRequestForm =
|
|
33763
|
+
io.flow.internal.v0.models.LogisticsPayoutRequestForm;
|
|
33764
|
+
export type LogisticsPayoutResolutionMethod =
|
|
33765
|
+
io.flow.internal.v0.enums.LogisticsPayoutResolutionMethod;
|
|
33633
33766
|
export type Logo = io.flow.internal.v0.models.Logo;
|
|
33634
33767
|
export type LostChargeback = io.flow.internal.v0.models.LostChargeback;
|
|
33635
33768
|
export type LoyaltyProgram = io.flow.internal.v0.models.LoyaltyProgram;
|
|
@@ -33806,6 +33939,20 @@ export type MessageStamp = io.flow.internal.v0.models.MessageStamp;
|
|
|
33806
33939
|
export type MetadataProposition =
|
|
33807
33940
|
io.flow.internal.v0.models.MetadataProposition;
|
|
33808
33941
|
export type MetadataRatecard = io.flow.internal.v0.models.MetadataRatecard;
|
|
33942
|
+
export type MichaelyanItem = io.flow.internal.v0.models.MichaelyanItem;
|
|
33943
|
+
export type MichaelyanItemDeleted =
|
|
33944
|
+
io.flow.internal.v0.models.MichaelyanItemDeleted;
|
|
33945
|
+
export type MichaelyanItemForm = io.flow.internal.v0.models.MichaelyanItemForm;
|
|
33946
|
+
export type MichaelyanItemType = io.flow.internal.v0.enums.MichaelyanItemType;
|
|
33947
|
+
export type MichaelyanItemUpserted =
|
|
33948
|
+
io.flow.internal.v0.models.MichaelyanItemUpserted;
|
|
33949
|
+
export type MiljenkoItem = io.flow.internal.v0.models.MiljenkoItem;
|
|
33950
|
+
export type MiljenkoItemDeleted =
|
|
33951
|
+
io.flow.internal.v0.models.MiljenkoItemDeleted;
|
|
33952
|
+
export type MiljenkoItemForm = io.flow.internal.v0.models.MiljenkoItemForm;
|
|
33953
|
+
export type MiljenkoItemType = io.flow.internal.v0.enums.MiljenkoItemType;
|
|
33954
|
+
export type MiljenkoItemUpserted =
|
|
33955
|
+
io.flow.internal.v0.models.MiljenkoItemUpserted;
|
|
33809
33956
|
export type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|
|
33810
33957
|
export type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
|
|
33811
33958
|
export type NextBillingStatement =
|
|
@@ -33928,6 +34075,12 @@ export type OrderShipped = io.flow.internal.v0.models.OrderShipped;
|
|
|
33928
34075
|
export type OrderSubmissionForm =
|
|
33929
34076
|
io.flow.internal.v0.models.OrderSubmissionForm;
|
|
33930
34077
|
export type OrderSummary = io.flow.internal.v0.models.OrderSummary;
|
|
34078
|
+
export type OrderTaxAndDutyInclusivitySetting =
|
|
34079
|
+
io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
34080
|
+
export type OrderTaxAndDutyInclusivitySettingDeleted =
|
|
34081
|
+
io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted;
|
|
34082
|
+
export type OrderTaxAndDutyInclusivitySettingUpserted =
|
|
34083
|
+
io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted;
|
|
33931
34084
|
export type OrderTransaction = io.flow.internal.v0.models.OrderTransaction;
|
|
33932
34085
|
export type OrderTransactionDeleted =
|
|
33933
34086
|
io.flow.internal.v0.models.OrderTransactionDeleted;
|
|
@@ -34004,6 +34157,12 @@ export type OrganizationMembershipCopy =
|
|
|
34004
34157
|
io.flow.internal.v0.models.OrganizationMembershipCopy;
|
|
34005
34158
|
export type OrganizationMembershipCopyForm =
|
|
34006
34159
|
io.flow.internal.v0.models.OrganizationMembershipCopyForm;
|
|
34160
|
+
export type OrganizationMetadata =
|
|
34161
|
+
io.flow.internal.v0.models.OrganizationMetadata;
|
|
34162
|
+
export type OrganizationMetadataDeleted =
|
|
34163
|
+
io.flow.internal.v0.models.OrganizationMetadataDeleted;
|
|
34164
|
+
export type OrganizationMetadataUpserted =
|
|
34165
|
+
io.flow.internal.v0.models.OrganizationMetadataUpserted;
|
|
34007
34166
|
export type OrganizationMetricType =
|
|
34008
34167
|
io.flow.internal.v0.enums.OrganizationMetricType;
|
|
34009
34168
|
export type OrganizationOnboardingStateAdjustmentResult =
|
|
@@ -34062,6 +34221,42 @@ export type OrganizationStatusChangeUpserted =
|
|
|
34062
34221
|
io.flow.internal.v0.models.OrganizationStatusChangeUpserted;
|
|
34063
34222
|
export type OrganizationsAuditCheckReport =
|
|
34064
34223
|
io.flow.internal.v0.models.OrganizationsAuditCheckReport;
|
|
34224
|
+
export type OtherRecord = io.flow.internal.v0.models.OtherRecord;
|
|
34225
|
+
export type OtherRecordAccount = io.flow.internal.v0.models.OtherRecordAccount;
|
|
34226
|
+
export type OtherRecordAccountSourceSummary =
|
|
34227
|
+
io.flow.internal.v0.models.OtherRecordAccountSourceSummary;
|
|
34228
|
+
export type OtherRecordDeleted = io.flow.internal.v0.models.OtherRecordDeleted;
|
|
34229
|
+
export type OtherRecordDiscount =
|
|
34230
|
+
io.flow.internal.v0.models.OtherRecordDiscount;
|
|
34231
|
+
export type OtherRecordFees = io.flow.internal.v0.models.OtherRecordFees;
|
|
34232
|
+
export type OtherRecordIdentifiers =
|
|
34233
|
+
io.flow.internal.v0.models.OtherRecordIdentifiers;
|
|
34234
|
+
export type OtherRecordMerchantReference =
|
|
34235
|
+
io.flow.internal.v0.models.OtherRecordMerchantReference;
|
|
34236
|
+
export type OtherRecordMetadata =
|
|
34237
|
+
io.flow.internal.v0.models.OtherRecordMetadata;
|
|
34238
|
+
export type OtherRecordMetadataCarrierCharge =
|
|
34239
|
+
io.flow.internal.v0.models.OtherRecordMetadataCarrierCharge;
|
|
34240
|
+
export type OtherRecordMetadataChannel =
|
|
34241
|
+
io.flow.internal.v0.models.OtherRecordMetadataChannel;
|
|
34242
|
+
export type OtherRecordMetadataFailedPayout =
|
|
34243
|
+
io.flow.internal.v0.models.OtherRecordMetadataFailedPayout;
|
|
34244
|
+
export type OtherRecordMetadataManual =
|
|
34245
|
+
io.flow.internal.v0.models.OtherRecordMetadataManual;
|
|
34246
|
+
export type OtherRecordMetadataShippingLabel =
|
|
34247
|
+
io.flow.internal.v0.models.OtherRecordMetadataShippingLabel;
|
|
34248
|
+
export type OtherRecordMetadataShippingLabelRevenueShare =
|
|
34249
|
+
io.flow.internal.v0.models.OtherRecordMetadataShippingLabelRevenueShare;
|
|
34250
|
+
export type OtherRecordMetadataTrueup =
|
|
34251
|
+
io.flow.internal.v0.models.OtherRecordMetadataTrueup;
|
|
34252
|
+
export type OtherRecordOrderSummary =
|
|
34253
|
+
io.flow.internal.v0.models.OtherRecordOrderSummary;
|
|
34254
|
+
export type OtherRecordOrderSummaryIdentifiers =
|
|
34255
|
+
io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers;
|
|
34256
|
+
export type OtherRecordUpserted =
|
|
34257
|
+
io.flow.internal.v0.models.OtherRecordUpserted;
|
|
34258
|
+
export type OtherRecordWithholdings =
|
|
34259
|
+
io.flow.internal.v0.models.OtherRecordWithholdings;
|
|
34065
34260
|
export type OutputStyle = io.flow.internal.v0.enums.OutputStyle;
|
|
34066
34261
|
export type Owner = io.flow.internal.v0.enums.Owner;
|
|
34067
34262
|
export type Partner = io.flow.internal.v0.models.Partner;
|
|
@@ -34111,6 +34306,7 @@ export type PaymentProcessorMerchantDeleted =
|
|
|
34111
34306
|
export type PaymentProcessorMerchantUpserted =
|
|
34112
34307
|
io.flow.internal.v0.models.PaymentProcessorMerchantUpserted;
|
|
34113
34308
|
export type PaymentRedirect = io.flow.internal.v0.unions.PaymentRedirect;
|
|
34309
|
+
export type PaymentSummary = io.flow.internal.v0.models.PaymentSummary;
|
|
34114
34310
|
export type PaymentSummaryDetails =
|
|
34115
34311
|
io.flow.internal.v0.unions.PaymentSummaryDetails;
|
|
34116
34312
|
export type PaymentSummaryStatus =
|
|
@@ -34438,10 +34634,6 @@ export type ReportingOrderSummary =
|
|
|
34438
34634
|
export type ReportingOrganizationSummary =
|
|
34439
34635
|
io.flow.internal.v0.models.ReportingOrganizationSummary;
|
|
34440
34636
|
export type ReportingPayment = io.flow.internal.v0.models.ReportingPayment;
|
|
34441
|
-
export type ReportingPaymentMetadata =
|
|
34442
|
-
io.flow.internal.v0.models.ReportingPaymentMetadata;
|
|
34443
|
-
export type ReportingPaymentMetadataAdditionalAuthorizations =
|
|
34444
|
-
io.flow.internal.v0.models.ReportingPaymentMetadataAdditionalAuthorizations;
|
|
34445
34637
|
export type ReportingProvince = io.flow.internal.v0.models.ReportingProvince;
|
|
34446
34638
|
export type ReportingReconciliation =
|
|
34447
34639
|
io.flow.internal.v0.models.ReportingReconciliation;
|
|
@@ -34458,6 +34650,8 @@ export type ReportingVatRemittanceRate =
|
|
|
34458
34650
|
io.flow.internal.v0.models.ReportingVatRemittanceRate;
|
|
34459
34651
|
export type ReportingVendor = io.flow.internal.v0.models.ReportingVendor;
|
|
34460
34652
|
export type RequeueRequestForm = io.flow.internal.v0.models.RequeueRequestForm;
|
|
34653
|
+
export type RescreenRestrictionsProducts =
|
|
34654
|
+
io.flow.internal.v0.models.RescreenRestrictionsProducts;
|
|
34461
34655
|
export type ResponsibleParty = io.flow.internal.v0.enums.ResponsibleParty;
|
|
34462
34656
|
export type RestrictionAction = io.flow.internal.v0.enums.RestrictionAction;
|
|
34463
34657
|
export type RestrictionCategory =
|
|
@@ -34551,7 +34745,6 @@ export type SalesRecordUpserted =
|
|
|
34551
34745
|
export type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
|
|
34552
34746
|
export type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
|
|
34553
34747
|
export type ScheduledPayment = io.flow.internal.v0.models.ScheduledPayment;
|
|
34554
|
-
export type Scope = io.flow.internal.v0.enums.Scope;
|
|
34555
34748
|
export type Screen = io.flow.internal.v0.models.Screen;
|
|
34556
34749
|
export type ScreenForm = io.flow.internal.v0.models.ScreenForm;
|
|
34557
34750
|
export type ScreeningStatusChange =
|
|
@@ -34802,7 +34995,6 @@ export type ShrutiDemoItemForm = io.flow.internal.v0.models.ShrutiDemoItemForm;
|
|
|
34802
34995
|
export type ShrutiDemoItemUpserted =
|
|
34803
34996
|
io.flow.internal.v0.models.ShrutiDemoItemUpserted;
|
|
34804
34997
|
export type ShrutiDemoType = io.flow.internal.v0.enums.ShrutiDemoType;
|
|
34805
|
-
export type SignificanceAction = io.flow.internal.v0.enums.SignificanceAction;
|
|
34806
34998
|
export type SimpleAccountReference =
|
|
34807
34999
|
io.flow.internal.v0.models.SimpleAccountReference;
|
|
34808
35000
|
export type SimpleRoundingStrategy =
|
|
@@ -34848,7 +35040,6 @@ export type StatementStatus = io.flow.internal.v0.enums.StatementStatus;
|
|
|
34848
35040
|
export type StatementTransferTransactionLocation =
|
|
34849
35041
|
io.flow.internal.v0.enums.StatementTransferTransactionLocation;
|
|
34850
35042
|
export type StatisticType = io.flow.internal.v0.enums.StatisticType;
|
|
34851
|
-
export type Status = io.flow.internal.v0.enums.Status;
|
|
34852
35043
|
export type StoreConnection = io.flow.internal.v0.models.StoreConnection;
|
|
34853
35044
|
export type StoreConnectionForm =
|
|
34854
35045
|
io.flow.internal.v0.models.StoreConnectionForm;
|
|
@@ -34943,6 +35134,8 @@ export type TaskProcessQueuedEvent =
|
|
|
34943
35134
|
export type TaskProcessorKey = io.flow.internal.v0.enums.TaskProcessorKey;
|
|
34944
35135
|
export type TaskSummarizeCode = io.flow.internal.v0.models.TaskSummarizeCode;
|
|
34945
35136
|
export type TaxAmount = io.flow.internal.v0.unions.TaxAmount;
|
|
35137
|
+
export type TaxAndDutyInclusivitySetting =
|
|
35138
|
+
io.flow.internal.v0.enums.TaxAndDutyInclusivitySetting;
|
|
34946
35139
|
export type TaxCalculation = io.flow.internal.v0.models.TaxCalculation;
|
|
34947
35140
|
export type TaxCalculationError =
|
|
34948
35141
|
io.flow.internal.v0.models.TaxCalculationError;
|
|
@@ -34972,6 +35165,9 @@ export type TechOnboardingDescription =
|
|
|
34972
35165
|
io.flow.internal.v0.models.TechOnboardingDescription;
|
|
34973
35166
|
export type Test = io.flow.internal.v0.models.Test;
|
|
34974
35167
|
export type TestForm = io.flow.internal.v0.models.TestForm;
|
|
35168
|
+
export type ThiagoItem = io.flow.internal.v0.models.ThiagoItem;
|
|
35169
|
+
export type ThiagoItemForm = io.flow.internal.v0.models.ThiagoItemForm;
|
|
35170
|
+
export type ThiagoItemType = io.flow.internal.v0.enums.ThiagoItemType;
|
|
34975
35171
|
export type ThirdPartyLogisticsPartner =
|
|
34976
35172
|
io.flow.internal.v0.models.ThirdPartyLogisticsPartner;
|
|
34977
35173
|
export type ThirdPartyLogisticsPickUpTimeWindow =
|
|
@@ -34990,8 +35186,15 @@ export type TimeToClassifyDeleted =
|
|
|
34990
35186
|
export type TimeToClassifyUpserted =
|
|
34991
35187
|
io.flow.internal.v0.models.TimeToClassifyUpserted;
|
|
34992
35188
|
export type TimeWithTimezone = io.flow.internal.v0.models.TimeWithTimezone;
|
|
34993
|
-
export type TimeseriesType = io.flow.internal.v0.enums.TimeseriesType;
|
|
34994
35189
|
export type Tracker = io.flow.internal.v0.unions.Tracker;
|
|
35190
|
+
export type TrackingAssuranceAnalysis =
|
|
35191
|
+
io.flow.internal.v0.models.TrackingAssuranceAnalysis;
|
|
35192
|
+
export type TrackingAssuranceAnalysisDeleted =
|
|
35193
|
+
io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted;
|
|
35194
|
+
export type TrackingAssuranceAnalysisUpserted =
|
|
35195
|
+
io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted;
|
|
35196
|
+
export type TrackingDebugForceTransitForm =
|
|
35197
|
+
io.flow.internal.v0.models.TrackingDebugForceTransitForm;
|
|
34995
35198
|
export type TrackingDebugLabel = io.flow.internal.v0.models.TrackingDebugLabel;
|
|
34996
35199
|
export type TrackingDebugLabelEvent =
|
|
34997
35200
|
io.flow.internal.v0.models.TrackingDebugLabelEvent;
|
|
@@ -35093,8 +35296,6 @@ export type V1Checkout = io.flow.internal.v0.models.V1Checkout;
|
|
|
35093
35296
|
export type ValidationCharacterLength =
|
|
35094
35297
|
io.flow.internal.v0.models.ValidationCharacterLength;
|
|
35095
35298
|
export type ValidationRule = io.flow.internal.v0.unions.ValidationRule;
|
|
35096
|
-
export type Variant = io.flow.internal.v0.unions.Variant;
|
|
35097
|
-
export type VariantForm = io.flow.internal.v0.unions.VariantForm;
|
|
35098
35299
|
export type ViesResult = io.flow.internal.v0.models.ViesResult;
|
|
35099
35300
|
export type VirtualCardTransaction =
|
|
35100
35301
|
io.flow.internal.v0.models.VirtualCardTransaction;
|