@flowio/types 11.24.73 → 11.24.74
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 +550 -449
- package/dist/api.d.ts +928 -4953
- package/package.json +2 -2
- package/src/api-internal.ts +677 -520
- package/src/api.ts +1049 -6207
package/dist/api-internal.d.ts
CHANGED
|
@@ -103,6 +103,15 @@ declare namespace io.flow.order.price.v0.models {
|
|
|
103
103
|
readonly name?: string;
|
|
104
104
|
}
|
|
105
105
|
}
|
|
106
|
+
declare namespace io.flow.error.v0.enums {
|
|
107
|
+
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
108
|
+
}
|
|
109
|
+
declare namespace io.flow.error.v0.models {
|
|
110
|
+
interface GenericError {
|
|
111
|
+
readonly code: io.flow.error.v0.enums.GenericErrorCode;
|
|
112
|
+
readonly messages: string[];
|
|
113
|
+
}
|
|
114
|
+
}
|
|
106
115
|
declare namespace io.flow.channel.v0.enums {
|
|
107
116
|
type ChannelCurrencyCapability = 'payment_authorizations' | 'settlement_currency';
|
|
108
117
|
}
|
|
@@ -156,105 +165,6 @@ declare namespace io.flow.channel.v0.models {
|
|
|
156
165
|
readonly attributes?: Record<string, string>;
|
|
157
166
|
}
|
|
158
167
|
}
|
|
159
|
-
declare namespace io.flow.reference.v0.enums {
|
|
160
|
-
type PaymentMethodCapability = 'credit' | 'debit';
|
|
161
|
-
type PaymentMethodType = 'card' | 'online' | 'offline';
|
|
162
|
-
type PostalType = 'eircode' | 'pin' | 'postal' | 'zip';
|
|
163
|
-
type ProvinceType = 'area' | 'city' | 'county' | 'department' | 'dependency' | 'district' | 'do_si' | 'emirate' | 'entity' | 'island' | 'municipality' | 'oblast' | 'outlying_area' | 'parish' | 'prefecture' | 'province' | 'state' | 'territory' | 'other';
|
|
164
|
-
}
|
|
165
|
-
declare namespace io.flow.reference.v0.models {
|
|
166
|
-
interface Carrier {
|
|
167
|
-
readonly id: string;
|
|
168
|
-
readonly name: string;
|
|
169
|
-
readonly tracking_url: string;
|
|
170
|
-
}
|
|
171
|
-
interface CarrierService {
|
|
172
|
-
readonly id: string;
|
|
173
|
-
readonly carrier: io.flow.reference.v0.models.Carrier;
|
|
174
|
-
readonly name: string;
|
|
175
|
-
}
|
|
176
|
-
interface Country {
|
|
177
|
-
readonly name: string;
|
|
178
|
-
readonly iso_3166_2: string;
|
|
179
|
-
readonly iso_3166_3: string;
|
|
180
|
-
readonly languages: string[];
|
|
181
|
-
readonly measurement_system: string;
|
|
182
|
-
readonly default_currency?: string;
|
|
183
|
-
readonly default_language?: string;
|
|
184
|
-
readonly timezones: string[];
|
|
185
|
-
readonly default_delivered_duty?: string;
|
|
186
|
-
}
|
|
187
|
-
interface Currency {
|
|
188
|
-
readonly name: string;
|
|
189
|
-
readonly iso_4217_3: string;
|
|
190
|
-
readonly number_decimals: number;
|
|
191
|
-
readonly symbols?: io.flow.reference.v0.models.CurrencySymbols;
|
|
192
|
-
readonly default_locale?: string;
|
|
193
|
-
}
|
|
194
|
-
interface CurrencySymbols {
|
|
195
|
-
readonly primary: string;
|
|
196
|
-
readonly narrow?: string;
|
|
197
|
-
}
|
|
198
|
-
interface Language {
|
|
199
|
-
readonly name: string;
|
|
200
|
-
readonly iso_639_2: string;
|
|
201
|
-
}
|
|
202
|
-
interface Locale {
|
|
203
|
-
readonly id: string;
|
|
204
|
-
readonly name: string;
|
|
205
|
-
readonly country: string;
|
|
206
|
-
readonly language: string;
|
|
207
|
-
readonly numbers: io.flow.reference.v0.models.LocaleNumbers;
|
|
208
|
-
}
|
|
209
|
-
interface LocaleNumbers {
|
|
210
|
-
readonly decimal: string;
|
|
211
|
-
readonly group: string;
|
|
212
|
-
}
|
|
213
|
-
interface LocalizedTranslation {
|
|
214
|
-
readonly locale: io.flow.reference.v0.models.Locale;
|
|
215
|
-
readonly name: string;
|
|
216
|
-
}
|
|
217
|
-
interface PaymentMethod {
|
|
218
|
-
readonly id: string;
|
|
219
|
-
readonly type: io.flow.reference.v0.enums.PaymentMethodType;
|
|
220
|
-
readonly name: string;
|
|
221
|
-
readonly images: io.flow.reference.v0.models.PaymentMethodImages;
|
|
222
|
-
readonly regions: string[];
|
|
223
|
-
readonly capabilities?: io.flow.reference.v0.enums.PaymentMethodCapability[];
|
|
224
|
-
}
|
|
225
|
-
interface PaymentMethodImage {
|
|
226
|
-
readonly url: string;
|
|
227
|
-
readonly width: number;
|
|
228
|
-
readonly height: number;
|
|
229
|
-
}
|
|
230
|
-
interface PaymentMethodImages {
|
|
231
|
-
readonly small: io.flow.reference.v0.models.PaymentMethodImage;
|
|
232
|
-
readonly medium: io.flow.reference.v0.models.PaymentMethodImage;
|
|
233
|
-
readonly large: io.flow.reference.v0.models.PaymentMethodImage;
|
|
234
|
-
}
|
|
235
|
-
interface Province {
|
|
236
|
-
readonly id: string;
|
|
237
|
-
readonly iso_3166_2: string;
|
|
238
|
-
readonly name: string;
|
|
239
|
-
readonly country: string;
|
|
240
|
-
readonly province_type: io.flow.reference.v0.enums.ProvinceType;
|
|
241
|
-
readonly translations?: io.flow.reference.v0.models.LocalizedTranslation[];
|
|
242
|
-
}
|
|
243
|
-
interface Region {
|
|
244
|
-
readonly id: string;
|
|
245
|
-
readonly name: string;
|
|
246
|
-
readonly countries: string[];
|
|
247
|
-
readonly currencies: string[];
|
|
248
|
-
readonly languages: string[];
|
|
249
|
-
readonly measurement_systems: string[];
|
|
250
|
-
readonly timezones: string[];
|
|
251
|
-
}
|
|
252
|
-
interface Timezone {
|
|
253
|
-
readonly name: string;
|
|
254
|
-
readonly description: string;
|
|
255
|
-
readonly offset: number;
|
|
256
|
-
}
|
|
257
|
-
}
|
|
258
168
|
declare namespace io.flow.invoice.v0.enums {
|
|
259
169
|
type PaymentTerm = 'net7' | 'net15' | 'net30';
|
|
260
170
|
}
|
|
@@ -1273,6 +1183,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1273
1183
|
readonly processor: string;
|
|
1274
1184
|
readonly operation_identifier?: io.flow.payment.v0.models.PaymentProcessorIdentifier;
|
|
1275
1185
|
readonly account?: io.flow.payment.v0.models.PaymentProcessorAccount;
|
|
1186
|
+
readonly transaction_details?: io.flow.payment.v0.unions.PaymentProcessorTransactionDetails;
|
|
1276
1187
|
}
|
|
1277
1188
|
interface PaymentProcessorAccount {
|
|
1278
1189
|
readonly organization: string;
|
|
@@ -1292,6 +1203,16 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1292
1203
|
readonly discriminator: 'payment_processor_reference';
|
|
1293
1204
|
readonly processor: string;
|
|
1294
1205
|
}
|
|
1206
|
+
interface PaymentProcessorTransactionDetailsCard {
|
|
1207
|
+
readonly discriminator: 'card';
|
|
1208
|
+
readonly transaction_identifier?: string;
|
|
1209
|
+
readonly method_type?: string;
|
|
1210
|
+
readonly result_status?: string;
|
|
1211
|
+
readonly reason_code?: string;
|
|
1212
|
+
readonly avs_result_code?: string;
|
|
1213
|
+
readonly cvv_result_code?: string;
|
|
1214
|
+
readonly threeds_result_code?: string;
|
|
1215
|
+
}
|
|
1295
1216
|
interface PaymentReference {
|
|
1296
1217
|
readonly id: string;
|
|
1297
1218
|
}
|
|
@@ -1585,6 +1506,7 @@ declare namespace io.flow.payment.v0.unions {
|
|
|
1585
1506
|
type Payment = io.flow.payment.v0.models.PaymentPaypal | io.flow.payment.v0.models.PaymentCryptopay;
|
|
1586
1507
|
type PaymentForm = io.flow.payment.v0.models.MerchantOfRecordPaymentForm;
|
|
1587
1508
|
type PaymentOrderReference = io.flow.payment.v0.models.AuthorizationOrderReference | io.flow.payment.v0.models.PaymentPaymentRequestReference;
|
|
1509
|
+
type PaymentProcessorTransactionDetails = io.flow.payment.v0.models.PaymentProcessorTransactionDetailsCard;
|
|
1588
1510
|
type PaymentSource = io.flow.payment.v0.models.CardPaymentSource;
|
|
1589
1511
|
type PaymentSourceForm = io.flow.payment.v0.models.CardPaymentSourceForm;
|
|
1590
1512
|
type ThreedsChallengeAction = io.flow.payment.v0.models.ThreedsTwoChallengeRequest;
|
|
@@ -1998,9 +1920,8 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
1998
1920
|
readonly id: string;
|
|
1999
1921
|
readonly type: io.flow.billing.internal.v0.enums.BillingTransactionType;
|
|
2000
1922
|
readonly account: io.flow.billing.csv.v0.models.BillingCsvTransactionAccount;
|
|
2001
|
-
readonly metadata?: io.flow.billing.v0.
|
|
2002
|
-
readonly order?: io.flow.billing.v0.models.
|
|
2003
|
-
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
1923
|
+
readonly metadata?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadata;
|
|
1924
|
+
readonly order?: io.flow.billing.csv.v0.models.BillingCsvTransactionOrderSummary;
|
|
2004
1925
|
readonly currency: string;
|
|
2005
1926
|
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
2006
1927
|
readonly parent?: io.flow.billing.v0.models.ParentTransactionSummary;
|
|
@@ -2009,7 +1930,7 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2009
1930
|
readonly withholdings: io.flow.billing.csv.v0.models.BillingCsvTransactionWithholdings;
|
|
2010
1931
|
readonly discount: io.flow.billing.csv.v0.models.BillingCsvTransactionDiscount;
|
|
2011
1932
|
readonly net: number;
|
|
2012
|
-
readonly identifiers:
|
|
1933
|
+
readonly identifiers: io.flow.billing.csv.v0.models.BillingCsvTransactionIdentifiers;
|
|
2013
1934
|
readonly created_at: string;
|
|
2014
1935
|
readonly updated_at: string;
|
|
2015
1936
|
}
|
|
@@ -2035,6 +1956,36 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2035
1956
|
readonly rate_lock: number;
|
|
2036
1957
|
readonly transfer: number;
|
|
2037
1958
|
}
|
|
1959
|
+
interface BillingCsvTransactionIdentifiers {
|
|
1960
|
+
readonly reference_id?: string;
|
|
1961
|
+
}
|
|
1962
|
+
interface BillingCsvTransactionMetadata {
|
|
1963
|
+
readonly channel?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataChannel;
|
|
1964
|
+
readonly shipping_label?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataShippingLabel;
|
|
1965
|
+
readonly trueup?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataTrueup;
|
|
1966
|
+
readonly manual?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataManual;
|
|
1967
|
+
}
|
|
1968
|
+
interface BillingCsvTransactionMetadataChannel {
|
|
1969
|
+
readonly method: string;
|
|
1970
|
+
readonly card?: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata;
|
|
1971
|
+
}
|
|
1972
|
+
interface BillingCsvTransactionMetadataManual {
|
|
1973
|
+
readonly original: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
1974
|
+
}
|
|
1975
|
+
interface BillingCsvTransactionMetadataShippingLabel {
|
|
1976
|
+
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
1977
|
+
}
|
|
1978
|
+
interface BillingCsvTransactionMetadataTrueup {
|
|
1979
|
+
readonly original: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
1980
|
+
}
|
|
1981
|
+
interface BillingCsvTransactionOrderSummary {
|
|
1982
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
1983
|
+
readonly number: string;
|
|
1984
|
+
readonly identifiers: io.flow.billing.csv.v0.models.BillingCsvTransactionOrderSummaryIdentifiers;
|
|
1985
|
+
}
|
|
1986
|
+
interface BillingCsvTransactionOrderSummaryIdentifiers {
|
|
1987
|
+
readonly shopify_order_id?: string;
|
|
1988
|
+
}
|
|
2038
1989
|
interface BillingCsvTransactionWithholdings {
|
|
2039
1990
|
readonly tax: number;
|
|
2040
1991
|
readonly duty: number;
|
|
@@ -2610,6 +2561,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2610
2561
|
readonly network?: string;
|
|
2611
2562
|
readonly request_three_d_secure?: io.flow.stripe.v0.enums.RequestThreeDSecureType;
|
|
2612
2563
|
readonly stored_credential_transaction_type?: io.flow.stripe.v0.enums.StoredCredentialTransactionType;
|
|
2564
|
+
readonly mcc?: string;
|
|
2613
2565
|
}
|
|
2614
2566
|
interface PaymentOutcome {
|
|
2615
2567
|
readonly network_status: io.flow.stripe.v0.enums.NetworkStatus;
|
|
@@ -3070,9 +3022,9 @@ declare namespace io.flow.label.v0.models {
|
|
|
3070
3022
|
readonly required: boolean;
|
|
3071
3023
|
}
|
|
3072
3024
|
interface ShippingLabelHopCostItemizedEstimate {
|
|
3073
|
-
readonly units: io.flow.
|
|
3074
|
-
readonly base: io.flow.
|
|
3075
|
-
readonly surcharges: io.flow.
|
|
3025
|
+
readonly units: io.flow.trueup.v0.models.LabelUnits;
|
|
3026
|
+
readonly base: io.flow.trueup.v0.models.LabelBase;
|
|
3027
|
+
readonly surcharges: io.flow.trueup.v0.models.LabelSurcharge[];
|
|
3076
3028
|
}
|
|
3077
3029
|
interface ShippingLabelHopSummary {
|
|
3078
3030
|
readonly lane: io.flow.label.v0.models.ShippingLabelLaneSummary;
|
|
@@ -3082,6 +3034,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
3082
3034
|
interface ShippingLabelLaneSummary {
|
|
3083
3035
|
readonly id?: string;
|
|
3084
3036
|
readonly ratecard: io.flow.label.v0.models.ShippingLabelRatecardSummary;
|
|
3037
|
+
readonly weight_break?: number;
|
|
3085
3038
|
}
|
|
3086
3039
|
interface ShippingLabelPackage {
|
|
3087
3040
|
readonly dimensions: io.flow.common.v0.models.Dimension;
|
|
@@ -3174,6 +3127,7 @@ declare namespace io.flow.external.paypal.v1.enums {
|
|
|
3174
3127
|
type DisputeOutcomeCode = 'RESOLVED_BUYER_FAVOUR' | 'RESOLVED_SELLER_FAVOUR' | 'RESOLVED_WITH_PAYOUT' | 'CANCELED_BY_BUYER' | 'ACCEPTED' | 'DENIED' | 'NONE';
|
|
3175
3128
|
type DisputeReason = 'MERCHANDISE_OR_SERVICE_NOT_RECEIVED' | 'MERCHANDISE_OR_SERVICE_NOT_AS_DESCRIBED' | 'UNAUTHORISED' | 'CREDIT_NOT_PROCESSED' | 'DUPLICATE_TRANSACTION' | 'INCORRECT_AMOUNT' | 'PAYMENT_BY_OTHER_MEANS' | 'CANCELED_RECURRING_BILLING' | 'PROBLEM_WITH_REMITTANCE' | 'OTHER';
|
|
3176
3129
|
type DisputeStatus = 'OPEN' | 'WAITING_FOR_BUYER_RESPONSE' | 'WAITING_FOR_SELLER_RESPONSE' | 'UNDER_REVIEW' | 'RESOLVED' | 'OTHER';
|
|
3130
|
+
type EventType = 'PAYMENT.AUTHORIZATION.CREATED' | 'PAYMENT.AUTHORIZATION.VOIDED' | 'PAYMENT.CAPTURE.DECLINED' | 'PAYMENT.CAPTURE.COMPLETED' | 'PAYMENT.CAPTURE.PENDING' | 'PAYMENT.CAPTURE.REVERSED' | 'PAYMENT.CAPTURE.DENIED' | 'PAYMENT.ORDER.CANCELLED' | 'PAYMENT.ORDER.CREATED' | 'PAYMENT.SALE.COMPLETED' | 'PAYMENT.SALE.DENIED' | 'PAYMENT.SALE.PENDING' | 'PAYMENT.SALE.REFUNDED' | 'PAYMENT.SALE.REVERSED' | 'PAYMENTS.PAYMENT.CREATED' | 'CHECKOUT.ORDER.APPROVED' | 'CHECKOUT.CHECKOUT.BUYER-APPROVED' | 'CHECKOUT.ORDER.COMPLETED' | 'CUSTOMER.DISPUTE.CREATED' | 'CUSTOMER.DISPUTE.RESOLVED' | 'CUSTOMER.DISPUTE.UPDATED' | 'CHECKOUT.PAYMENT-APPROVAL.REVERSED';
|
|
3177
3131
|
type EvidenceType = 'PROOF_OF_FULFILLMENT' | 'PROOF_OF_REFUND' | 'PROOF_OF_DELIVERY_SIGNATURE' | 'PROOF_OF_RECEIPT_COPY' | 'RETURN_POLICY' | 'BILLING_AGREEMENT' | 'PROOF_OF_RESHIPMENT' | 'ITEM_DESCRIPTION' | 'POLICE_REPORT' | 'AFFIDAVIT' | 'PAID_WITH_OTHER_METHOD' | 'COPY_OF_CONTRACT' | 'TERMINAL_ATM_RECEIPT' | 'PRICE_DIFFERENCE_REASON' | 'SOURCE_CONVERSION_RATE' | 'BANK_STATEMENT' | 'CREDIT_DUE_REASON' | 'REQUEST_CREDIT_RECEIPT' | 'PROOF_OF_RETURN' | 'CREATE' | 'CHANGE_REASON' | 'PROOF_OF_REFUND_OUTSIDE_PAYPAL' | 'RECEIPT_OF_MERCHANDISE' | 'CUSTOMS_DOCUMENT' | 'CUSTOMS_FEE_RECEIPT' | 'INFORMATION_ON_RESOLUTION' | 'ADDITIONAL_INFORMATION_OF_ITEM' | 'DETAILS_OF_PURCHASE' | 'PROOF_OF_SIGNIFICANT_DIFFERENCE' | 'PROOF_OF_SOFTWARE_OR_SERVICE_NOT_AS_DESCRIBED' | 'PROOF_OF_CONFISCATION' | 'PROOF_OF_DAMAGE' | 'COPY_OF_LAW_ENFORCEMENT_AGENCY_REPORT' | 'ADDITIONAL_PROOF_OF_SHIPMENT' | 'PROOF_OF_DENIAL_BY_CARRIER' | 'THIRDPARTY_PROOF_FOR_DAMAGE_OR_SIGNIFICANT_DIFFERENCE' | 'VALID_SUPPORTING_DOCUMENT' | 'LEGIBLE_SUPPORTING_DOCUMENT' | 'RETURN_TRACKING_INFORMATION' | 'DELIVERY_RECEIPT' | 'PROOF_OF_INSTORE_RECEIPT' | 'ADDITIONAL_TRACKING_INFORMATION' | 'PROOF_OF_SHIPMENT_POSTAGE' | 'ONLINE_TRACKING_INFORMATION' | 'PROOF_OF_INSTORE_REFUND' | 'PROOF_FOR_SOFTWARE_OR_SERVICE_DELIVERED' | 'RETURN_ADDRESS_FOR_SHIPPING' | 'COPY_OF_THE_EPARCEL_MANIFEST' | 'COPY_OF_SHIPPING_MANIFEST' | 'APPEAL_AFFIDAVIT' | 'RECEIPT_OF_REPLACEMENT' | 'COPY_OF_DRIVERS_LICENSE' | 'ACCOUNT_CHANGE_INFORMATION' | 'DELIVERY_ADDRESS' | 'CONFIRMATION_OF_RESOLUTION' | 'MERCHANT_RESPONSE' | 'PERMISSION_DESCRIPTION' | 'STATUS_OF_MERCHANDISE' | 'LOST_CARD_DETAILS' | 'LAST_VALID_TRANSACTION_DETAILS' | 'ADDITIONAL_PROOF_OF_RETURN' | 'OTHER';
|
|
3178
3132
|
type FailureReason = 'UNABLE_TO_COMPLETE_TRANSACTION' | 'INVALID_PAYMENT_METHOD' | 'PAYER_CANNOT_PAY' | 'CANNOT_PAY_THIS_PAYEE' | 'REDIRECT_REQUIRED' | 'PAYEE_FILTER_RESTRICTIONS';
|
|
3179
3133
|
type GrantType = 'client_credentials';
|
|
@@ -3192,6 +3146,7 @@ declare namespace io.flow.external.paypal.v1.enums {
|
|
|
3192
3146
|
type RefundState = 'pending' | 'completed' | 'cancelled' | 'failed';
|
|
3193
3147
|
type ReturnAcknowledgementType = 'ITEM_RECEIVED' | 'ITEM_NOT_RECEIVED' | 'DAMAGED' | 'EMPTY_PACKAGE_OR_DIFFERENT' | 'MISSING_ITEMS';
|
|
3194
3148
|
type ReturnMode = 'SHIPPED' | 'IN_PERSON';
|
|
3149
|
+
type SaleState = 'pending' | 'completed' | 'denied' | 'partially_refunded' | 'refunded';
|
|
3195
3150
|
type ServiceStarted = 'YES' | 'NO' | 'RETURNED';
|
|
3196
3151
|
type ShippingDisplayPreference = 'NO_SHIPPING' | 'GET_FROM_FILE' | 'SET_PROVIDED_ADDRESS';
|
|
3197
3152
|
type State = 'created' | 'approved' | 'failed';
|
|
@@ -3491,22 +3446,23 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
3491
3446
|
}
|
|
3492
3447
|
interface Refund {
|
|
3493
3448
|
readonly id: string;
|
|
3494
|
-
readonly amount
|
|
3449
|
+
readonly amount?: io.flow.external.paypal.v1.models.SimpleAmount;
|
|
3495
3450
|
readonly state: io.flow.external.paypal.v1.enums.RefundState;
|
|
3496
3451
|
readonly sale_id: string;
|
|
3497
|
-
readonly invoice_number
|
|
3452
|
+
readonly invoice_number?: string;
|
|
3498
3453
|
readonly capture_id?: string;
|
|
3499
3454
|
readonly parent_payment?: string;
|
|
3500
3455
|
readonly reason_code?: string;
|
|
3501
3456
|
readonly refund_reason_code?: string;
|
|
3502
3457
|
readonly refund_funding_type?: string;
|
|
3503
|
-
readonly
|
|
3458
|
+
readonly refund_from_received_amount?: io.flow.external.paypal.v1.models.Money;
|
|
3459
|
+
readonly refund_from_transaction_fee?: io.flow.external.paypal.v1.models.Money;
|
|
3460
|
+
readonly total_refunded_amount?: io.flow.external.paypal.v1.models.Money;
|
|
3461
|
+
readonly refund_to_payer?: io.flow.external.paypal.v1.models.Money;
|
|
3462
|
+
readonly custom?: string;
|
|
3463
|
+
readonly create_time?: string;
|
|
3504
3464
|
readonly update_time?: string;
|
|
3505
3465
|
}
|
|
3506
|
-
interface RefundAmount {
|
|
3507
|
-
readonly total: string;
|
|
3508
|
-
readonly currency: string;
|
|
3509
|
-
}
|
|
3510
3466
|
interface RefundDetails {
|
|
3511
3467
|
readonly allowed_refund_amount?: io.flow.external.paypal.v1.models.Money;
|
|
3512
3468
|
}
|
|
@@ -3514,7 +3470,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
3514
3470
|
readonly refund_id?: string;
|
|
3515
3471
|
}
|
|
3516
3472
|
interface RefundRequest {
|
|
3517
|
-
readonly amount: io.flow.external.paypal.v1.models.
|
|
3473
|
+
readonly amount: io.flow.external.paypal.v1.models.SimpleAmount;
|
|
3518
3474
|
readonly invoice_number: string;
|
|
3519
3475
|
}
|
|
3520
3476
|
interface ReturnDetails {
|
|
@@ -3524,6 +3480,27 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
3524
3480
|
readonly return_confirmation_number?: string;
|
|
3525
3481
|
readonly returned?: boolean;
|
|
3526
3482
|
}
|
|
3483
|
+
interface Sale {
|
|
3484
|
+
readonly id: string;
|
|
3485
|
+
readonly state: io.flow.external.paypal.v1.enums.SaleState;
|
|
3486
|
+
readonly parent_payment: string;
|
|
3487
|
+
readonly invoice_number?: string;
|
|
3488
|
+
readonly amount?: io.flow.external.paypal.v1.models.SimpleAmount;
|
|
3489
|
+
readonly payment_mode?: string;
|
|
3490
|
+
readonly reason_code?: string;
|
|
3491
|
+
readonly protection_eligibility?: string;
|
|
3492
|
+
readonly protection_eligibility_type?: string;
|
|
3493
|
+
readonly receipt_id?: string;
|
|
3494
|
+
readonly soft_descriptor?: string;
|
|
3495
|
+
readonly exchange_rate?: string;
|
|
3496
|
+
readonly payment_hold_status?: string;
|
|
3497
|
+
readonly payment_hold_reasons?: string[];
|
|
3498
|
+
readonly transaction_fee?: io.flow.external.paypal.v1.models.Money;
|
|
3499
|
+
readonly receivable_amount?: io.flow.external.paypal.v1.models.Money;
|
|
3500
|
+
readonly custom?: string;
|
|
3501
|
+
readonly create_time?: string;
|
|
3502
|
+
readonly update_time?: string;
|
|
3503
|
+
}
|
|
3527
3504
|
interface Seller {
|
|
3528
3505
|
readonly email?: string;
|
|
3529
3506
|
readonly merchant_id?: string;
|
|
@@ -3546,6 +3523,10 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
3546
3523
|
readonly phone?: string;
|
|
3547
3524
|
readonly state?: string;
|
|
3548
3525
|
}
|
|
3526
|
+
interface SimpleAmount {
|
|
3527
|
+
readonly total: string;
|
|
3528
|
+
readonly currency: string;
|
|
3529
|
+
}
|
|
3549
3530
|
interface SupportingInfo {
|
|
3550
3531
|
readonly notes?: string;
|
|
3551
3532
|
readonly source?: io.flow.external.paypal.v1.enums.SupportingInfoSource;
|
|
@@ -5275,7 +5256,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
5275
5256
|
type ShopifyOrderInventoryBehaviour = 'bypass' | 'decrement_ignoring_policy' | 'decrement_obeying_policy';
|
|
5276
5257
|
type ShopifyOrderKindType = 'authorization' | 'capture' | 'sale' | 'void' | 'refund';
|
|
5277
5258
|
type ShopifyOrderPaymentGatewayNames = 'flow_commerce' | 'gift_card' | 'manual' | 'shopify_payments';
|
|
5278
|
-
type ShopifyOrderProcessingMethodType = 'checkout' | 'direct' | 'manual' | 'offsite' | 'express';
|
|
5259
|
+
type ShopifyOrderProcessingMethodType = 'checkout' | 'direct' | 'manual' | 'offsite' | 'express' | 'deferred_payment';
|
|
5279
5260
|
type ShopifyOrderRestockType = 'no_restock' | 'cancel' | 'return';
|
|
5280
5261
|
type ShopifyOrderStatusType = 'open' | 'closed' | 'cancelled' | 'any';
|
|
5281
5262
|
type ShopifyOrderTransactionErrorCode = 'incorrect_number' | 'invalid_number' | 'invalid_expiry_date' | 'invalid_cvc' | 'expired_card' | 'incorrect_cvc' | 'incorrect_zip' | 'incorrect_address' | 'card_declined' | 'processing_error' | 'call_issuer' | 'pick_up_card';
|
|
@@ -7983,10 +7964,6 @@ declare namespace io.flow.billing.reporting.csv.v0.models {
|
|
|
7983
7964
|
readonly transaction_date: string;
|
|
7984
7965
|
readonly debug_console_order_link: string;
|
|
7985
7966
|
}
|
|
7986
|
-
interface ReportingAddenda {
|
|
7987
|
-
readonly allocation_order_totals_delta?: number;
|
|
7988
|
-
readonly allocation_order_item_discount_delta?: number;
|
|
7989
|
-
}
|
|
7990
7967
|
interface ReportingAuthorizationReference {
|
|
7991
7968
|
readonly id: string;
|
|
7992
7969
|
}
|
|
@@ -8011,7 +7988,15 @@ declare namespace io.flow.billing.reporting.csv.v0.models {
|
|
|
8011
7988
|
}
|
|
8012
7989
|
interface ReportingDebug {
|
|
8013
7990
|
readonly console_order_link: string;
|
|
8014
|
-
readonly
|
|
7991
|
+
readonly allocation_order_totals_delta?: number;
|
|
7992
|
+
readonly allocation_order_item_discount_delta?: number;
|
|
7993
|
+
readonly missing_item_subsidies?: io.flow.billing.reporting.csv.v0.models.ReportingDebugMissingSubsidies;
|
|
7994
|
+
readonly missing_shipping_subsidies?: io.flow.billing.reporting.csv.v0.models.ReportingDebugMissingSubsidies;
|
|
7995
|
+
}
|
|
7996
|
+
interface ReportingDebugMissingSubsidies {
|
|
7997
|
+
readonly price?: boolean;
|
|
7998
|
+
readonly tax?: boolean;
|
|
7999
|
+
readonly duty?: boolean;
|
|
8015
8000
|
}
|
|
8016
8001
|
interface ReportingDestination {
|
|
8017
8002
|
readonly country: io.flow.billing.reporting.csv.v0.models.ReportingCountry;
|
|
@@ -8086,6 +8071,13 @@ declare namespace io.flow.billing.reporting.csv.v0.models {
|
|
|
8086
8071
|
readonly duty: io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
8087
8072
|
readonly ccf: io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
8088
8073
|
}
|
|
8074
|
+
interface ReportingMerchantTransactions {
|
|
8075
|
+
readonly adjustment: io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
8076
|
+
readonly reversal: io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
8077
|
+
readonly tax: io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
8078
|
+
readonly duty: io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
8079
|
+
readonly freight: io.flow.billing.reporting.csv.v0.models.ReportingMonetaryValue;
|
|
8080
|
+
}
|
|
8089
8081
|
interface ReportingMonetaryValue {
|
|
8090
8082
|
readonly transaction: number;
|
|
8091
8083
|
readonly merchant: number;
|
|
@@ -8146,6 +8138,7 @@ declare namespace io.flow.billing.reporting.csv.v0.models {
|
|
|
8146
8138
|
readonly marked_as_final: io.flow.billing.reporting.csv.v0.models.MarkedAsFinal;
|
|
8147
8139
|
readonly merchant_subsidies: io.flow.billing.reporting.csv.v0.models.ReportingMerchantSubsidies;
|
|
8148
8140
|
readonly merchant_fees: io.flow.billing.reporting.csv.v0.models.ReportingMerchantFees;
|
|
8141
|
+
readonly merchant_transactions: io.flow.billing.reporting.csv.v0.models.ReportingMerchantTransactions;
|
|
8149
8142
|
readonly vat_remittance: io.flow.billing.reporting.csv.v0.models.ReportingVatRemittance;
|
|
8150
8143
|
readonly debug: io.flow.billing.reporting.csv.v0.models.ReportingDebug;
|
|
8151
8144
|
}
|
|
@@ -9197,9 +9190,19 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9197
9190
|
readonly starts_at?: string;
|
|
9198
9191
|
readonly ends_at?: string;
|
|
9199
9192
|
}
|
|
9193
|
+
interface FuelSurchargeByWeight {
|
|
9194
|
+
readonly discriminator: 'fuel_surcharge_by_weight';
|
|
9195
|
+
readonly amount: number;
|
|
9196
|
+
readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9197
|
+
}
|
|
9198
|
+
interface FuelSurchargePercent {
|
|
9199
|
+
readonly discriminator: 'fuel_surcharge_percent';
|
|
9200
|
+
readonly percent: number;
|
|
9201
|
+
}
|
|
9200
9202
|
interface FuelSurchargeRatecardFee {
|
|
9201
9203
|
readonly discriminator: 'fuel_surcharge_ratecard_fee';
|
|
9202
9204
|
readonly amount: io.flow.common.v0.models.Money;
|
|
9205
|
+
readonly fuel_surcharge_rate?: io.flow.ratecard.v0.unions.FuelSurchargeRate;
|
|
9203
9206
|
}
|
|
9204
9207
|
interface FuelSurchargeServiceFee {
|
|
9205
9208
|
readonly discriminator: 'fuel_surcharge_service_fee';
|
|
@@ -9227,6 +9230,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9227
9230
|
readonly currency: string;
|
|
9228
9231
|
readonly amount: number;
|
|
9229
9232
|
readonly fees: io.flow.ratecard.v0.unions.RatecardFee[];
|
|
9233
|
+
readonly weight_break?: number;
|
|
9230
9234
|
readonly total: number;
|
|
9231
9235
|
readonly lane: io.flow.ratecard.v0.models.LaneSummary;
|
|
9232
9236
|
}
|
|
@@ -9478,6 +9482,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9478
9482
|
}
|
|
9479
9483
|
}
|
|
9480
9484
|
declare namespace io.flow.ratecard.v0.unions {
|
|
9485
|
+
type FuelSurchargeRate = io.flow.ratecard.v0.models.FuelSurchargePercent | io.flow.ratecard.v0.models.FuelSurchargeByWeight;
|
|
9481
9486
|
type RatecardEstimate = io.flow.ratecard.v0.models.RatecardEstimateV1 | io.flow.ratecard.v0.models.RatecardEstimateV2 | io.flow.ratecard.v0.models.RatecardEstimateV3 | io.flow.ratecard.v0.models.RatecardEstimateV4;
|
|
9482
9487
|
type RatecardFee = io.flow.ratecard.v0.models.DdpRatecardFee | io.flow.ratecard.v0.models.FuelSurchargeRatecardFee | io.flow.ratecard.v0.models.OversizePieceSurchargeRatecardFee | io.flow.ratecard.v0.models.ReturnPackageRatecardFee | io.flow.ratecard.v0.models.CrossdockRatecardFee | io.flow.ratecard.v0.models.RemoteAreaRatecardFee | io.flow.ratecard.v0.models.EmergencySituationSurchargeRatecardFee | io.flow.ratecard.v0.models.PeakSurchargeRatecardFee | io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeRatecardFee;
|
|
9483
9488
|
type ServiceFee = io.flow.ratecard.v0.models.FuelSurchargeServiceFee | io.flow.ratecard.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.ratecard.v0.models.RemoteAreaServiceFee | io.flow.ratecard.v0.models.EmergencySituationSurchargeServiceFee | io.flow.ratecard.v0.models.PeakSurchargeServiceFee | io.flow.ratecard.v0.models.PeakSurchargeByWeightServiceFee | io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeServiceFee | io.flow.ratecard.v0.models.OversizePieceSurchargeServiceFee;
|
|
@@ -9716,154 +9721,6 @@ declare namespace io.flow.crypto.v0.models {
|
|
|
9716
9721
|
readonly object: io.flow.crypto.v0.models.Refund;
|
|
9717
9722
|
}
|
|
9718
9723
|
}
|
|
9719
|
-
declare namespace io.flow.error.v0.enums {
|
|
9720
|
-
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
9721
|
-
}
|
|
9722
|
-
declare namespace io.flow.error.v0.models {
|
|
9723
|
-
interface GenericError {
|
|
9724
|
-
readonly code: io.flow.error.v0.enums.GenericErrorCode;
|
|
9725
|
-
readonly messages: string[];
|
|
9726
|
-
}
|
|
9727
|
-
}
|
|
9728
|
-
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.enums {
|
|
9729
|
-
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
9730
|
-
}
|
|
9731
|
-
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
|
|
9732
|
-
interface CarrierChargeFile {
|
|
9733
|
-
readonly id: string;
|
|
9734
|
-
readonly url: string;
|
|
9735
|
-
readonly created_at: string;
|
|
9736
|
-
readonly result?: io.flow.billing.RESERVED_WORD_true.up.v0.models.CarrierChargeFileResult;
|
|
9737
|
-
}
|
|
9738
|
-
interface CarrierChargeFileForm {
|
|
9739
|
-
readonly url: string;
|
|
9740
|
-
}
|
|
9741
|
-
interface CarrierChargeFileResult {
|
|
9742
|
-
readonly processed_at: string;
|
|
9743
|
-
readonly number_lines_successful: number;
|
|
9744
|
-
readonly number_lines_with_errors: number;
|
|
9745
|
-
readonly errors_url?: string;
|
|
9746
|
-
}
|
|
9747
|
-
interface CarrierChargeFormLabel {
|
|
9748
|
-
readonly discriminator: 'label';
|
|
9749
|
-
readonly id: string;
|
|
9750
|
-
readonly label_invoice_request_id: string;
|
|
9751
|
-
readonly units: io.flow.billing.RESERVED_WORD_true.up.v0.models.CarrierChargeUnits;
|
|
9752
|
-
readonly base: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
9753
|
-
readonly surcharges: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeForm;
|
|
9754
|
-
readonly total: number;
|
|
9755
|
-
readonly attributes?: Record<string, string>;
|
|
9756
|
-
}
|
|
9757
|
-
interface CarrierChargeFormReturnToOrigin {
|
|
9758
|
-
readonly discriminator: 'return_to_origin';
|
|
9759
|
-
readonly id: string;
|
|
9760
|
-
readonly carrier_id: string;
|
|
9761
|
-
readonly carrier_tracking_number: string;
|
|
9762
|
-
readonly units: io.flow.billing.RESERVED_WORD_true.up.v0.models.CarrierChargeUnits;
|
|
9763
|
-
readonly base: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
9764
|
-
readonly surcharges: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeForm;
|
|
9765
|
-
readonly total: number;
|
|
9766
|
-
readonly attributes?: Record<string, string>;
|
|
9767
|
-
}
|
|
9768
|
-
interface CarrierChargeUnits {
|
|
9769
|
-
readonly currency: string;
|
|
9770
|
-
readonly weight: io.flow.units.v0.enums.UnitOfWeight;
|
|
9771
|
-
readonly length?: io.flow.units.v0.enums.UnitOfLength;
|
|
9772
|
-
}
|
|
9773
|
-
interface LabelBase {
|
|
9774
|
-
readonly amount: number;
|
|
9775
|
-
readonly weight: number;
|
|
9776
|
-
}
|
|
9777
|
-
interface LabelDestination {
|
|
9778
|
-
readonly country: string;
|
|
9779
|
-
}
|
|
9780
|
-
interface LabelInvoiceRequest {
|
|
9781
|
-
readonly id: string;
|
|
9782
|
-
readonly label: io.flow.billing.RESERVED_WORD_true.up.v0.models.TrueUpLabelSummary;
|
|
9783
|
-
readonly units: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
|
|
9784
|
-
readonly base: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
9785
|
-
readonly surcharges: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
|
|
9786
|
-
readonly total: number;
|
|
9787
|
-
readonly destination: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelDestination;
|
|
9788
|
-
readonly metadata: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelMetadata;
|
|
9789
|
-
}
|
|
9790
|
-
interface LabelMetadata {
|
|
9791
|
-
readonly ratecard: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataRatecard;
|
|
9792
|
-
readonly weights: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataWeights;
|
|
9793
|
-
}
|
|
9794
|
-
interface LabelSurcharge {
|
|
9795
|
-
readonly amount: number;
|
|
9796
|
-
readonly type: io.flow.billing.RESERVED_WORD_true.up.v0.enums.TrueUpSurchargeType;
|
|
9797
|
-
readonly detail: io.flow.billing.RESERVED_WORD_true.up.v0.unions.LabelSurchargeDetail;
|
|
9798
|
-
}
|
|
9799
|
-
interface LabelSurchargeDetailFlat {
|
|
9800
|
-
readonly discriminator: 'flat';
|
|
9801
|
-
readonly placeholder?: string;
|
|
9802
|
-
}
|
|
9803
|
-
interface LabelSurchargeDetailPerWeightUnit {
|
|
9804
|
-
readonly discriminator: 'per_weight_unit';
|
|
9805
|
-
readonly fee: number;
|
|
9806
|
-
}
|
|
9807
|
-
interface LabelSurchargeDetailPercentage {
|
|
9808
|
-
readonly discriminator: 'percentage';
|
|
9809
|
-
readonly percentage: number;
|
|
9810
|
-
}
|
|
9811
|
-
interface LabelSurchargeForm {
|
|
9812
|
-
readonly fuel?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
9813
|
-
readonly remote_area?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
9814
|
-
readonly oversize?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
9815
|
-
readonly duties_paid?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
9816
|
-
readonly emergency?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
9817
|
-
readonly peak?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
9818
|
-
readonly address_correction?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
9819
|
-
}
|
|
9820
|
-
interface LabelSurchargeSingleForm {
|
|
9821
|
-
readonly amount: number;
|
|
9822
|
-
readonly percentage?: number;
|
|
9823
|
-
readonly fee_per_weight_unit?: number;
|
|
9824
|
-
}
|
|
9825
|
-
interface LabelUnits {
|
|
9826
|
-
readonly currency: string;
|
|
9827
|
-
readonly weight: io.flow.units.v0.enums.UnitOfWeight;
|
|
9828
|
-
readonly length: io.flow.units.v0.enums.UnitOfLength;
|
|
9829
|
-
}
|
|
9830
|
-
interface MetadataProposition {
|
|
9831
|
-
readonly shipping_method: io.flow.billing.RESERVED_WORD_true.up.v0.models.ShippingMethodReference;
|
|
9832
|
-
readonly name: string;
|
|
9833
|
-
}
|
|
9834
|
-
interface MetadataRatecard {
|
|
9835
|
-
readonly id: string;
|
|
9836
|
-
readonly proposition: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataProposition;
|
|
9837
|
-
}
|
|
9838
|
-
interface MetadataWeights {
|
|
9839
|
-
readonly dead?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDead;
|
|
9840
|
-
readonly dimensional?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDimensional;
|
|
9841
|
-
}
|
|
9842
|
-
interface ShippingMethodReference {
|
|
9843
|
-
readonly id: string;
|
|
9844
|
-
}
|
|
9845
|
-
interface TrueUpLabelSummary {
|
|
9846
|
-
readonly id: string;
|
|
9847
|
-
readonly carrier_service_id: string;
|
|
9848
|
-
readonly carrier_tracking_number: string;
|
|
9849
|
-
readonly flow_tracking_number: string;
|
|
9850
|
-
readonly source: io.flow.label.v0.enums.CostEstimateSource;
|
|
9851
|
-
readonly created_at: string;
|
|
9852
|
-
}
|
|
9853
|
-
interface WeightsDead {
|
|
9854
|
-
readonly weight: number;
|
|
9855
|
-
}
|
|
9856
|
-
interface WeightsDimensional {
|
|
9857
|
-
readonly weight: number;
|
|
9858
|
-
readonly length: number;
|
|
9859
|
-
readonly width: number;
|
|
9860
|
-
readonly height: number;
|
|
9861
|
-
}
|
|
9862
|
-
}
|
|
9863
|
-
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.unions {
|
|
9864
|
-
type CarrierChargeForm = io.flow.billing.RESERVED_WORD_true.up.v0.models.CarrierChargeFormLabel | io.flow.billing.RESERVED_WORD_true.up.v0.models.CarrierChargeFormReturnToOrigin;
|
|
9865
|
-
type LabelSurchargeDetail = io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailFlat | io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailPercentage | io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailPerWeightUnit;
|
|
9866
|
-
}
|
|
9867
9724
|
declare namespace io.flow.shopify.merchant.config.v0.models {
|
|
9868
9725
|
interface Company {
|
|
9869
9726
|
readonly discriminator: 'company';
|
|
@@ -10004,59 +9861,201 @@ declare namespace io.flow.price.v0.models {
|
|
|
10004
9861
|
readonly display: io.flow.price.v0.models.LocalPriceDetails;
|
|
10005
9862
|
readonly final: io.flow.price.v0.models.LocalPriceDetails;
|
|
10006
9863
|
}
|
|
10007
|
-
interface PriceDetail {
|
|
10008
|
-
readonly key: io.flow.price.v0.enums.PriceDetailKey;
|
|
10009
|
-
readonly components: io.flow.price.v0.models.PriceDetailComponent[];
|
|
10010
|
-
readonly amount: number;
|
|
10011
|
-
readonly label: string;
|
|
10012
|
-
readonly name?: string;
|
|
10013
|
-
readonly basis?: number;
|
|
9864
|
+
interface PriceDetail {
|
|
9865
|
+
readonly key: io.flow.price.v0.enums.PriceDetailKey;
|
|
9866
|
+
readonly components: io.flow.price.v0.models.PriceDetailComponent[];
|
|
9867
|
+
readonly amount: number;
|
|
9868
|
+
readonly label: string;
|
|
9869
|
+
readonly name?: string;
|
|
9870
|
+
readonly basis?: number;
|
|
9871
|
+
}
|
|
9872
|
+
interface PriceDetailComponent {
|
|
9873
|
+
readonly key: io.flow.price.v0.enums.PriceDetailComponentKey;
|
|
9874
|
+
readonly amount: number;
|
|
9875
|
+
readonly label: string;
|
|
9876
|
+
readonly name?: string;
|
|
9877
|
+
}
|
|
9878
|
+
interface PriceDetails {
|
|
9879
|
+
readonly currency: string;
|
|
9880
|
+
readonly item_price: io.flow.price.v0.models.PriceDetail;
|
|
9881
|
+
readonly margins: io.flow.price.v0.models.PriceDetail;
|
|
9882
|
+
readonly vat: io.flow.price.v0.models.PriceDetail;
|
|
9883
|
+
readonly duty: io.flow.price.v0.models.PriceDetail;
|
|
9884
|
+
readonly rounding: io.flow.price.v0.models.PriceDetail;
|
|
9885
|
+
readonly price: io.flow.common.v0.models.Price;
|
|
9886
|
+
readonly total: io.flow.common.v0.models.Price;
|
|
9887
|
+
readonly adjustment?: io.flow.price.v0.models.PriceDetail;
|
|
9888
|
+
}
|
|
9889
|
+
interface PriceEquation {
|
|
9890
|
+
readonly contracted_rate: number;
|
|
9891
|
+
readonly rate: number;
|
|
9892
|
+
readonly pricing: io.flow.price.v0.models.Pricing;
|
|
9893
|
+
readonly base_price: number;
|
|
9894
|
+
readonly discount: number;
|
|
9895
|
+
readonly fixed_margin: number;
|
|
9896
|
+
readonly percent_margin: number;
|
|
9897
|
+
readonly insurance: number;
|
|
9898
|
+
readonly freight: number;
|
|
9899
|
+
readonly duty?: io.flow.price.v0.models.Duty;
|
|
9900
|
+
readonly tax?: io.flow.price.v0.models.Tax;
|
|
9901
|
+
readonly percent_sales_margin: number;
|
|
9902
|
+
}
|
|
9903
|
+
interface Pricing {
|
|
9904
|
+
readonly vat: io.flow.price.v0.enums.PricingLevySetting;
|
|
9905
|
+
readonly duty: io.flow.price.v0.enums.PricingLevySetting;
|
|
9906
|
+
readonly rounding?: io.flow.common.v0.models.Rounding;
|
|
9907
|
+
}
|
|
9908
|
+
interface Tax {
|
|
9909
|
+
readonly name: string;
|
|
9910
|
+
readonly rate: number;
|
|
9911
|
+
readonly components: io.flow.price.v0.enums.LevyComponent[];
|
|
9912
|
+
readonly deminimis?: io.flow.price.v0.unions.Deminimis;
|
|
9913
|
+
}
|
|
9914
|
+
}
|
|
9915
|
+
declare namespace io.flow.price.v0.unions {
|
|
9916
|
+
type Deminimis = io.flow.price.v0.models.DeminimisSimple | io.flow.price.v0.models.DeminimisPerItem;
|
|
9917
|
+
}
|
|
9918
|
+
declare namespace io.flow.trueup.v0.enums {
|
|
9919
|
+
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
9920
|
+
}
|
|
9921
|
+
declare namespace io.flow.trueup.v0.models {
|
|
9922
|
+
interface DeadWeight {
|
|
9923
|
+
readonly weight: number;
|
|
9924
|
+
}
|
|
9925
|
+
interface DimensionalWeight {
|
|
9926
|
+
readonly weight: number;
|
|
9927
|
+
readonly length?: number;
|
|
9928
|
+
readonly width?: number;
|
|
9929
|
+
readonly height?: number;
|
|
9930
|
+
}
|
|
9931
|
+
interface LabelBase {
|
|
9932
|
+
readonly amount: number;
|
|
9933
|
+
readonly weight: number;
|
|
9934
|
+
}
|
|
9935
|
+
interface LabelSurcharge {
|
|
9936
|
+
readonly amount: number;
|
|
9937
|
+
readonly type: io.flow.trueup.v0.enums.TrueupSurchargeType;
|
|
9938
|
+
readonly detail: io.flow.trueup.v0.unions.LabelSurchargeDetail;
|
|
9939
|
+
}
|
|
9940
|
+
interface LabelSurchargeDetailFlat {
|
|
9941
|
+
readonly discriminator: 'flat';
|
|
9942
|
+
readonly placeholder?: string;
|
|
9943
|
+
}
|
|
9944
|
+
interface LabelSurchargeDetailPerWeightUnit {
|
|
9945
|
+
readonly discriminator: 'per_weight_unit';
|
|
9946
|
+
readonly fee: number;
|
|
9947
|
+
}
|
|
9948
|
+
interface LabelSurchargeDetailPercentage {
|
|
9949
|
+
readonly discriminator: 'percentage';
|
|
9950
|
+
readonly percentage: number;
|
|
9951
|
+
}
|
|
9952
|
+
interface LabelUnits {
|
|
9953
|
+
readonly currency: string;
|
|
9954
|
+
readonly weight: io.flow.units.v0.enums.UnitOfWeight;
|
|
9955
|
+
readonly length: io.flow.units.v0.enums.UnitOfLength;
|
|
9956
|
+
}
|
|
9957
|
+
}
|
|
9958
|
+
declare namespace io.flow.trueup.v0.unions {
|
|
9959
|
+
type LabelSurchargeDetail = io.flow.trueup.v0.models.LabelSurchargeDetailFlat | io.flow.trueup.v0.models.LabelSurchargeDetailPercentage | io.flow.trueup.v0.models.LabelSurchargeDetailPerWeightUnit;
|
|
9960
|
+
}
|
|
9961
|
+
declare namespace io.flow.reference.v0.enums {
|
|
9962
|
+
type PaymentMethodCapability = 'credit' | 'debit';
|
|
9963
|
+
type PaymentMethodType = 'card' | 'online' | 'offline';
|
|
9964
|
+
type PostalType = 'eircode' | 'pin' | 'postal' | 'zip';
|
|
9965
|
+
type ProvinceType = 'area' | 'city' | 'county' | 'department' | 'dependency' | 'district' | 'do_si' | 'emirate' | 'entity' | 'island' | 'municipality' | 'oblast' | 'outlying_area' | 'parish' | 'prefecture' | 'province' | 'state' | 'territory' | 'other';
|
|
9966
|
+
}
|
|
9967
|
+
declare namespace io.flow.reference.v0.models {
|
|
9968
|
+
interface Carrier {
|
|
9969
|
+
readonly id: string;
|
|
9970
|
+
readonly name: string;
|
|
9971
|
+
readonly tracking_url: string;
|
|
9972
|
+
}
|
|
9973
|
+
interface CarrierService {
|
|
9974
|
+
readonly id: string;
|
|
9975
|
+
readonly carrier: io.flow.reference.v0.models.Carrier;
|
|
9976
|
+
readonly name: string;
|
|
9977
|
+
}
|
|
9978
|
+
interface Country {
|
|
9979
|
+
readonly name: string;
|
|
9980
|
+
readonly iso_3166_2: string;
|
|
9981
|
+
readonly iso_3166_3: string;
|
|
9982
|
+
readonly languages: string[];
|
|
9983
|
+
readonly measurement_system: string;
|
|
9984
|
+
readonly default_currency?: string;
|
|
9985
|
+
readonly default_language?: string;
|
|
9986
|
+
readonly timezones: string[];
|
|
9987
|
+
readonly default_delivered_duty?: string;
|
|
9988
|
+
}
|
|
9989
|
+
interface Currency {
|
|
9990
|
+
readonly name: string;
|
|
9991
|
+
readonly iso_4217_3: string;
|
|
9992
|
+
readonly number_decimals: number;
|
|
9993
|
+
readonly symbols?: io.flow.reference.v0.models.CurrencySymbols;
|
|
9994
|
+
readonly default_locale?: string;
|
|
9995
|
+
}
|
|
9996
|
+
interface CurrencySymbols {
|
|
9997
|
+
readonly primary: string;
|
|
9998
|
+
readonly narrow?: string;
|
|
9999
|
+
}
|
|
10000
|
+
interface Language {
|
|
10001
|
+
readonly name: string;
|
|
10002
|
+
readonly iso_639_2: string;
|
|
10003
|
+
}
|
|
10004
|
+
interface Locale {
|
|
10005
|
+
readonly id: string;
|
|
10006
|
+
readonly name: string;
|
|
10007
|
+
readonly country: string;
|
|
10008
|
+
readonly language: string;
|
|
10009
|
+
readonly numbers: io.flow.reference.v0.models.LocaleNumbers;
|
|
10010
|
+
}
|
|
10011
|
+
interface LocaleNumbers {
|
|
10012
|
+
readonly decimal: string;
|
|
10013
|
+
readonly group: string;
|
|
10014
|
+
}
|
|
10015
|
+
interface LocalizedTranslation {
|
|
10016
|
+
readonly locale: io.flow.reference.v0.models.Locale;
|
|
10017
|
+
readonly name: string;
|
|
10014
10018
|
}
|
|
10015
|
-
interface
|
|
10016
|
-
readonly
|
|
10017
|
-
readonly
|
|
10018
|
-
readonly
|
|
10019
|
-
readonly
|
|
10019
|
+
interface PaymentMethod {
|
|
10020
|
+
readonly id: string;
|
|
10021
|
+
readonly type: io.flow.reference.v0.enums.PaymentMethodType;
|
|
10022
|
+
readonly name: string;
|
|
10023
|
+
readonly images: io.flow.reference.v0.models.PaymentMethodImages;
|
|
10024
|
+
readonly regions: string[];
|
|
10025
|
+
readonly capabilities?: io.flow.reference.v0.enums.PaymentMethodCapability[];
|
|
10020
10026
|
}
|
|
10021
|
-
interface
|
|
10022
|
-
readonly
|
|
10023
|
-
readonly
|
|
10024
|
-
readonly
|
|
10025
|
-
readonly vat: io.flow.price.v0.models.PriceDetail;
|
|
10026
|
-
readonly duty: io.flow.price.v0.models.PriceDetail;
|
|
10027
|
-
readonly rounding: io.flow.price.v0.models.PriceDetail;
|
|
10028
|
-
readonly price: io.flow.common.v0.models.Price;
|
|
10029
|
-
readonly total: io.flow.common.v0.models.Price;
|
|
10030
|
-
readonly adjustment?: io.flow.price.v0.models.PriceDetail;
|
|
10027
|
+
interface PaymentMethodImage {
|
|
10028
|
+
readonly url: string;
|
|
10029
|
+
readonly width: number;
|
|
10030
|
+
readonly height: number;
|
|
10031
10031
|
}
|
|
10032
|
-
interface
|
|
10033
|
-
readonly
|
|
10034
|
-
readonly
|
|
10035
|
-
readonly
|
|
10036
|
-
readonly base_price: number;
|
|
10037
|
-
readonly discount: number;
|
|
10038
|
-
readonly fixed_margin: number;
|
|
10039
|
-
readonly percent_margin: number;
|
|
10040
|
-
readonly insurance: number;
|
|
10041
|
-
readonly freight: number;
|
|
10042
|
-
readonly duty?: io.flow.price.v0.models.Duty;
|
|
10043
|
-
readonly tax?: io.flow.price.v0.models.Tax;
|
|
10044
|
-
readonly percent_sales_margin: number;
|
|
10032
|
+
interface PaymentMethodImages {
|
|
10033
|
+
readonly small: io.flow.reference.v0.models.PaymentMethodImage;
|
|
10034
|
+
readonly medium: io.flow.reference.v0.models.PaymentMethodImage;
|
|
10035
|
+
readonly large: io.flow.reference.v0.models.PaymentMethodImage;
|
|
10045
10036
|
}
|
|
10046
|
-
interface
|
|
10047
|
-
readonly
|
|
10048
|
-
readonly
|
|
10049
|
-
readonly
|
|
10037
|
+
interface Province {
|
|
10038
|
+
readonly id: string;
|
|
10039
|
+
readonly iso_3166_2: string;
|
|
10040
|
+
readonly name: string;
|
|
10041
|
+
readonly country: string;
|
|
10042
|
+
readonly province_type: io.flow.reference.v0.enums.ProvinceType;
|
|
10043
|
+
readonly translations?: io.flow.reference.v0.models.LocalizedTranslation[];
|
|
10050
10044
|
}
|
|
10051
|
-
interface
|
|
10045
|
+
interface Region {
|
|
10046
|
+
readonly id: string;
|
|
10052
10047
|
readonly name: string;
|
|
10053
|
-
readonly
|
|
10054
|
-
readonly
|
|
10055
|
-
readonly
|
|
10048
|
+
readonly countries: string[];
|
|
10049
|
+
readonly currencies: string[];
|
|
10050
|
+
readonly languages: string[];
|
|
10051
|
+
readonly measurement_systems: string[];
|
|
10052
|
+
readonly timezones: string[];
|
|
10053
|
+
}
|
|
10054
|
+
interface Timezone {
|
|
10055
|
+
readonly name: string;
|
|
10056
|
+
readonly description: string;
|
|
10057
|
+
readonly offset: number;
|
|
10056
10058
|
}
|
|
10057
|
-
}
|
|
10058
|
-
declare namespace io.flow.price.v0.unions {
|
|
10059
|
-
type Deminimis = io.flow.price.v0.models.DeminimisSimple | io.flow.price.v0.models.DeminimisPerItem;
|
|
10060
10059
|
}
|
|
10061
10060
|
declare namespace io.flow.tracking.v0.enums {
|
|
10062
10061
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
|
|
@@ -10871,12 +10870,12 @@ declare namespace io.flow.billing.internal.v0.enums {
|
|
|
10871
10870
|
type FeesSource = 'settings' | 'authorization_bundle';
|
|
10872
10871
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
10873
10872
|
type MainTransactionStatus = 'scheduled' | 'pending_proof';
|
|
10874
|
-
type ManualTransactionCategory = 'cancelled_order_refund' | 'channel_partner_initiated' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'partial_refund' | 'platform_fee' | 'shipping_true_up' | 'tax_credit';
|
|
10873
|
+
type ManualTransactionCategory = 'cancelled_order_refund' | 'channel_partner_initiated' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'partial_refund' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit';
|
|
10875
10874
|
type OrderCancellationInitiatedBy = 'flow' | 'organization';
|
|
10876
10875
|
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
10877
10876
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
10878
10877
|
type ProcessingTransactionType = 'adjustment' | 'reversal' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
|
|
10879
|
-
type QueuedRecordType = 'capture' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'fulfillment_order_cancellation' | 'label_tracking_summary' | 'label_invoice_request' | 'carrier_charge' | 'carrier_charge_file' | '
|
|
10878
|
+
type QueuedRecordType = 'capture' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'fulfillment_order_cancellation' | 'fulfillment_order_combined_shipment' | 'fulfillment_order_time' | 'label_tracking_summary' | 'label_invoice_request' | 'carrier_charge' | 'carrier_charge_file' | 'order' | 'order_identifier' | 'organization_onboarding_state' | 'posting_proof' | 'refund' | 'refund_over_capture' | 'sales_record' | 'statement_batch' | 'statement_email' | 'statement_summary_email' | 'pending_payout_transaction_event';
|
|
10880
10879
|
type ResponsibleParty = 'flow' | 'organization';
|
|
10881
10880
|
type StatementTransferTransactionLocation = 'transactions_file' | 'summary';
|
|
10882
10881
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
@@ -11430,6 +11429,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11430
11429
|
interface ManualTransaction {
|
|
11431
11430
|
readonly discriminator: 'manual_transaction';
|
|
11432
11431
|
readonly category?: io.flow.billing.internal.v0.enums.ManualTransactionCategory;
|
|
11432
|
+
readonly original_transaction?: io.flow.billing.internal.v0.models.TransactionReference;
|
|
11433
11433
|
readonly order?: io.flow.billing.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
11434
11434
|
readonly attributes?: Record<string, string>;
|
|
11435
11435
|
readonly id: string;
|
|
@@ -11448,6 +11448,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11448
11448
|
readonly category?: io.flow.billing.internal.v0.enums.ManualTransactionCategory;
|
|
11449
11449
|
readonly posted_at?: string;
|
|
11450
11450
|
readonly order?: io.flow.billing.internal.v0.models.ManualTransactionFormOrder;
|
|
11451
|
+
readonly original_transaction_id?: string;
|
|
11451
11452
|
readonly attributes?: Record<string, string>;
|
|
11452
11453
|
}
|
|
11453
11454
|
interface ManualTransactionFormOrder {
|
|
@@ -11608,6 +11609,10 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11608
11609
|
readonly discriminator: 'order_cancellation';
|
|
11609
11610
|
readonly order_cancellation_id: string;
|
|
11610
11611
|
}
|
|
11612
|
+
interface ProofOfPostingOrderCombinedShipment {
|
|
11613
|
+
readonly discriminator: 'order_combined_shipment';
|
|
11614
|
+
readonly order_combined_shipment_id: string;
|
|
11615
|
+
}
|
|
11611
11616
|
interface ProofOfPostingShippingNotification {
|
|
11612
11617
|
readonly discriminator: 'shipping_notification';
|
|
11613
11618
|
readonly shipping_notification_id: string;
|
|
@@ -11755,7 +11760,7 @@ declare namespace io.flow.billing.internal.v0.unions {
|
|
|
11755
11760
|
type ChannelRateMetadata = io.flow.billing.internal.v0.models.ChannelRateMetadataIdentity | io.flow.billing.internal.v0.models.ChannelRateMetadataRate;
|
|
11756
11761
|
type OrderCancellationEvidence = io.flow.billing.internal.v0.models.OrderCancellationEvidenceManual | io.flow.billing.internal.v0.models.OrderCancellationEvidenceFullyRefundedNotFulfilled | io.flow.billing.internal.v0.models.OrderCancellationEvidenceReturnToSender;
|
|
11757
11762
|
type PlatformFee = io.flow.billing.internal.v0.models.PlatformFeePause | io.flow.billing.internal.v0.models.PlatformFeeFlat | io.flow.billing.internal.v0.models.PlatformFeePercentage | io.flow.billing.internal.v0.models.PlatformFeeDisabled;
|
|
11758
|
-
type ProofOfPosting = io.flow.billing.internal.v0.models.ProofOfPostingFulfilled | io.flow.billing.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.billing.internal.v0.models.ProofOfPostingShippingNotification | io.flow.billing.internal.v0.models.ProofOfPostingOrderCancellation;
|
|
11763
|
+
type ProofOfPosting = io.flow.billing.internal.v0.models.ProofOfPostingFulfilled | io.flow.billing.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.billing.internal.v0.models.ProofOfPostingShippingNotification | io.flow.billing.internal.v0.models.ProofOfPostingOrderCancellation | io.flow.billing.internal.v0.models.ProofOfPostingOrderCombinedShipment;
|
|
11759
11764
|
type SpotRateMetadata = io.flow.billing.internal.v0.models.SpotRateMetadataIdentity | io.flow.billing.internal.v0.models.SpotRateMetadataRate;
|
|
11760
11765
|
type Transaction = io.flow.billing.internal.v0.models.InvoiceTransaction | io.flow.billing.internal.v0.models.ManualTransaction | io.flow.billing.internal.v0.models.ProcessingTransaction | io.flow.billing.internal.v0.models.SubscriptionTransaction | io.flow.billing.internal.v0.models.TaxRemittanceTransaction | io.flow.billing.internal.v0.models.TransferTransaction | io.flow.billing.internal.v0.models.VirtualCardTransaction | io.flow.billing.internal.v0.models.DisputeTransaction | io.flow.billing.internal.v0.models.ChannelTransaction | io.flow.billing.internal.v0.models.LabelTransaction | io.flow.billing.internal.v0.models.OrderTransaction | io.flow.billing.internal.v0.models.ChannelBilledTransaction | io.flow.billing.internal.v0.models.TaxTransaction | io.flow.billing.internal.v0.models.DutyTransaction | io.flow.billing.internal.v0.models.TrueupTransaction;
|
|
11761
11766
|
}
|
|
@@ -11763,11 +11768,10 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
11763
11768
|
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer';
|
|
11764
11769
|
type PayoutAttachmentType = 'transactions';
|
|
11765
11770
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
11766
|
-
type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | '
|
|
11771
|
+
type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance';
|
|
11767
11772
|
type StatementAttachmentType = 'csv';
|
|
11768
11773
|
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'trueup' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
11769
11774
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl';
|
|
11770
|
-
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
11771
11775
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
11772
11776
|
}
|
|
11773
11777
|
declare namespace io.flow.billing.v0.models {
|
|
@@ -11836,6 +11840,9 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11836
11840
|
readonly id: string;
|
|
11837
11841
|
readonly reason: io.flow.billing.v0.models.PendingPayoutTransactionReason;
|
|
11838
11842
|
readonly timeout?: io.flow.billing.v0.models.PendingPayoutTransactionTimeout;
|
|
11843
|
+
readonly created_at: string;
|
|
11844
|
+
readonly updated_at: string;
|
|
11845
|
+
readonly deleted_at?: string;
|
|
11839
11846
|
}
|
|
11840
11847
|
interface ChannelStatement {
|
|
11841
11848
|
readonly id: string;
|
|
@@ -11894,6 +11901,9 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11894
11901
|
readonly id: string;
|
|
11895
11902
|
readonly reason: io.flow.billing.v0.models.PendingPayoutTransactionReason;
|
|
11896
11903
|
readonly timeout?: io.flow.billing.v0.models.PendingPayoutTransactionTimeout;
|
|
11904
|
+
readonly created_at: string;
|
|
11905
|
+
readonly updated_at: string;
|
|
11906
|
+
readonly deleted_at?: string;
|
|
11897
11907
|
}
|
|
11898
11908
|
interface ParentTransactionSummary {
|
|
11899
11909
|
readonly id: string;
|
|
@@ -11992,13 +12002,25 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11992
12002
|
readonly iin: string;
|
|
11993
12003
|
readonly country: string;
|
|
11994
12004
|
}
|
|
12005
|
+
interface TransactionMetadataManual {
|
|
12006
|
+
readonly discriminator: 'manual';
|
|
12007
|
+
readonly original: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
12008
|
+
}
|
|
12009
|
+
interface TransactionMetadataOriginalTransaction {
|
|
12010
|
+
readonly id: string;
|
|
12011
|
+
}
|
|
11995
12012
|
interface TransactionMetadataShippingLabel {
|
|
11996
12013
|
readonly discriminator: 'shipping_label';
|
|
11997
12014
|
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
12015
|
+
readonly carrier: io.flow.billing.v0.models.TransactionMetadataShippingLabelCarrier;
|
|
12016
|
+
}
|
|
12017
|
+
interface TransactionMetadataShippingLabelCarrier {
|
|
12018
|
+
readonly id: string;
|
|
12019
|
+
readonly tracking_number: string;
|
|
11998
12020
|
}
|
|
11999
12021
|
interface TransactionMetadataTrueup {
|
|
12000
12022
|
readonly discriminator: 'trueup';
|
|
12001
|
-
readonly original: io.flow.billing.v0.models.
|
|
12023
|
+
readonly original: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
12002
12024
|
readonly estimate: io.flow.billing.v0.models.TransactionMetadataTrueupData;
|
|
12003
12025
|
readonly actual: io.flow.billing.v0.models.TransactionMetadataTrueupData;
|
|
12004
12026
|
}
|
|
@@ -12008,9 +12030,8 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12008
12030
|
readonly base: io.flow.billing.v0.models.TrueupLabelBase;
|
|
12009
12031
|
readonly surcharges: io.flow.billing.v0.models.TrueupLabelSurcharge[];
|
|
12010
12032
|
readonly total: number;
|
|
12011
|
-
|
|
12012
|
-
|
|
12013
|
-
readonly id: string;
|
|
12033
|
+
readonly dead?: io.flow.trueup.v0.models.DeadWeight;
|
|
12034
|
+
readonly dimensional?: io.flow.trueup.v0.models.DimensionalWeight;
|
|
12014
12035
|
}
|
|
12015
12036
|
interface TransactionReference {
|
|
12016
12037
|
readonly id: string;
|
|
@@ -12021,7 +12042,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12021
12042
|
}
|
|
12022
12043
|
interface TrueupLabelSurcharge {
|
|
12023
12044
|
readonly amount: number;
|
|
12024
|
-
readonly type: io.flow.
|
|
12045
|
+
readonly type: io.flow.trueup.v0.enums.TrueupSurchargeType;
|
|
12025
12046
|
readonly percentage?: number;
|
|
12026
12047
|
readonly per_weight_unit?: number;
|
|
12027
12048
|
}
|
|
@@ -12039,7 +12060,7 @@ declare namespace io.flow.billing.v0.unions {
|
|
|
12039
12060
|
type BankAccountForm = io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple;
|
|
12040
12061
|
type PayoutStatus = io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed;
|
|
12041
12062
|
type Settlement = io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout;
|
|
12042
|
-
type TransactionMetadata = io.flow.billing.v0.models.TransactionMetadataShippingLabel | io.flow.billing.v0.models.TransactionMetadataChannel | io.flow.billing.v0.models.TransactionMetadataTrueup;
|
|
12063
|
+
type TransactionMetadata = io.flow.billing.v0.models.TransactionMetadataShippingLabel | io.flow.billing.v0.models.TransactionMetadataChannel | io.flow.billing.v0.models.TransactionMetadataTrueup | io.flow.billing.v0.models.TransactionMetadataManual;
|
|
12043
12064
|
}
|
|
12044
12065
|
declare namespace io.flow.harmonization.v0.enums {
|
|
12045
12066
|
type TaxApplicability = 'none' | 'all';
|
|
@@ -13480,6 +13501,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13480
13501
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
13481
13502
|
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies';
|
|
13482
13503
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
|
|
13504
|
+
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
13483
13505
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
13484
13506
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
13485
13507
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
@@ -13563,6 +13585,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13563
13585
|
type ContentType = 'text' | 'html';
|
|
13564
13586
|
type ContentTypeCast = 'markdown_to_html' | 'markdown_to_text';
|
|
13565
13587
|
type CrossdockTrackingStatus = 'notified' | 'received' | 'shipped';
|
|
13588
|
+
type DebugAccountingTransactionType = 'fulfillment';
|
|
13566
13589
|
type DeliveredDutyOptionMessageType = 'warning' | 'notification';
|
|
13567
13590
|
type DeminimisAdjustmentType = 'none' | 'duty' | 'vat' | 'vat_and_duty';
|
|
13568
13591
|
type DiscountRequestOrderEntitlementKey = 'subtotal';
|
|
@@ -13585,7 +13608,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13585
13608
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
13586
13609
|
type EmptyAttribute = 'irrelevant';
|
|
13587
13610
|
type ErpFileType = 'vendor';
|
|
13588
|
-
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_deleted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'sales_record_upserted' | 'sales_record_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
13611
|
+
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_deleted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'sales_record_upserted' | 'sales_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
13589
13612
|
type ExperienceImportType = 'experience_with_settings';
|
|
13590
13613
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
13591
13614
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -13623,7 +13646,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13623
13646
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
13624
13647
|
type MainTransactionStatus = 'scheduled' | 'pending_proof';
|
|
13625
13648
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
13626
|
-
type ManualTransactionCategory = 'cancelled_order_refund' | 'channel_partner_initiated' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'partial_refund' | 'platform_fee' | 'shipping_true_up' | 'tax_credit';
|
|
13649
|
+
type ManualTransactionCategory = 'cancelled_order_refund' | 'channel_partner_initiated' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'partial_refund' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit';
|
|
13627
13650
|
type MarketingGatewayAccountConnectionStatus = 'not_connected' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected';
|
|
13628
13651
|
type MarketingGatewayChannelIntegrationType = 'automated' | 'manual';
|
|
13629
13652
|
type MarketingGatewayChannelStatus = 'not_connected' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected' | 'unavailable';
|
|
@@ -13642,7 +13665,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13642
13665
|
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | 'miscellaneous';
|
|
13643
13666
|
type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
13644
13667
|
type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
13645
|
-
type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'api_sandbox_setup' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'api_internal_delete_transaction' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
|
|
13668
|
+
type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'audit_auto_activation' | 'api_deactivation' | 'api_sandbox_setup' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'api_internal_delete_transaction' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
|
|
13646
13669
|
type OrderAction = 'consumer_submit' | 'fraud_review_accept' | 'fraud_review_decline' | 'payment_fully_authorize' | 'payment_fully_capture';
|
|
13647
13670
|
type OrderAttributeIntent = 'discount_code';
|
|
13648
13671
|
type OrderCancellationInitiatedBy = 'flow' | 'organization';
|
|
@@ -13673,7 +13696,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13673
13696
|
type PromptCheckoutDisplayPosition = 'email' | 'submission';
|
|
13674
13697
|
type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
|
|
13675
13698
|
type PromptTarget = 'browse' | 'checkout';
|
|
13676
|
-
type QueuedRecordType = 'capture' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'fulfillment_order_cancellation' | 'label_tracking_summary' | 'label_invoice_request' | 'carrier_charge' | 'carrier_charge_file' | '
|
|
13699
|
+
type QueuedRecordType = 'capture' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'fulfillment_order_cancellation' | 'fulfillment_order_combined_shipment' | 'fulfillment_order_time' | 'label_tracking_summary' | 'label_invoice_request' | 'carrier_charge' | 'carrier_charge_file' | 'order' | 'order_identifier' | 'organization_onboarding_state' | 'posting_proof' | 'refund' | 'refund_over_capture' | 'sales_record' | 'statement_batch' | 'statement_email' | 'statement_summary_email' | 'pending_payout_transaction_event';
|
|
13677
13700
|
type QuoteRequestType = 'generate' | 'delete' | 'update_currency_rate' | 'update_country';
|
|
13678
13701
|
type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
|
|
13679
13702
|
type RateSource = 'calculated' | 'market';
|
|
@@ -13682,6 +13705,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13682
13705
|
type RejectionReason = 'merchant_policy' | 'previous_chargebacks' | 'restricted_party_screening' | 'risky_velocity' | 'suspicious_behavior' | 'suspicious_past_activity';
|
|
13683
13706
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
13684
13707
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
13708
|
+
type ReportType = 'sales_record' | 'trueup_overview';
|
|
13685
13709
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
13686
13710
|
type ResponsibleParty = 'flow' | 'organization';
|
|
13687
13711
|
type RestrictionAction = 'prohibited' | 'restricted';
|
|
@@ -13725,7 +13749,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13725
13749
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
13726
13750
|
type TransactionPostingMethod = 'time' | 'proof';
|
|
13727
13751
|
type TransferMethod = 'ach';
|
|
13728
|
-
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
13729
13752
|
type TrueupTransactionType = 'adjustment' | 'reversal' | 'trueup';
|
|
13730
13753
|
type UnclassifiedProductStatus = 'ignored' | 'escalated' | 'requeued' | 'unverified' | 'queued' | 'unconfident';
|
|
13731
13754
|
}
|
|
@@ -13829,6 +13852,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13829
13852
|
readonly timestamp: string;
|
|
13830
13853
|
readonly rates: io.flow.internal.v0.models.AccountProcessingRates;
|
|
13831
13854
|
}
|
|
13855
|
+
interface AccountReference {
|
|
13856
|
+
readonly id: string;
|
|
13857
|
+
}
|
|
13832
13858
|
interface AccountSettingLabelFees {
|
|
13833
13859
|
readonly flow?: io.flow.internal.v0.models.TieredFee;
|
|
13834
13860
|
readonly organization?: io.flow.internal.v0.models.TieredFee;
|
|
@@ -14992,20 +15018,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14992
15018
|
readonly id: string;
|
|
14993
15019
|
readonly label_invoice_request_id: string;
|
|
14994
15020
|
readonly units: io.flow.internal.v0.models.CarrierChargeUnits;
|
|
14995
|
-
readonly base: io.flow.
|
|
15021
|
+
readonly base: io.flow.trueup.v0.models.LabelBase;
|
|
14996
15022
|
readonly surcharges: io.flow.internal.v0.models.LabelSurchargeForm;
|
|
14997
15023
|
readonly total: number;
|
|
15024
|
+
readonly dead?: io.flow.trueup.v0.models.DeadWeight;
|
|
15025
|
+
readonly dimensional?: io.flow.trueup.v0.models.DimensionalWeight;
|
|
14998
15026
|
readonly attributes?: Record<string, string>;
|
|
14999
15027
|
}
|
|
15000
15028
|
interface CarrierChargeFormReturnToOrigin {
|
|
15001
15029
|
readonly discriminator: 'return_to_origin';
|
|
15002
15030
|
readonly id: string;
|
|
15031
|
+
readonly organization_id: string;
|
|
15032
|
+
readonly order_number: string;
|
|
15003
15033
|
readonly carrier_id: string;
|
|
15004
15034
|
readonly carrier_tracking_number: string;
|
|
15035
|
+
readonly label_created_at: string;
|
|
15005
15036
|
readonly units: io.flow.internal.v0.models.CarrierChargeUnits;
|
|
15006
|
-
readonly base: io.flow.
|
|
15037
|
+
readonly base: io.flow.trueup.v0.models.LabelBase;
|
|
15007
15038
|
readonly surcharges: io.flow.internal.v0.models.LabelSurchargeForm;
|
|
15008
15039
|
readonly total: number;
|
|
15040
|
+
readonly dead?: io.flow.trueup.v0.models.DeadWeight;
|
|
15041
|
+
readonly dimensional?: io.flow.trueup.v0.models.DimensionalWeight;
|
|
15009
15042
|
readonly attributes?: Record<string, string>;
|
|
15010
15043
|
}
|
|
15011
15044
|
interface CarrierChargeUnits {
|
|
@@ -15246,6 +15279,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15246
15279
|
interface ChannelMembershipPutForm {
|
|
15247
15280
|
readonly role?: io.flow.common.v0.enums.Role;
|
|
15248
15281
|
}
|
|
15282
|
+
interface ChannelOrder {
|
|
15283
|
+
readonly org_id: string;
|
|
15284
|
+
readonly flow_order_number: string;
|
|
15285
|
+
readonly shopify_order_number: string;
|
|
15286
|
+
readonly order_submission_date?: string;
|
|
15287
|
+
readonly order_item_count: number;
|
|
15288
|
+
readonly total: io.flow.catalog.v0.models.LocalizedTotal;
|
|
15289
|
+
readonly merchant_total: number;
|
|
15290
|
+
readonly tracking_numbers?: string[];
|
|
15291
|
+
readonly carrier?: io.flow.reference.v0.models.CarrierService;
|
|
15292
|
+
readonly duty_paid: boolean;
|
|
15293
|
+
}
|
|
15249
15294
|
interface ChannelOrderAcceptance {
|
|
15250
15295
|
readonly id: string;
|
|
15251
15296
|
readonly organization_id: string;
|
|
@@ -15257,6 +15302,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15257
15302
|
readonly reasons: io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
15258
15303
|
readonly next_action_from?: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
15259
15304
|
readonly order_created_at?: string;
|
|
15305
|
+
readonly order_updated_at?: string;
|
|
15260
15306
|
}
|
|
15261
15307
|
interface ChannelOrderAcceptanceDeleted {
|
|
15262
15308
|
readonly discriminator: 'channel_order_acceptance_deleted';
|
|
@@ -15281,6 +15327,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15281
15327
|
readonly channel_id: string;
|
|
15282
15328
|
readonly channel_order_acceptance: io.flow.internal.v0.models.ChannelOrderAcceptance;
|
|
15283
15329
|
}
|
|
15330
|
+
interface ChannelOrderSummary {
|
|
15331
|
+
readonly id: string;
|
|
15332
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
15333
|
+
readonly external_order_reference: string;
|
|
15334
|
+
readonly order_number: string;
|
|
15335
|
+
readonly fulfullment_details: io.flow.internal.v0.models.ChannelOrderSummaryFulfillmentDetails;
|
|
15336
|
+
}
|
|
15337
|
+
interface ChannelOrderSummaryDeleted {
|
|
15338
|
+
readonly discriminator: 'channel_order_summary_deleted';
|
|
15339
|
+
readonly event_id: string;
|
|
15340
|
+
readonly timestamp: string;
|
|
15341
|
+
readonly channel_id: string;
|
|
15342
|
+
readonly id: string;
|
|
15343
|
+
}
|
|
15344
|
+
interface ChannelOrderSummaryFulfillmentDetails {
|
|
15345
|
+
readonly fulfillment_status: io.flow.internal.v0.enums.ChannelOrderFulfillmentStatusCode;
|
|
15346
|
+
readonly timestamp: string;
|
|
15347
|
+
}
|
|
15348
|
+
interface ChannelOrderSummaryUpserted {
|
|
15349
|
+
readonly discriminator: 'channel_order_summary_upserted';
|
|
15350
|
+
readonly event_id: string;
|
|
15351
|
+
readonly timestamp: string;
|
|
15352
|
+
readonly channel_id: string;
|
|
15353
|
+
readonly channel_order_summary: io.flow.internal.v0.models.ChannelOrderSummary;
|
|
15354
|
+
}
|
|
15284
15355
|
interface ChannelOrganizationShopify {
|
|
15285
15356
|
readonly organization: io.flow.channel.v0.models.ChannelOrganization;
|
|
15286
15357
|
readonly tokens: io.flow.internal.v0.models.ShopifyChannelOrganizationTokens[];
|
|
@@ -17530,11 +17601,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17530
17601
|
readonly timestamp: string;
|
|
17531
17602
|
readonly daily_value: io.flow.internal.v0.models.DailyValue;
|
|
17532
17603
|
}
|
|
17604
|
+
interface DebugAccountingTransaction {
|
|
17605
|
+
readonly type: io.flow.internal.v0.enums.DebugAccountingTransactionType;
|
|
17606
|
+
readonly type_id: string;
|
|
17607
|
+
readonly transaction_id: string;
|
|
17608
|
+
}
|
|
17533
17609
|
interface DebugDetails {
|
|
17534
17610
|
readonly labels: io.flow.internal.v0.models.DebugLabel[];
|
|
17535
17611
|
readonly captures: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
17536
17612
|
readonly refunds: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
17537
17613
|
}
|
|
17614
|
+
interface DebugFulfillmentDelta {
|
|
17615
|
+
readonly posted_transactions_net: number;
|
|
17616
|
+
readonly fulfillments_net: number;
|
|
17617
|
+
readonly delta_amount: number;
|
|
17618
|
+
readonly delta_percent: number;
|
|
17619
|
+
}
|
|
17538
17620
|
interface DebugLabel {
|
|
17539
17621
|
readonly carrier_id: string;
|
|
17540
17622
|
readonly carrier_tracking_number: string;
|
|
@@ -17571,6 +17653,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17571
17653
|
readonly label_tracking_summary_id?: string;
|
|
17572
17654
|
readonly shipping_notification_id?: string;
|
|
17573
17655
|
readonly external_fulfillment_proof_id?: string;
|
|
17656
|
+
readonly order_cancellation_id?: string;
|
|
17574
17657
|
}
|
|
17575
17658
|
interface DebugOrderTransactionFormOrderIdentifier {
|
|
17576
17659
|
readonly key?: string;
|
|
@@ -18961,11 +19044,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18961
19044
|
readonly currency: string;
|
|
18962
19045
|
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
18963
19046
|
readonly origin?: io.flow.internal.v0.models.FulfillmentOrigin;
|
|
18964
|
-
readonly lines: io.flow.internal.v0.models.FulfillmentLine[];
|
|
18965
19047
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
18966
19048
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
18967
|
-
readonly
|
|
18968
|
-
readonly responsible_party: io.flow.internal.v0.enums.ResponsibleParty;
|
|
19049
|
+
readonly trigger: io.flow.internal.v0.unions.FulfillmentTrigger;
|
|
18969
19050
|
readonly completes_order: boolean;
|
|
18970
19051
|
readonly sequence_number: number;
|
|
18971
19052
|
readonly posting_cutoff: string;
|
|
@@ -18995,16 +19076,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18995
19076
|
readonly id: string;
|
|
18996
19077
|
readonly key: string;
|
|
18997
19078
|
}
|
|
18998
|
-
interface FulfillmentLine {
|
|
18999
|
-
readonly item: io.flow.internal.v0.models.ItemSummary;
|
|
19000
|
-
readonly quantity: number;
|
|
19001
|
-
readonly unit_price: number;
|
|
19002
|
-
readonly price: number;
|
|
19003
|
-
readonly discount: number;
|
|
19004
|
-
readonly tax: number;
|
|
19005
|
-
readonly duty: number;
|
|
19006
|
-
readonly subsidies: io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
|
|
19007
|
-
}
|
|
19008
19079
|
interface FulfillmentOrigin {
|
|
19009
19080
|
readonly country: string;
|
|
19010
19081
|
readonly province_code?: string;
|
|
@@ -19016,6 +19087,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19016
19087
|
readonly carrier_service_id?: string;
|
|
19017
19088
|
readonly carrier_tracking_number?: string;
|
|
19018
19089
|
readonly label_id?: string;
|
|
19090
|
+
readonly created_at?: string;
|
|
19019
19091
|
}
|
|
19020
19092
|
interface FulfillmentProofLabelTrackingReference {
|
|
19021
19093
|
readonly discriminator: 'label_tracking';
|
|
@@ -19024,6 +19096,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19024
19096
|
readonly carrier_service_id?: string;
|
|
19025
19097
|
readonly carrier_tracking_number?: string;
|
|
19026
19098
|
readonly label_id?: string;
|
|
19099
|
+
readonly created_at?: string;
|
|
19100
|
+
}
|
|
19101
|
+
interface FulfillmentProofOrderCombinedShipmentReference {
|
|
19102
|
+
readonly discriminator: 'order_combined_shipment';
|
|
19103
|
+
readonly id: string;
|
|
19104
|
+
readonly carrier_id?: string;
|
|
19105
|
+
readonly carrier_service_id?: string;
|
|
19106
|
+
readonly carrier_tracking_number?: string;
|
|
19107
|
+
readonly label_id?: string;
|
|
19108
|
+
readonly created_at?: string;
|
|
19027
19109
|
}
|
|
19028
19110
|
interface FulfillmentProofShippingNotificationReference {
|
|
19029
19111
|
readonly discriminator: 'shipping_notification';
|
|
@@ -19032,6 +19114,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19032
19114
|
readonly carrier_service_id?: string;
|
|
19033
19115
|
readonly carrier_tracking_number?: string;
|
|
19034
19116
|
readonly label_id?: string;
|
|
19117
|
+
readonly created_at?: string;
|
|
19035
19118
|
}
|
|
19036
19119
|
interface FulfillmentReference {
|
|
19037
19120
|
readonly id: string;
|
|
@@ -19055,6 +19138,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19055
19138
|
interface FulfillmentSubsidyBreakdown {
|
|
19056
19139
|
readonly tax: number;
|
|
19057
19140
|
readonly duty: number;
|
|
19141
|
+
readonly total: number;
|
|
19142
|
+
}
|
|
19143
|
+
interface FulfillmentTriggerProof {
|
|
19144
|
+
readonly discriminator: 'by_proof';
|
|
19145
|
+
readonly proof: io.flow.internal.v0.unions.FulfillmentProof;
|
|
19146
|
+
}
|
|
19147
|
+
interface FulfillmentTriggerTime {
|
|
19148
|
+
readonly discriminator: 'by_time';
|
|
19149
|
+
readonly placeholder?: string;
|
|
19058
19150
|
}
|
|
19059
19151
|
interface FxFee {
|
|
19060
19152
|
readonly base: io.flow.common.v0.models.Money;
|
|
@@ -20373,10 +20465,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20373
20465
|
readonly materials: Record<string, string[]>;
|
|
20374
20466
|
readonly constructions: Record<string, string[]>;
|
|
20375
20467
|
}
|
|
20376
|
-
interface LabelBase {
|
|
20377
|
-
readonly amount: number;
|
|
20378
|
-
readonly weight: number;
|
|
20379
|
-
}
|
|
20380
20468
|
interface LabelCancellationError {
|
|
20381
20469
|
readonly code: io.flow.internal.v0.enums.LabelCancellationErrorCode;
|
|
20382
20470
|
readonly messages: string[];
|
|
@@ -20404,6 +20492,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20404
20492
|
}
|
|
20405
20493
|
interface LabelDestination {
|
|
20406
20494
|
readonly country: string;
|
|
20495
|
+
readonly postal?: string;
|
|
20407
20496
|
}
|
|
20408
20497
|
interface LabelGenerationAddressFailureStatusUpdateForm {
|
|
20409
20498
|
readonly status: io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
|
|
@@ -20444,13 +20533,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20444
20533
|
}
|
|
20445
20534
|
interface LabelInvoiceRequest {
|
|
20446
20535
|
readonly id: string;
|
|
20447
|
-
readonly label: io.flow.internal.v0.models.
|
|
20448
|
-
readonly units: io.flow.
|
|
20449
|
-
readonly base: io.flow.
|
|
20450
|
-
readonly surcharges: io.flow.
|
|
20536
|
+
readonly label: io.flow.internal.v0.models.TrueupLabelSummary;
|
|
20537
|
+
readonly units: io.flow.trueup.v0.models.LabelUnits;
|
|
20538
|
+
readonly base: io.flow.trueup.v0.models.LabelBase;
|
|
20539
|
+
readonly surcharges: io.flow.trueup.v0.models.LabelSurcharge[];
|
|
20451
20540
|
readonly total: number;
|
|
20452
20541
|
readonly destination: io.flow.internal.v0.models.LabelDestination;
|
|
20453
20542
|
readonly metadata: io.flow.internal.v0.models.LabelMetadata;
|
|
20543
|
+
readonly created_at: string;
|
|
20454
20544
|
}
|
|
20455
20545
|
interface LabelInvoiceRequestDeleted {
|
|
20456
20546
|
readonly discriminator: 'label_invoice_request_deleted';
|
|
@@ -20468,7 +20558,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20468
20558
|
}
|
|
20469
20559
|
interface LabelMetadata {
|
|
20470
20560
|
readonly ratecard: io.flow.internal.v0.models.MetadataRatecard;
|
|
20471
|
-
readonly
|
|
20561
|
+
readonly dead?: io.flow.trueup.v0.models.DeadWeight;
|
|
20562
|
+
readonly dimensional?: io.flow.trueup.v0.models.DimensionalWeight;
|
|
20472
20563
|
}
|
|
20473
20564
|
interface LabelRequestError {
|
|
20474
20565
|
readonly id: string;
|
|
@@ -20510,23 +20601,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20510
20601
|
readonly carrier_tracking_number_url?: string;
|
|
20511
20602
|
readonly service?: io.flow.reference.v0.models.CarrierService;
|
|
20512
20603
|
}
|
|
20513
|
-
interface LabelSurcharge {
|
|
20514
|
-
readonly amount: number;
|
|
20515
|
-
readonly type: io.flow.internal.v0.enums.TrueUpSurchargeType;
|
|
20516
|
-
readonly detail: io.flow.internal.v0.unions.LabelSurchargeDetail;
|
|
20517
|
-
}
|
|
20518
|
-
interface LabelSurchargeDetailFlat {
|
|
20519
|
-
readonly discriminator: 'flat';
|
|
20520
|
-
readonly placeholder?: string;
|
|
20521
|
-
}
|
|
20522
|
-
interface LabelSurchargeDetailPerWeightUnit {
|
|
20523
|
-
readonly discriminator: 'per_weight_unit';
|
|
20524
|
-
readonly fee: number;
|
|
20525
|
-
}
|
|
20526
|
-
interface LabelSurchargeDetailPercentage {
|
|
20527
|
-
readonly discriminator: 'percentage';
|
|
20528
|
-
readonly percentage: number;
|
|
20529
|
-
}
|
|
20530
20604
|
interface LabelSurchargeForm {
|
|
20531
20605
|
readonly fuel?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
20532
20606
|
readonly remote_area?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
@@ -20591,11 +20665,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20591
20665
|
readonly timestamp: string;
|
|
20592
20666
|
readonly label_transaction: io.flow.internal.v0.models.LabelTransaction;
|
|
20593
20667
|
}
|
|
20594
|
-
interface LabelUnits {
|
|
20595
|
-
readonly currency: string;
|
|
20596
|
-
readonly weight: io.flow.units.v0.enums.UnitOfWeight;
|
|
20597
|
-
readonly length: io.flow.units.v0.enums.UnitOfLength;
|
|
20598
|
-
}
|
|
20599
20668
|
interface LabeledContent {
|
|
20600
20669
|
readonly label: io.flow.internal.v0.models.ContentLabel;
|
|
20601
20670
|
readonly contents: io.flow.internal.v0.unions.ContentItem[];
|
|
@@ -20936,6 +21005,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20936
21005
|
interface ManualTransaction {
|
|
20937
21006
|
readonly discriminator: 'manual_transaction';
|
|
20938
21007
|
readonly category?: io.flow.internal.v0.enums.ManualTransactionCategory;
|
|
21008
|
+
readonly original_transaction?: io.flow.internal.v0.models.TransactionReference;
|
|
20939
21009
|
readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
20940
21010
|
readonly attributes?: Record<string, string>;
|
|
20941
21011
|
readonly id: string;
|
|
@@ -20954,6 +21024,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20954
21024
|
readonly category?: io.flow.internal.v0.enums.ManualTransactionCategory;
|
|
20955
21025
|
readonly posted_at?: string;
|
|
20956
21026
|
readonly order?: io.flow.internal.v0.models.ManualTransactionFormOrder;
|
|
21027
|
+
readonly original_transaction_id?: string;
|
|
20957
21028
|
readonly attributes?: Record<string, string>;
|
|
20958
21029
|
}
|
|
20959
21030
|
interface ManualTransactionFormOrder {
|
|
@@ -21182,6 +21253,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21182
21253
|
readonly shopify_order: io.flow.shopify.markets.v0.models.ShopifyOrder;
|
|
21183
21254
|
readonly flow_authorization?: io.flow.payment.v0.unions.Authorization;
|
|
21184
21255
|
}
|
|
21256
|
+
interface Merchant {
|
|
21257
|
+
readonly id: string;
|
|
21258
|
+
readonly account: io.flow.internal.v0.models.AccountReference;
|
|
21259
|
+
}
|
|
21185
21260
|
interface MerchantApplicationSummaries {
|
|
21186
21261
|
readonly summaries: io.flow.internal.v0.models.MerchantApplicationSummary[];
|
|
21187
21262
|
readonly total: number;
|
|
@@ -21190,6 +21265,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21190
21265
|
readonly merchant_application: io.flow.merchant.onboarding.v0.unions.MerchantApplication;
|
|
21191
21266
|
readonly organization_reference: io.flow.common.v0.models.Organization;
|
|
21192
21267
|
}
|
|
21268
|
+
interface MerchantDeleted {
|
|
21269
|
+
readonly discriminator: 'merchant_deleted';
|
|
21270
|
+
readonly event_id: string;
|
|
21271
|
+
readonly timestamp: string;
|
|
21272
|
+
readonly id: string;
|
|
21273
|
+
}
|
|
21193
21274
|
interface MerchantFees {
|
|
21194
21275
|
readonly duty_guarantee: number;
|
|
21195
21276
|
readonly mor: number;
|
|
@@ -21245,6 +21326,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21245
21326
|
interface MerchantSearchResult {
|
|
21246
21327
|
readonly organization_id: string;
|
|
21247
21328
|
readonly shop_name?: string;
|
|
21329
|
+
readonly shop_id?: string;
|
|
21248
21330
|
readonly legal_name: string;
|
|
21249
21331
|
readonly onboarding_current_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
21250
21332
|
}
|
|
@@ -21252,14 +21334,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21252
21334
|
readonly fees: io.flow.internal.v0.models.ShopperFees;
|
|
21253
21335
|
readonly tax: number;
|
|
21254
21336
|
readonly duty: number;
|
|
21255
|
-
readonly freight: number;
|
|
21256
21337
|
readonly total: number;
|
|
21257
21338
|
}
|
|
21258
21339
|
interface MerchantSummary {
|
|
21259
21340
|
readonly subsidies: io.flow.internal.v0.models.MerchantSubsidies;
|
|
21260
21341
|
readonly fees: io.flow.internal.v0.models.MerchantFees;
|
|
21261
21342
|
readonly transactions: io.flow.internal.v0.models.MerchantTransactions;
|
|
21262
|
-
readonly
|
|
21343
|
+
readonly total: number;
|
|
21263
21344
|
}
|
|
21264
21345
|
interface MerchantTransactions {
|
|
21265
21346
|
readonly adjustment: number;
|
|
@@ -21269,6 +21350,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21269
21350
|
readonly freight: number;
|
|
21270
21351
|
readonly total: number;
|
|
21271
21352
|
}
|
|
21353
|
+
interface MerchantUpserted {
|
|
21354
|
+
readonly discriminator: 'merchant_upserted';
|
|
21355
|
+
readonly event_id: string;
|
|
21356
|
+
readonly timestamp: string;
|
|
21357
|
+
readonly merchant: io.flow.internal.v0.models.Merchant;
|
|
21358
|
+
}
|
|
21272
21359
|
interface MetadataProposition {
|
|
21273
21360
|
readonly shipping_method: io.flow.internal.v0.models.ShippingMethodReference;
|
|
21274
21361
|
readonly name: string;
|
|
@@ -21277,10 +21364,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21277
21364
|
readonly id: string;
|
|
21278
21365
|
readonly proposition: io.flow.internal.v0.models.MetadataProposition;
|
|
21279
21366
|
}
|
|
21280
|
-
interface MetadataWeights {
|
|
21281
|
-
readonly dead?: io.flow.internal.v0.models.WeightsDead;
|
|
21282
|
-
readonly dimensional?: io.flow.internal.v0.models.WeightsDimensional;
|
|
21283
|
-
}
|
|
21284
21367
|
interface NextBillingStatement {
|
|
21285
21368
|
readonly date: string;
|
|
21286
21369
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -21764,6 +21847,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21764
21847
|
readonly deactivate_at: string;
|
|
21765
21848
|
readonly created_at: string;
|
|
21766
21849
|
readonly reason?: string;
|
|
21850
|
+
readonly processed_at?: string;
|
|
21767
21851
|
}
|
|
21768
21852
|
interface OrganizationDeactivationDeleted {
|
|
21769
21853
|
readonly discriminator: 'organization_deactivation_deleted';
|
|
@@ -22576,6 +22660,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22576
22660
|
readonly discriminator: 'order_cancellation';
|
|
22577
22661
|
readonly order_cancellation_id: string;
|
|
22578
22662
|
}
|
|
22663
|
+
interface ProofOfPostingOrderCombinedShipment {
|
|
22664
|
+
readonly discriminator: 'order_combined_shipment';
|
|
22665
|
+
readonly order_combined_shipment_id: string;
|
|
22666
|
+
}
|
|
22579
22667
|
interface ProofOfPostingShippingNotification {
|
|
22580
22668
|
readonly discriminator: 'shipping_notification';
|
|
22581
22669
|
readonly shipping_notification_id: string;
|
|
@@ -22981,19 +23069,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22981
23069
|
readonly number: string;
|
|
22982
23070
|
}
|
|
22983
23071
|
interface Report {
|
|
22984
|
-
readonly
|
|
23072
|
+
readonly id: string;
|
|
22985
23073
|
readonly status: io.flow.internal.v0.enums.ReportStatus;
|
|
23074
|
+
readonly type: io.flow.internal.v0.enums.ReportType;
|
|
22986
23075
|
readonly from: string;
|
|
22987
23076
|
readonly to: string;
|
|
22988
|
-
readonly
|
|
22989
|
-
readonly
|
|
22990
|
-
readonly refunds_url?: string;
|
|
23077
|
+
readonly url?: string;
|
|
23078
|
+
readonly processed_at?: string;
|
|
22991
23079
|
}
|
|
22992
23080
|
interface ReportForm {
|
|
22993
|
-
readonly key?: string;
|
|
22994
23081
|
readonly from: string;
|
|
22995
23082
|
readonly to: string;
|
|
22996
|
-
readonly
|
|
23083
|
+
readonly type: io.flow.internal.v0.enums.ReportType;
|
|
22997
23084
|
}
|
|
22998
23085
|
interface ReportRuleDecision {
|
|
22999
23086
|
readonly rule_id: string;
|
|
@@ -23005,6 +23092,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23005
23092
|
readonly task_id: string;
|
|
23006
23093
|
}
|
|
23007
23094
|
interface ReportingDetails {
|
|
23095
|
+
readonly accounting_transactions?: any[];
|
|
23096
|
+
readonly fulfillments?: any[];
|
|
23097
|
+
readonly fulfillment_delta?: io.flow.internal.v0.models.DebugFulfillmentDelta;
|
|
23008
23098
|
readonly sales_records?: any[];
|
|
23009
23099
|
readonly refund_records?: any[];
|
|
23010
23100
|
}
|
|
@@ -23074,6 +23164,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23074
23164
|
readonly restriction_item_id: string;
|
|
23075
23165
|
readonly decision: io.flow.internal.v0.enums.RestrictionDecision;
|
|
23076
23166
|
}
|
|
23167
|
+
interface RestrictionItemReviewSummary {
|
|
23168
|
+
readonly rule: io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
23169
|
+
readonly status: io.flow.internal.v0.enums.RestrictionStatus;
|
|
23170
|
+
readonly updated_at: string;
|
|
23171
|
+
}
|
|
23077
23172
|
interface RestrictionKeywordMetadata {
|
|
23078
23173
|
readonly keyword: string;
|
|
23079
23174
|
readonly type: io.flow.internal.v0.enums.KeywordType;
|
|
@@ -23142,6 +23237,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23142
23237
|
readonly name: string;
|
|
23143
23238
|
readonly price: io.flow.common.v0.models.Price;
|
|
23144
23239
|
readonly item_numbers: string[];
|
|
23240
|
+
readonly primary_item_number?: string;
|
|
23145
23241
|
readonly description: string;
|
|
23146
23242
|
readonly categories: string[];
|
|
23147
23243
|
readonly images: io.flow.catalog.v0.models.Image[];
|
|
@@ -23163,6 +23259,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23163
23259
|
readonly categories?: string[];
|
|
23164
23260
|
readonly product_name_query?: string;
|
|
23165
23261
|
}
|
|
23262
|
+
interface RestrictionProductSummary {
|
|
23263
|
+
readonly name: string;
|
|
23264
|
+
readonly restrictions: io.flow.internal.v0.models.RestrictionItemReviewSummary[];
|
|
23265
|
+
}
|
|
23166
23266
|
interface RestrictionRule {
|
|
23167
23267
|
readonly id: string;
|
|
23168
23268
|
readonly name: string;
|
|
@@ -23551,6 +23651,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23551
23651
|
readonly internal: io.flow.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
|
|
23552
23652
|
readonly discrepancy_data: io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData;
|
|
23553
23653
|
}
|
|
23654
|
+
interface ShopifyMarketsQueuedRecord {
|
|
23655
|
+
readonly id: string;
|
|
23656
|
+
readonly type: string;
|
|
23657
|
+
readonly type_id: string;
|
|
23658
|
+
readonly organization_id: string;
|
|
23659
|
+
readonly environment?: string;
|
|
23660
|
+
readonly num_attempts: number;
|
|
23661
|
+
readonly next_attempt_at: string;
|
|
23662
|
+
readonly errors?: string[];
|
|
23663
|
+
readonly stacktrace?: string;
|
|
23664
|
+
}
|
|
23554
23665
|
interface ShopifyMarketsShop {
|
|
23555
23666
|
readonly id: string;
|
|
23556
23667
|
readonly shopify_shop_id?: string;
|
|
@@ -23901,10 +24012,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23901
24012
|
readonly tax: number;
|
|
23902
24013
|
readonly duty: number;
|
|
23903
24014
|
readonly subsidies: io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
|
|
24015
|
+
readonly total: number;
|
|
24016
|
+
}
|
|
24017
|
+
interface ShopperLine {
|
|
24018
|
+
readonly item: io.flow.internal.v0.models.ItemSummary;
|
|
24019
|
+
readonly quantity: number;
|
|
24020
|
+
readonly unit_price: number;
|
|
24021
|
+
readonly price: number;
|
|
24022
|
+
readonly discount: number;
|
|
24023
|
+
readonly tax: number;
|
|
24024
|
+
readonly duty: number;
|
|
24025
|
+
readonly subsidies: io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
|
|
24026
|
+
readonly total: number;
|
|
24027
|
+
}
|
|
24028
|
+
interface ShopperLines {
|
|
24029
|
+
readonly lines: io.flow.internal.v0.models.ShopperLine[];
|
|
24030
|
+
readonly total: number;
|
|
23904
24031
|
}
|
|
23905
24032
|
interface ShopperSummary {
|
|
24033
|
+
readonly fulfilled: io.flow.internal.v0.models.ShopperLines;
|
|
23906
24034
|
readonly fees: io.flow.internal.v0.models.ShopperFees;
|
|
23907
24035
|
readonly freight: io.flow.internal.v0.models.ShopperFreight;
|
|
24036
|
+
readonly order_discount: number;
|
|
24037
|
+
readonly total: number;
|
|
23908
24038
|
}
|
|
23909
24039
|
interface SimpleAccountReference {
|
|
23910
24040
|
readonly id: string;
|
|
@@ -24664,8 +24794,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24664
24794
|
readonly id: string;
|
|
24665
24795
|
readonly description: string;
|
|
24666
24796
|
}
|
|
24667
|
-
interface
|
|
24797
|
+
interface TrueupLabelSummary {
|
|
24668
24798
|
readonly id: string;
|
|
24799
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
24800
|
+
readonly carrier_id: string;
|
|
24669
24801
|
readonly carrier_service_id: string;
|
|
24670
24802
|
readonly carrier_tracking_number: string;
|
|
24671
24803
|
readonly flow_tracking_number: string;
|
|
@@ -24730,36 +24862,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24730
24862
|
readonly account_number: string;
|
|
24731
24863
|
readonly direct_feed_location_code?: string;
|
|
24732
24864
|
}
|
|
24733
|
-
interface UpsLicense {
|
|
24734
|
-
readonly access_license_number: string;
|
|
24735
|
-
readonly address: io.flow.common.v0.models.BillingAddress;
|
|
24736
|
-
readonly contact: io.flow.common.v0.models.Contact;
|
|
24737
|
-
readonly secondary_contact?: io.flow.common.v0.models.Contact;
|
|
24738
|
-
readonly company_url: string;
|
|
24739
|
-
}
|
|
24740
|
-
interface UpsLicenseForm {
|
|
24741
|
-
readonly address: io.flow.common.v0.models.BillingAddress;
|
|
24742
|
-
readonly contact: io.flow.common.v0.models.Contact;
|
|
24743
|
-
readonly secondary_contact?: io.flow.common.v0.models.Contact;
|
|
24744
|
-
readonly developer_license_number: string;
|
|
24745
|
-
readonly company_url: string;
|
|
24746
|
-
}
|
|
24747
|
-
interface UpsRegistration {
|
|
24748
|
-
readonly username: string;
|
|
24749
|
-
readonly address: io.flow.common.v0.models.BillingAddress;
|
|
24750
|
-
readonly contact: io.flow.common.v0.models.Contact;
|
|
24751
|
-
readonly suggest_username_indicator?: string;
|
|
24752
|
-
readonly shipper_account_status?: string;
|
|
24753
|
-
}
|
|
24754
|
-
interface UpsRegistrationForm {
|
|
24755
|
-
readonly username: string;
|
|
24756
|
-
readonly password: string;
|
|
24757
|
-
readonly access_license_number: string;
|
|
24758
|
-
readonly account_number: string;
|
|
24759
|
-
readonly address: io.flow.common.v0.models.BillingAddress;
|
|
24760
|
-
readonly contact: io.flow.common.v0.models.Contact;
|
|
24761
|
-
readonly shipper_account?: io.flow.internal.v0.models.ShipperAccountInfoForm;
|
|
24762
|
-
}
|
|
24763
24865
|
interface UsdSpotRate {
|
|
24764
24866
|
readonly id: string;
|
|
24765
24867
|
readonly effective_at: string;
|
|
@@ -24905,15 +25007,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24905
25007
|
interface Webhook {
|
|
24906
25008
|
readonly placeholder?: any;
|
|
24907
25009
|
}
|
|
24908
|
-
interface WeightsDead {
|
|
24909
|
-
readonly weight: number;
|
|
24910
|
-
}
|
|
24911
|
-
interface WeightsDimensional {
|
|
24912
|
-
readonly weight: number;
|
|
24913
|
-
readonly length: number;
|
|
24914
|
-
readonly width: number;
|
|
24915
|
-
readonly height: number;
|
|
24916
|
-
}
|
|
24917
25010
|
interface WholeOrderActionForm {
|
|
24918
25011
|
readonly discriminator: 'whole_order_action_form';
|
|
24919
25012
|
readonly action: io.flow.internal.v0.enums.OrderAction;
|
|
@@ -25021,7 +25114,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25021
25114
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
25022
25115
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
25023
25116
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
25024
|
-
type Event = io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentDeleted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.SalesRecordUpserted | io.flow.internal.v0.models.SalesRecordDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
25117
|
+
type Event = io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentDeleted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.SalesRecordUpserted | io.flow.internal.v0.models.SalesRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
25025
25118
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
25026
25119
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
25027
25120
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -25032,7 +25125,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25032
25125
|
type FraudProviderConfiguration = io.flow.internal.v0.models.FraudProviderConfigurationRiskified;
|
|
25033
25126
|
type FraudProviderConfigurationForm = io.flow.internal.v0.models.FraudProviderConfigurationFormRiskified;
|
|
25034
25127
|
type FuelSurchargeServiceFeePutForm = io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm | io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm;
|
|
25035
|
-
type FulfillmentProof = io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference | io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference | io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference;
|
|
25128
|
+
type FulfillmentProof = io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference | io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference | io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference | io.flow.internal.v0.models.FulfillmentProofOrderCombinedShipmentReference;
|
|
25129
|
+
type FulfillmentTrigger = io.flow.internal.v0.models.FulfillmentTriggerProof | io.flow.internal.v0.models.FulfillmentTriggerTime;
|
|
25036
25130
|
type GenerateLoad = io.flow.internal.v0.models.GenerateLoadSingleOrg | io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
25037
25131
|
type GlobalSearchResult = io.flow.internal.v0.models.SearchExperienceSummary | io.flow.internal.v0.models.SearchExperimentSummary | io.flow.internal.v0.models.SearchOrderSummary | io.flow.internal.v0.models.SearchItemSummary;
|
|
25038
25132
|
type HeapEvent = io.flow.internal.v0.models.HeapAddressPredictionClick | io.flow.internal.v0.models.HeapAfterpayPopupOpened | io.flow.internal.v0.models.HeapAfterpayPopupClosed | io.flow.internal.v0.models.HeapAuthorizationDeclined | io.flow.internal.v0.models.HeapAuthorizationError | io.flow.internal.v0.models.HeapCardError | io.flow.internal.v0.models.HeapCheckoutEvent | io.flow.internal.v0.models.HeapCheckoutProgress | io.flow.internal.v0.models.HeapCheckoutStarted | io.flow.internal.v0.models.HeapContinueClick | io.flow.internal.v0.models.HeapDeliveryFormDataReceived | io.flow.internal.v0.models.HeapDeliveryFormDataTimeout | io.flow.internal.v0.models.HeapDeliveryOptionCount | io.flow.internal.v0.models.HeapDeliveryOptionSelected | io.flow.internal.v0.models.HeapExitCheckout | io.flow.internal.v0.models.HeapFieldBlur | io.flow.internal.v0.models.HeapFieldErrorTooltipShown | io.flow.internal.v0.models.HeapFieldFocus | io.flow.internal.v0.models.HeapFieldValidation | io.flow.internal.v0.models.HeapGiftCardApply | io.flow.internal.v0.models.HeapGiftCardOpen | io.flow.internal.v0.models.HeapGiftCardWithPin | io.flow.internal.v0.models.HeapOptinPromptDeselected | io.flow.internal.v0.models.HeapOptinPromptSelected | io.flow.internal.v0.models.HeapOrderSummaryClose | io.flow.internal.v0.models.HeapOrderSummaryOpen | io.flow.internal.v0.models.HeapPayClick | io.flow.internal.v0.models.HeapPaymentFormDataReceived | io.flow.internal.v0.models.HeapPaymentFormDataTimeout | io.flow.internal.v0.models.HeapPaymentMethodSelected | io.flow.internal.v0.models.HeapPerformance | io.flow.internal.v0.models.HeapPromoCodeApply | io.flow.internal.v0.models.HeapPromoCodeError | io.flow.internal.v0.models.HeapPromoCodeOpen | io.flow.internal.v0.models.HeapPurchase | io.flow.internal.v0.models.HeapRageClick | io.flow.internal.v0.models.HeapScriptError | io.flow.internal.v0.models.HeapSequencedError | io.flow.internal.v0.models.HeapSequencedTiming | io.flow.internal.v0.models.HeapSplitLoaded | io.flow.internal.v0.models.HeapSplitTimeout | io.flow.internal.v0.models.HeapStartCheckout | io.flow.internal.v0.models.HeapStreamError | io.flow.internal.v0.models.HeapSubmitError | io.flow.internal.v0.models.HeapWebsocketClose | io.flow.internal.v0.models.HeapWebsocketConnectionLost | io.flow.internal.v0.models.HeapWebsocketError | io.flow.internal.v0.models.HeapWebsocketGiveUp | io.flow.internal.v0.models.HeapWebsocketOpen | io.flow.internal.v0.models.HeapWebsocketRequest | io.flow.internal.v0.models.HeapWebsocketResponse | io.flow.internal.v0.models.HeapWebsocketRetry;
|
|
@@ -25042,7 +25136,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25042
25136
|
type InternalHarmonizationStatistic = io.flow.internal.v0.models.TimeToClassify | io.flow.internal.v0.models.TimeToClassifyAggregated | io.flow.internal.v0.models.RateSourceSummary | io.flow.internal.v0.models.RateFreshnessSummary;
|
|
25043
25137
|
type InternalRefundForm = io.flow.internal.v0.models.AdyenRefundForm;
|
|
25044
25138
|
type InternalTransactionDetails = io.flow.internal.v0.models.InternalTransactionDetailsCard;
|
|
25045
|
-
type LabelSurchargeDetail = io.flow.internal.v0.models.LabelSurchargeDetailFlat | io.flow.internal.v0.models.LabelSurchargeDetailPercentage | io.flow.internal.v0.models.LabelSurchargeDetailPerWeightUnit;
|
|
25046
25139
|
type LocalizableContent = io.flow.internal.v0.models.LocalizableContentReference | io.flow.internal.v0.models.Localization;
|
|
25047
25140
|
type MarketingGatewayChannelDetails = io.flow.internal.v0.models.MarketingGatewayGoogleChannelDetails | io.flow.internal.v0.models.MarketingGatewayFacebookChannelDetails | io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails;
|
|
25048
25141
|
type MarketingGatewayDistributionChannel = io.flow.internal.v0.models.MarketingGatewayDistributionChannelGoogle | io.flow.internal.v0.models.MarketingGatewayDistributionChannelFacebook;
|
|
@@ -25062,7 +25155,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25062
25155
|
type ProcessorMerchantForm = io.flow.internal.v0.models.StripeMerchantForm;
|
|
25063
25156
|
type ProcessorMerchantModificationForm = io.flow.internal.v0.models.StripeMerchantModificationForm | io.flow.internal.v0.models.AdyenMerchantModificationForm | io.flow.internal.v0.models.FiservMerchantModificationForm | io.flow.internal.v0.models.PaypalMerchantModificationForm;
|
|
25064
25157
|
type ProcessorMerchantPutForm = io.flow.internal.v0.models.StripeMerchantPutForm | io.flow.internal.v0.models.AdyenMerchantPutForm | io.flow.internal.v0.models.FiservMerchantPutForm | io.flow.internal.v0.models.PaypalMerchantPutForm;
|
|
25065
|
-
type ProofOfPosting = io.flow.internal.v0.models.ProofOfPostingFulfilled | io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.internal.v0.models.ProofOfPostingShippingNotification | io.flow.internal.v0.models.ProofOfPostingOrderCancellation;
|
|
25158
|
+
type ProofOfPosting = io.flow.internal.v0.models.ProofOfPostingFulfilled | io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.internal.v0.models.ProofOfPostingShippingNotification | io.flow.internal.v0.models.ProofOfPostingOrderCancellation | io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment;
|
|
25066
25159
|
type RoutingEntity = io.flow.internal.v0.models.RoutingProcessor | io.flow.internal.v0.models.RoutingAccount | io.flow.internal.v0.models.RoutingMerchant;
|
|
25067
25160
|
type ShopifyMonitoringOrderMonitorType = io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal | io.flow.internal.v0.models.ShopifyMonitoringFulfillmentMissingDetails;
|
|
25068
25161
|
type ShopifyPromotionOfferDiscount = io.flow.internal.v0.models.ShopifyPromotionFixedAmount | io.flow.internal.v0.models.ShopifyPromotionPercent;
|
|
@@ -25097,6 +25190,7 @@ export declare type AccountProcessingRates = io.flow.internal.v0.models.AccountP
|
|
|
25097
25190
|
export declare type AccountProcessingRatesDeleted = io.flow.internal.v0.models.AccountProcessingRatesDeleted;
|
|
25098
25191
|
export declare type AccountProcessingRatesForm = io.flow.internal.v0.models.AccountProcessingRatesForm;
|
|
25099
25192
|
export declare type AccountProcessingRatesUpserted = io.flow.internal.v0.models.AccountProcessingRatesUpserted;
|
|
25193
|
+
export declare type AccountReference = io.flow.internal.v0.models.AccountReference;
|
|
25100
25194
|
export declare type AccountSettingLabelFees = io.flow.internal.v0.models.AccountSettingLabelFees;
|
|
25101
25195
|
export declare type AccountSettingLiabilitiesMethod = io.flow.internal.v0.enums.AccountSettingLiabilitiesMethod;
|
|
25102
25196
|
export declare type AccountSettings = io.flow.internal.v0.models.AccountSettings;
|
|
@@ -25357,6 +25451,7 @@ export declare type ChannelForm = io.flow.internal.v0.models.ChannelForm;
|
|
|
25357
25451
|
export declare type ChannelMembership = io.flow.internal.v0.models.ChannelMembership;
|
|
25358
25452
|
export declare type ChannelMembershipForm = io.flow.internal.v0.models.ChannelMembershipForm;
|
|
25359
25453
|
export declare type ChannelMembershipPutForm = io.flow.internal.v0.models.ChannelMembershipPutForm;
|
|
25454
|
+
export declare type ChannelOrder = io.flow.internal.v0.models.ChannelOrder;
|
|
25360
25455
|
export declare type ChannelOrderAcceptance = io.flow.internal.v0.models.ChannelOrderAcceptance;
|
|
25361
25456
|
export declare type ChannelOrderAcceptanceDeleted = io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted;
|
|
25362
25457
|
export declare type ChannelOrderAcceptanceErrorAction = io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction;
|
|
@@ -25366,6 +25461,11 @@ export declare type ChannelOrderAcceptanceReason = io.flow.internal.v0.models.Ch
|
|
|
25366
25461
|
export declare type ChannelOrderAcceptanceRejectionReason = io.flow.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
25367
25462
|
export declare type ChannelOrderAcceptanceStatus = io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
25368
25463
|
export declare type ChannelOrderAcceptanceUpserted = io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted;
|
|
25464
|
+
export declare type ChannelOrderFulfillmentStatusCode = io.flow.internal.v0.enums.ChannelOrderFulfillmentStatusCode;
|
|
25465
|
+
export declare type ChannelOrderSummary = io.flow.internal.v0.models.ChannelOrderSummary;
|
|
25466
|
+
export declare type ChannelOrderSummaryDeleted = io.flow.internal.v0.models.ChannelOrderSummaryDeleted;
|
|
25467
|
+
export declare type ChannelOrderSummaryFulfillmentDetails = io.flow.internal.v0.models.ChannelOrderSummaryFulfillmentDetails;
|
|
25468
|
+
export declare type ChannelOrderSummaryUpserted = io.flow.internal.v0.models.ChannelOrderSummaryUpserted;
|
|
25369
25469
|
export declare type ChannelOrganizationShopify = io.flow.internal.v0.models.ChannelOrganizationShopify;
|
|
25370
25470
|
export declare type ChannelOrganizationShopifyForm = io.flow.internal.v0.models.ChannelOrganizationShopifyForm;
|
|
25371
25471
|
export declare type ChannelOrganizationShopifyPostForm = io.flow.internal.v0.models.ChannelOrganizationShopifyPostForm;
|
|
@@ -25994,7 +26094,10 @@ export declare type DailyExperimentResultsUpserted = io.flow.internal.v0.models.
|
|
|
25994
26094
|
export declare type DailyValue = io.flow.internal.v0.models.DailyValue;
|
|
25995
26095
|
export declare type DailyValueDeleted = io.flow.internal.v0.models.DailyValueDeleted;
|
|
25996
26096
|
export declare type DailyValueUpserted = io.flow.internal.v0.models.DailyValueUpserted;
|
|
26097
|
+
export declare type DebugAccountingTransaction = io.flow.internal.v0.models.DebugAccountingTransaction;
|
|
26098
|
+
export declare type DebugAccountingTransactionType = io.flow.internal.v0.enums.DebugAccountingTransactionType;
|
|
25997
26099
|
export declare type DebugDetails = io.flow.internal.v0.models.DebugDetails;
|
|
26100
|
+
export declare type DebugFulfillmentDelta = io.flow.internal.v0.models.DebugFulfillmentDelta;
|
|
25998
26101
|
export declare type DebugLabel = io.flow.internal.v0.models.DebugLabel;
|
|
25999
26102
|
export declare type DebugLabelTransactionSummary = io.flow.internal.v0.models.DebugLabelTransactionSummary;
|
|
26000
26103
|
export declare type DebugOrder = io.flow.internal.v0.models.DebugOrder;
|
|
@@ -26263,16 +26366,19 @@ export declare type FulfillmentActionForm = io.flow.internal.v0.models.Fulfillme
|
|
|
26263
26366
|
export declare type FulfillmentBusiness = io.flow.internal.v0.models.FulfillmentBusiness;
|
|
26264
26367
|
export declare type FulfillmentCancel = io.flow.internal.v0.models.FulfillmentCancel;
|
|
26265
26368
|
export declare type FulfillmentInternalExperienceReference = io.flow.internal.v0.models.FulfillmentInternalExperienceReference;
|
|
26266
|
-
export declare type FulfillmentLine = io.flow.internal.v0.models.FulfillmentLine;
|
|
26267
26369
|
export declare type FulfillmentOrigin = io.flow.internal.v0.models.FulfillmentOrigin;
|
|
26268
26370
|
export declare type FulfillmentProof = io.flow.internal.v0.unions.FulfillmentProof;
|
|
26269
26371
|
export declare type FulfillmentProofExternalFulfillmentProofReference = io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference;
|
|
26270
26372
|
export declare type FulfillmentProofLabelTrackingReference = io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference;
|
|
26373
|
+
export declare type FulfillmentProofOrderCombinedShipmentReference = io.flow.internal.v0.models.FulfillmentProofOrderCombinedShipmentReference;
|
|
26271
26374
|
export declare type FulfillmentProofShippingNotificationReference = io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference;
|
|
26272
26375
|
export declare type FulfillmentReference = io.flow.internal.v0.models.FulfillmentReference;
|
|
26273
26376
|
export declare type FulfillmentShipmentTracking = io.flow.internal.v0.models.FulfillmentShipmentTracking;
|
|
26274
26377
|
export declare type FulfillmentSnapshot = io.flow.internal.v0.models.FulfillmentSnapshot;
|
|
26275
26378
|
export declare type FulfillmentSubsidyBreakdown = io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
|
|
26379
|
+
export declare type FulfillmentTrigger = io.flow.internal.v0.unions.FulfillmentTrigger;
|
|
26380
|
+
export declare type FulfillmentTriggerProof = io.flow.internal.v0.models.FulfillmentTriggerProof;
|
|
26381
|
+
export declare type FulfillmentTriggerTime = io.flow.internal.v0.models.FulfillmentTriggerTime;
|
|
26276
26382
|
export declare type FxFee = io.flow.internal.v0.models.FxFee;
|
|
26277
26383
|
export declare type FxRevenueRecognition = io.flow.internal.v0.models.FxRevenueRecognition;
|
|
26278
26384
|
export declare type FxRevenueRecognitionAccount = io.flow.internal.v0.models.FxRevenueRecognitionAccount;
|
|
@@ -26459,7 +26565,6 @@ export declare type LabProjectSettingsForm = io.flow.internal.v0.models.LabProje
|
|
|
26459
26565
|
export declare type LabProjectSettingsFormAcceptance = io.flow.internal.v0.models.LabProjectSettingsFormAcceptance;
|
|
26460
26566
|
export declare type LabelAliases = io.flow.internal.v0.models.LabelAliases;
|
|
26461
26567
|
export declare type LabelAssociation = io.flow.internal.v0.models.LabelAssociation;
|
|
26462
|
-
export declare type LabelBase = io.flow.internal.v0.models.LabelBase;
|
|
26463
26568
|
export declare type LabelBillingStrategy = io.flow.internal.v0.enums.LabelBillingStrategy;
|
|
26464
26569
|
export declare type LabelCancellationError = io.flow.internal.v0.models.LabelCancellationError;
|
|
26465
26570
|
export declare type LabelCancellationErrorCode = io.flow.internal.v0.enums.LabelCancellationErrorCode;
|
|
@@ -26484,11 +26589,6 @@ export declare type LabelRequestErrorDeleted = io.flow.internal.v0.models.LabelR
|
|
|
26484
26589
|
export declare type LabelRequestErrorHandlingResponsibility = io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
26485
26590
|
export declare type LabelRequestErrorUpserted = io.flow.internal.v0.models.LabelRequestErrorUpserted;
|
|
26486
26591
|
export declare type LabelSummary = io.flow.internal.v0.models.LabelSummary;
|
|
26487
|
-
export declare type LabelSurcharge = io.flow.internal.v0.models.LabelSurcharge;
|
|
26488
|
-
export declare type LabelSurchargeDetail = io.flow.internal.v0.unions.LabelSurchargeDetail;
|
|
26489
|
-
export declare type LabelSurchargeDetailFlat = io.flow.internal.v0.models.LabelSurchargeDetailFlat;
|
|
26490
|
-
export declare type LabelSurchargeDetailPerWeightUnit = io.flow.internal.v0.models.LabelSurchargeDetailPerWeightUnit;
|
|
26491
|
-
export declare type LabelSurchargeDetailPercentage = io.flow.internal.v0.models.LabelSurchargeDetailPercentage;
|
|
26492
26592
|
export declare type LabelSurchargeForm = io.flow.internal.v0.models.LabelSurchargeForm;
|
|
26493
26593
|
export declare type LabelSurchargeSingleForm = io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
26494
26594
|
export declare type LabelTaxonomy = io.flow.internal.v0.models.LabelTaxonomy;
|
|
@@ -26498,7 +26598,6 @@ export declare type LabelTransaction = io.flow.internal.v0.models.LabelTransacti
|
|
|
26498
26598
|
export declare type LabelTransactionDeleted = io.flow.internal.v0.models.LabelTransactionDeleted;
|
|
26499
26599
|
export declare type LabelTransactionType = io.flow.internal.v0.enums.LabelTransactionType;
|
|
26500
26600
|
export declare type LabelTransactionUpserted = io.flow.internal.v0.models.LabelTransactionUpserted;
|
|
26501
|
-
export declare type LabelUnits = io.flow.internal.v0.models.LabelUnits;
|
|
26502
26601
|
export declare type LabeledContent = io.flow.internal.v0.models.LabeledContent;
|
|
26503
26602
|
export declare type LabelsPrediction = io.flow.internal.v0.models.LabelsPrediction;
|
|
26504
26603
|
export declare type LandedCostItem = io.flow.internal.v0.models.LandedCostItem;
|
|
@@ -26611,8 +26710,10 @@ export declare type MarketingGatewaySchemaSummary = io.flow.internal.v0.models.M
|
|
|
26611
26710
|
export declare type MarketingGatewaySourceSummary = io.flow.internal.v0.unions.MarketingGatewaySourceSummary;
|
|
26612
26711
|
export declare type MarketingGatewaySupportedChannelDetails = io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails;
|
|
26613
26712
|
export declare type MarketsOrder = io.flow.internal.v0.models.MarketsOrder;
|
|
26713
|
+
export declare type Merchant = io.flow.internal.v0.models.Merchant;
|
|
26614
26714
|
export declare type MerchantApplicationSummaries = io.flow.internal.v0.models.MerchantApplicationSummaries;
|
|
26615
26715
|
export declare type MerchantApplicationSummary = io.flow.internal.v0.models.MerchantApplicationSummary;
|
|
26716
|
+
export declare type MerchantDeleted = io.flow.internal.v0.models.MerchantDeleted;
|
|
26616
26717
|
export declare type MerchantFees = io.flow.internal.v0.models.MerchantFees;
|
|
26617
26718
|
export declare type MerchantGuidAssignment = io.flow.internal.v0.models.MerchantGuidAssignment;
|
|
26618
26719
|
export declare type MerchantGuidAssignmentDeleted = io.flow.internal.v0.models.MerchantGuidAssignmentDeleted;
|
|
@@ -26623,9 +26724,9 @@ export declare type MerchantSearchResult = io.flow.internal.v0.models.MerchantSe
|
|
|
26623
26724
|
export declare type MerchantSubsidies = io.flow.internal.v0.models.MerchantSubsidies;
|
|
26624
26725
|
export declare type MerchantSummary = io.flow.internal.v0.models.MerchantSummary;
|
|
26625
26726
|
export declare type MerchantTransactions = io.flow.internal.v0.models.MerchantTransactions;
|
|
26727
|
+
export declare type MerchantUpserted = io.flow.internal.v0.models.MerchantUpserted;
|
|
26626
26728
|
export declare type MetadataProposition = io.flow.internal.v0.models.MetadataProposition;
|
|
26627
26729
|
export declare type MetadataRatecard = io.flow.internal.v0.models.MetadataRatecard;
|
|
26628
|
-
export declare type MetadataWeights = io.flow.internal.v0.models.MetadataWeights;
|
|
26629
26730
|
export declare type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|
|
26630
26731
|
export declare type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
|
|
26631
26732
|
export declare type NextBillingStatement = io.flow.internal.v0.models.NextBillingStatement;
|
|
@@ -26874,6 +26975,7 @@ export declare type ProofOfPosting = io.flow.internal.v0.unions.ProofOfPosting;
|
|
|
26874
26975
|
export declare type ProofOfPostingExternallyFulfilled = io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled;
|
|
26875
26976
|
export declare type ProofOfPostingFulfilled = io.flow.internal.v0.models.ProofOfPostingFulfilled;
|
|
26876
26977
|
export declare type ProofOfPostingOrderCancellation = io.flow.internal.v0.models.ProofOfPostingOrderCancellation;
|
|
26978
|
+
export declare type ProofOfPostingOrderCombinedShipment = io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment;
|
|
26877
26979
|
export declare type ProofOfPostingShippingNotification = io.flow.internal.v0.models.ProofOfPostingShippingNotification;
|
|
26878
26980
|
export declare type QueuedRecord = io.flow.internal.v0.models.QueuedRecord;
|
|
26879
26981
|
export declare type QueuedRecordType = io.flow.internal.v0.enums.QueuedRecordType;
|
|
@@ -26949,6 +27051,7 @@ export declare type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
|
|
|
26949
27051
|
export declare type ReportRuleDecision = io.flow.internal.v0.models.ReportRuleDecision;
|
|
26950
27052
|
export declare type ReportStatus = io.flow.internal.v0.enums.ReportStatus;
|
|
26951
27053
|
export declare type ReportSummary = io.flow.internal.v0.models.ReportSummary;
|
|
27054
|
+
export declare type ReportType = io.flow.internal.v0.enums.ReportType;
|
|
26952
27055
|
export declare type ReportingDetails = io.flow.internal.v0.models.ReportingDetails;
|
|
26953
27056
|
export declare type ReportingScheme = io.flow.internal.v0.enums.ReportingScheme;
|
|
26954
27057
|
export declare type RequeueRequestForm = io.flow.internal.v0.models.RequeueRequestForm;
|
|
@@ -26962,6 +27065,7 @@ export declare type RestrictionItem = io.flow.internal.v0.models.RestrictionItem
|
|
|
26962
27065
|
export declare type RestrictionItemRequestForm = io.flow.internal.v0.models.RestrictionItemRequestForm;
|
|
26963
27066
|
export declare type RestrictionItemReview = io.flow.internal.v0.models.RestrictionItemReview;
|
|
26964
27067
|
export declare type RestrictionItemReviewDecisionForm = io.flow.internal.v0.models.RestrictionItemReviewDecisionForm;
|
|
27068
|
+
export declare type RestrictionItemReviewSummary = io.flow.internal.v0.models.RestrictionItemReviewSummary;
|
|
26965
27069
|
export declare type RestrictionKeywordMetadata = io.flow.internal.v0.models.RestrictionKeywordMetadata;
|
|
26966
27070
|
export declare type RestrictionKeywords = io.flow.internal.v0.models.RestrictionKeywords;
|
|
26967
27071
|
export declare type RestrictionOrganization = io.flow.internal.v0.models.RestrictionOrganization;
|
|
@@ -26973,6 +27077,7 @@ export declare type RestrictionPending = io.flow.internal.v0.models.RestrictionP
|
|
|
26973
27077
|
export declare type RestrictionProduct = io.flow.internal.v0.models.RestrictionProduct;
|
|
26974
27078
|
export declare type RestrictionProductDecisionForm = io.flow.internal.v0.models.RestrictionProductDecisionForm;
|
|
26975
27079
|
export declare type RestrictionProductRequestForm = io.flow.internal.v0.models.RestrictionProductRequestForm;
|
|
27080
|
+
export declare type RestrictionProductSummary = io.flow.internal.v0.models.RestrictionProductSummary;
|
|
26976
27081
|
export declare type RestrictionRule = io.flow.internal.v0.models.RestrictionRule;
|
|
26977
27082
|
export declare type RestrictionRuleDecisionForm = io.flow.internal.v0.models.RestrictionRuleDecisionForm;
|
|
26978
27083
|
export declare type RestrictionRuleForm = io.flow.internal.v0.models.RestrictionRuleForm;
|
|
@@ -27059,6 +27164,7 @@ export declare type ShopifyMarketsOrder = io.flow.internal.v0.models.ShopifyMark
|
|
|
27059
27164
|
export declare type ShopifyMarketsOrderDeleted = io.flow.internal.v0.models.ShopifyMarketsOrderDeleted;
|
|
27060
27165
|
export declare type ShopifyMarketsOrderUpserted = io.flow.internal.v0.models.ShopifyMarketsOrderUpserted;
|
|
27061
27166
|
export declare type ShopifyMarketsOrdersMetrics = io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics;
|
|
27167
|
+
export declare type ShopifyMarketsQueuedRecord = io.flow.internal.v0.models.ShopifyMarketsQueuedRecord;
|
|
27062
27168
|
export declare type ShopifyMarketsQueuedRecordType = io.flow.internal.v0.enums.ShopifyMarketsQueuedRecordType;
|
|
27063
27169
|
export declare type ShopifyMarketsShop = io.flow.internal.v0.models.ShopifyMarketsShop;
|
|
27064
27170
|
export declare type ShopifyMarketsShopDeleted = io.flow.internal.v0.models.ShopifyMarketsShopDeleted;
|
|
@@ -27135,6 +27241,8 @@ export declare type ShopifyWebhookEvent = io.flow.internal.v0.models.ShopifyWebh
|
|
|
27135
27241
|
export declare type ShopifyWebhookForm = io.flow.internal.v0.models.ShopifyWebhookForm;
|
|
27136
27242
|
export declare type ShopperFees = io.flow.internal.v0.models.ShopperFees;
|
|
27137
27243
|
export declare type ShopperFreight = io.flow.internal.v0.models.ShopperFreight;
|
|
27244
|
+
export declare type ShopperLine = io.flow.internal.v0.models.ShopperLine;
|
|
27245
|
+
export declare type ShopperLines = io.flow.internal.v0.models.ShopperLines;
|
|
27138
27246
|
export declare type ShopperSummary = io.flow.internal.v0.models.ShopperSummary;
|
|
27139
27247
|
export declare type SignificanceAction = io.flow.internal.v0.enums.SignificanceAction;
|
|
27140
27248
|
export declare type SimpleAccountReference = io.flow.internal.v0.models.SimpleAccountReference;
|
|
@@ -27277,8 +27385,7 @@ export declare type TransferTransactionDeletedV2 = io.flow.internal.v0.models.Tr
|
|
|
27277
27385
|
export declare type TransferTransactionUpserted = io.flow.internal.v0.models.TransferTransactionUpserted;
|
|
27278
27386
|
export declare type TransferTransactionUpsertedV2 = io.flow.internal.v0.models.TransferTransactionUpsertedV2;
|
|
27279
27387
|
export declare type Tribe = io.flow.internal.v0.models.Tribe;
|
|
27280
|
-
export declare type
|
|
27281
|
-
export declare type TrueUpSurchargeType = io.flow.internal.v0.enums.TrueUpSurchargeType;
|
|
27388
|
+
export declare type TrueupLabelSummary = io.flow.internal.v0.models.TrueupLabelSummary;
|
|
27282
27389
|
export declare type TrueupTransaction = io.flow.internal.v0.models.TrueupTransaction;
|
|
27283
27390
|
export declare type TrueupTransactionType = io.flow.internal.v0.enums.TrueupTransactionType;
|
|
27284
27391
|
export declare type UnassignedMerchantGuid = io.flow.internal.v0.models.UnassignedMerchantGuid;
|
|
@@ -27291,10 +27398,6 @@ export declare type UnclassifiedProductsSummary = io.flow.internal.v0.models.Unc
|
|
|
27291
27398
|
export declare type UnharmonizedItemsExport = io.flow.internal.v0.models.UnharmonizedItemsExport;
|
|
27292
27399
|
export declare type UnphrasedProductsExport = io.flow.internal.v0.models.UnphrasedProductsExport;
|
|
27293
27400
|
export declare type Ups = io.flow.internal.v0.models.Ups;
|
|
27294
|
-
export declare type UpsLicense = io.flow.internal.v0.models.UpsLicense;
|
|
27295
|
-
export declare type UpsLicenseForm = io.flow.internal.v0.models.UpsLicenseForm;
|
|
27296
|
-
export declare type UpsRegistration = io.flow.internal.v0.models.UpsRegistration;
|
|
27297
|
-
export declare type UpsRegistrationForm = io.flow.internal.v0.models.UpsRegistrationForm;
|
|
27298
27401
|
export declare type UsdSpotRate = io.flow.internal.v0.models.UsdSpotRate;
|
|
27299
27402
|
export declare type UsdSpotRateDeleted = io.flow.internal.v0.models.UsdSpotRateDeleted;
|
|
27300
27403
|
export declare type UsdSpotRateUpserted = io.flow.internal.v0.models.UsdSpotRateUpserted;
|
|
@@ -27321,7 +27424,5 @@ export declare type VirtualCardTransaction = io.flow.internal.v0.models.VirtualC
|
|
|
27321
27424
|
export declare type WasteElectricalAndElectronicEquipmentComplianceData = io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceData;
|
|
27322
27425
|
export declare type WasteElectricalAndElectronicEquipmentComplianceForm = io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceForm;
|
|
27323
27426
|
export declare type Webhook = io.flow.internal.v0.models.Webhook;
|
|
27324
|
-
export declare type WeightsDead = io.flow.internal.v0.models.WeightsDead;
|
|
27325
|
-
export declare type WeightsDimensional = io.flow.internal.v0.models.WeightsDimensional;
|
|
27326
27427
|
export declare type WholeOrderActionForm = io.flow.internal.v0.models.WholeOrderActionForm;
|
|
27327
27428
|
export {};
|