@flowio/types 11.24.95 → 11.24.97
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +1143 -1100
- package/dist/api.d.ts +173 -9
- package/package.json +2 -2
- package/src/api-internal.ts +1472 -1267
- package/src/api.ts +280 -8
package/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,11 @@ 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;
|
|
9936
|
+
readonly tax_inclusive?: boolean;
|
|
9937
|
+
readonly duty_inclusive?: boolean;
|
|
10315
9938
|
}
|
|
10316
9939
|
|
|
10317
9940
|
interface ReportingFx {
|
|
@@ -10320,6 +9943,7 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
10320
9943
|
readonly product: io.flow.billing.reporting.v0.models.ReportingUsd;
|
|
10321
9944
|
readonly tax: io.flow.billing.reporting.v0.models.ReportingUsd;
|
|
10322
9945
|
readonly duty: io.flow.billing.reporting.v0.models.ReportingUsd;
|
|
9946
|
+
readonly tips?: io.flow.billing.reporting.v0.models.ReportingUsd;
|
|
10323
9947
|
readonly total: io.flow.billing.reporting.v0.models.ReportingUsd;
|
|
10324
9948
|
}
|
|
10325
9949
|
|
|
@@ -10337,6 +9961,7 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
10337
9961
|
readonly processing: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10338
9962
|
readonly rate_lock: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10339
9963
|
readonly transfer: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
9964
|
+
readonly total?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10340
9965
|
}
|
|
10341
9966
|
|
|
10342
9967
|
interface ReportingMerchantSubsidies {
|
|
@@ -10344,6 +9969,7 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
10344
9969
|
readonly tax: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10345
9970
|
readonly duty: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10346
9971
|
readonly ccf: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
9972
|
+
readonly total?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10347
9973
|
}
|
|
10348
9974
|
|
|
10349
9975
|
interface ReportingMerchantTransactions {
|
|
@@ -10352,6 +9978,8 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
10352
9978
|
readonly tax: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10353
9979
|
readonly duty: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10354
9980
|
readonly freight: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
9981
|
+
readonly discount?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
9982
|
+
readonly total?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10355
9983
|
}
|
|
10356
9984
|
|
|
10357
9985
|
interface ReportingMonetaryValue {
|
|
@@ -10374,25 +10002,14 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
10374
10002
|
}
|
|
10375
10003
|
|
|
10376
10004
|
interface ReportingPayment {
|
|
10377
|
-
readonly metadata?: io.flow.billing.reporting.v0.models.ReportingPaymentMetadata;
|
|
10378
10005
|
readonly psp: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10379
10006
|
readonly credit: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10007
|
+
readonly subsidized: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10008
|
+
readonly manual: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10009
|
+
readonly cod: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10380
10010
|
readonly total: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10381
10011
|
}
|
|
10382
10012
|
|
|
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
10013
|
interface ReportingProvince {
|
|
10397
10014
|
readonly code?: string;
|
|
10398
10015
|
readonly name: string;
|
|
@@ -10421,6 +10038,7 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
10421
10038
|
readonly ccf: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10422
10039
|
readonly emergency: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10423
10040
|
readonly peak: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10041
|
+
readonly total?: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
10424
10042
|
}
|
|
10425
10043
|
|
|
10426
10044
|
interface ReportingUsd {
|
|
@@ -11447,7 +11065,6 @@ declare namespace io.flow.billing.reporting.csv.v0.models {
|
|
|
11447
11065
|
readonly sequence_number: number;
|
|
11448
11066
|
readonly fulfilled_at: string;
|
|
11449
11067
|
readonly completes_order: boolean;
|
|
11450
|
-
readonly payment: io.flow.billing.reporting.v0.models.ReportingPayment;
|
|
11451
11068
|
readonly value: io.flow.billing.reporting.v0.models.FulfillmentShopperBreakdown;
|
|
11452
11069
|
readonly dispatch_country?: io.flow.billing.reporting.v0.models.ReportingCountry;
|
|
11453
11070
|
readonly destination: io.flow.billing.reporting.v0.models.ReportingDestination;
|
|
@@ -11573,6 +11190,21 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
11573
11190
|
readonly channel_organization_identifier: io.flow.shopify.markets.internal.v0.models.ChannelOrganizationIdentifier;
|
|
11574
11191
|
}
|
|
11575
11192
|
|
|
11193
|
+
interface OrderTaxAndDutyInclusivitySettingDeleted {
|
|
11194
|
+
readonly discriminator: 'order_tax_and_duty_inclusivity_setting_deleted';
|
|
11195
|
+
readonly event_id: string;
|
|
11196
|
+
readonly timestamp: string;
|
|
11197
|
+
readonly organization: string;
|
|
11198
|
+
readonly id: string;
|
|
11199
|
+
}
|
|
11200
|
+
|
|
11201
|
+
interface OrderTaxAndDutyInclusivitySettingUpserted {
|
|
11202
|
+
readonly discriminator: 'order_tax_and_duty_inclusivity_setting_upserted';
|
|
11203
|
+
readonly event_id: string;
|
|
11204
|
+
readonly timestamp: string;
|
|
11205
|
+
readonly order_tax_and_duty_inclusivity_setting: io.flow.shopify.markets.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
11206
|
+
}
|
|
11207
|
+
|
|
11576
11208
|
interface ShopifyMarketsMetricsDeleted {
|
|
11577
11209
|
readonly discriminator: 'shopify_markets_metrics_deleted';
|
|
11578
11210
|
readonly event_id: string;
|
|
@@ -11672,7 +11304,9 @@ declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
|
11672
11304
|
| io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted
|
|
11673
11305
|
| io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted
|
|
11674
11306
|
| io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted
|
|
11675
|
-
| io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted
|
|
11307
|
+
| io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted
|
|
11308
|
+
| io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted
|
|
11309
|
+
| io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted;
|
|
11676
11310
|
}
|
|
11677
11311
|
|
|
11678
11312
|
declare namespace io.flow.experience.v0.enums {
|
|
@@ -15160,7 +14794,10 @@ declare namespace io.flow.item.v0.models {
|
|
|
15160
14794
|
}
|
|
15161
14795
|
|
|
15162
14796
|
declare namespace io.flow.billing.internal.v0.enums {
|
|
15163
|
-
type AccountPaymentHoldReason =
|
|
14797
|
+
type AccountPaymentHoldReason =
|
|
14798
|
+
| 'fraudulent'
|
|
14799
|
+
| 'frozen'
|
|
14800
|
+
| 'invalid_bank_account';
|
|
15164
14801
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
15165
14802
|
type AccountType = 'channel' | 'organization';
|
|
15166
14803
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
@@ -16775,7 +16412,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
16775
16412
|
readonly discriminator: 'channel';
|
|
16776
16413
|
readonly method: string;
|
|
16777
16414
|
readonly card?: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata;
|
|
16778
|
-
readonly organization_transaction: io.flow.billing.v0.models.
|
|
16415
|
+
readonly organization_transaction: io.flow.billing.v0.models.TransactionMetadataChannelOrganizationTransaction;
|
|
16779
16416
|
}
|
|
16780
16417
|
|
|
16781
16418
|
interface TransactionMetadataChannelCardMetadata {
|
|
@@ -16788,6 +16425,11 @@ declare namespace io.flow.billing.v0.models {
|
|
|
16788
16425
|
readonly country: string;
|
|
16789
16426
|
}
|
|
16790
16427
|
|
|
16428
|
+
interface TransactionMetadataChannelOrganizationTransaction {
|
|
16429
|
+
readonly id: string;
|
|
16430
|
+
readonly metadata: io.flow.billing.v0.models.TransactionMetadataPaymentTransaction;
|
|
16431
|
+
}
|
|
16432
|
+
|
|
16791
16433
|
interface TransactionMetadataFailedPayout {
|
|
16792
16434
|
readonly discriminator: 'failed_payout';
|
|
16793
16435
|
readonly failed_payout: io.flow.billing.v0.models.TransactionMetadataFailedPayoutReference;
|
|
@@ -18252,7 +17894,8 @@ declare namespace io.flow.organization.onboarding.state.v0.enums {
|
|
|
18252
17894
|
| 'business_street_address_is_blank'
|
|
18253
17895
|
| 'business_street_address_is_po_box'
|
|
18254
17896
|
| 'exception_merchant'
|
|
18255
|
-
| 'application_missing'
|
|
17897
|
+
| 'application_missing'
|
|
17898
|
+
| 'missing_logistics_contact_info';
|
|
18256
17899
|
}
|
|
18257
17900
|
|
|
18258
17901
|
declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
@@ -18312,6 +17955,11 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
18312
17955
|
readonly onboarding_started_at?: string;
|
|
18313
17956
|
}
|
|
18314
17957
|
|
|
17958
|
+
interface RejectionPutForm {
|
|
17959
|
+
readonly reason: io.flow.organization.onboarding.state.v0.enums.MerchantRejectedReason;
|
|
17960
|
+
readonly description: string;
|
|
17961
|
+
}
|
|
17962
|
+
|
|
18315
17963
|
interface SetupBlocked {
|
|
18316
17964
|
readonly discriminator: 'setup_blocked';
|
|
18317
17965
|
readonly reasons: io.flow.organization.onboarding.state.v0.enums.OnboardingBlockedReason[];
|
|
@@ -18712,8 +18360,212 @@ declare namespace io.flow.billing.bank.account.v0.unions {
|
|
|
18712
18360
|
| io.flow.billing.bank.account.v0.models.BankAccountInfoIta;
|
|
18713
18361
|
}
|
|
18714
18362
|
|
|
18363
|
+
declare namespace io.flow.experiment.internal.v0.enums {
|
|
18364
|
+
type ExperimentDiscriminatorKey = 'experience' | 'feature';
|
|
18365
|
+
type Scope = 'organization' | 'global';
|
|
18366
|
+
type SignificanceAction =
|
|
18367
|
+
| 'end_and_implement_winner'
|
|
18368
|
+
| 'end_and_revert'
|
|
18369
|
+
| 'do_nothing';
|
|
18370
|
+
type Status = 'draft' | 'scheduled' | 'live' | 'ended' | 'archived';
|
|
18371
|
+
type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
|
|
18372
|
+
}
|
|
18373
|
+
|
|
18374
|
+
declare namespace io.flow.experiment.internal.v0.models {
|
|
18375
|
+
interface DailyExperimentResults {
|
|
18376
|
+
readonly id: string;
|
|
18377
|
+
readonly day: string;
|
|
18378
|
+
readonly experiment_key: string;
|
|
18379
|
+
readonly experiment_variant_key: string;
|
|
18380
|
+
readonly visitor_count: number;
|
|
18381
|
+
readonly visitors_with_transactions_count: number;
|
|
18382
|
+
readonly conversion_rate: number;
|
|
18383
|
+
readonly lower_bound: number;
|
|
18384
|
+
readonly upper_bound: number;
|
|
18385
|
+
readonly probability_of_being_best?: number;
|
|
18386
|
+
readonly currency?: string;
|
|
18387
|
+
readonly average_order_value?: number;
|
|
18388
|
+
readonly revenue_generated?: number;
|
|
18389
|
+
readonly total_order_count?: number;
|
|
18390
|
+
readonly conversion_rate_uplift?: number;
|
|
18391
|
+
readonly average_order_value_uplift?: number;
|
|
18392
|
+
readonly revenue_generated_uplift?: number;
|
|
18393
|
+
}
|
|
18394
|
+
|
|
18395
|
+
interface ExperienceExperiment {
|
|
18396
|
+
readonly discriminator: 'experience';
|
|
18397
|
+
readonly id: string;
|
|
18398
|
+
readonly key: string;
|
|
18399
|
+
readonly name: string;
|
|
18400
|
+
readonly description?: string;
|
|
18401
|
+
readonly status: io.flow.experiment.internal.v0.enums.Status;
|
|
18402
|
+
readonly emails: string[];
|
|
18403
|
+
readonly started_at?: string;
|
|
18404
|
+
readonly ended_at?: string;
|
|
18405
|
+
readonly variants: io.flow.experiment.internal.v0.models.ExperienceVariant[];
|
|
18406
|
+
readonly transitions?: io.flow.experiment.internal.v0.enums.Status[];
|
|
18407
|
+
readonly significance_action?: io.flow.experiment.internal.v0.enums.SignificanceAction;
|
|
18408
|
+
}
|
|
18409
|
+
|
|
18410
|
+
interface ExperienceVariant {
|
|
18411
|
+
readonly discriminator: 'experience_variant';
|
|
18412
|
+
readonly experience: io.flow.experiment.internal.v0.models.ExperienceVariantSummary;
|
|
18413
|
+
readonly traffic_percentage: number;
|
|
18414
|
+
readonly experiment_results?: io.flow.experiment.internal.v0.models.ExperimentResults;
|
|
18415
|
+
}
|
|
18416
|
+
|
|
18417
|
+
interface ExperienceVariantForm {
|
|
18418
|
+
readonly discriminator: 'experience';
|
|
18419
|
+
readonly key: string;
|
|
18420
|
+
readonly traffic_percentage: number;
|
|
18421
|
+
}
|
|
18422
|
+
|
|
18423
|
+
interface ExperienceVariantSummary {
|
|
18424
|
+
readonly key: string;
|
|
18425
|
+
readonly name?: string;
|
|
18426
|
+
}
|
|
18427
|
+
|
|
18428
|
+
interface ExperimentForm {
|
|
18429
|
+
readonly name: string;
|
|
18430
|
+
readonly description?: string;
|
|
18431
|
+
readonly emails: string[];
|
|
18432
|
+
readonly variants: io.flow.experiment.internal.v0.unions.VariantForm[];
|
|
18433
|
+
readonly significance_action?: io.flow.experiment.internal.v0.enums.SignificanceAction;
|
|
18434
|
+
readonly session_query?: string;
|
|
18435
|
+
}
|
|
18436
|
+
|
|
18437
|
+
interface ExperimentFormDefault {
|
|
18438
|
+
readonly discriminator: io.flow.experiment.internal.v0.models.ExperimentFormDefaultDiscriminator;
|
|
18439
|
+
readonly variants?: io.flow.experiment.internal.v0.models.ExperimentFormDefaultVariant[];
|
|
18440
|
+
}
|
|
18441
|
+
|
|
18442
|
+
interface ExperimentFormDefaultDiscriminator {
|
|
18443
|
+
readonly key: io.flow.experiment.internal.v0.enums.ExperimentDiscriminatorKey;
|
|
18444
|
+
readonly values: io.flow.experiment.internal.v0.models.ExperimentFormDefaultDiscriminatorValue[];
|
|
18445
|
+
}
|
|
18446
|
+
|
|
18447
|
+
interface ExperimentFormDefaultDiscriminatorValue {
|
|
18448
|
+
readonly key: string;
|
|
18449
|
+
readonly name: string;
|
|
18450
|
+
readonly scope: io.flow.experiment.internal.v0.enums.Scope;
|
|
18451
|
+
}
|
|
18452
|
+
|
|
18453
|
+
interface ExperimentFormDefaultVariant {
|
|
18454
|
+
readonly key: string;
|
|
18455
|
+
readonly name: string;
|
|
18456
|
+
readonly traffic_percentage?: number;
|
|
18457
|
+
}
|
|
18458
|
+
|
|
18459
|
+
interface ExperimentMilestone {
|
|
18460
|
+
readonly id: string;
|
|
18461
|
+
readonly experiment: io.flow.experiment.internal.v0.models.ExperimentReference;
|
|
18462
|
+
readonly timestamp: string;
|
|
18463
|
+
readonly description: string;
|
|
18464
|
+
}
|
|
18465
|
+
|
|
18466
|
+
interface ExperimentMilestoneForm {
|
|
18467
|
+
readonly timestamp?: string;
|
|
18468
|
+
readonly description: string;
|
|
18469
|
+
}
|
|
18470
|
+
|
|
18471
|
+
interface ExperimentReference {
|
|
18472
|
+
readonly key: string;
|
|
18473
|
+
}
|
|
18474
|
+
|
|
18475
|
+
interface ExperimentResults {
|
|
18476
|
+
readonly id: string;
|
|
18477
|
+
readonly experiment_key: string;
|
|
18478
|
+
readonly experiment_variant_key: string;
|
|
18479
|
+
readonly visitor_count: number;
|
|
18480
|
+
readonly visitors_with_transactions_count: number;
|
|
18481
|
+
readonly conversion_rate: number;
|
|
18482
|
+
readonly lower_bound: number;
|
|
18483
|
+
readonly upper_bound: number;
|
|
18484
|
+
readonly probability_of_being_best?: number;
|
|
18485
|
+
readonly currency?: string;
|
|
18486
|
+
readonly average_order_value?: number;
|
|
18487
|
+
readonly revenue_generated?: number;
|
|
18488
|
+
readonly total_order_count?: number;
|
|
18489
|
+
readonly conversion_rate_uplift?: number;
|
|
18490
|
+
readonly average_order_value_uplift?: number;
|
|
18491
|
+
readonly revenue_generated_uplift?: number;
|
|
18492
|
+
}
|
|
18493
|
+
|
|
18494
|
+
interface ExperimentResultsWithTimestamp {
|
|
18495
|
+
readonly timestamp: string;
|
|
18496
|
+
readonly results: io.flow.experiment.internal.v0.models.ExperimentResults[];
|
|
18497
|
+
}
|
|
18498
|
+
|
|
18499
|
+
interface ExperimentSessionQueryForm {
|
|
18500
|
+
readonly session_query?: string;
|
|
18501
|
+
}
|
|
18502
|
+
|
|
18503
|
+
interface ExperimentVersion {
|
|
18504
|
+
readonly id: string;
|
|
18505
|
+
readonly timestamp: string;
|
|
18506
|
+
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
18507
|
+
readonly experiment: io.flow.experiment.internal.v0.unions.Experiment;
|
|
18508
|
+
}
|
|
18509
|
+
|
|
18510
|
+
interface FeatureExperiment {
|
|
18511
|
+
readonly discriminator: 'feature';
|
|
18512
|
+
readonly id: string;
|
|
18513
|
+
readonly key: string;
|
|
18514
|
+
readonly name: string;
|
|
18515
|
+
readonly description?: string;
|
|
18516
|
+
readonly status: io.flow.experiment.internal.v0.enums.Status;
|
|
18517
|
+
readonly emails: string[];
|
|
18518
|
+
readonly scope: io.flow.experiment.internal.v0.enums.Scope;
|
|
18519
|
+
readonly started_at?: string;
|
|
18520
|
+
readonly ended_at?: string;
|
|
18521
|
+
readonly variants: io.flow.experiment.internal.v0.models.FeatureVariant[];
|
|
18522
|
+
readonly transitions?: io.flow.experiment.internal.v0.enums.Status[];
|
|
18523
|
+
readonly significance_action?: io.flow.experiment.internal.v0.enums.SignificanceAction;
|
|
18524
|
+
readonly session_query?: string;
|
|
18525
|
+
}
|
|
18526
|
+
|
|
18527
|
+
interface FeatureValueReference {
|
|
18528
|
+
readonly feature_key: string;
|
|
18529
|
+
readonly value: string;
|
|
18530
|
+
}
|
|
18531
|
+
|
|
18532
|
+
interface FeatureVariant {
|
|
18533
|
+
readonly discriminator: 'feature_variant';
|
|
18534
|
+
readonly value: io.flow.experiment.internal.v0.models.FeatureVariantSummary;
|
|
18535
|
+
readonly traffic_percentage: number;
|
|
18536
|
+
readonly experiment_results?: io.flow.experiment.internal.v0.models.ExperimentResults;
|
|
18537
|
+
}
|
|
18538
|
+
|
|
18539
|
+
interface FeatureVariantForm {
|
|
18540
|
+
readonly discriminator: 'feature';
|
|
18541
|
+
readonly key: string;
|
|
18542
|
+
readonly traffic_percentage: number;
|
|
18543
|
+
}
|
|
18544
|
+
|
|
18545
|
+
interface FeatureVariantSummary {
|
|
18546
|
+
readonly key: string;
|
|
18547
|
+
readonly feature_value: io.flow.experiment.internal.v0.models.FeatureValueReference;
|
|
18548
|
+
readonly name?: string;
|
|
18549
|
+
}
|
|
18550
|
+
}
|
|
18551
|
+
|
|
18552
|
+
declare namespace io.flow.experiment.internal.v0.unions {
|
|
18553
|
+
type Experiment =
|
|
18554
|
+
| io.flow.experiment.internal.v0.models.ExperienceExperiment
|
|
18555
|
+
| io.flow.experiment.internal.v0.models.FeatureExperiment;
|
|
18556
|
+
type Variant =
|
|
18557
|
+
| io.flow.experiment.internal.v0.models.ExperienceVariant
|
|
18558
|
+
| io.flow.experiment.internal.v0.models.FeatureVariant;
|
|
18559
|
+
type VariantForm =
|
|
18560
|
+
| io.flow.experiment.internal.v0.models.ExperienceVariantForm
|
|
18561
|
+
| io.flow.experiment.internal.v0.models.FeatureVariantForm;
|
|
18562
|
+
}
|
|
18563
|
+
|
|
18715
18564
|
declare namespace io.flow.internal.v0.enums {
|
|
18716
|
-
type AccountPaymentHoldReason =
|
|
18565
|
+
type AccountPaymentHoldReason =
|
|
18566
|
+
| 'fraudulent'
|
|
18567
|
+
| 'frozen'
|
|
18568
|
+
| 'invalid_bank_account';
|
|
18717
18569
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
18718
18570
|
type AccountType = 'channel' | 'organization';
|
|
18719
18571
|
type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
|
|
@@ -18867,10 +18719,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18867
18719
|
| 'negative_balance_number_accounts'
|
|
18868
18720
|
| 'negative_balance_number_accounts_with_order_in_past_30_days'
|
|
18869
18721
|
| 'negative_balance_number_accounts_without_order_in_past_30_days'
|
|
18722
|
+
| 'negative_balance_number_active_accounts_with_balance_over_1000'
|
|
18870
18723
|
| 'negative_balance_total'
|
|
18871
18724
|
| 'negative_balance_total_with_order_in_past_30_days'
|
|
18872
18725
|
| 'negative_balance_total_without_order_in_past_30_days'
|
|
18873
18726
|
| 'negative_balance_single_account_max'
|
|
18727
|
+
| 'negative_balance_single_active_account_max'
|
|
18874
18728
|
| 'negative_balance_fee_total'
|
|
18875
18729
|
| 'accounts_with_payment_holds_count'
|
|
18876
18730
|
| 'accounts_with_payment_holds_pending_payment_promise_count'
|
|
@@ -18974,7 +18828,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18974
18828
|
| 'unsupported_subsidized_order'
|
|
18975
18829
|
| 'unsupported_virtual_goods'
|
|
18976
18830
|
| 'non_matching_currencies'
|
|
18977
|
-
| 'unsupported_order_edit'
|
|
18831
|
+
| 'unsupported_order_edit'
|
|
18832
|
+
| 'order_missing';
|
|
18978
18833
|
type ChannelOrderAcceptanceStatus =
|
|
18979
18834
|
| 'accepted'
|
|
18980
18835
|
| 'rejected'
|
|
@@ -19039,6 +18894,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19039
18894
|
| 'Age10_13'
|
|
19040
18895
|
| 'Age13_14';
|
|
19041
18896
|
type ColmItemType = 'physical' | 'digital';
|
|
18897
|
+
type Company = 'globale' | 'flow';
|
|
19042
18898
|
type ComplianceType = 'weee';
|
|
19043
18899
|
type ContentElementType = 'markdown' | 'html' | 'plain_text' | 'href';
|
|
19044
18900
|
type ContentStatus = 'draft' | 'live' | 'archived';
|
|
@@ -19147,6 +19003,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19147
19003
|
| 'sales_record_deleted'
|
|
19148
19004
|
| 'revenue_record_upserted'
|
|
19149
19005
|
| 'revenue_record_deleted'
|
|
19006
|
+
| 'other_record_upserted'
|
|
19007
|
+
| 'other_record_deleted'
|
|
19150
19008
|
| 'calculator_organization_settings_upserted'
|
|
19151
19009
|
| 'calculator_organization_settings_deleted'
|
|
19152
19010
|
| 'carrier_account_upserted_v2'
|
|
@@ -19209,14 +19067,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19209
19067
|
| 'experience_import_request'
|
|
19210
19068
|
| 'submitted_order_upserted'
|
|
19211
19069
|
| '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
19070
|
| 'export_completed'
|
|
19221
19071
|
| 'export_failed'
|
|
19222
19072
|
| 'feature_upserted'
|
|
@@ -19251,6 +19101,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19251
19101
|
| 'fraud_pending_review_deleted'
|
|
19252
19102
|
| 'fraud_review_decision_upserted'
|
|
19253
19103
|
| 'fraud_review_decision_deleted'
|
|
19104
|
+
| 'fraud_review_authorization_upserted'
|
|
19105
|
+
| 'fraud_review_authorization_deleted'
|
|
19106
|
+
| 'fraud_pending_review_authorization_upserted'
|
|
19107
|
+
| 'fraud_pending_review_authorization_deleted'
|
|
19108
|
+
| 'fraud_review_authorization_decision_upserted'
|
|
19109
|
+
| 'fraud_review_authorization_decision_deleted'
|
|
19254
19110
|
| 'fraud_provider_configuration_upserted'
|
|
19255
19111
|
| 'fraud_provider_configuration_deleted'
|
|
19256
19112
|
| 'manual_review_rule_upserted'
|
|
@@ -19328,6 +19184,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19328
19184
|
| 'organization_deactivation_deleted'
|
|
19329
19185
|
| 'merchant_guid_assignment_upserted'
|
|
19330
19186
|
| 'merchant_guid_assignment_deleted'
|
|
19187
|
+
| 'organization_metadata_upserted'
|
|
19188
|
+
| 'organization_metadata_deleted'
|
|
19331
19189
|
| 'partner_organization_settings_upserted'
|
|
19332
19190
|
| 'partner_organization_settings_deleted'
|
|
19333
19191
|
| 'unassigned_merchant_guid_upserted'
|
|
@@ -19403,6 +19261,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19403
19261
|
| 'channel_order_summary_deleted'
|
|
19404
19262
|
| 'channel_organization_identifier_upserted'
|
|
19405
19263
|
| 'channel_organization_identifier_deleted'
|
|
19264
|
+
| 'order_tax_and_duty_inclusivity_setting_upserted'
|
|
19265
|
+
| 'order_tax_and_duty_inclusivity_setting_deleted'
|
|
19406
19266
|
| 'shopify_monitoring_order_monitor_event_upserted'
|
|
19407
19267
|
| 'shopify_monitoring_order_monitor_event_deleted'
|
|
19408
19268
|
| 'shopify_order_fulfillments_snapshot_upserted'
|
|
@@ -19421,8 +19281,16 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19421
19281
|
| 'svitlana_item_deleted'
|
|
19422
19282
|
| 'colm_item_upserted'
|
|
19423
19283
|
| 'colm_item_deleted'
|
|
19284
|
+
| 'harinath_item_upserted'
|
|
19285
|
+
| 'harinath_item_deleted'
|
|
19286
|
+
| 'konstantin_item_upserted'
|
|
19287
|
+
| 'konstantin_item_deleted'
|
|
19424
19288
|
| 'matias_item_upserted'
|
|
19425
19289
|
| 'matias_item_deleted'
|
|
19290
|
+
| 'michaelyan_item_upserted'
|
|
19291
|
+
| 'michaelyan_item_deleted'
|
|
19292
|
+
| 'miljenko_item_upserted'
|
|
19293
|
+
| 'miljenko_item_deleted'
|
|
19426
19294
|
| 'shruti_demo_item_upserted'
|
|
19427
19295
|
| 'shruti_demo_item_deleted'
|
|
19428
19296
|
| 'tam_item_upserted'
|
|
@@ -19435,6 +19303,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19435
19303
|
| 'tracking_label_deleted'
|
|
19436
19304
|
| 'tracking_upserted'
|
|
19437
19305
|
| 'tracking_deleted'
|
|
19306
|
+
| 'tracking_assurance_analysis_upserted'
|
|
19307
|
+
| 'tracking_assurance_analysis_deleted'
|
|
19438
19308
|
| 'tracking_request_upserted'
|
|
19439
19309
|
| 'tracking_response_upserted'
|
|
19440
19310
|
| 'user_upserted_v2'
|
|
@@ -19442,7 +19312,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19442
19312
|
type ExperienceImportType = 'experience_with_settings';
|
|
19443
19313
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
19444
19314
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
19445
|
-
type ExperimentDiscriminatorKey = 'experience' | 'feature';
|
|
19446
19315
|
type ExportContentType = 'item' | 'price_book_item';
|
|
19447
19316
|
type FeatureScope = 'global' | 'organization';
|
|
19448
19317
|
type FeatureStatus = 'draft' | 'active' | 'archived';
|
|
@@ -19469,6 +19338,11 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19469
19338
|
| 'inventory_to_flow';
|
|
19470
19339
|
type FtpProtocol = 'sftp' | 'ftp';
|
|
19471
19340
|
type GoogleAnalyticsPlugin = 'ec';
|
|
19341
|
+
type HarinathItemType = 'digital' | 'physical';
|
|
19342
|
+
type HarmonizationDecisionSource =
|
|
19343
|
+
| 'human'
|
|
19344
|
+
| 'legacy_model'
|
|
19345
|
+
| 'enterprise_model';
|
|
19472
19346
|
type HttpMethod = 'get' | 'post';
|
|
19473
19347
|
type InventoryCheckService = 'sfcc' | 'gymboree';
|
|
19474
19348
|
type InventoryReservation = 'synchronous-on-submit';
|
|
@@ -19491,6 +19365,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19491
19365
|
| 'fulfillment_generate_label';
|
|
19492
19366
|
type ItemType = 'standard' | 'multi_product';
|
|
19493
19367
|
type KeywordType = 'positive' | 'negative';
|
|
19368
|
+
type KonstantinItemType = 'physical' | 'digital';
|
|
19494
19369
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
19495
19370
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
19496
19371
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
@@ -19513,6 +19388,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19513
19388
|
| 'high_value_goods_tax'
|
|
19514
19389
|
| 'duties';
|
|
19515
19390
|
type LogisticsCapability = 'logistics_address_correction';
|
|
19391
|
+
type LogisticsPayoutResolutionMethod =
|
|
19392
|
+
| 'order_combined_shipment'
|
|
19393
|
+
| 'intransit_label_event'
|
|
19394
|
+
| 'shipping_notification';
|
|
19516
19395
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
19517
19396
|
type ManualTransactionCategory =
|
|
19518
19397
|
| 'cancelled_order_refund'
|
|
@@ -19577,6 +19456,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19577
19456
|
| 'facebook_country_override'
|
|
19578
19457
|
| 'supplemental';
|
|
19579
19458
|
type MatiasItemType = 'physical' | 'digital';
|
|
19459
|
+
type MichaelyanItemType = 'physical' | 'digital';
|
|
19460
|
+
type MiljenkoItemType = 'physical' | 'digital';
|
|
19580
19461
|
type MixedBagWeight = '0' | '1' | '2';
|
|
19581
19462
|
type NatureOfSale =
|
|
19582
19463
|
| 'consumer'
|
|
@@ -19628,6 +19509,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19628
19509
|
| 'unit_test'
|
|
19629
19510
|
| 'api'
|
|
19630
19511
|
| 'api_activation'
|
|
19512
|
+
| 'api_reject'
|
|
19631
19513
|
| 'audit_auto_activation'
|
|
19632
19514
|
| 'api_deactivation'
|
|
19633
19515
|
| 'api_sandbox_setup'
|
|
@@ -19751,11 +19633,15 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19751
19633
|
| 'failed';
|
|
19752
19634
|
type ReportType =
|
|
19753
19635
|
| 'sales_record'
|
|
19636
|
+
| 'refund_record'
|
|
19637
|
+
| 'other_record'
|
|
19638
|
+
| 'pending_record'
|
|
19754
19639
|
| 'trueup_overview'
|
|
19755
19640
|
| 'non_channel_payment_bank_account'
|
|
19756
19641
|
| 'scheduled_payment'
|
|
19757
19642
|
| 'account_quarterly_balances'
|
|
19758
|
-
| 'invariants'
|
|
19643
|
+
| 'invariants'
|
|
19644
|
+
| 'payments';
|
|
19759
19645
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
19760
19646
|
type ReportingScheme =
|
|
19761
19647
|
| 'immediate_reporting_to_tax_authority'
|
|
@@ -19779,7 +19665,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19779
19665
|
| 'Low-Risk'
|
|
19780
19666
|
| 'Restricted-Party'
|
|
19781
19667
|
| 'none';
|
|
19782
|
-
type Scope = 'organization' | 'global';
|
|
19783
19668
|
type SerialReservationError =
|
|
19784
19669
|
| 'duration_too_long'
|
|
19785
19670
|
| 'items_not_found'
|
|
@@ -19849,10 +19734,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19849
19734
|
type ShopifyPromotionStatus = 'active' | 'inactive';
|
|
19850
19735
|
type ShopifyService = 'payment' | 'duty_tax_calculator';
|
|
19851
19736
|
type ShrutiDemoType = 'digital' | 'physical';
|
|
19852
|
-
type SignificanceAction =
|
|
19853
|
-
| 'end_and_implement_winner'
|
|
19854
|
-
| 'end_and_revert'
|
|
19855
|
-
| 'do_nothing';
|
|
19856
19737
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
19857
19738
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
19858
19739
|
type SnoozeSourceType = 'task' | 'invariant';
|
|
@@ -19869,7 +19750,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19869
19750
|
| 'time-to-classify-aggregated'
|
|
19870
19751
|
| 'rate-source'
|
|
19871
19752
|
| 'rate-freshness';
|
|
19872
|
-
type Status = 'draft' | 'scheduled' | 'live' | 'ended' | 'archived';
|
|
19873
19753
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
19874
19754
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
19875
19755
|
type SvitlanaType = 'physical' | 'digital';
|
|
@@ -19883,10 +19763,15 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19883
19763
|
| 'payment'
|
|
19884
19764
|
| 'rate_levels'
|
|
19885
19765
|
| 'center_defaults';
|
|
19766
|
+
type TaxAndDutyInclusivitySetting =
|
|
19767
|
+
| 'duty_exclusive_tax_exclusive'
|
|
19768
|
+
| 'duty_inclusive_tax_exclusive'
|
|
19769
|
+
| 'duty_exclusive_tax_inclusive'
|
|
19770
|
+
| 'duty_inclusive_tax_inclusive';
|
|
19886
19771
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
19887
19772
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
19888
19773
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
|
|
19889
|
-
type
|
|
19774
|
+
type ThiagoItemType = 'digital' | 'physical';
|
|
19890
19775
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
19891
19776
|
type TrackingProcessingFailureClassification =
|
|
19892
19777
|
| 'tracking_expired'
|
|
@@ -20702,17 +20587,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20702
20587
|
readonly action?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
20703
20588
|
}
|
|
20704
20589
|
|
|
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
20590
|
interface BankAccountReference {
|
|
20717
20591
|
readonly id: string;
|
|
20718
20592
|
}
|
|
@@ -20833,7 +20707,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20833
20707
|
readonly discriminator: 'billing_csv_transaction_upserted';
|
|
20834
20708
|
readonly event_id: string;
|
|
20835
20709
|
readonly timestamp: string;
|
|
20836
|
-
readonly transaction: io.flow.
|
|
20710
|
+
readonly transaction: io.flow.internal.v0.models.CsvTransaction;
|
|
20837
20711
|
}
|
|
20838
20712
|
|
|
20839
20713
|
interface BillingInvoiceSummary {
|
|
@@ -22270,28 +22144,38 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22270
22144
|
}
|
|
22271
22145
|
|
|
22272
22146
|
interface ClassificationProductRequest {
|
|
22273
|
-
readonly
|
|
22274
|
-
readonly
|
|
22275
|
-
readonly
|
|
22276
|
-
readonly
|
|
22277
|
-
readonly
|
|
22278
|
-
readonly
|
|
22279
|
-
readonly
|
|
22280
|
-
readonly
|
|
22281
|
-
readonly
|
|
22282
|
-
readonly
|
|
22283
|
-
readonly
|
|
22147
|
+
readonly MerchantId: string;
|
|
22148
|
+
readonly ProductName: string;
|
|
22149
|
+
readonly ProductDescription: string;
|
|
22150
|
+
readonly ProductIdInternal: string;
|
|
22151
|
+
readonly ProductIdExternal: string;
|
|
22152
|
+
readonly ProductGroupCode?: string;
|
|
22153
|
+
readonly ProductUrl?: string;
|
|
22154
|
+
readonly ProductImage?: string;
|
|
22155
|
+
readonly ProductAttributes: Record<string, string>;
|
|
22156
|
+
readonly Categories?: string[];
|
|
22157
|
+
readonly PlatformId: io.flow.internal.v0.enums.ClassificationPlatform;
|
|
22158
|
+
}
|
|
22159
|
+
|
|
22160
|
+
interface ClassificationProductRequestEnvelope {
|
|
22161
|
+
readonly messageType: string[];
|
|
22162
|
+
readonly message: io.flow.internal.v0.models.ClassificationProductRequest;
|
|
22284
22163
|
}
|
|
22285
22164
|
|
|
22286
22165
|
interface ClassificationProductResult {
|
|
22287
|
-
readonly
|
|
22288
|
-
readonly
|
|
22289
|
-
readonly
|
|
22290
|
-
readonly
|
|
22166
|
+
readonly productId: string;
|
|
22167
|
+
readonly merchantId: string;
|
|
22168
|
+
readonly platformId: io.flow.internal.v0.enums.ClassificationPlatform;
|
|
22169
|
+
readonly hsCode?: string;
|
|
22291
22170
|
readonly probability?: number;
|
|
22292
|
-
readonly
|
|
22293
|
-
readonly
|
|
22294
|
-
readonly
|
|
22171
|
+
readonly classificationDecision: io.flow.internal.v0.enums.ClassificationDecision;
|
|
22172
|
+
readonly classificationType: io.flow.internal.v0.enums.ClassificationType;
|
|
22173
|
+
readonly clothingAgeClassification?: io.flow.internal.v0.enums.ClothingAgeClassification;
|
|
22174
|
+
}
|
|
22175
|
+
|
|
22176
|
+
interface ClassificationProductResultEnvelope {
|
|
22177
|
+
readonly messageType: string[];
|
|
22178
|
+
readonly message: io.flow.internal.v0.models.ClassificationProductResult;
|
|
22295
22179
|
}
|
|
22296
22180
|
|
|
22297
22181
|
interface ClassificationProductSummary {
|
|
@@ -22625,6 +22509,25 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22625
22509
|
readonly signature_secret: string;
|
|
22626
22510
|
}
|
|
22627
22511
|
|
|
22512
|
+
interface CsvTransaction {
|
|
22513
|
+
readonly id: string;
|
|
22514
|
+
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
22515
|
+
readonly account: io.flow.internal.v0.models.OtherRecordAccount;
|
|
22516
|
+
readonly metadata?: io.flow.internal.v0.models.OtherRecordMetadata;
|
|
22517
|
+
readonly order?: io.flow.internal.v0.models.OtherRecordOrderSummary;
|
|
22518
|
+
readonly currency: string;
|
|
22519
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
22520
|
+
readonly parent?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
22521
|
+
readonly gross: number;
|
|
22522
|
+
readonly fees: io.flow.internal.v0.models.OtherRecordFees;
|
|
22523
|
+
readonly withholdings: io.flow.internal.v0.models.OtherRecordWithholdings;
|
|
22524
|
+
readonly discount: io.flow.internal.v0.models.OtherRecordDiscount;
|
|
22525
|
+
readonly net: number;
|
|
22526
|
+
readonly identifiers: io.flow.internal.v0.models.OtherRecordIdentifiers;
|
|
22527
|
+
readonly created_at: string;
|
|
22528
|
+
readonly updated_at: string;
|
|
22529
|
+
}
|
|
22530
|
+
|
|
22628
22531
|
interface CurrencyInternalRate {
|
|
22629
22532
|
readonly id: string;
|
|
22630
22533
|
readonly organization_id: string;
|
|
@@ -22736,53 +22639,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22736
22639
|
readonly construction?: io.flow.internal.v0.models.CustomsProductAttributeLabel;
|
|
22737
22640
|
}
|
|
22738
22641
|
|
|
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
22642
|
interface DailyValue {
|
|
22787
22643
|
readonly id: string;
|
|
22788
22644
|
readonly key: io.flow.internal.v0.enums.BillingMetricKey;
|
|
@@ -23492,6 +23348,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23492
23348
|
}
|
|
23493
23349
|
|
|
23494
23350
|
interface ErpPriorityVendorForm {
|
|
23351
|
+
readonly company?: io.flow.internal.v0.enums.Company;
|
|
23495
23352
|
readonly acc_des?: string;
|
|
23496
23353
|
readonly tax_code?: string;
|
|
23497
23354
|
readonly tax_code_2?: string;
|
|
@@ -23591,21 +23448,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23591
23448
|
readonly total?: io.flow.common.v0.models.Money;
|
|
23592
23449
|
}
|
|
23593
23450
|
|
|
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
23451
|
interface ExperienceExportRequest {
|
|
23610
23452
|
readonly discriminator: 'experience_export_request';
|
|
23611
23453
|
readonly event_id: string;
|
|
@@ -23636,165 +23478,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23636
23478
|
readonly id: string;
|
|
23637
23479
|
}
|
|
23638
23480
|
|
|
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
23481
|
interface ExplicitStatement {
|
|
23799
23482
|
readonly id: string;
|
|
23800
23483
|
readonly statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
@@ -23863,6 +23546,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23863
23546
|
readonly delivery_estimate?: string;
|
|
23864
23547
|
readonly description?: string;
|
|
23865
23548
|
readonly order_number?: string;
|
|
23549
|
+
readonly raw_carrier_event_code?: string;
|
|
23866
23550
|
}
|
|
23867
23551
|
|
|
23868
23552
|
interface ExternalFulfillmentProof {
|
|
@@ -23936,23 +23620,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23936
23620
|
readonly feature: io.flow.internal.v0.models.Feature;
|
|
23937
23621
|
}
|
|
23938
23622
|
|
|
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
23623
|
interface FeatureForm {
|
|
23957
23624
|
readonly name: string;
|
|
23958
23625
|
readonly description?: string;
|
|
@@ -24010,34 +23677,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24010
23677
|
readonly context: io.flow.internal.v0.models.FeatureContextForm;
|
|
24011
23678
|
}
|
|
24012
23679
|
|
|
24013
|
-
interface FeatureValueReference {
|
|
24014
|
-
readonly feature_key: string;
|
|
24015
|
-
readonly value: string;
|
|
24016
|
-
}
|
|
24017
|
-
|
|
24018
23680
|
interface FeatureValueResult {
|
|
24019
23681
|
readonly values: io.flow.internal.v0.unions.FeatureValue[];
|
|
24020
23682
|
}
|
|
24021
23683
|
|
|
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
23684
|
interface Fedex {
|
|
24042
23685
|
readonly discriminator: 'fedex';
|
|
24043
23686
|
readonly key: string;
|
|
@@ -24290,8 +23933,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24290
23933
|
readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
24291
23934
|
}
|
|
24292
23935
|
|
|
24293
|
-
interface
|
|
24294
|
-
readonly
|
|
23936
|
+
interface FraudAuthorizationSummary {
|
|
23937
|
+
readonly fraud_review_authorization: io.flow.internal.v0.models.FraudReviewAuthorization;
|
|
23938
|
+
readonly fraud_pending_review_authorization?: io.flow.internal.v0.models.FraudPendingReviewAuthorization;
|
|
23939
|
+
readonly fraud_review_authorization_decision?: io.flow.internal.v0.models.FraudReviewAuthorizationDecision;
|
|
24295
23940
|
}
|
|
24296
23941
|
|
|
24297
23942
|
interface FraudPendingReview {
|
|
@@ -24304,6 +23949,32 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24304
23949
|
readonly liability?: io.flow.fraud.v0.enums.FraudLiability;
|
|
24305
23950
|
}
|
|
24306
23951
|
|
|
23952
|
+
interface FraudPendingReviewAuthorization {
|
|
23953
|
+
readonly id: string;
|
|
23954
|
+
readonly fraud_review_authorization_id: string;
|
|
23955
|
+
readonly order: io.flow.experience.v0.models.OrderReference;
|
|
23956
|
+
readonly fraud_order_reference?: io.flow.fraud.v0.unions.FraudOrderReference;
|
|
23957
|
+
readonly recommended_status: io.flow.fraud.v0.enums.FraudStatus;
|
|
23958
|
+
readonly apply_at?: string;
|
|
23959
|
+
readonly liability?: io.flow.fraud.v0.enums.FraudLiability;
|
|
23960
|
+
}
|
|
23961
|
+
|
|
23962
|
+
interface FraudPendingReviewAuthorizationDeleted {
|
|
23963
|
+
readonly discriminator: 'fraud_pending_review_authorization_deleted';
|
|
23964
|
+
readonly event_id: string;
|
|
23965
|
+
readonly timestamp: string;
|
|
23966
|
+
readonly organization: string;
|
|
23967
|
+
readonly id: string;
|
|
23968
|
+
}
|
|
23969
|
+
|
|
23970
|
+
interface FraudPendingReviewAuthorizationUpserted {
|
|
23971
|
+
readonly discriminator: 'fraud_pending_review_authorization_upserted';
|
|
23972
|
+
readonly event_id: string;
|
|
23973
|
+
readonly timestamp: string;
|
|
23974
|
+
readonly organization: string;
|
|
23975
|
+
readonly fraud_pending_review_authorization: io.flow.internal.v0.models.FraudPendingReviewAuthorization;
|
|
23976
|
+
}
|
|
23977
|
+
|
|
24307
23978
|
interface FraudPendingReviewDeleted {
|
|
24308
23979
|
readonly discriminator: 'fraud_pending_review_deleted';
|
|
24309
23980
|
readonly event_id: string;
|
|
@@ -24384,6 +24055,67 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24384
24055
|
readonly created_at?: string;
|
|
24385
24056
|
}
|
|
24386
24057
|
|
|
24058
|
+
interface FraudReviewAuthorization {
|
|
24059
|
+
readonly id: string;
|
|
24060
|
+
readonly organization_id: string;
|
|
24061
|
+
readonly order: io.flow.experience.v0.models.OrderReference;
|
|
24062
|
+
readonly fraud_order_reference?: io.flow.fraud.v0.unions.FraudOrderReference;
|
|
24063
|
+
readonly status: io.flow.fraud.v0.enums.FraudStatus;
|
|
24064
|
+
readonly responsible_party: io.flow.internal.v0.enums.FraudReviewResponsibleParty;
|
|
24065
|
+
readonly description?: string;
|
|
24066
|
+
readonly risk_evaluation?: io.flow.internal.v0.enums.RiskEvaluation;
|
|
24067
|
+
readonly liability?: io.flow.fraud.v0.enums.FraudLiability;
|
|
24068
|
+
readonly status_updated_at?: string;
|
|
24069
|
+
readonly attributes?: Record<string, string>;
|
|
24070
|
+
readonly provider?: io.flow.internal.v0.enums.FraudProvider;
|
|
24071
|
+
readonly payment_authorization_id?: string;
|
|
24072
|
+
readonly decline_reason?: io.flow.internal.v0.unions.DeclineReason;
|
|
24073
|
+
readonly created_at?: string;
|
|
24074
|
+
}
|
|
24075
|
+
|
|
24076
|
+
interface FraudReviewAuthorizationDecision {
|
|
24077
|
+
readonly id: string;
|
|
24078
|
+
readonly fraud_review_authorization_id: string;
|
|
24079
|
+
readonly order: io.flow.experience.v0.models.OrderReference;
|
|
24080
|
+
readonly fraud_order_reference?: io.flow.fraud.v0.unions.FraudOrderReference;
|
|
24081
|
+
readonly status: io.flow.fraud.v0.enums.FraudStatus;
|
|
24082
|
+
readonly created_at: string;
|
|
24083
|
+
readonly liability?: io.flow.fraud.v0.enums.FraudLiability;
|
|
24084
|
+
readonly updated_by_user?: io.flow.common.v0.models.UserReference;
|
|
24085
|
+
}
|
|
24086
|
+
|
|
24087
|
+
interface FraudReviewAuthorizationDecisionDeleted {
|
|
24088
|
+
readonly discriminator: 'fraud_review_authorization_decision_deleted';
|
|
24089
|
+
readonly event_id: string;
|
|
24090
|
+
readonly timestamp: string;
|
|
24091
|
+
readonly organization: string;
|
|
24092
|
+
readonly id: string;
|
|
24093
|
+
}
|
|
24094
|
+
|
|
24095
|
+
interface FraudReviewAuthorizationDecisionUpserted {
|
|
24096
|
+
readonly discriminator: 'fraud_review_authorization_decision_upserted';
|
|
24097
|
+
readonly event_id: string;
|
|
24098
|
+
readonly timestamp: string;
|
|
24099
|
+
readonly organization: string;
|
|
24100
|
+
readonly fraud_review_authorization_decision: io.flow.internal.v0.models.FraudReviewAuthorizationDecision;
|
|
24101
|
+
}
|
|
24102
|
+
|
|
24103
|
+
interface FraudReviewAuthorizationDeleted {
|
|
24104
|
+
readonly discriminator: 'fraud_review_authorization_deleted';
|
|
24105
|
+
readonly event_id: string;
|
|
24106
|
+
readonly timestamp: string;
|
|
24107
|
+
readonly organization: string;
|
|
24108
|
+
readonly id: string;
|
|
24109
|
+
}
|
|
24110
|
+
|
|
24111
|
+
interface FraudReviewAuthorizationUpserted {
|
|
24112
|
+
readonly discriminator: 'fraud_review_authorization_upserted';
|
|
24113
|
+
readonly event_id: string;
|
|
24114
|
+
readonly timestamp: string;
|
|
24115
|
+
readonly organization: string;
|
|
24116
|
+
readonly fraud_review_authorization: io.flow.internal.v0.models.FraudReviewAuthorization;
|
|
24117
|
+
}
|
|
24118
|
+
|
|
24387
24119
|
interface FraudReviewDecision {
|
|
24388
24120
|
readonly id: string;
|
|
24389
24121
|
readonly fraud_review_id: string;
|
|
@@ -24442,6 +24174,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24442
24174
|
readonly fraud_review: io.flow.internal.v0.models.FraudReview;
|
|
24443
24175
|
readonly fraud_pending_review?: io.flow.internal.v0.models.FraudPendingReview;
|
|
24444
24176
|
readonly fraud_review_decision?: io.flow.internal.v0.models.FraudReviewDecision;
|
|
24177
|
+
readonly fraud_review_authorizations?: io.flow.internal.v0.models.FraudAuthorizationSummary[];
|
|
24445
24178
|
}
|
|
24446
24179
|
|
|
24447
24180
|
interface FtpFileDeleted {
|
|
@@ -24516,6 +24249,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24516
24249
|
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
24517
24250
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
24518
24251
|
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
24252
|
+
readonly payment?: io.flow.internal.v0.models.PaymentSummary;
|
|
24519
24253
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
24520
24254
|
readonly sequence_number: number;
|
|
24521
24255
|
readonly posting_cutoff: string;
|
|
@@ -24634,6 +24368,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24634
24368
|
readonly subtotal: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24635
24369
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24636
24370
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24371
|
+
readonly tips?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24637
24372
|
readonly discount: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24638
24373
|
readonly total: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24639
24374
|
}
|
|
@@ -24798,6 +24533,37 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24798
24533
|
readonly tracker_id: string;
|
|
24799
24534
|
}
|
|
24800
24535
|
|
|
24536
|
+
interface HarinathItem {
|
|
24537
|
+
readonly id: string;
|
|
24538
|
+
readonly number: string;
|
|
24539
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
24540
|
+
readonly description?: string;
|
|
24541
|
+
readonly type: io.flow.internal.v0.enums.HarinathItemType;
|
|
24542
|
+
readonly added_on: string;
|
|
24543
|
+
}
|
|
24544
|
+
|
|
24545
|
+
interface HarinathItemDeleted {
|
|
24546
|
+
readonly discriminator: 'harinath_item_deleted';
|
|
24547
|
+
readonly event_id: string;
|
|
24548
|
+
readonly timestamp: string;
|
|
24549
|
+
readonly id: string;
|
|
24550
|
+
}
|
|
24551
|
+
|
|
24552
|
+
interface HarinathItemForm {
|
|
24553
|
+
readonly number: string;
|
|
24554
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
24555
|
+
readonly description?: string;
|
|
24556
|
+
readonly type: io.flow.internal.v0.enums.HarinathItemType;
|
|
24557
|
+
readonly added_on: string;
|
|
24558
|
+
}
|
|
24559
|
+
|
|
24560
|
+
interface HarinathItemUpserted {
|
|
24561
|
+
readonly discriminator: 'harinath_item_upserted';
|
|
24562
|
+
readonly event_id: string;
|
|
24563
|
+
readonly timestamp: string;
|
|
24564
|
+
readonly item: io.flow.internal.v0.models.HarinathItem;
|
|
24565
|
+
}
|
|
24566
|
+
|
|
24801
24567
|
interface HarmonizationClassificationStatisticsData {
|
|
24802
24568
|
readonly statistics: io.flow.internal.v0.models.ClassificationStatistics;
|
|
24803
24569
|
}
|
|
@@ -25330,6 +25096,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25330
25096
|
string,
|
|
25331
25097
|
io.flow.internal.v0.models.TariffCodeDuty
|
|
25332
25098
|
>;
|
|
25099
|
+
readonly decision_source?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
25333
25100
|
readonly created_at?: string;
|
|
25334
25101
|
readonly updated_at?: string;
|
|
25335
25102
|
readonly updated_by_user_id?: string;
|
|
@@ -25486,6 +25253,37 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25486
25253
|
readonly descriptive_asset_urls?: string;
|
|
25487
25254
|
}
|
|
25488
25255
|
|
|
25256
|
+
interface KonstantinItem {
|
|
25257
|
+
readonly id: string;
|
|
25258
|
+
readonly number: string;
|
|
25259
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
25260
|
+
readonly description?: string;
|
|
25261
|
+
readonly type: io.flow.internal.v0.enums.KonstantinItemType;
|
|
25262
|
+
readonly added_on: string;
|
|
25263
|
+
}
|
|
25264
|
+
|
|
25265
|
+
interface KonstantinItemDeleted {
|
|
25266
|
+
readonly discriminator: 'konstantin_item_deleted';
|
|
25267
|
+
readonly event_id: string;
|
|
25268
|
+
readonly timestamp: string;
|
|
25269
|
+
readonly id: string;
|
|
25270
|
+
}
|
|
25271
|
+
|
|
25272
|
+
interface KonstantinItemForm {
|
|
25273
|
+
readonly number: string;
|
|
25274
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
25275
|
+
readonly description?: string;
|
|
25276
|
+
readonly type: io.flow.internal.v0.enums.KonstantinItemType;
|
|
25277
|
+
readonly added_on: string;
|
|
25278
|
+
}
|
|
25279
|
+
|
|
25280
|
+
interface KonstantinItemUpserted {
|
|
25281
|
+
readonly discriminator: 'konstantin_item_upserted';
|
|
25282
|
+
readonly event_id: string;
|
|
25283
|
+
readonly timestamp: string;
|
|
25284
|
+
readonly item: io.flow.internal.v0.models.KonstantinItem;
|
|
25285
|
+
}
|
|
25286
|
+
|
|
25489
25287
|
interface LabProjectSettings {
|
|
25490
25288
|
readonly id: string;
|
|
25491
25289
|
readonly flow_lab_project_key: string;
|
|
@@ -26040,6 +25838,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26040
25838
|
readonly capabilities: io.flow.internal.v0.enums.LogisticsCapability[];
|
|
26041
25839
|
}
|
|
26042
25840
|
|
|
25841
|
+
interface LogisticsPayoutRequest {
|
|
25842
|
+
readonly organization_id: string;
|
|
25843
|
+
readonly order_number: string;
|
|
25844
|
+
readonly carrier: string;
|
|
25845
|
+
readonly carrier_tracking_number: string;
|
|
25846
|
+
readonly dry_run: boolean;
|
|
25847
|
+
readonly payout_resolution_method: io.flow.internal.v0.enums.LogisticsPayoutResolutionMethod;
|
|
25848
|
+
readonly label_id?: string;
|
|
25849
|
+
readonly combined_shipment_order_number?: string;
|
|
25850
|
+
}
|
|
25851
|
+
|
|
25852
|
+
interface LogisticsPayoutRequestForm {
|
|
25853
|
+
readonly organization_id: string;
|
|
25854
|
+
readonly order_identifier: string;
|
|
25855
|
+
readonly carrier_id?: string;
|
|
25856
|
+
readonly carrier_name?: string;
|
|
25857
|
+
readonly carrier_tracking_number?: string;
|
|
25858
|
+
readonly external_reference_number?: string;
|
|
25859
|
+
}
|
|
25860
|
+
|
|
26043
25861
|
interface Logo {
|
|
26044
25862
|
readonly url: string;
|
|
26045
25863
|
}
|
|
@@ -26610,6 +26428,68 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26610
26428
|
readonly proposition: io.flow.internal.v0.models.MetadataProposition;
|
|
26611
26429
|
}
|
|
26612
26430
|
|
|
26431
|
+
interface MichaelyanItem {
|
|
26432
|
+
readonly id: string;
|
|
26433
|
+
readonly number: string;
|
|
26434
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
26435
|
+
readonly description?: string;
|
|
26436
|
+
readonly type: io.flow.internal.v0.enums.MichaelyanItemType;
|
|
26437
|
+
readonly added_on: string;
|
|
26438
|
+
}
|
|
26439
|
+
|
|
26440
|
+
interface MichaelyanItemDeleted {
|
|
26441
|
+
readonly discriminator: 'michaelyan_item_deleted';
|
|
26442
|
+
readonly event_id: string;
|
|
26443
|
+
readonly timestamp: string;
|
|
26444
|
+
readonly id: string;
|
|
26445
|
+
}
|
|
26446
|
+
|
|
26447
|
+
interface MichaelyanItemForm {
|
|
26448
|
+
readonly number: string;
|
|
26449
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
26450
|
+
readonly description?: string;
|
|
26451
|
+
readonly type: io.flow.internal.v0.enums.MichaelyanItemType;
|
|
26452
|
+
readonly added_on: string;
|
|
26453
|
+
}
|
|
26454
|
+
|
|
26455
|
+
interface MichaelyanItemUpserted {
|
|
26456
|
+
readonly discriminator: 'michaelyan_item_upserted';
|
|
26457
|
+
readonly event_id: string;
|
|
26458
|
+
readonly timestamp: string;
|
|
26459
|
+
readonly item: io.flow.internal.v0.models.MichaelyanItem;
|
|
26460
|
+
}
|
|
26461
|
+
|
|
26462
|
+
interface MiljenkoItem {
|
|
26463
|
+
readonly id: string;
|
|
26464
|
+
readonly number: string;
|
|
26465
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
26466
|
+
readonly description?: string;
|
|
26467
|
+
readonly type: io.flow.internal.v0.enums.MiljenkoItemType;
|
|
26468
|
+
readonly added_on: string;
|
|
26469
|
+
}
|
|
26470
|
+
|
|
26471
|
+
interface MiljenkoItemDeleted {
|
|
26472
|
+
readonly discriminator: 'miljenko_item_deleted';
|
|
26473
|
+
readonly event_id: string;
|
|
26474
|
+
readonly timestamp: string;
|
|
26475
|
+
readonly id: string;
|
|
26476
|
+
}
|
|
26477
|
+
|
|
26478
|
+
interface MiljenkoItemForm {
|
|
26479
|
+
readonly number: string;
|
|
26480
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
26481
|
+
readonly description?: string;
|
|
26482
|
+
readonly type: io.flow.internal.v0.enums.MiljenkoItemType;
|
|
26483
|
+
readonly added_on: string;
|
|
26484
|
+
}
|
|
26485
|
+
|
|
26486
|
+
interface MiljenkoItemUpserted {
|
|
26487
|
+
readonly discriminator: 'miljenko_item_upserted';
|
|
26488
|
+
readonly event_id: string;
|
|
26489
|
+
readonly timestamp: string;
|
|
26490
|
+
readonly item: io.flow.internal.v0.models.MiljenkoItem;
|
|
26491
|
+
}
|
|
26492
|
+
|
|
26613
26493
|
interface NextBillingStatement {
|
|
26614
26494
|
readonly date: string;
|
|
26615
26495
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -27018,6 +26898,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27018
26898
|
readonly currency: string;
|
|
27019
26899
|
}
|
|
27020
26900
|
|
|
26901
|
+
interface OrderTaxAndDutyInclusivitySetting {
|
|
26902
|
+
readonly id: string;
|
|
26903
|
+
readonly organization_id: string;
|
|
26904
|
+
readonly shopify_order_id: string;
|
|
26905
|
+
readonly order_number: string;
|
|
26906
|
+
readonly tax_and_duty_inclusivity_setting: io.flow.internal.v0.enums.TaxAndDutyInclusivitySetting;
|
|
26907
|
+
}
|
|
26908
|
+
|
|
26909
|
+
interface OrderTaxAndDutyInclusivitySettingDeleted {
|
|
26910
|
+
readonly discriminator: 'order_tax_and_duty_inclusivity_setting_deleted';
|
|
26911
|
+
readonly event_id: string;
|
|
26912
|
+
readonly timestamp: string;
|
|
26913
|
+
readonly organization: string;
|
|
26914
|
+
readonly id: string;
|
|
26915
|
+
}
|
|
26916
|
+
|
|
26917
|
+
interface OrderTaxAndDutyInclusivitySettingUpserted {
|
|
26918
|
+
readonly discriminator: 'order_tax_and_duty_inclusivity_setting_upserted';
|
|
26919
|
+
readonly event_id: string;
|
|
26920
|
+
readonly timestamp: string;
|
|
26921
|
+
readonly order_tax_and_duty_inclusivity_setting: io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
26922
|
+
}
|
|
26923
|
+
|
|
27021
26924
|
interface OrderTransaction {
|
|
27022
26925
|
readonly discriminator: 'order_transaction';
|
|
27023
26926
|
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -27308,6 +27211,34 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27308
27211
|
readonly to: string;
|
|
27309
27212
|
}
|
|
27310
27213
|
|
|
27214
|
+
interface OrganizationMetadata {
|
|
27215
|
+
readonly id: string;
|
|
27216
|
+
readonly organization_id: string;
|
|
27217
|
+
readonly pending_restriction_count: number;
|
|
27218
|
+
readonly pending_verification_count: number;
|
|
27219
|
+
readonly oldest_pending_restriction_date?: string;
|
|
27220
|
+
readonly oldest_pending_verification_date?: string;
|
|
27221
|
+
readonly product_count: number;
|
|
27222
|
+
readonly restricted_product_count: number;
|
|
27223
|
+
readonly last_order_submitted_at?: string;
|
|
27224
|
+
}
|
|
27225
|
+
|
|
27226
|
+
interface OrganizationMetadataDeleted {
|
|
27227
|
+
readonly discriminator: 'organization_metadata_deleted';
|
|
27228
|
+
readonly event_id: string;
|
|
27229
|
+
readonly timestamp: string;
|
|
27230
|
+
readonly organization: string;
|
|
27231
|
+
readonly id: string;
|
|
27232
|
+
}
|
|
27233
|
+
|
|
27234
|
+
interface OrganizationMetadataUpserted {
|
|
27235
|
+
readonly discriminator: 'organization_metadata_upserted';
|
|
27236
|
+
readonly event_id: string;
|
|
27237
|
+
readonly timestamp: string;
|
|
27238
|
+
readonly organization: string;
|
|
27239
|
+
readonly organization_metadata: io.flow.internal.v0.models.OrganizationMetadata;
|
|
27240
|
+
}
|
|
27241
|
+
|
|
27311
27242
|
interface OrganizationOnboardingStateAdjustmentResult {
|
|
27312
27243
|
readonly organization_onboarding_state?: io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState;
|
|
27313
27244
|
}
|
|
@@ -27495,6 +27426,144 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27495
27426
|
readonly audit_result: io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
27496
27427
|
}
|
|
27497
27428
|
|
|
27429
|
+
interface OtherRecord {
|
|
27430
|
+
readonly id: string;
|
|
27431
|
+
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
27432
|
+
readonly account: io.flow.internal.v0.models.OtherRecordAccount;
|
|
27433
|
+
readonly metadata?: io.flow.internal.v0.models.OtherRecordMetadata;
|
|
27434
|
+
readonly order?: io.flow.internal.v0.models.OtherRecordOrderSummary;
|
|
27435
|
+
readonly currency: string;
|
|
27436
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
27437
|
+
readonly parent?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
27438
|
+
readonly gross: number;
|
|
27439
|
+
readonly fees: io.flow.internal.v0.models.OtherRecordFees;
|
|
27440
|
+
readonly withholdings: io.flow.internal.v0.models.OtherRecordWithholdings;
|
|
27441
|
+
readonly discount: io.flow.internal.v0.models.OtherRecordDiscount;
|
|
27442
|
+
readonly net: number;
|
|
27443
|
+
readonly identifiers: io.flow.internal.v0.models.OtherRecordIdentifiers;
|
|
27444
|
+
readonly created_at: string;
|
|
27445
|
+
readonly updated_at: string;
|
|
27446
|
+
}
|
|
27447
|
+
|
|
27448
|
+
interface OtherRecordAccount {
|
|
27449
|
+
readonly id: string;
|
|
27450
|
+
readonly merchant?: io.flow.internal.v0.models.OtherRecordMerchantReference;
|
|
27451
|
+
readonly environment: io.flow.common.v0.enums.Environment;
|
|
27452
|
+
readonly source: io.flow.internal.v0.models.OtherRecordAccountSourceSummary;
|
|
27453
|
+
}
|
|
27454
|
+
|
|
27455
|
+
interface OtherRecordAccountSourceSummary {
|
|
27456
|
+
readonly id: string;
|
|
27457
|
+
readonly type: io.flow.internal.v0.enums.AccountType;
|
|
27458
|
+
}
|
|
27459
|
+
|
|
27460
|
+
interface OtherRecordDeleted {
|
|
27461
|
+
readonly discriminator: 'other_record_deleted';
|
|
27462
|
+
readonly event_id: string;
|
|
27463
|
+
readonly timestamp: string;
|
|
27464
|
+
readonly id: string;
|
|
27465
|
+
}
|
|
27466
|
+
|
|
27467
|
+
interface OtherRecordDiscount {
|
|
27468
|
+
readonly amount: number;
|
|
27469
|
+
readonly description?: string;
|
|
27470
|
+
}
|
|
27471
|
+
|
|
27472
|
+
interface OtherRecordFees {
|
|
27473
|
+
readonly duty_guarantee: number;
|
|
27474
|
+
readonly mor: number;
|
|
27475
|
+
readonly fraud: number;
|
|
27476
|
+
readonly fx: number;
|
|
27477
|
+
readonly processing: number;
|
|
27478
|
+
readonly rate_lock: number;
|
|
27479
|
+
readonly transfer: number;
|
|
27480
|
+
readonly negative_balance: number;
|
|
27481
|
+
}
|
|
27482
|
+
|
|
27483
|
+
interface OtherRecordIdentifiers {
|
|
27484
|
+
readonly reference_id?: string;
|
|
27485
|
+
}
|
|
27486
|
+
|
|
27487
|
+
interface OtherRecordMerchantReference {
|
|
27488
|
+
readonly id: string;
|
|
27489
|
+
}
|
|
27490
|
+
|
|
27491
|
+
interface OtherRecordMetadata {
|
|
27492
|
+
readonly channel?: io.flow.internal.v0.models.OtherRecordMetadataChannel;
|
|
27493
|
+
readonly shipping_label?: io.flow.internal.v0.models.OtherRecordMetadataShippingLabel;
|
|
27494
|
+
readonly shipping_label_revenue_share?: io.flow.internal.v0.models.OtherRecordMetadataShippingLabelRevenueShare;
|
|
27495
|
+
readonly trueup?: io.flow.internal.v0.models.OtherRecordMetadataTrueup;
|
|
27496
|
+
readonly carrier_charge?: io.flow.internal.v0.models.OtherRecordMetadataCarrierCharge;
|
|
27497
|
+
readonly manual?: io.flow.internal.v0.models.OtherRecordMetadataManual;
|
|
27498
|
+
readonly failed_payout?: io.flow.internal.v0.models.OtherRecordMetadataFailedPayout;
|
|
27499
|
+
}
|
|
27500
|
+
|
|
27501
|
+
interface OtherRecordMetadataCarrierCharge {
|
|
27502
|
+
readonly reason: io.flow.trueup.v0.enums.CarrierChargeReason;
|
|
27503
|
+
readonly label_created_at: string;
|
|
27504
|
+
readonly carrier_id: string;
|
|
27505
|
+
readonly carrier_tracking_number: string;
|
|
27506
|
+
readonly revenue_share_percentage: number;
|
|
27507
|
+
readonly outbound_transaction_id?: string;
|
|
27508
|
+
}
|
|
27509
|
+
|
|
27510
|
+
interface OtherRecordMetadataChannel {
|
|
27511
|
+
readonly method: string;
|
|
27512
|
+
readonly card?: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata;
|
|
27513
|
+
}
|
|
27514
|
+
|
|
27515
|
+
interface OtherRecordMetadataFailedPayout {
|
|
27516
|
+
readonly failed_payment: io.flow.billing.v0.models.TransactionMetadataFailedPayoutReference;
|
|
27517
|
+
}
|
|
27518
|
+
|
|
27519
|
+
interface OtherRecordMetadataManual {
|
|
27520
|
+
readonly description: string;
|
|
27521
|
+
readonly original?: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
27522
|
+
readonly category?: io.flow.internal.v0.enums.ManualTransactionCategory;
|
|
27523
|
+
readonly url?: string;
|
|
27524
|
+
}
|
|
27525
|
+
|
|
27526
|
+
interface OtherRecordMetadataShippingLabel {
|
|
27527
|
+
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
27528
|
+
}
|
|
27529
|
+
|
|
27530
|
+
interface OtherRecordMetadataShippingLabelRevenueShare {
|
|
27531
|
+
readonly label_id: string;
|
|
27532
|
+
readonly base_amount?: number;
|
|
27533
|
+
readonly percentage?: number;
|
|
27534
|
+
}
|
|
27535
|
+
|
|
27536
|
+
interface OtherRecordMetadataTrueup {
|
|
27537
|
+
readonly original: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
27538
|
+
readonly label_transaction_id: string;
|
|
27539
|
+
readonly label_invoice_request_id: string;
|
|
27540
|
+
readonly carrier_charge_id: string;
|
|
27541
|
+
}
|
|
27542
|
+
|
|
27543
|
+
interface OtherRecordOrderSummary {
|
|
27544
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
27545
|
+
readonly number: string;
|
|
27546
|
+
readonly identifiers: io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers;
|
|
27547
|
+
}
|
|
27548
|
+
|
|
27549
|
+
interface OtherRecordOrderSummaryIdentifiers {
|
|
27550
|
+
readonly shopify_order_id?: string;
|
|
27551
|
+
}
|
|
27552
|
+
|
|
27553
|
+
interface OtherRecordUpserted {
|
|
27554
|
+
readonly discriminator: 'other_record_upserted';
|
|
27555
|
+
readonly event_id: string;
|
|
27556
|
+
readonly timestamp: string;
|
|
27557
|
+
readonly other_record: io.flow.internal.v0.models.OtherRecord;
|
|
27558
|
+
}
|
|
27559
|
+
|
|
27560
|
+
interface OtherRecordWithholdings {
|
|
27561
|
+
readonly tax: number;
|
|
27562
|
+
readonly duty: number;
|
|
27563
|
+
readonly freight: number;
|
|
27564
|
+
readonly insurance: number;
|
|
27565
|
+
}
|
|
27566
|
+
|
|
27498
27567
|
interface Partner {
|
|
27499
27568
|
readonly id: string;
|
|
27500
27569
|
readonly name: string;
|
|
@@ -27666,6 +27735,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27666
27735
|
readonly merchant: io.flow.internal.v0.unions.ProcessorMerchant;
|
|
27667
27736
|
}
|
|
27668
27737
|
|
|
27738
|
+
interface PaymentSummary {
|
|
27739
|
+
readonly psp: number;
|
|
27740
|
+
readonly credit: number;
|
|
27741
|
+
readonly subsidized: number;
|
|
27742
|
+
readonly manual: number;
|
|
27743
|
+
readonly cod: number;
|
|
27744
|
+
readonly total: number;
|
|
27745
|
+
}
|
|
27746
|
+
|
|
27669
27747
|
interface PaymentSummaryV2 {
|
|
27670
27748
|
readonly discriminator: 'payment_summary_v2';
|
|
27671
27749
|
readonly id: string;
|
|
@@ -27883,6 +27961,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27883
27961
|
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
27884
27962
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
27885
27963
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
27964
|
+
readonly payment?: io.flow.internal.v0.models.PaymentSummary;
|
|
27886
27965
|
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
27887
27966
|
readonly sequence_number: number;
|
|
27888
27967
|
readonly posting_cutoff: string;
|
|
@@ -28835,11 +28914,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28835
28914
|
readonly sequence_number: number;
|
|
28836
28915
|
readonly fulfilled_at: string;
|
|
28837
28916
|
readonly completes_order: boolean;
|
|
28838
|
-
readonly payment: io.flow.internal.v0.models.ReportingPayment;
|
|
28839
28917
|
readonly refund?: io.flow.internal.v0.models.ReportingRefundReference;
|
|
28840
28918
|
readonly value: io.flow.internal.v0.models.FulfillmentShopperBreakdown;
|
|
28841
28919
|
readonly dispatch_country?: io.flow.internal.v0.models.ReportingCountry;
|
|
28842
28920
|
readonly destination?: io.flow.internal.v0.models.ReportingDestination;
|
|
28921
|
+
readonly payment?: io.flow.internal.v0.models.ReportingPayment;
|
|
28843
28922
|
readonly shipment?: io.flow.internal.v0.models.ReportingShipment;
|
|
28844
28923
|
readonly is: io.flow.internal.v0.models.ReportingFulfillmentIs;
|
|
28845
28924
|
readonly has: io.flow.internal.v0.models.ReportingFulfillmentHas;
|
|
@@ -28858,6 +28937,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28858
28937
|
readonly wyol: boolean;
|
|
28859
28938
|
readonly b2b: boolean;
|
|
28860
28939
|
readonly domestic: boolean;
|
|
28940
|
+
readonly combined_shipment?: boolean;
|
|
28941
|
+
readonly order_cancelled?: boolean;
|
|
28942
|
+
readonly lvg?: boolean;
|
|
28943
|
+
readonly tax_inclusive?: boolean;
|
|
28944
|
+
readonly duty_inclusive?: boolean;
|
|
28861
28945
|
}
|
|
28862
28946
|
|
|
28863
28947
|
interface ReportingFx {
|
|
@@ -28866,6 +28950,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28866
28950
|
readonly product: io.flow.internal.v0.models.ReportingUsd;
|
|
28867
28951
|
readonly tax: io.flow.internal.v0.models.ReportingUsd;
|
|
28868
28952
|
readonly duty: io.flow.internal.v0.models.ReportingUsd;
|
|
28953
|
+
readonly tips?: io.flow.internal.v0.models.ReportingUsd;
|
|
28869
28954
|
readonly total: io.flow.internal.v0.models.ReportingUsd;
|
|
28870
28955
|
}
|
|
28871
28956
|
|
|
@@ -28883,6 +28968,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28883
28968
|
readonly processing: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28884
28969
|
readonly rate_lock: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28885
28970
|
readonly transfer: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28971
|
+
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28886
28972
|
}
|
|
28887
28973
|
|
|
28888
28974
|
interface ReportingMerchantSubsidies {
|
|
@@ -28890,6 +28976,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28890
28976
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28891
28977
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28892
28978
|
readonly ccf: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28979
|
+
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28893
28980
|
}
|
|
28894
28981
|
|
|
28895
28982
|
interface ReportingMerchantTransactions {
|
|
@@ -28898,6 +28985,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28898
28985
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28899
28986
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28900
28987
|
readonly freight: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28988
|
+
readonly discount?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28989
|
+
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28901
28990
|
}
|
|
28902
28991
|
|
|
28903
28992
|
interface ReportingMonetaryValue {
|
|
@@ -28920,25 +29009,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28920
29009
|
}
|
|
28921
29010
|
|
|
28922
29011
|
interface ReportingPayment {
|
|
28923
|
-
readonly metadata?: io.flow.internal.v0.models.ReportingPaymentMetadata;
|
|
28924
29012
|
readonly psp: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28925
29013
|
readonly credit: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
29014
|
+
readonly subsidized: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
29015
|
+
readonly manual: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
29016
|
+
readonly cod: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28926
29017
|
readonly total: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28927
29018
|
}
|
|
28928
29019
|
|
|
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
29020
|
interface ReportingProvince {
|
|
28943
29021
|
readonly code?: string;
|
|
28944
29022
|
readonly name: string;
|
|
@@ -28967,6 +29045,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28967
29045
|
readonly ccf: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28968
29046
|
readonly emergency: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28969
29047
|
readonly peak: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
29048
|
+
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28970
29049
|
}
|
|
28971
29050
|
|
|
28972
29051
|
interface ReportingUsd {
|
|
@@ -28994,6 +29073,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28994
29073
|
readonly select_mismatching_item_types: boolean;
|
|
28995
29074
|
}
|
|
28996
29075
|
|
|
29076
|
+
interface RescreenRestrictionsProducts {
|
|
29077
|
+
readonly placeholder?: boolean;
|
|
29078
|
+
}
|
|
29079
|
+
|
|
28997
29080
|
interface RestrictionCategory {
|
|
28998
29081
|
readonly category: string;
|
|
28999
29082
|
}
|
|
@@ -29267,6 +29350,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29267
29350
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
29268
29351
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
29269
29352
|
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
29353
|
+
readonly payment?: io.flow.internal.v0.models.PaymentSummary;
|
|
29270
29354
|
readonly sequence_number: number;
|
|
29271
29355
|
readonly posting_cutoff: string;
|
|
29272
29356
|
readonly trigger: io.flow.internal.v0.unions.ReturnTrigger;
|
|
@@ -29467,7 +29551,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29467
29551
|
readonly discriminator: 'search_experiment_summary';
|
|
29468
29552
|
readonly key: string;
|
|
29469
29553
|
readonly name: string;
|
|
29470
|
-
readonly status: io.flow.internal.v0.enums.Status;
|
|
29554
|
+
readonly status: io.flow.experiment.internal.v0.enums.Status;
|
|
29471
29555
|
}
|
|
29472
29556
|
|
|
29473
29557
|
interface SearchItemSummary {
|
|
@@ -30112,6 +30196,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30112
30196
|
readonly id: string;
|
|
30113
30197
|
readonly initial_catalog_synced_at?: string;
|
|
30114
30198
|
readonly catalog_sync_duration?: number;
|
|
30199
|
+
readonly restrictions_sync_duration?: number;
|
|
30200
|
+
readonly classifications_sync_duration?: number;
|
|
30115
30201
|
readonly catalog_products_count?: number;
|
|
30116
30202
|
readonly initial_product_restrictions_synced_at?: string;
|
|
30117
30203
|
}
|
|
@@ -30185,6 +30271,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30185
30271
|
readonly product: io.flow.internal.v0.models.ShopperLines;
|
|
30186
30272
|
readonly fees: io.flow.internal.v0.models.ShopperFees;
|
|
30187
30273
|
readonly freight: io.flow.internal.v0.models.ShopperFreight;
|
|
30274
|
+
readonly tips?: number;
|
|
30188
30275
|
readonly order_discount: number;
|
|
30189
30276
|
readonly total: number;
|
|
30190
30277
|
}
|
|
@@ -30897,6 +30984,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30897
30984
|
readonly name: string;
|
|
30898
30985
|
}
|
|
30899
30986
|
|
|
30987
|
+
interface ThiagoItem {
|
|
30988
|
+
readonly id: string;
|
|
30989
|
+
readonly number: string;
|
|
30990
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
30991
|
+
readonly description?: string;
|
|
30992
|
+
readonly type: io.flow.internal.v0.enums.ThiagoItemType;
|
|
30993
|
+
readonly added_on: string;
|
|
30994
|
+
}
|
|
30995
|
+
|
|
30996
|
+
interface ThiagoItemForm {
|
|
30997
|
+
readonly number: string;
|
|
30998
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
30999
|
+
readonly description?: string;
|
|
31000
|
+
readonly type: io.flow.internal.v0.enums.ThiagoItemType;
|
|
31001
|
+
readonly added_on: string;
|
|
31002
|
+
}
|
|
31003
|
+
|
|
30900
31004
|
interface ThirdPartyLogisticsPartner {
|
|
30901
31005
|
readonly warehouse_address: io.flow.common.v0.models.BillingAddress;
|
|
30902
31006
|
readonly warehouse_url?: string;
|
|
@@ -30975,6 +31079,47 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30975
31079
|
readonly timezone: string;
|
|
30976
31080
|
}
|
|
30977
31081
|
|
|
31082
|
+
interface TrackingAssuranceAnalysis {
|
|
31083
|
+
readonly id: string;
|
|
31084
|
+
readonly job_id: string;
|
|
31085
|
+
readonly label_id: string;
|
|
31086
|
+
readonly order_number: string;
|
|
31087
|
+
readonly carrier_tracking_number: string;
|
|
31088
|
+
readonly flow_tracking_number: string;
|
|
31089
|
+
readonly carrier_status: string;
|
|
31090
|
+
readonly aftership_status: string;
|
|
31091
|
+
readonly flow_status: string;
|
|
31092
|
+
readonly latest_carrier_event_date: string;
|
|
31093
|
+
readonly latest_aftership_event_date: string;
|
|
31094
|
+
readonly latest_flow_event_date: string;
|
|
31095
|
+
readonly label_created_at: string;
|
|
31096
|
+
readonly carrier_id: string;
|
|
31097
|
+
readonly carrier_origin_country?: string;
|
|
31098
|
+
readonly label_origin_country: string;
|
|
31099
|
+
readonly label_destination_country: string;
|
|
31100
|
+
readonly carrier_destination_country?: string;
|
|
31101
|
+
}
|
|
31102
|
+
|
|
31103
|
+
interface TrackingAssuranceAnalysisDeleted {
|
|
31104
|
+
readonly discriminator: 'tracking_assurance_analysis_deleted';
|
|
31105
|
+
readonly event_id: string;
|
|
31106
|
+
readonly timestamp: string;
|
|
31107
|
+
readonly organization: string;
|
|
31108
|
+
readonly id: string;
|
|
31109
|
+
}
|
|
31110
|
+
|
|
31111
|
+
interface TrackingAssuranceAnalysisUpserted {
|
|
31112
|
+
readonly discriminator: 'tracking_assurance_analysis_upserted';
|
|
31113
|
+
readonly event_id: string;
|
|
31114
|
+
readonly timestamp: string;
|
|
31115
|
+
readonly organization: string;
|
|
31116
|
+
readonly analysis: io.flow.internal.v0.models.TrackingAssuranceAnalysis;
|
|
31117
|
+
}
|
|
31118
|
+
|
|
31119
|
+
interface TrackingDebugForceTransitForm {
|
|
31120
|
+
readonly description: string;
|
|
31121
|
+
}
|
|
31122
|
+
|
|
30978
31123
|
interface TrackingDebugLabel {
|
|
30979
31124
|
readonly in_transit_location?: io.flow.internal.v0.models.TrackingDebugLabelLocation;
|
|
30980
31125
|
readonly delivery_location?: io.flow.internal.v0.models.TrackingDebugLabelLocation;
|
|
@@ -31549,6 +31694,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31549
31694
|
| io.flow.internal.v0.models.SalesRecordDeleted
|
|
31550
31695
|
| io.flow.internal.v0.models.RevenueRecordUpserted
|
|
31551
31696
|
| io.flow.internal.v0.models.RevenueRecordDeleted
|
|
31697
|
+
| io.flow.internal.v0.models.OtherRecordUpserted
|
|
31698
|
+
| io.flow.internal.v0.models.OtherRecordDeleted
|
|
31552
31699
|
| io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted
|
|
31553
31700
|
| io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted
|
|
31554
31701
|
| io.flow.internal.v0.models.CarrierAccountUpsertedV2
|
|
@@ -31611,14 +31758,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31611
31758
|
| io.flow.internal.v0.models.ExperienceImportRequest
|
|
31612
31759
|
| io.flow.internal.v0.models.SubmittedOrderUpserted
|
|
31613
31760
|
| 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
31761
|
| io.flow.internal.v0.models.ExportCompleted
|
|
31623
31762
|
| io.flow.internal.v0.models.ExportFailed
|
|
31624
31763
|
| io.flow.internal.v0.models.FeatureUpserted
|
|
@@ -31653,6 +31792,12 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31653
31792
|
| io.flow.internal.v0.models.FraudPendingReviewDeleted
|
|
31654
31793
|
| io.flow.internal.v0.models.FraudReviewDecisionUpserted
|
|
31655
31794
|
| io.flow.internal.v0.models.FraudReviewDecisionDeleted
|
|
31795
|
+
| io.flow.internal.v0.models.FraudReviewAuthorizationUpserted
|
|
31796
|
+
| io.flow.internal.v0.models.FraudReviewAuthorizationDeleted
|
|
31797
|
+
| io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted
|
|
31798
|
+
| io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted
|
|
31799
|
+
| io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted
|
|
31800
|
+
| io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted
|
|
31656
31801
|
| io.flow.internal.v0.models.FraudProviderConfigurationUpserted
|
|
31657
31802
|
| io.flow.internal.v0.models.FraudProviderConfigurationDeleted
|
|
31658
31803
|
| io.flow.internal.v0.models.ManualReviewRuleUpserted
|
|
@@ -31730,6 +31875,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31730
31875
|
| io.flow.internal.v0.models.OrganizationDeactivationDeleted
|
|
31731
31876
|
| io.flow.internal.v0.models.MerchantGuidAssignmentUpserted
|
|
31732
31877
|
| io.flow.internal.v0.models.MerchantGuidAssignmentDeleted
|
|
31878
|
+
| io.flow.internal.v0.models.OrganizationMetadataUpserted
|
|
31879
|
+
| io.flow.internal.v0.models.OrganizationMetadataDeleted
|
|
31733
31880
|
| io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted
|
|
31734
31881
|
| io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted
|
|
31735
31882
|
| io.flow.internal.v0.models.UnassignedMerchantGuidUpserted
|
|
@@ -31805,6 +31952,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31805
31952
|
| io.flow.internal.v0.models.ChannelOrderSummaryDeleted
|
|
31806
31953
|
| io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted
|
|
31807
31954
|
| io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted
|
|
31955
|
+
| io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted
|
|
31956
|
+
| io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted
|
|
31808
31957
|
| io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted
|
|
31809
31958
|
| io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted
|
|
31810
31959
|
| io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted
|
|
@@ -31823,8 +31972,16 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31823
31972
|
| io.flow.internal.v0.models.SvitlanaItemDeleted
|
|
31824
31973
|
| io.flow.internal.v0.models.ColmItemUpserted
|
|
31825
31974
|
| io.flow.internal.v0.models.ColmItemDeleted
|
|
31975
|
+
| io.flow.internal.v0.models.HarinathItemUpserted
|
|
31976
|
+
| io.flow.internal.v0.models.HarinathItemDeleted
|
|
31977
|
+
| io.flow.internal.v0.models.KonstantinItemUpserted
|
|
31978
|
+
| io.flow.internal.v0.models.KonstantinItemDeleted
|
|
31826
31979
|
| io.flow.internal.v0.models.MatiasItemUpserted
|
|
31827
31980
|
| io.flow.internal.v0.models.MatiasItemDeleted
|
|
31981
|
+
| io.flow.internal.v0.models.MichaelyanItemUpserted
|
|
31982
|
+
| io.flow.internal.v0.models.MichaelyanItemDeleted
|
|
31983
|
+
| io.flow.internal.v0.models.MiljenkoItemUpserted
|
|
31984
|
+
| io.flow.internal.v0.models.MiljenkoItemDeleted
|
|
31828
31985
|
| io.flow.internal.v0.models.ShrutiDemoItemUpserted
|
|
31829
31986
|
| io.flow.internal.v0.models.ShrutiDemoItemDeleted
|
|
31830
31987
|
| io.flow.internal.v0.models.TamItemUpserted
|
|
@@ -31837,13 +31994,12 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31837
31994
|
| io.flow.internal.v0.models.TrackingLabelDeleted
|
|
31838
31995
|
| io.flow.internal.v0.models.TrackingUpserted
|
|
31839
31996
|
| io.flow.internal.v0.models.TrackingDeleted
|
|
31997
|
+
| io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted
|
|
31998
|
+
| io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted
|
|
31840
31999
|
| io.flow.internal.v0.models.TrackingRequestUpserted
|
|
31841
32000
|
| io.flow.internal.v0.models.TrackingResponseUpserted
|
|
31842
32001
|
| io.flow.internal.v0.models.UserUpsertedV2
|
|
31843
32002
|
| io.flow.internal.v0.models.UserDeletedV2;
|
|
31844
|
-
type Experiment =
|
|
31845
|
-
| io.flow.internal.v0.models.ExperienceExperiment
|
|
31846
|
-
| io.flow.internal.v0.models.FeatureExperiment;
|
|
31847
32003
|
type ExplicitStatementForm =
|
|
31848
32004
|
| io.flow.internal.v0.models.ExplicitStatementFormTransactionIds
|
|
31849
32005
|
| io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
@@ -32064,12 +32220,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
32064
32220
|
| io.flow.internal.v0.models.PaymentSummaryV2
|
|
32065
32221
|
| io.flow.internal.v0.models.FraudSummary;
|
|
32066
32222
|
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
32223
|
}
|
|
32074
32224
|
|
|
32075
32225
|
export type Acceptance = io.flow.internal.v0.models.Acceptance;
|
|
@@ -32274,8 +32424,6 @@ export type AuthorizedShippingCharge =
|
|
|
32274
32424
|
io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
32275
32425
|
export type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
|
|
32276
32426
|
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
32427
|
export type BankAccountReference =
|
|
32280
32428
|
io.flow.internal.v0.models.BankAccountReference;
|
|
32281
32429
|
export type BankPayment = io.flow.internal.v0.models.BankPayment;
|
|
@@ -32716,8 +32864,12 @@ export type ClassificationProductId =
|
|
|
32716
32864
|
io.flow.internal.v0.models.ClassificationProductId;
|
|
32717
32865
|
export type ClassificationProductRequest =
|
|
32718
32866
|
io.flow.internal.v0.models.ClassificationProductRequest;
|
|
32867
|
+
export type ClassificationProductRequestEnvelope =
|
|
32868
|
+
io.flow.internal.v0.models.ClassificationProductRequestEnvelope;
|
|
32719
32869
|
export type ClassificationProductResult =
|
|
32720
32870
|
io.flow.internal.v0.models.ClassificationProductResult;
|
|
32871
|
+
export type ClassificationProductResultEnvelope =
|
|
32872
|
+
io.flow.internal.v0.models.ClassificationProductResultEnvelope;
|
|
32721
32873
|
export type ClassificationProductSummary =
|
|
32722
32874
|
io.flow.internal.v0.models.ClassificationProductSummary;
|
|
32723
32875
|
export type ClassificationProductSummaryPage =
|
|
@@ -32757,6 +32909,7 @@ export type CommercialInvoiceInternalUpserted =
|
|
|
32757
32909
|
io.flow.internal.v0.models.CommercialInvoiceInternalUpserted;
|
|
32758
32910
|
export type CommercialInvoiceSummary =
|
|
32759
32911
|
io.flow.internal.v0.models.CommercialInvoiceSummary;
|
|
32912
|
+
export type Company = io.flow.internal.v0.enums.Company;
|
|
32760
32913
|
export type CompanyReference = io.flow.internal.v0.models.CompanyReference;
|
|
32761
32914
|
export type Compliance = io.flow.internal.v0.models.Compliance;
|
|
32762
32915
|
export type ComplianceData = io.flow.internal.v0.unions.ComplianceData;
|
|
@@ -32809,6 +32962,7 @@ export type CryptoAuthentication =
|
|
|
32809
32962
|
io.flow.internal.v0.models.CryptoAuthentication;
|
|
32810
32963
|
export type CryptoAuthenticationForm =
|
|
32811
32964
|
io.flow.internal.v0.models.CryptoAuthenticationForm;
|
|
32965
|
+
export type CsvTransaction = io.flow.internal.v0.models.CsvTransaction;
|
|
32812
32966
|
export type CurrencyInternalRate =
|
|
32813
32967
|
io.flow.internal.v0.models.CurrencyInternalRate;
|
|
32814
32968
|
export type CustomerPurgeUpserted =
|
|
@@ -32832,14 +32986,6 @@ export type CustomsProductAttributeLabel =
|
|
|
32832
32986
|
io.flow.internal.v0.models.CustomsProductAttributeLabel;
|
|
32833
32987
|
export type CustomsProductLabels =
|
|
32834
32988
|
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
32989
|
export type DailyValue = io.flow.internal.v0.models.DailyValue;
|
|
32844
32990
|
export type DailyValueDeleted = io.flow.internal.v0.models.DailyValueDeleted;
|
|
32845
32991
|
export type DailyValueUpserted = io.flow.internal.v0.models.DailyValueUpserted;
|
|
@@ -33029,8 +33175,6 @@ export type ExclusionRuleUpserted =
|
|
|
33029
33175
|
io.flow.internal.v0.models.ExclusionRuleUpserted;
|
|
33030
33176
|
export type ExpectedOrderSummary =
|
|
33031
33177
|
io.flow.internal.v0.models.ExpectedOrderSummary;
|
|
33032
|
-
export type ExperienceExperiment =
|
|
33033
|
-
io.flow.internal.v0.models.ExperienceExperiment;
|
|
33034
33178
|
export type ExperienceExportRequest =
|
|
33035
33179
|
io.flow.internal.v0.models.ExperienceExportRequest;
|
|
33036
33180
|
export type ExperienceImportRequest =
|
|
@@ -33045,47 +33189,6 @@ export type ExperienceOrderActionTrigger =
|
|
|
33045
33189
|
io.flow.internal.v0.enums.ExperienceOrderActionTrigger;
|
|
33046
33190
|
export type ExperienceSessionReference =
|
|
33047
33191
|
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
33192
|
export type ExplicitStatement = io.flow.internal.v0.models.ExplicitStatement;
|
|
33090
33193
|
export type ExplicitStatementForm =
|
|
33091
33194
|
io.flow.internal.v0.unions.ExplicitStatementForm;
|
|
@@ -33121,7 +33224,6 @@ export type FeatureContextForm = io.flow.internal.v0.models.FeatureContextForm;
|
|
|
33121
33224
|
export type FeatureDefaultValue =
|
|
33122
33225
|
io.flow.internal.v0.unions.FeatureDefaultValue;
|
|
33123
33226
|
export type FeatureDeleted = io.flow.internal.v0.models.FeatureDeleted;
|
|
33124
|
-
export type FeatureExperiment = io.flow.internal.v0.models.FeatureExperiment;
|
|
33125
33227
|
export type FeatureForm = io.flow.internal.v0.models.FeatureForm;
|
|
33126
33228
|
export type FeatureGeoForm = io.flow.internal.v0.models.FeatureGeoForm;
|
|
33127
33229
|
export type FeatureIdReference = io.flow.internal.v0.models.FeatureIdReference;
|
|
@@ -33141,13 +33243,7 @@ export type FeatureType = io.flow.internal.v0.enums.FeatureType;
|
|
|
33141
33243
|
export type FeatureUpserted = io.flow.internal.v0.models.FeatureUpserted;
|
|
33142
33244
|
export type FeatureValue = io.flow.internal.v0.unions.FeatureValue;
|
|
33143
33245
|
export type FeatureValueForm = io.flow.internal.v0.models.FeatureValueForm;
|
|
33144
|
-
export type FeatureValueReference =
|
|
33145
|
-
io.flow.internal.v0.models.FeatureValueReference;
|
|
33146
33246
|
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
33247
|
export type Fedex = io.flow.internal.v0.models.Fedex;
|
|
33152
33248
|
export type FedexCrossborder = io.flow.internal.v0.models.FedexCrossborder;
|
|
33153
33249
|
export type Fee = io.flow.internal.v0.models.Fee;
|
|
@@ -33200,9 +33296,16 @@ export type FlowLabelSettingForm =
|
|
|
33200
33296
|
io.flow.internal.v0.models.FlowLabelSettingForm;
|
|
33201
33297
|
export type FlowShopValidationError =
|
|
33202
33298
|
io.flow.internal.v0.models.FlowShopValidationError;
|
|
33203
|
-
export type ForceTransitForm = io.flow.internal.v0.models.ForceTransitForm;
|
|
33204
33299
|
export type Format = io.flow.internal.v0.enums.Format;
|
|
33300
|
+
export type FraudAuthorizationSummary =
|
|
33301
|
+
io.flow.internal.v0.models.FraudAuthorizationSummary;
|
|
33205
33302
|
export type FraudPendingReview = io.flow.internal.v0.models.FraudPendingReview;
|
|
33303
|
+
export type FraudPendingReviewAuthorization =
|
|
33304
|
+
io.flow.internal.v0.models.FraudPendingReviewAuthorization;
|
|
33305
|
+
export type FraudPendingReviewAuthorizationDeleted =
|
|
33306
|
+
io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted;
|
|
33307
|
+
export type FraudPendingReviewAuthorizationUpserted =
|
|
33308
|
+
io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted;
|
|
33206
33309
|
export type FraudPendingReviewDeleted =
|
|
33207
33310
|
io.flow.internal.v0.models.FraudPendingReviewDeleted;
|
|
33208
33311
|
export type FraudPendingReviewDetail =
|
|
@@ -33224,6 +33327,18 @@ export type FraudProviderConfigurationUpserted =
|
|
|
33224
33327
|
io.flow.internal.v0.models.FraudProviderConfigurationUpserted;
|
|
33225
33328
|
export type FraudProviderStatus = io.flow.internal.v0.enums.FraudProviderStatus;
|
|
33226
33329
|
export type FraudReview = io.flow.internal.v0.models.FraudReview;
|
|
33330
|
+
export type FraudReviewAuthorization =
|
|
33331
|
+
io.flow.internal.v0.models.FraudReviewAuthorization;
|
|
33332
|
+
export type FraudReviewAuthorizationDecision =
|
|
33333
|
+
io.flow.internal.v0.models.FraudReviewAuthorizationDecision;
|
|
33334
|
+
export type FraudReviewAuthorizationDecisionDeleted =
|
|
33335
|
+
io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted;
|
|
33336
|
+
export type FraudReviewAuthorizationDecisionUpserted =
|
|
33337
|
+
io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted;
|
|
33338
|
+
export type FraudReviewAuthorizationDeleted =
|
|
33339
|
+
io.flow.internal.v0.models.FraudReviewAuthorizationDeleted;
|
|
33340
|
+
export type FraudReviewAuthorizationUpserted =
|
|
33341
|
+
io.flow.internal.v0.models.FraudReviewAuthorizationUpserted;
|
|
33227
33342
|
export type FraudReviewDecision =
|
|
33228
33343
|
io.flow.internal.v0.models.FraudReviewDecision;
|
|
33229
33344
|
export type FraudReviewDecisionDeleted =
|
|
@@ -33331,6 +33446,13 @@ export type GoogleShoppingAccountParameters =
|
|
|
33331
33446
|
export type GoogleShoppingSetting =
|
|
33332
33447
|
io.flow.internal.v0.models.GoogleShoppingSetting;
|
|
33333
33448
|
export type GoogleTagManager = io.flow.internal.v0.models.GoogleTagManager;
|
|
33449
|
+
export type HarinathItem = io.flow.internal.v0.models.HarinathItem;
|
|
33450
|
+
export type HarinathItemDeleted =
|
|
33451
|
+
io.flow.internal.v0.models.HarinathItemDeleted;
|
|
33452
|
+
export type HarinathItemForm = io.flow.internal.v0.models.HarinathItemForm;
|
|
33453
|
+
export type HarinathItemType = io.flow.internal.v0.enums.HarinathItemType;
|
|
33454
|
+
export type HarinathItemUpserted =
|
|
33455
|
+
io.flow.internal.v0.models.HarinathItemUpserted;
|
|
33334
33456
|
export type HarmonizationClassificationStatisticsData =
|
|
33335
33457
|
io.flow.internal.v0.models.HarmonizationClassificationStatisticsData;
|
|
33336
33458
|
export type HarmonizationClassificationStatisticsPublished =
|
|
@@ -33339,6 +33461,8 @@ export type HarmonizationCodesImport =
|
|
|
33339
33461
|
io.flow.internal.v0.models.HarmonizationCodesImport;
|
|
33340
33462
|
export type HarmonizationColumnSetting =
|
|
33341
33463
|
io.flow.internal.v0.models.HarmonizationColumnSetting;
|
|
33464
|
+
export type HarmonizationDecisionSource =
|
|
33465
|
+
io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
33342
33466
|
export type HarmonizationItemClassification =
|
|
33343
33467
|
io.flow.internal.v0.models.HarmonizationItemClassification;
|
|
33344
33468
|
export type HarmonizationItemClassificationDeleted =
|
|
@@ -33508,6 +33632,13 @@ export type KlarnaAuthorizationParameters =
|
|
|
33508
33632
|
io.flow.internal.v0.models.KlarnaAuthorizationParameters;
|
|
33509
33633
|
export type KlarnaPaymentMethodCategory =
|
|
33510
33634
|
io.flow.internal.v0.models.KlarnaPaymentMethodCategory;
|
|
33635
|
+
export type KonstantinItem = io.flow.internal.v0.models.KonstantinItem;
|
|
33636
|
+
export type KonstantinItemDeleted =
|
|
33637
|
+
io.flow.internal.v0.models.KonstantinItemDeleted;
|
|
33638
|
+
export type KonstantinItemForm = io.flow.internal.v0.models.KonstantinItemForm;
|
|
33639
|
+
export type KonstantinItemType = io.flow.internal.v0.enums.KonstantinItemType;
|
|
33640
|
+
export type KonstantinItemUpserted =
|
|
33641
|
+
io.flow.internal.v0.models.KonstantinItemUpserted;
|
|
33511
33642
|
export type LabProjectSettings = io.flow.internal.v0.models.LabProjectSettings;
|
|
33512
33643
|
export type LabProjectSettingsForm =
|
|
33513
33644
|
io.flow.internal.v0.models.LabProjectSettingsForm;
|
|
@@ -33630,6 +33761,12 @@ export type LogisticsCapabilities =
|
|
|
33630
33761
|
export type LogisticsCapabilitiesForm =
|
|
33631
33762
|
io.flow.internal.v0.models.LogisticsCapabilitiesForm;
|
|
33632
33763
|
export type LogisticsCapability = io.flow.internal.v0.enums.LogisticsCapability;
|
|
33764
|
+
export type LogisticsPayoutRequest =
|
|
33765
|
+
io.flow.internal.v0.models.LogisticsPayoutRequest;
|
|
33766
|
+
export type LogisticsPayoutRequestForm =
|
|
33767
|
+
io.flow.internal.v0.models.LogisticsPayoutRequestForm;
|
|
33768
|
+
export type LogisticsPayoutResolutionMethod =
|
|
33769
|
+
io.flow.internal.v0.enums.LogisticsPayoutResolutionMethod;
|
|
33633
33770
|
export type Logo = io.flow.internal.v0.models.Logo;
|
|
33634
33771
|
export type LostChargeback = io.flow.internal.v0.models.LostChargeback;
|
|
33635
33772
|
export type LoyaltyProgram = io.flow.internal.v0.models.LoyaltyProgram;
|
|
@@ -33806,6 +33943,20 @@ export type MessageStamp = io.flow.internal.v0.models.MessageStamp;
|
|
|
33806
33943
|
export type MetadataProposition =
|
|
33807
33944
|
io.flow.internal.v0.models.MetadataProposition;
|
|
33808
33945
|
export type MetadataRatecard = io.flow.internal.v0.models.MetadataRatecard;
|
|
33946
|
+
export type MichaelyanItem = io.flow.internal.v0.models.MichaelyanItem;
|
|
33947
|
+
export type MichaelyanItemDeleted =
|
|
33948
|
+
io.flow.internal.v0.models.MichaelyanItemDeleted;
|
|
33949
|
+
export type MichaelyanItemForm = io.flow.internal.v0.models.MichaelyanItemForm;
|
|
33950
|
+
export type MichaelyanItemType = io.flow.internal.v0.enums.MichaelyanItemType;
|
|
33951
|
+
export type MichaelyanItemUpserted =
|
|
33952
|
+
io.flow.internal.v0.models.MichaelyanItemUpserted;
|
|
33953
|
+
export type MiljenkoItem = io.flow.internal.v0.models.MiljenkoItem;
|
|
33954
|
+
export type MiljenkoItemDeleted =
|
|
33955
|
+
io.flow.internal.v0.models.MiljenkoItemDeleted;
|
|
33956
|
+
export type MiljenkoItemForm = io.flow.internal.v0.models.MiljenkoItemForm;
|
|
33957
|
+
export type MiljenkoItemType = io.flow.internal.v0.enums.MiljenkoItemType;
|
|
33958
|
+
export type MiljenkoItemUpserted =
|
|
33959
|
+
io.flow.internal.v0.models.MiljenkoItemUpserted;
|
|
33809
33960
|
export type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|
|
33810
33961
|
export type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
|
|
33811
33962
|
export type NextBillingStatement =
|
|
@@ -33928,6 +34079,12 @@ export type OrderShipped = io.flow.internal.v0.models.OrderShipped;
|
|
|
33928
34079
|
export type OrderSubmissionForm =
|
|
33929
34080
|
io.flow.internal.v0.models.OrderSubmissionForm;
|
|
33930
34081
|
export type OrderSummary = io.flow.internal.v0.models.OrderSummary;
|
|
34082
|
+
export type OrderTaxAndDutyInclusivitySetting =
|
|
34083
|
+
io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
34084
|
+
export type OrderTaxAndDutyInclusivitySettingDeleted =
|
|
34085
|
+
io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted;
|
|
34086
|
+
export type OrderTaxAndDutyInclusivitySettingUpserted =
|
|
34087
|
+
io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted;
|
|
33931
34088
|
export type OrderTransaction = io.flow.internal.v0.models.OrderTransaction;
|
|
33932
34089
|
export type OrderTransactionDeleted =
|
|
33933
34090
|
io.flow.internal.v0.models.OrderTransactionDeleted;
|
|
@@ -34004,6 +34161,12 @@ export type OrganizationMembershipCopy =
|
|
|
34004
34161
|
io.flow.internal.v0.models.OrganizationMembershipCopy;
|
|
34005
34162
|
export type OrganizationMembershipCopyForm =
|
|
34006
34163
|
io.flow.internal.v0.models.OrganizationMembershipCopyForm;
|
|
34164
|
+
export type OrganizationMetadata =
|
|
34165
|
+
io.flow.internal.v0.models.OrganizationMetadata;
|
|
34166
|
+
export type OrganizationMetadataDeleted =
|
|
34167
|
+
io.flow.internal.v0.models.OrganizationMetadataDeleted;
|
|
34168
|
+
export type OrganizationMetadataUpserted =
|
|
34169
|
+
io.flow.internal.v0.models.OrganizationMetadataUpserted;
|
|
34007
34170
|
export type OrganizationMetricType =
|
|
34008
34171
|
io.flow.internal.v0.enums.OrganizationMetricType;
|
|
34009
34172
|
export type OrganizationOnboardingStateAdjustmentResult =
|
|
@@ -34062,6 +34225,42 @@ export type OrganizationStatusChangeUpserted =
|
|
|
34062
34225
|
io.flow.internal.v0.models.OrganizationStatusChangeUpserted;
|
|
34063
34226
|
export type OrganizationsAuditCheckReport =
|
|
34064
34227
|
io.flow.internal.v0.models.OrganizationsAuditCheckReport;
|
|
34228
|
+
export type OtherRecord = io.flow.internal.v0.models.OtherRecord;
|
|
34229
|
+
export type OtherRecordAccount = io.flow.internal.v0.models.OtherRecordAccount;
|
|
34230
|
+
export type OtherRecordAccountSourceSummary =
|
|
34231
|
+
io.flow.internal.v0.models.OtherRecordAccountSourceSummary;
|
|
34232
|
+
export type OtherRecordDeleted = io.flow.internal.v0.models.OtherRecordDeleted;
|
|
34233
|
+
export type OtherRecordDiscount =
|
|
34234
|
+
io.flow.internal.v0.models.OtherRecordDiscount;
|
|
34235
|
+
export type OtherRecordFees = io.flow.internal.v0.models.OtherRecordFees;
|
|
34236
|
+
export type OtherRecordIdentifiers =
|
|
34237
|
+
io.flow.internal.v0.models.OtherRecordIdentifiers;
|
|
34238
|
+
export type OtherRecordMerchantReference =
|
|
34239
|
+
io.flow.internal.v0.models.OtherRecordMerchantReference;
|
|
34240
|
+
export type OtherRecordMetadata =
|
|
34241
|
+
io.flow.internal.v0.models.OtherRecordMetadata;
|
|
34242
|
+
export type OtherRecordMetadataCarrierCharge =
|
|
34243
|
+
io.flow.internal.v0.models.OtherRecordMetadataCarrierCharge;
|
|
34244
|
+
export type OtherRecordMetadataChannel =
|
|
34245
|
+
io.flow.internal.v0.models.OtherRecordMetadataChannel;
|
|
34246
|
+
export type OtherRecordMetadataFailedPayout =
|
|
34247
|
+
io.flow.internal.v0.models.OtherRecordMetadataFailedPayout;
|
|
34248
|
+
export type OtherRecordMetadataManual =
|
|
34249
|
+
io.flow.internal.v0.models.OtherRecordMetadataManual;
|
|
34250
|
+
export type OtherRecordMetadataShippingLabel =
|
|
34251
|
+
io.flow.internal.v0.models.OtherRecordMetadataShippingLabel;
|
|
34252
|
+
export type OtherRecordMetadataShippingLabelRevenueShare =
|
|
34253
|
+
io.flow.internal.v0.models.OtherRecordMetadataShippingLabelRevenueShare;
|
|
34254
|
+
export type OtherRecordMetadataTrueup =
|
|
34255
|
+
io.flow.internal.v0.models.OtherRecordMetadataTrueup;
|
|
34256
|
+
export type OtherRecordOrderSummary =
|
|
34257
|
+
io.flow.internal.v0.models.OtherRecordOrderSummary;
|
|
34258
|
+
export type OtherRecordOrderSummaryIdentifiers =
|
|
34259
|
+
io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers;
|
|
34260
|
+
export type OtherRecordUpserted =
|
|
34261
|
+
io.flow.internal.v0.models.OtherRecordUpserted;
|
|
34262
|
+
export type OtherRecordWithholdings =
|
|
34263
|
+
io.flow.internal.v0.models.OtherRecordWithholdings;
|
|
34065
34264
|
export type OutputStyle = io.flow.internal.v0.enums.OutputStyle;
|
|
34066
34265
|
export type Owner = io.flow.internal.v0.enums.Owner;
|
|
34067
34266
|
export type Partner = io.flow.internal.v0.models.Partner;
|
|
@@ -34111,6 +34310,7 @@ export type PaymentProcessorMerchantDeleted =
|
|
|
34111
34310
|
export type PaymentProcessorMerchantUpserted =
|
|
34112
34311
|
io.flow.internal.v0.models.PaymentProcessorMerchantUpserted;
|
|
34113
34312
|
export type PaymentRedirect = io.flow.internal.v0.unions.PaymentRedirect;
|
|
34313
|
+
export type PaymentSummary = io.flow.internal.v0.models.PaymentSummary;
|
|
34114
34314
|
export type PaymentSummaryDetails =
|
|
34115
34315
|
io.flow.internal.v0.unions.PaymentSummaryDetails;
|
|
34116
34316
|
export type PaymentSummaryStatus =
|
|
@@ -34438,10 +34638,6 @@ export type ReportingOrderSummary =
|
|
|
34438
34638
|
export type ReportingOrganizationSummary =
|
|
34439
34639
|
io.flow.internal.v0.models.ReportingOrganizationSummary;
|
|
34440
34640
|
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
34641
|
export type ReportingProvince = io.flow.internal.v0.models.ReportingProvince;
|
|
34446
34642
|
export type ReportingReconciliation =
|
|
34447
34643
|
io.flow.internal.v0.models.ReportingReconciliation;
|
|
@@ -34458,6 +34654,8 @@ export type ReportingVatRemittanceRate =
|
|
|
34458
34654
|
io.flow.internal.v0.models.ReportingVatRemittanceRate;
|
|
34459
34655
|
export type ReportingVendor = io.flow.internal.v0.models.ReportingVendor;
|
|
34460
34656
|
export type RequeueRequestForm = io.flow.internal.v0.models.RequeueRequestForm;
|
|
34657
|
+
export type RescreenRestrictionsProducts =
|
|
34658
|
+
io.flow.internal.v0.models.RescreenRestrictionsProducts;
|
|
34461
34659
|
export type ResponsibleParty = io.flow.internal.v0.enums.ResponsibleParty;
|
|
34462
34660
|
export type RestrictionAction = io.flow.internal.v0.enums.RestrictionAction;
|
|
34463
34661
|
export type RestrictionCategory =
|
|
@@ -34551,7 +34749,6 @@ export type SalesRecordUpserted =
|
|
|
34551
34749
|
export type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
|
|
34552
34750
|
export type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
|
|
34553
34751
|
export type ScheduledPayment = io.flow.internal.v0.models.ScheduledPayment;
|
|
34554
|
-
export type Scope = io.flow.internal.v0.enums.Scope;
|
|
34555
34752
|
export type Screen = io.flow.internal.v0.models.Screen;
|
|
34556
34753
|
export type ScreenForm = io.flow.internal.v0.models.ScreenForm;
|
|
34557
34754
|
export type ScreeningStatusChange =
|
|
@@ -34802,7 +34999,6 @@ export type ShrutiDemoItemForm = io.flow.internal.v0.models.ShrutiDemoItemForm;
|
|
|
34802
34999
|
export type ShrutiDemoItemUpserted =
|
|
34803
35000
|
io.flow.internal.v0.models.ShrutiDemoItemUpserted;
|
|
34804
35001
|
export type ShrutiDemoType = io.flow.internal.v0.enums.ShrutiDemoType;
|
|
34805
|
-
export type SignificanceAction = io.flow.internal.v0.enums.SignificanceAction;
|
|
34806
35002
|
export type SimpleAccountReference =
|
|
34807
35003
|
io.flow.internal.v0.models.SimpleAccountReference;
|
|
34808
35004
|
export type SimpleRoundingStrategy =
|
|
@@ -34848,7 +35044,6 @@ export type StatementStatus = io.flow.internal.v0.enums.StatementStatus;
|
|
|
34848
35044
|
export type StatementTransferTransactionLocation =
|
|
34849
35045
|
io.flow.internal.v0.enums.StatementTransferTransactionLocation;
|
|
34850
35046
|
export type StatisticType = io.flow.internal.v0.enums.StatisticType;
|
|
34851
|
-
export type Status = io.flow.internal.v0.enums.Status;
|
|
34852
35047
|
export type StoreConnection = io.flow.internal.v0.models.StoreConnection;
|
|
34853
35048
|
export type StoreConnectionForm =
|
|
34854
35049
|
io.flow.internal.v0.models.StoreConnectionForm;
|
|
@@ -34943,6 +35138,8 @@ export type TaskProcessQueuedEvent =
|
|
|
34943
35138
|
export type TaskProcessorKey = io.flow.internal.v0.enums.TaskProcessorKey;
|
|
34944
35139
|
export type TaskSummarizeCode = io.flow.internal.v0.models.TaskSummarizeCode;
|
|
34945
35140
|
export type TaxAmount = io.flow.internal.v0.unions.TaxAmount;
|
|
35141
|
+
export type TaxAndDutyInclusivitySetting =
|
|
35142
|
+
io.flow.internal.v0.enums.TaxAndDutyInclusivitySetting;
|
|
34946
35143
|
export type TaxCalculation = io.flow.internal.v0.models.TaxCalculation;
|
|
34947
35144
|
export type TaxCalculationError =
|
|
34948
35145
|
io.flow.internal.v0.models.TaxCalculationError;
|
|
@@ -34972,6 +35169,9 @@ export type TechOnboardingDescription =
|
|
|
34972
35169
|
io.flow.internal.v0.models.TechOnboardingDescription;
|
|
34973
35170
|
export type Test = io.flow.internal.v0.models.Test;
|
|
34974
35171
|
export type TestForm = io.flow.internal.v0.models.TestForm;
|
|
35172
|
+
export type ThiagoItem = io.flow.internal.v0.models.ThiagoItem;
|
|
35173
|
+
export type ThiagoItemForm = io.flow.internal.v0.models.ThiagoItemForm;
|
|
35174
|
+
export type ThiagoItemType = io.flow.internal.v0.enums.ThiagoItemType;
|
|
34975
35175
|
export type ThirdPartyLogisticsPartner =
|
|
34976
35176
|
io.flow.internal.v0.models.ThirdPartyLogisticsPartner;
|
|
34977
35177
|
export type ThirdPartyLogisticsPickUpTimeWindow =
|
|
@@ -34990,8 +35190,15 @@ export type TimeToClassifyDeleted =
|
|
|
34990
35190
|
export type TimeToClassifyUpserted =
|
|
34991
35191
|
io.flow.internal.v0.models.TimeToClassifyUpserted;
|
|
34992
35192
|
export type TimeWithTimezone = io.flow.internal.v0.models.TimeWithTimezone;
|
|
34993
|
-
export type TimeseriesType = io.flow.internal.v0.enums.TimeseriesType;
|
|
34994
35193
|
export type Tracker = io.flow.internal.v0.unions.Tracker;
|
|
35194
|
+
export type TrackingAssuranceAnalysis =
|
|
35195
|
+
io.flow.internal.v0.models.TrackingAssuranceAnalysis;
|
|
35196
|
+
export type TrackingAssuranceAnalysisDeleted =
|
|
35197
|
+
io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted;
|
|
35198
|
+
export type TrackingAssuranceAnalysisUpserted =
|
|
35199
|
+
io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted;
|
|
35200
|
+
export type TrackingDebugForceTransitForm =
|
|
35201
|
+
io.flow.internal.v0.models.TrackingDebugForceTransitForm;
|
|
34995
35202
|
export type TrackingDebugLabel = io.flow.internal.v0.models.TrackingDebugLabel;
|
|
34996
35203
|
export type TrackingDebugLabelEvent =
|
|
34997
35204
|
io.flow.internal.v0.models.TrackingDebugLabelEvent;
|
|
@@ -35093,8 +35300,6 @@ export type V1Checkout = io.flow.internal.v0.models.V1Checkout;
|
|
|
35093
35300
|
export type ValidationCharacterLength =
|
|
35094
35301
|
io.flow.internal.v0.models.ValidationCharacterLength;
|
|
35095
35302
|
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
35303
|
export type ViesResult = io.flow.internal.v0.models.ViesResult;
|
|
35099
35304
|
export type VirtualCardTransaction =
|
|
35100
35305
|
io.flow.internal.v0.models.VirtualCardTransaction;
|