@flowio/types 11.24.67 → 11.24.68
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 +1288 -248
- package/dist/api.d.ts +367 -32
- package/package.json +2 -2
- package/src/api-internal.ts +1884 -428
- package/src/api.ts +531 -32
package/dist/api-internal.d.ts
CHANGED
|
@@ -200,6 +200,11 @@ declare namespace io.flow.RESERVED_WORD_return.v0.models {
|
|
|
200
200
|
declare namespace io.flow.RESERVED_WORD_return.v0.unions {
|
|
201
201
|
type ReturnSource = io.flow.RESERVED_WORD_return.v0.models.ReturnSourceFlow | io.flow.RESERVED_WORD_return.v0.models.ReturnSourceExternalVendor;
|
|
202
202
|
}
|
|
203
|
+
declare namespace io.flow.units.v0.enums {
|
|
204
|
+
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
205
|
+
type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
|
|
206
|
+
type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
|
|
207
|
+
}
|
|
203
208
|
declare namespace io.flow.order.price.v0.enums {
|
|
204
209
|
type OrderPriceDetailComponentKey = 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge';
|
|
205
210
|
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges';
|
|
@@ -226,156 +231,6 @@ declare namespace io.flow.order.price.v0.models {
|
|
|
226
231
|
readonly name?: string;
|
|
227
232
|
}
|
|
228
233
|
}
|
|
229
|
-
declare namespace io.flow.error.v0.enums {
|
|
230
|
-
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
231
|
-
}
|
|
232
|
-
declare namespace io.flow.error.v0.models {
|
|
233
|
-
interface GenericError {
|
|
234
|
-
readonly code: io.flow.error.v0.enums.GenericErrorCode;
|
|
235
|
-
readonly messages: string[];
|
|
236
|
-
}
|
|
237
|
-
}
|
|
238
|
-
declare namespace io.flow.price.v0.enums {
|
|
239
|
-
type LevyComponent = 'goods' | 'duty' | 'insurance' | 'freight' | 'vat';
|
|
240
|
-
type LevyStrategy = 'minimum' | 'average' | 'maximum';
|
|
241
|
-
type PriceAccuracy = 'calculated' | 'estimated_from_partial_destination';
|
|
242
|
-
type PriceDetailComponentKey = 'base_price' | 'discount' | 'currency_margin' | 'percent_item_margin' | 'fixed_item_margin' | 'duties_item_price' | 'duties_added_margin' | 'duties_rounding' | 'duties_deminimis' | 'vat_item_price' | 'vat_added_margin' | 'vat_rounding' | 'vat_duties_item_price' | 'vat_duties_added_margin' | 'vat_duties_rounding' | 'vat_deminimis' | 'item_price_percent_sales_margin' | 'margins_percent_sales_margin' | 'rounding_percent_sales_margin' | 'vat_percent_sales_margin' | 'vat_duty_percent_sales_margin' | 'duty_percent_sales_margin';
|
|
243
|
-
type PriceDetailKey = 'item_price' | 'margins' | 'vat' | 'duty' | 'rounding' | 'adjustment';
|
|
244
|
-
type PricingLevySetting = 'included' | 'displayed' | 'ignored';
|
|
245
|
-
}
|
|
246
|
-
declare namespace io.flow.price.v0.models {
|
|
247
|
-
interface CurrencyFormat {
|
|
248
|
-
readonly symbol: io.flow.common.v0.enums.CurrencySymbolFormat;
|
|
249
|
-
readonly label_formatters: io.flow.common.v0.enums.CurrencyLabelFormatter[];
|
|
250
|
-
}
|
|
251
|
-
interface DeminimisPerItem {
|
|
252
|
-
readonly discriminator: 'deminimis_per_item';
|
|
253
|
-
readonly currency: string;
|
|
254
|
-
readonly minimum?: number;
|
|
255
|
-
readonly maximum?: number;
|
|
256
|
-
}
|
|
257
|
-
interface DeminimisSimple {
|
|
258
|
-
readonly discriminator: 'deminimis_simple';
|
|
259
|
-
readonly value?: number;
|
|
260
|
-
readonly currency: string;
|
|
261
|
-
readonly components: io.flow.price.v0.enums.LevyComponent[];
|
|
262
|
-
readonly minimum?: number;
|
|
263
|
-
}
|
|
264
|
-
interface Duty {
|
|
265
|
-
readonly rate: number;
|
|
266
|
-
readonly components: io.flow.price.v0.enums.LevyComponent[];
|
|
267
|
-
readonly deminimis?: io.flow.price.v0.unions.Deminimis;
|
|
268
|
-
readonly name?: string;
|
|
269
|
-
}
|
|
270
|
-
interface LocalPriceDetails {
|
|
271
|
-
readonly base: io.flow.price.v0.models.PriceDetails;
|
|
272
|
-
readonly local: io.flow.price.v0.models.PriceDetails;
|
|
273
|
-
readonly discount?: io.flow.price.v0.models.PriceDetail;
|
|
274
|
-
readonly local_before_discount?: io.flow.price.v0.models.PriceDetail;
|
|
275
|
-
}
|
|
276
|
-
interface PriceBook {
|
|
277
|
-
readonly id: string;
|
|
278
|
-
readonly key: string;
|
|
279
|
-
readonly currency: string;
|
|
280
|
-
readonly name: string;
|
|
281
|
-
readonly includes: io.flow.common.v0.models.IncludedLevies;
|
|
282
|
-
readonly status: io.flow.common.v0.enums.PriceBookStatus;
|
|
283
|
-
}
|
|
284
|
-
interface PriceBookForm {
|
|
285
|
-
readonly currency: string;
|
|
286
|
-
readonly name: string;
|
|
287
|
-
readonly includes: io.flow.common.v0.enums.IncludedLevyKey;
|
|
288
|
-
readonly status?: io.flow.common.v0.enums.PriceBookStatus;
|
|
289
|
-
}
|
|
290
|
-
interface PriceBookItem {
|
|
291
|
-
readonly id: string;
|
|
292
|
-
readonly key: string;
|
|
293
|
-
readonly price_book: io.flow.price.v0.models.PriceBookReference;
|
|
294
|
-
readonly price: io.flow.common.v0.models.Price;
|
|
295
|
-
readonly item_number: string;
|
|
296
|
-
readonly schedule: io.flow.price.v0.models.PriceBookItemSchedule;
|
|
297
|
-
readonly item_attributes?: Record<string, string>;
|
|
298
|
-
}
|
|
299
|
-
interface PriceBookItemForm {
|
|
300
|
-
readonly price_book_key: string;
|
|
301
|
-
readonly item_number: string;
|
|
302
|
-
readonly amount: number;
|
|
303
|
-
readonly schedule?: io.flow.price.v0.models.PriceBookItemSchedule;
|
|
304
|
-
readonly item_attributes?: Record<string, string>;
|
|
305
|
-
}
|
|
306
|
-
interface PriceBookItemQueryForm {
|
|
307
|
-
readonly price_book_key: string;
|
|
308
|
-
readonly item_query: string;
|
|
309
|
-
readonly amount: number;
|
|
310
|
-
readonly schedule?: io.flow.price.v0.models.PriceBookItemSchedule;
|
|
311
|
-
readonly item_attributes?: Record<string, string>;
|
|
312
|
-
}
|
|
313
|
-
interface PriceBookItemSchedule {
|
|
314
|
-
readonly starts_at: string;
|
|
315
|
-
readonly ends_at?: string;
|
|
316
|
-
}
|
|
317
|
-
interface PriceBookReference {
|
|
318
|
-
readonly id: string;
|
|
319
|
-
readonly key: string;
|
|
320
|
-
}
|
|
321
|
-
interface PriceCheck {
|
|
322
|
-
readonly display: io.flow.price.v0.models.LocalPriceDetails;
|
|
323
|
-
readonly final: io.flow.price.v0.models.LocalPriceDetails;
|
|
324
|
-
}
|
|
325
|
-
interface PriceDetail {
|
|
326
|
-
readonly key: io.flow.price.v0.enums.PriceDetailKey;
|
|
327
|
-
readonly components: io.flow.price.v0.models.PriceDetailComponent[];
|
|
328
|
-
readonly amount: number;
|
|
329
|
-
readonly label: string;
|
|
330
|
-
readonly name?: string;
|
|
331
|
-
readonly basis?: number;
|
|
332
|
-
}
|
|
333
|
-
interface PriceDetailComponent {
|
|
334
|
-
readonly key: io.flow.price.v0.enums.PriceDetailComponentKey;
|
|
335
|
-
readonly amount: number;
|
|
336
|
-
readonly label: string;
|
|
337
|
-
readonly name?: string;
|
|
338
|
-
}
|
|
339
|
-
interface PriceDetails {
|
|
340
|
-
readonly currency: string;
|
|
341
|
-
readonly item_price: io.flow.price.v0.models.PriceDetail;
|
|
342
|
-
readonly margins: io.flow.price.v0.models.PriceDetail;
|
|
343
|
-
readonly vat: io.flow.price.v0.models.PriceDetail;
|
|
344
|
-
readonly duty: io.flow.price.v0.models.PriceDetail;
|
|
345
|
-
readonly rounding: io.flow.price.v0.models.PriceDetail;
|
|
346
|
-
readonly price: io.flow.common.v0.models.Price;
|
|
347
|
-
readonly total: io.flow.common.v0.models.Price;
|
|
348
|
-
readonly adjustment?: io.flow.price.v0.models.PriceDetail;
|
|
349
|
-
}
|
|
350
|
-
interface PriceEquation {
|
|
351
|
-
readonly contracted_rate: number;
|
|
352
|
-
readonly rate: number;
|
|
353
|
-
readonly pricing: io.flow.price.v0.models.Pricing;
|
|
354
|
-
readonly base_price: number;
|
|
355
|
-
readonly discount: number;
|
|
356
|
-
readonly fixed_margin: number;
|
|
357
|
-
readonly percent_margin: number;
|
|
358
|
-
readonly insurance: number;
|
|
359
|
-
readonly freight: number;
|
|
360
|
-
readonly duty?: io.flow.price.v0.models.Duty;
|
|
361
|
-
readonly tax?: io.flow.price.v0.models.Tax;
|
|
362
|
-
readonly percent_sales_margin: number;
|
|
363
|
-
}
|
|
364
|
-
interface Pricing {
|
|
365
|
-
readonly vat: io.flow.price.v0.enums.PricingLevySetting;
|
|
366
|
-
readonly duty: io.flow.price.v0.enums.PricingLevySetting;
|
|
367
|
-
readonly rounding?: io.flow.common.v0.models.Rounding;
|
|
368
|
-
}
|
|
369
|
-
interface Tax {
|
|
370
|
-
readonly name: string;
|
|
371
|
-
readonly rate: number;
|
|
372
|
-
readonly components: io.flow.price.v0.enums.LevyComponent[];
|
|
373
|
-
readonly deminimis?: io.flow.price.v0.unions.Deminimis;
|
|
374
|
-
}
|
|
375
|
-
}
|
|
376
|
-
declare namespace io.flow.price.v0.unions {
|
|
377
|
-
type Deminimis = io.flow.price.v0.models.DeminimisSimple | io.flow.price.v0.models.DeminimisPerItem;
|
|
378
|
-
}
|
|
379
234
|
declare namespace io.flow.channel.v0.enums {
|
|
380
235
|
type ChannelCurrencyCapability = 'payment_authorizations' | 'settlement_currency';
|
|
381
236
|
}
|
|
@@ -1019,6 +874,7 @@ declare namespace io.flow.payment.v0.enums {
|
|
|
1019
874
|
type RefundStatus = 'pending' | 'succeeded' | 'failed' | 'canceled';
|
|
1020
875
|
type ReversalErrorCode = 'amount_exceeds_balance' | 'authorization_declined' | 'authorization_expired' | 'invalid_authorization' | 'invalid_key' | 'invalid_amount' | 'invalid_currency' | 'no_remaining_balance' | 'partial_reversal_not_supported' | 'unknown';
|
|
1021
876
|
type ReversalStatus = 'pending' | 'processed' | 'failed';
|
|
877
|
+
type StoredMethodUsageStep = 'initial' | 'subsequent';
|
|
1022
878
|
type ThreeDSecureCode = 'verified' | 'not_verified' | 'failed';
|
|
1023
879
|
type ThreedsTwoChallengeViewport = 'xxx_small' | 'xx_small' | 'x_small' | 'small' | 'fullscreen';
|
|
1024
880
|
type TokenType = 'permanent' | 'one_time';
|
|
@@ -1238,6 +1094,8 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1238
1094
|
readonly expires_at?: string;
|
|
1239
1095
|
readonly base?: io.flow.common.v0.models.Money;
|
|
1240
1096
|
readonly processor?: io.flow.payment.v0.unions.ExpandablePaymentProcessor;
|
|
1097
|
+
readonly stored_method_usage_step?: io.flow.payment.v0.enums.StoredMethodUsageStep;
|
|
1098
|
+
readonly authorized_at?: string;
|
|
1241
1099
|
}
|
|
1242
1100
|
interface CardBrowserActionConfiguration {
|
|
1243
1101
|
readonly discriminator: 'card_browser_action_configuration';
|
|
@@ -1485,6 +1343,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1485
1343
|
readonly base?: io.flow.common.v0.models.Money;
|
|
1486
1344
|
readonly processor?: io.flow.payment.v0.unions.ExpandablePaymentProcessor;
|
|
1487
1345
|
readonly confirmation_details?: io.flow.payment.v0.unions.ConfirmationDetails;
|
|
1346
|
+
readonly authorized_at?: string;
|
|
1488
1347
|
}
|
|
1489
1348
|
interface OnlinePaymentAuthorizationForm {
|
|
1490
1349
|
readonly discriminator: 'online_payment_authorization_form';
|
|
@@ -1868,11 +1727,13 @@ declare namespace io.flow.field.validation.v0.unions {
|
|
|
1868
1727
|
}
|
|
1869
1728
|
declare namespace io.flow.stripe.v0.enums {
|
|
1870
1729
|
type AccountType = 'platform' | 'custom' | 'standard' | 'express';
|
|
1730
|
+
type ApplePayType = 'apple_pay' | 'apple_pay_later';
|
|
1871
1731
|
type CancellationReason = 'abandoned' | 'automatic' | 'duplicate' | 'failed_invoice' | 'fraudulent' | 'requested_by_customer' | 'void_invoice';
|
|
1872
1732
|
type CaptureMethod = 'automatic' | 'manual';
|
|
1873
1733
|
type CardBrand = 'American Express' | 'MasterCard' | 'Discover' | 'JCB' | 'Diners Club' | 'Unknown';
|
|
1874
1734
|
type CardErrorCode = 'invalid_number' | 'invalid_expiry_month' | 'invalid_expiry_year' | 'invalid_cvc' | 'invalid_swipe_data' | 'incorrect_number' | 'expired_card' | 'incorrect_cvc' | 'incorrect_zip' | 'card_declined' | 'missing' | 'processing_error';
|
|
1875
1735
|
type CardFundingType = 'credit' | 'debit' | 'prepaid' | 'unknown';
|
|
1736
|
+
type CardNetwork = 'amex' | 'cartes_bancaires' | 'diners' | 'discover' | 'eftpos_au' | 'interac' | 'jcb' | 'mastercard' | 'unionpay' | 'visa' | 'unknown';
|
|
1876
1737
|
type CheckOutcome = 'pass' | 'fail' | 'unavailable' | 'unchecked';
|
|
1877
1738
|
type CodeVerificationStatus = 'pending' | 'succeeded' | 'failed';
|
|
1878
1739
|
type ConfirmationMethod = 'automatic' | 'manual';
|
|
@@ -1885,9 +1746,11 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
1885
1746
|
type NextActionType = 'redirect_to_url' | 'use_stripe_sdk';
|
|
1886
1747
|
type OrderItemType = 'sku' | 'tax' | 'shipping' | 'discount';
|
|
1887
1748
|
type PaymentIntentStatus = 'canceled' | 'processing' | 'requires_action' | 'requires_capture' | 'requires_confirmation' | 'requires_payment_method' | 'succeeded';
|
|
1749
|
+
type PaymentMethodCategoryKlarna = 'pay_later' | 'pay_now' | 'pay_with_financing' | 'pay_in_installments';
|
|
1888
1750
|
type PaymentMethodType = 'card' | 'card_present';
|
|
1889
1751
|
type PaymentOutcomeType = 'authorized' | 'manual_review' | 'issuer_declined' | 'blocked' | 'invalid';
|
|
1890
1752
|
type PaymentStatus = 'succeeded' | 'pending' | 'failed';
|
|
1753
|
+
type PreferredLocaleKlarna = 'de-AT' | 'en-AT' | 'nl-BE' | 'fr-BE' | 'en-BE' | 'de-DE' | 'en-DE' | 'da-DK' | 'en-DK' | 'es-ES' | 'en-ES' | 'fi-FI' | 'sv-FI' | 'en-FI' | 'en-GB' | 'en-IE' | 'it-IT' | 'en-IT' | 'nl-NL' | 'en-NL' | 'nb-NO' | 'en-NO' | 'sv-SE' | 'en-SE' | 'en-US' | 'es-US' | 'fr-FR' | 'en-FR' | 'cs-CZ' | 'en-CZ' | 'el-GR' | 'en-GR' | 'en-AU' | 'en-NZ' | 'en-CA' | 'fr-CA' | 'pl-PL' | 'en-PL' | 'pt-PT' | 'en-PT' | 'de-CH' | 'fr-CH' | 'it-CH' | 'en-CH';
|
|
1891
1754
|
type RefundFailureReason = 'lost_or_stolen_card' | 'expired_or_canceled_card' | 'unknown';
|
|
1892
1755
|
type RefundReason = 'duplicate' | 'fraudulent' | 'requested_by_customer';
|
|
1893
1756
|
type RefundStatus = 'succeeded' | 'failed' | 'pending' | 'canceled';
|
|
@@ -1899,6 +1762,9 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
1899
1762
|
type SourceType = 'ach_credit_transfer' | 'ach_debit' | 'alipay' | 'bancontact' | 'bitcoin' | 'card' | 'eps' | 'giropay' | 'ideal' | 'klarna' | 'multibanco' | 'p24' | 'sepa_debit' | 'sofort' | 'three_d_secure';
|
|
1900
1763
|
type SourceUsageType = 'reusable' | 'single_use';
|
|
1901
1764
|
type ThreeDSecureSupport = 'required' | 'recommended' | 'optional' | 'not_supported';
|
|
1765
|
+
type ThreeDsAuthenticationFlow = 'challenge' | 'frictionless';
|
|
1766
|
+
type ThreeDsResult = 'authenticated' | 'attempt_acknowledged' | 'exempted' | 'not_supported' | 'failed' | 'processing_error';
|
|
1767
|
+
type ThreeDsResultReason = 'card_not_enrolled' | 'network_not_supported' | 'abandoned' | 'canceled' | 'rejected' | 'bypassed' | 'protocol_error';
|
|
1902
1768
|
type TokenType = 'account' | 'bank_account' | 'card' | 'pii';
|
|
1903
1769
|
type UseStripeSdkType = 'three_d_secure_redirect' | 'stripe_3ds2_fingerprint';
|
|
1904
1770
|
}
|
|
@@ -1944,6 +1810,14 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
1944
1810
|
readonly postal_code?: string;
|
|
1945
1811
|
readonly state?: string;
|
|
1946
1812
|
}
|
|
1813
|
+
interface ApplePay {
|
|
1814
|
+
readonly type: 'apple_pay';
|
|
1815
|
+
readonly apple_pay: io.flow.stripe.v0.models.ApplePayInformation;
|
|
1816
|
+
readonly dynamic_last4?: string;
|
|
1817
|
+
}
|
|
1818
|
+
interface ApplePayInformation {
|
|
1819
|
+
readonly type: io.flow.stripe.v0.enums.ApplePayType;
|
|
1820
|
+
}
|
|
1947
1821
|
interface Card {
|
|
1948
1822
|
readonly id: string;
|
|
1949
1823
|
readonly object: string;
|
|
@@ -1968,6 +1842,11 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
1968
1842
|
readonly name?: string;
|
|
1969
1843
|
readonly tokenization_method?: string;
|
|
1970
1844
|
}
|
|
1845
|
+
interface CardChecks {
|
|
1846
|
+
readonly address_line1_check?: io.flow.stripe.v0.enums.CheckOutcome;
|
|
1847
|
+
readonly address_postal_code_check?: io.flow.stripe.v0.enums.CheckOutcome;
|
|
1848
|
+
readonly cvc_check?: io.flow.stripe.v0.enums.CheckOutcome;
|
|
1849
|
+
}
|
|
1971
1850
|
interface CardRequest {
|
|
1972
1851
|
readonly object: string;
|
|
1973
1852
|
readonly exp_month: string;
|
|
@@ -2010,7 +1889,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2010
1889
|
readonly payment_intent?: string;
|
|
2011
1890
|
readonly calculated_statement_descriptor?: string;
|
|
2012
1891
|
readonly statement_descriptor?: string;
|
|
2013
|
-
readonly payment_method_details?:
|
|
1892
|
+
readonly payment_method_details?: io.flow.stripe.v0.unions.PaymentMethodDetails;
|
|
2014
1893
|
}
|
|
2015
1894
|
interface ChargeDestination {
|
|
2016
1895
|
readonly account: string;
|
|
@@ -2057,7 +1936,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2057
1936
|
readonly payment_intent?: string;
|
|
2058
1937
|
readonly calculated_statement_descriptor?: string;
|
|
2059
1938
|
readonly statement_descriptor?: string;
|
|
2060
|
-
readonly payment_method_details?:
|
|
1939
|
+
readonly payment_method_details?: io.flow.stripe.v0.unions.PaymentMethodDetails;
|
|
2061
1940
|
}
|
|
2062
1941
|
interface CodeVerification {
|
|
2063
1942
|
readonly attempts_remaining: number;
|
|
@@ -2104,11 +1983,25 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2104
1983
|
interface LegalEntity {
|
|
2105
1984
|
readonly additional_owners?: io.flow.stripe.v0.models.Owner[];
|
|
2106
1985
|
}
|
|
1986
|
+
interface Masterpass {
|
|
1987
|
+
readonly type: 'masterpass';
|
|
1988
|
+
readonly masterpass: io.flow.stripe.v0.models.MasterpassInformation;
|
|
1989
|
+
readonly dynamic_last4?: string;
|
|
1990
|
+
}
|
|
1991
|
+
interface MasterpassInformation {
|
|
1992
|
+
readonly billing_address?: io.flow.stripe.v0.models.Address;
|
|
1993
|
+
readonly email?: string;
|
|
1994
|
+
readonly name?: string;
|
|
1995
|
+
readonly shipping_address?: io.flow.stripe.v0.models.Address;
|
|
1996
|
+
}
|
|
2107
1997
|
interface Metadata {
|
|
2108
1998
|
readonly order_number?: string;
|
|
2109
1999
|
readonly authorization_id?: string;
|
|
2110
2000
|
readonly organization_id?: string;
|
|
2111
2001
|
}
|
|
2002
|
+
interface NetworkTokenUsed {
|
|
2003
|
+
readonly used?: boolean;
|
|
2004
|
+
}
|
|
2112
2005
|
interface NextAction {
|
|
2113
2006
|
readonly type: io.flow.stripe.v0.enums.NextActionType;
|
|
2114
2007
|
readonly use_stripe_sdk?: any;
|
|
@@ -2275,6 +2168,39 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2275
2168
|
readonly name?: string;
|
|
2276
2169
|
readonly phone?: string;
|
|
2277
2170
|
}
|
|
2171
|
+
interface PaymentMethodDetailsCard {
|
|
2172
|
+
readonly type: 'card';
|
|
2173
|
+
readonly card: io.flow.stripe.v0.models.PaymentMethodDetailsCardInformation;
|
|
2174
|
+
}
|
|
2175
|
+
interface PaymentMethodDetailsCardInformation {
|
|
2176
|
+
readonly brand?: string;
|
|
2177
|
+
readonly checks?: io.flow.stripe.v0.models.CardChecks;
|
|
2178
|
+
readonly country?: string;
|
|
2179
|
+
readonly exp_month?: number;
|
|
2180
|
+
readonly exp_year?: number;
|
|
2181
|
+
readonly fingerprint?: string;
|
|
2182
|
+
readonly funding?: io.flow.stripe.v0.enums.CardFundingType;
|
|
2183
|
+
readonly installments?: io.flow.stripe.v0.models.Plan;
|
|
2184
|
+
readonly last4?: string;
|
|
2185
|
+
readonly mandate?: string;
|
|
2186
|
+
readonly network?: io.flow.stripe.v0.enums.CardNetwork;
|
|
2187
|
+
readonly network_token?: io.flow.stripe.v0.models.NetworkTokenUsed;
|
|
2188
|
+
readonly three_d_secure?: io.flow.stripe.v0.models.ThreeDSecureCharge;
|
|
2189
|
+
readonly capture_before?: number;
|
|
2190
|
+
readonly description?: string;
|
|
2191
|
+
readonly iin?: string;
|
|
2192
|
+
readonly issuer?: string;
|
|
2193
|
+
readonly wallet?: io.flow.stripe.v0.unions.CardWallet;
|
|
2194
|
+
readonly network_transaction_id?: string;
|
|
2195
|
+
}
|
|
2196
|
+
interface PaymentMethodDetailsKlarna {
|
|
2197
|
+
readonly type: 'klarna';
|
|
2198
|
+
readonly klarna: io.flow.stripe.v0.models.PaymentMethodDetailsKlarnaInformation;
|
|
2199
|
+
}
|
|
2200
|
+
interface PaymentMethodDetailsKlarnaInformation {
|
|
2201
|
+
readonly payment_method_category?: io.flow.stripe.v0.enums.PaymentMethodCategoryKlarna;
|
|
2202
|
+
readonly preferred_locale?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
2203
|
+
}
|
|
2278
2204
|
interface PaymentMethodForm {
|
|
2279
2205
|
readonly type: io.flow.stripe.v0.enums.PaymentMethodType;
|
|
2280
2206
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
@@ -2293,6 +2219,11 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2293
2219
|
readonly reason?: string;
|
|
2294
2220
|
readonly type?: io.flow.stripe.v0.enums.PaymentOutcomeType;
|
|
2295
2221
|
}
|
|
2222
|
+
interface Plan {
|
|
2223
|
+
readonly count?: number;
|
|
2224
|
+
readonly interval?: string;
|
|
2225
|
+
readonly type?: string;
|
|
2226
|
+
}
|
|
2296
2227
|
interface Receiver {
|
|
2297
2228
|
readonly address?: string;
|
|
2298
2229
|
readonly amount_charged?: number;
|
|
@@ -2493,6 +2424,12 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2493
2424
|
readonly card: string;
|
|
2494
2425
|
readonly customer?: string;
|
|
2495
2426
|
}
|
|
2427
|
+
interface ThreeDSecureCharge {
|
|
2428
|
+
readonly authentication_flow?: io.flow.stripe.v0.enums.ThreeDsAuthenticationFlow;
|
|
2429
|
+
readonly result?: io.flow.stripe.v0.enums.ThreeDsResult;
|
|
2430
|
+
readonly result_reason?: io.flow.stripe.v0.enums.ThreeDsResultReason;
|
|
2431
|
+
readonly version?: string;
|
|
2432
|
+
}
|
|
2496
2433
|
interface ThreeDSecureRedirect {
|
|
2497
2434
|
readonly type: io.flow.stripe.v0.enums.UseStripeSdkType;
|
|
2498
2435
|
readonly stripe_js: string;
|
|
@@ -2516,6 +2453,21 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2516
2453
|
readonly amount?: number;
|
|
2517
2454
|
readonly destination?: string;
|
|
2518
2455
|
}
|
|
2456
|
+
interface VisaCheckout {
|
|
2457
|
+
readonly type: 'visa_checkout';
|
|
2458
|
+
readonly visa_checkout: io.flow.stripe.v0.models.VisaCheckoutInformation;
|
|
2459
|
+
readonly dynamic_last4?: string;
|
|
2460
|
+
}
|
|
2461
|
+
interface VisaCheckoutInformation {
|
|
2462
|
+
readonly billing_address?: io.flow.stripe.v0.models.Address;
|
|
2463
|
+
readonly email?: string;
|
|
2464
|
+
readonly name?: string;
|
|
2465
|
+
readonly shipping_address?: io.flow.stripe.v0.models.Address;
|
|
2466
|
+
}
|
|
2467
|
+
}
|
|
2468
|
+
declare namespace io.flow.stripe.v0.unions {
|
|
2469
|
+
type CardWallet = io.flow.stripe.v0.models.Masterpass | io.flow.stripe.v0.models.ApplePay | io.flow.stripe.v0.models.VisaCheckout;
|
|
2470
|
+
type PaymentMethodDetails = io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna;
|
|
2519
2471
|
}
|
|
2520
2472
|
declare namespace io.flow.customer.v0.enums {
|
|
2521
2473
|
type CustomerAddressType = 'billing' | 'invoice' | 'shipping';
|
|
@@ -2599,6 +2551,7 @@ declare namespace io.flow.label.v0.enums {
|
|
|
2599
2551
|
type Direction = 'outbound' | 'return';
|
|
2600
2552
|
type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'notification_requiring_crossdock' | 'autogenerated';
|
|
2601
2553
|
type LabelTriggerMethod = 'autogenerated' | 'on_demand';
|
|
2554
|
+
type PackageDimensionsSource = 'provided' | 'dimensions_estimated';
|
|
2602
2555
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
2603
2556
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
2604
2557
|
}
|
|
@@ -2637,6 +2590,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
2637
2590
|
readonly order_number: string;
|
|
2638
2591
|
readonly service?: string;
|
|
2639
2592
|
readonly shipment_recipient?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
2593
|
+
readonly package_dimensions_source?: io.flow.label.v0.enums.PackageDimensionsSource;
|
|
2640
2594
|
}
|
|
2641
2595
|
interface DetailedShippingNotificationForm {
|
|
2642
2596
|
readonly discriminator: 'detailed_shipping_notification_form';
|
|
@@ -2677,6 +2631,9 @@ declare namespace io.flow.label.v0.models {
|
|
|
2677
2631
|
readonly carrier_tracking_number_url: string;
|
|
2678
2632
|
readonly cost_estimate_source?: io.flow.label.v0.enums.CostEstimateSource;
|
|
2679
2633
|
readonly cost?: io.flow.common.v0.models.Price;
|
|
2634
|
+
readonly delivered_duty?: io.flow.common.v0.enums.DeliveredDuty;
|
|
2635
|
+
readonly taxes_owed?: io.flow.common.v0.models.Money;
|
|
2636
|
+
readonly duties_owed?: io.flow.common.v0.models.Money;
|
|
2680
2637
|
readonly destination: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
2681
2638
|
readonly flow_tracking_number: string;
|
|
2682
2639
|
readonly flow_tracking_number_url: string;
|
|
@@ -2688,6 +2645,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
2688
2645
|
readonly return?: io.flow.label.v0.models.ShippingLabelDocument;
|
|
2689
2646
|
readonly order?: io.flow.label.v0.models.LabelOrderSummary;
|
|
2690
2647
|
readonly package?: io.flow.label.v0.models.ShippingLabelPackage;
|
|
2648
|
+
readonly package_dimension_source?: io.flow.label.v0.enums.PackageDimensionsSource;
|
|
2691
2649
|
readonly order_identifier?: string;
|
|
2692
2650
|
readonly fulfillment_key?: string;
|
|
2693
2651
|
readonly shipment_recipient: io.flow.label.v0.enums.ShipmentRecipient;
|
|
@@ -2705,9 +2663,15 @@ declare namespace io.flow.label.v0.models {
|
|
|
2705
2663
|
readonly html?: string;
|
|
2706
2664
|
readonly required: boolean;
|
|
2707
2665
|
}
|
|
2666
|
+
interface ShippingLabelHopCostItemizedEstimate {
|
|
2667
|
+
readonly units: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
|
|
2668
|
+
readonly base: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
2669
|
+
readonly surcharges: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
|
|
2670
|
+
}
|
|
2708
2671
|
interface ShippingLabelHopSummary {
|
|
2709
2672
|
readonly lane: io.flow.label.v0.models.ShippingLabelLaneSummary;
|
|
2710
2673
|
readonly cost: io.flow.common.v0.models.Money;
|
|
2674
|
+
readonly itemized_estimate?: io.flow.label.v0.models.ShippingLabelHopCostItemizedEstimate;
|
|
2711
2675
|
}
|
|
2712
2676
|
interface ShippingLabelLaneSummary {
|
|
2713
2677
|
readonly id?: string;
|
|
@@ -2715,12 +2679,18 @@ declare namespace io.flow.label.v0.models {
|
|
|
2715
2679
|
}
|
|
2716
2680
|
interface ShippingLabelPackage {
|
|
2717
2681
|
readonly dimensions: io.flow.common.v0.models.Dimension;
|
|
2682
|
+
readonly volumetric_weight?: number;
|
|
2718
2683
|
readonly items: io.flow.common.v0.models.LineItemForm[];
|
|
2719
2684
|
readonly reference_number?: string;
|
|
2720
2685
|
}
|
|
2721
2686
|
interface ShippingLabelRatecardSummary {
|
|
2722
2687
|
readonly id?: string;
|
|
2723
2688
|
readonly ratecard_owner: io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
2689
|
+
readonly rate_level_key?: string;
|
|
2690
|
+
readonly glbe_shipping_method_id?: string;
|
|
2691
|
+
readonly glbe_proposition_name?: string;
|
|
2692
|
+
readonly channel_revenue_share_percentage?: number;
|
|
2693
|
+
readonly shopify_grc_gid?: string;
|
|
2724
2694
|
}
|
|
2725
2695
|
interface ShippingLabelSummary {
|
|
2726
2696
|
readonly id: string;
|
|
@@ -3161,14 +3131,14 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
3161
3131
|
readonly purchase_url?: string;
|
|
3162
3132
|
}
|
|
3163
3133
|
interface ShippingAddress {
|
|
3164
|
-
readonly recipient_name
|
|
3134
|
+
readonly recipient_name?: string;
|
|
3165
3135
|
readonly line1: string;
|
|
3166
3136
|
readonly line2?: string;
|
|
3167
|
-
readonly city
|
|
3137
|
+
readonly city?: string;
|
|
3168
3138
|
readonly country_code: string;
|
|
3169
|
-
readonly postal_code
|
|
3139
|
+
readonly postal_code?: string;
|
|
3170
3140
|
readonly phone?: string;
|
|
3171
|
-
readonly state
|
|
3141
|
+
readonly state?: string;
|
|
3172
3142
|
}
|
|
3173
3143
|
interface SupportingInfo {
|
|
3174
3144
|
readonly notes?: string;
|
|
@@ -3545,7 +3515,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3545
3515
|
readonly merchantOrderReference?: string;
|
|
3546
3516
|
readonly shopperInteraction: io.flow.adyen.v0.enums.ShopperInteraction;
|
|
3547
3517
|
readonly bankAccount?: io.flow.adyen.v0.models.BankAccount;
|
|
3548
|
-
readonly additionalData?:
|
|
3518
|
+
readonly additionalData?: io.flow.adyen.v0.models.AuthorizeRequestAdditionalData;
|
|
3549
3519
|
readonly mpiData?: io.flow.adyen.v0.models.ThreeDSecureData;
|
|
3550
3520
|
readonly selectedBrand?: string;
|
|
3551
3521
|
readonly browserInfo?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
@@ -3553,6 +3523,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3553
3523
|
readonly recurringProcessingModel?: io.flow.adyen.v0.enums.RecurringProcessingModel;
|
|
3554
3524
|
readonly mcc?: string;
|
|
3555
3525
|
readonly metadata?: any;
|
|
3526
|
+
readonly captureDelayHours?: number;
|
|
3556
3527
|
}
|
|
3557
3528
|
interface AuthorizeRequest3D {
|
|
3558
3529
|
readonly merchantAccount: string;
|
|
@@ -3566,6 +3537,10 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3566
3537
|
readonly threeDS2RequestData?: io.flow.adyen.v0.models.Threeds2RequestData;
|
|
3567
3538
|
readonly threeDS2Result?: io.flow.adyen.v0.models.Threeds2Result;
|
|
3568
3539
|
}
|
|
3540
|
+
interface AuthorizeRequestAdditionalData {
|
|
3541
|
+
readonly manualCapture?: boolean;
|
|
3542
|
+
readonly 'paywithgoogle.token'?: string;
|
|
3543
|
+
}
|
|
3569
3544
|
interface AuthorizeResponse {
|
|
3570
3545
|
readonly pspReference: string;
|
|
3571
3546
|
readonly resultCode: io.flow.adyen.v0.enums.ResultCode;
|
|
@@ -3719,6 +3694,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3719
3694
|
readonly redirectToIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
3720
3695
|
readonly redirectFromIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
3721
3696
|
readonly storePaymentMethod?: boolean;
|
|
3697
|
+
readonly captureDelayHours?: number;
|
|
3722
3698
|
}
|
|
3723
3699
|
interface PaymentResponse {
|
|
3724
3700
|
readonly resultCode: io.flow.adyen.v0.enums.ResultCode;
|
|
@@ -3838,6 +3814,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3838
3814
|
interface ThreedsAdditionalData {
|
|
3839
3815
|
readonly executeThreeD?: boolean;
|
|
3840
3816
|
readonly allow3DS2?: boolean;
|
|
3817
|
+
readonly manualCapture?: boolean;
|
|
3841
3818
|
}
|
|
3842
3819
|
}
|
|
3843
3820
|
declare namespace io.flow.adyen.v0.unions {
|
|
@@ -3970,7 +3947,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
3970
3947
|
readonly starts_at: string;
|
|
3971
3948
|
readonly ends_at?: string;
|
|
3972
3949
|
readonly prerequisite_subtotal_range?: io.flow.shopify.external.v0.models.PriceRuleGreaterThanRange;
|
|
3973
|
-
readonly
|
|
3950
|
+
readonly prerequisite_shipping_price_range?: io.flow.shopify.external.v0.models.PriceRuleLessThanRange;
|
|
3974
3951
|
readonly usage_limit?: number;
|
|
3975
3952
|
readonly entitled_product_ids: number[];
|
|
3976
3953
|
readonly entitled_variant_ids: number[];
|
|
@@ -3980,7 +3957,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
3980
3957
|
readonly once_per_customer: boolean;
|
|
3981
3958
|
readonly target_selection: io.flow.shopify.external.v0.enums.PriceRuleTargetSelection;
|
|
3982
3959
|
readonly customer_selection: io.flow.shopify.external.v0.enums.PriceRuleCustomerSelection;
|
|
3983
|
-
readonly
|
|
3960
|
+
readonly customer_segment_prerequisite_ids?: number[];
|
|
3984
3961
|
readonly prerequisite_customer_ids?: number[];
|
|
3985
3962
|
readonly prerequisite_quantity_range?: io.flow.shopify.external.v0.models.PriceRuleGreaterThanRange;
|
|
3986
3963
|
readonly prerequisite_product_ids?: number[];
|
|
@@ -4961,6 +4938,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
4961
4938
|
readonly send_receipt?: boolean;
|
|
4962
4939
|
readonly metafields?: io.flow.shopify.markets.v0.models.ShopifyOrderMetafield[];
|
|
4963
4940
|
readonly merchant_of_record_app_id?: number;
|
|
4941
|
+
readonly total_shipping_price_set?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
4964
4942
|
}
|
|
4965
4943
|
interface ShopifyOrderAddress {
|
|
4966
4944
|
readonly id?: number;
|
|
@@ -5097,7 +5075,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5097
5075
|
readonly grams?: number;
|
|
5098
5076
|
readonly id: number;
|
|
5099
5077
|
readonly price?: string;
|
|
5100
|
-
readonly price_set
|
|
5078
|
+
readonly price_set: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
5101
5079
|
readonly product_id?: number;
|
|
5102
5080
|
readonly quantity: number;
|
|
5103
5081
|
readonly requires_shipping: boolean;
|
|
@@ -5106,7 +5084,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5106
5084
|
readonly variant_id?: number;
|
|
5107
5085
|
readonly variant_title?: string;
|
|
5108
5086
|
readonly vendor?: string;
|
|
5109
|
-
readonly name
|
|
5087
|
+
readonly name: string;
|
|
5110
5088
|
readonly gift_card: boolean;
|
|
5111
5089
|
readonly properties: io.flow.shopify.markets.v0.models.ShopifyOrderProperty[];
|
|
5112
5090
|
readonly taxable: boolean;
|
|
@@ -5196,6 +5174,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5196
5174
|
readonly carrier_identifier?: string;
|
|
5197
5175
|
readonly price_set: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
5198
5176
|
readonly discounted_price_set: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
5177
|
+
readonly discount_allocations?: io.flow.shopify.markets.v0.models.ShopifyOrderDiscountAllocation[];
|
|
5199
5178
|
}
|
|
5200
5179
|
interface ShopifyOrderTaxLine {
|
|
5201
5180
|
readonly price_set: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
@@ -5222,8 +5201,8 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5222
5201
|
readonly parent_id?: number;
|
|
5223
5202
|
readonly user_id?: number;
|
|
5224
5203
|
}
|
|
5225
|
-
interface
|
|
5226
|
-
readonly order: io.flow.shopify.markets.v0.models.
|
|
5204
|
+
interface ShopifyOrderUpdateForm {
|
|
5205
|
+
readonly order: io.flow.shopify.markets.v0.models.ShopifyUpdateOrder;
|
|
5227
5206
|
}
|
|
5228
5207
|
interface ShopifyOrderWrapper {
|
|
5229
5208
|
readonly order: io.flow.shopify.markets.v0.models.ShopifyOrder;
|
|
@@ -5273,9 +5252,10 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5273
5252
|
readonly kind: string;
|
|
5274
5253
|
readonly gateway: string;
|
|
5275
5254
|
}
|
|
5276
|
-
interface
|
|
5255
|
+
interface ShopifyUpdateOrder {
|
|
5277
5256
|
readonly id: number;
|
|
5278
|
-
readonly shipping_address
|
|
5257
|
+
readonly shipping_address?: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
|
|
5258
|
+
readonly note_attributes?: io.flow.shopify.markets.v0.models.ShopifyOrderAttribute[];
|
|
5279
5259
|
}
|
|
5280
5260
|
interface ShopifyWebhookCustomersDataRequest {
|
|
5281
5261
|
readonly shop_id: number;
|
|
@@ -7671,12 +7651,21 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
7671
7651
|
readonly id: string;
|
|
7672
7652
|
readonly ratecard: io.flow.ratecard.v0.models.RatecardSummary;
|
|
7673
7653
|
}
|
|
7674
|
-
interface
|
|
7675
|
-
readonly discriminator: '
|
|
7676
|
-
readonly
|
|
7677
|
-
readonly
|
|
7678
|
-
readonly
|
|
7679
|
-
readonly
|
|
7654
|
+
interface OversizePieceSurchargeRatecardFee {
|
|
7655
|
+
readonly discriminator: 'oversize_piece_surcharge_ratecard_fee';
|
|
7656
|
+
readonly dimensional_threshold?: number;
|
|
7657
|
+
readonly dimensional_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
7658
|
+
readonly weight_threshold?: number;
|
|
7659
|
+
readonly weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
7660
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
7661
|
+
}
|
|
7662
|
+
interface OversizePieceSurchargeServiceFee {
|
|
7663
|
+
readonly discriminator: 'oversize_piece_surcharge_service_fee';
|
|
7664
|
+
readonly dimensional_threshold?: number;
|
|
7665
|
+
readonly dimensional_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
7666
|
+
readonly weight_threshold?: number;
|
|
7667
|
+
readonly weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
7668
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
7680
7669
|
}
|
|
7681
7670
|
interface PeakSurchargeByWeightServiceFee {
|
|
7682
7671
|
readonly discriminator: 'peak_surcharge_by_weight_service_fee';
|
|
@@ -7701,12 +7690,16 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
7701
7690
|
interface Ratecard {
|
|
7702
7691
|
readonly id: string;
|
|
7703
7692
|
readonly number: string;
|
|
7693
|
+
readonly rate_level_key?: string;
|
|
7704
7694
|
readonly direction: io.flow.label.v0.enums.Direction;
|
|
7705
7695
|
readonly effective_at: string;
|
|
7706
7696
|
readonly origination_zones: io.flow.common.v0.models.Zone[];
|
|
7707
7697
|
readonly service: io.flow.ratecard.v0.models.RatecardServiceSummary;
|
|
7708
7698
|
readonly published_at?: string;
|
|
7709
7699
|
readonly ratecard_owner: io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
7700
|
+
readonly glbe_shipping_method_id?: string;
|
|
7701
|
+
readonly glbe_proposition_name?: string;
|
|
7702
|
+
readonly channel_revenue_share_percentage?: number;
|
|
7710
7703
|
}
|
|
7711
7704
|
interface RatecardCarrierSummary {
|
|
7712
7705
|
readonly id: string;
|
|
@@ -7770,6 +7763,10 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
7770
7763
|
readonly dimensional_weight?: io.flow.common.v0.models.Measurement;
|
|
7771
7764
|
readonly gravitational_weight?: io.flow.common.v0.models.Measurement;
|
|
7772
7765
|
readonly ratecard_id?: string;
|
|
7766
|
+
readonly glbe_shipping_method_id?: string;
|
|
7767
|
+
readonly glbe_proposition_name?: string;
|
|
7768
|
+
readonly channel_revenue_share_percentage?: number;
|
|
7769
|
+
readonly rate_level_key?: string;
|
|
7773
7770
|
readonly line_items?: io.flow.common.v0.models.LineItemForm[];
|
|
7774
7771
|
}
|
|
7775
7772
|
interface RatecardForm {
|
|
@@ -7778,7 +7775,12 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
7778
7775
|
readonly origination_zones: io.flow.common.v0.models.Zone[];
|
|
7779
7776
|
readonly service: string;
|
|
7780
7777
|
readonly number?: string;
|
|
7778
|
+
readonly rate_level_key?: string;
|
|
7781
7779
|
readonly ratecard_owner?: io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
7780
|
+
readonly glbe_shipping_method_id?: string;
|
|
7781
|
+
readonly glbe_proposition_name?: string;
|
|
7782
|
+
readonly channel_revenue_share_percentage?: number;
|
|
7783
|
+
readonly data?: Record<string, string>;
|
|
7782
7784
|
}
|
|
7783
7785
|
interface RatecardLane {
|
|
7784
7786
|
readonly id: string;
|
|
@@ -7890,8 +7892,8 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
7890
7892
|
}
|
|
7891
7893
|
declare namespace io.flow.ratecard.v0.unions {
|
|
7892
7894
|
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;
|
|
7893
|
-
type RatecardFee = io.flow.ratecard.v0.models.DdpRatecardFee | io.flow.ratecard.v0.models.FuelSurchargeRatecardFee | io.flow.ratecard.v0.models.
|
|
7894
|
-
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;
|
|
7895
|
+
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;
|
|
7896
|
+
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;
|
|
7895
7897
|
}
|
|
7896
7898
|
declare namespace io.flow.token.v0.models {
|
|
7897
7899
|
interface ChannelToken {
|
|
@@ -8127,47 +8129,334 @@ declare namespace io.flow.crypto.v0.models {
|
|
|
8127
8129
|
readonly object: io.flow.crypto.v0.models.Refund;
|
|
8128
8130
|
}
|
|
8129
8131
|
}
|
|
8130
|
-
declare namespace io.flow.
|
|
8131
|
-
type
|
|
8132
|
+
declare namespace io.flow.error.v0.enums {
|
|
8133
|
+
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
8132
8134
|
}
|
|
8133
|
-
declare namespace io.flow.
|
|
8134
|
-
interface
|
|
8135
|
-
readonly
|
|
8136
|
-
readonly
|
|
8135
|
+
declare namespace io.flow.error.v0.models {
|
|
8136
|
+
interface GenericError {
|
|
8137
|
+
readonly code: io.flow.error.v0.enums.GenericErrorCode;
|
|
8138
|
+
readonly messages: string[];
|
|
8137
8139
|
}
|
|
8138
|
-
|
|
8139
|
-
|
|
8140
|
-
|
|
8141
|
-
|
|
8142
|
-
|
|
8143
|
-
|
|
8144
|
-
|
|
8145
|
-
readonly
|
|
8140
|
+
}
|
|
8141
|
+
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.enums {
|
|
8142
|
+
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak';
|
|
8143
|
+
type WeightSelection = 'dead' | 'dimensional';
|
|
8144
|
+
}
|
|
8145
|
+
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
|
|
8146
|
+
interface LabelBase {
|
|
8147
|
+
readonly amount: number;
|
|
8148
|
+
readonly weight: number;
|
|
8146
8149
|
}
|
|
8147
|
-
interface
|
|
8148
|
-
readonly
|
|
8149
|
-
readonly created_at?: string;
|
|
8150
|
+
interface LabelDestination {
|
|
8151
|
+
readonly country: string;
|
|
8150
8152
|
}
|
|
8151
|
-
interface
|
|
8153
|
+
interface LabelInvoiceRequest {
|
|
8152
8154
|
readonly id: string;
|
|
8153
|
-
readonly
|
|
8154
|
-
readonly
|
|
8155
|
-
readonly
|
|
8156
|
-
readonly
|
|
8157
|
-
readonly
|
|
8158
|
-
readonly
|
|
8155
|
+
readonly label: io.flow.billing.RESERVED_WORD_true.up.v0.models.TrueUpLabelSummary;
|
|
8156
|
+
readonly units: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
|
|
8157
|
+
readonly base: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
8158
|
+
readonly surcharges: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
|
|
8159
|
+
readonly total: number;
|
|
8160
|
+
readonly destination: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelDestination;
|
|
8161
|
+
readonly metadata: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelMetadata;
|
|
8159
8162
|
}
|
|
8160
|
-
interface
|
|
8161
|
-
readonly
|
|
8162
|
-
readonly
|
|
8163
|
-
readonly status: io.flow.tracking.v0.enums.TrackingStatus;
|
|
8164
|
-
readonly timestamp: string;
|
|
8165
|
-
readonly description?: string;
|
|
8163
|
+
interface LabelMetadata {
|
|
8164
|
+
readonly ratecard: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataRatecard;
|
|
8165
|
+
readonly weights: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataWeights;
|
|
8166
8166
|
}
|
|
8167
|
-
interface
|
|
8168
|
-
readonly
|
|
8169
|
-
readonly
|
|
8170
|
-
readonly
|
|
8167
|
+
interface LabelSurcharge {
|
|
8168
|
+
readonly amount: number;
|
|
8169
|
+
readonly type: io.flow.billing.RESERVED_WORD_true.up.v0.enums.TrueUpSurchargeType;
|
|
8170
|
+
readonly detail: io.flow.billing.RESERVED_WORD_true.up.v0.unions.LabelSurchargeDetail;
|
|
8171
|
+
}
|
|
8172
|
+
interface LabelSurchargeDetailFlat {
|
|
8173
|
+
readonly discriminator: 'flat';
|
|
8174
|
+
readonly placeholder?: string;
|
|
8175
|
+
}
|
|
8176
|
+
interface LabelSurchargeDetailPerWeightUnit {
|
|
8177
|
+
readonly discriminator: 'per_weight_unit';
|
|
8178
|
+
readonly fee: number;
|
|
8179
|
+
}
|
|
8180
|
+
interface LabelSurchargeDetailPercentage {
|
|
8181
|
+
readonly discriminator: 'percentage';
|
|
8182
|
+
readonly percentage: number;
|
|
8183
|
+
}
|
|
8184
|
+
interface LabelUnits {
|
|
8185
|
+
readonly currency: string;
|
|
8186
|
+
readonly weight: io.flow.units.v0.enums.UnitOfWeight;
|
|
8187
|
+
readonly length: io.flow.units.v0.enums.UnitOfLength;
|
|
8188
|
+
}
|
|
8189
|
+
interface MetadataProposition {
|
|
8190
|
+
readonly shipping_method: io.flow.billing.RESERVED_WORD_true.up.v0.models.ShippingMethodReference;
|
|
8191
|
+
readonly name: string;
|
|
8192
|
+
}
|
|
8193
|
+
interface MetadataRatecard {
|
|
8194
|
+
readonly id: string;
|
|
8195
|
+
readonly proposition: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataProposition;
|
|
8196
|
+
}
|
|
8197
|
+
interface MetadataWeights {
|
|
8198
|
+
readonly selected: io.flow.billing.RESERVED_WORD_true.up.v0.enums.WeightSelection;
|
|
8199
|
+
readonly dead?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDead;
|
|
8200
|
+
readonly dimensional?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDimensional;
|
|
8201
|
+
}
|
|
8202
|
+
interface ShippingMethodReference {
|
|
8203
|
+
readonly id: string;
|
|
8204
|
+
}
|
|
8205
|
+
interface TrueUpLabelSummary {
|
|
8206
|
+
readonly id: string;
|
|
8207
|
+
readonly carrier_service_id: string;
|
|
8208
|
+
readonly carrier_tracking_number: string;
|
|
8209
|
+
readonly flow_tracking_number: string;
|
|
8210
|
+
readonly created_at: string;
|
|
8211
|
+
}
|
|
8212
|
+
interface WeightsDead {
|
|
8213
|
+
readonly weight: number;
|
|
8214
|
+
}
|
|
8215
|
+
interface WeightsDimensional {
|
|
8216
|
+
readonly weight: number;
|
|
8217
|
+
readonly length: number;
|
|
8218
|
+
readonly width: number;
|
|
8219
|
+
readonly height: number;
|
|
8220
|
+
}
|
|
8221
|
+
}
|
|
8222
|
+
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.unions {
|
|
8223
|
+
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;
|
|
8224
|
+
}
|
|
8225
|
+
declare namespace io.flow.shopify.merchant.config.v0.models {
|
|
8226
|
+
interface Company {
|
|
8227
|
+
readonly discriminator: 'company';
|
|
8228
|
+
readonly legal_name: string;
|
|
8229
|
+
readonly incorporation_country: string;
|
|
8230
|
+
readonly incorporation_jurisdiction: string;
|
|
8231
|
+
readonly tax_registration_number: string;
|
|
8232
|
+
}
|
|
8233
|
+
interface CountryOfOrigin {
|
|
8234
|
+
readonly country: io.flow.reference.v0.models.Country;
|
|
8235
|
+
}
|
|
8236
|
+
interface CountryOfOriginForm {
|
|
8237
|
+
readonly country: string;
|
|
8238
|
+
}
|
|
8239
|
+
interface Individual {
|
|
8240
|
+
readonly discriminator: 'individual';
|
|
8241
|
+
readonly legal_name: string;
|
|
8242
|
+
readonly tax_registration_number?: string;
|
|
8243
|
+
readonly date_of_birth: string;
|
|
8244
|
+
}
|
|
8245
|
+
interface KnowYourBusinessUsa {
|
|
8246
|
+
readonly discriminator: 'know_your_business_usa';
|
|
8247
|
+
readonly id: string;
|
|
8248
|
+
readonly organization_id: string;
|
|
8249
|
+
readonly primary_entity: io.flow.shopify.merchant.config.v0.unions.Entity;
|
|
8250
|
+
readonly parent_company?: io.flow.shopify.merchant.config.v0.models.Company;
|
|
8251
|
+
readonly ultimate_parent_company?: io.flow.shopify.merchant.config.v0.models.Company;
|
|
8252
|
+
readonly ultimate_beneficiary_owner: io.flow.shopify.merchant.config.v0.models.Individual;
|
|
8253
|
+
readonly business_url: string;
|
|
8254
|
+
readonly business_address: io.flow.common.v0.models.Address;
|
|
8255
|
+
}
|
|
8256
|
+
interface KnowYourBusinessUsaForm {
|
|
8257
|
+
readonly discriminator: 'know_your_business_usa_form';
|
|
8258
|
+
readonly primary_entity: io.flow.shopify.merchant.config.v0.unions.Entity;
|
|
8259
|
+
readonly parent_company?: io.flow.shopify.merchant.config.v0.models.Company;
|
|
8260
|
+
readonly ultimate_parent_company?: io.flow.shopify.merchant.config.v0.models.Company;
|
|
8261
|
+
readonly ultimate_beneficiary_owner: io.flow.shopify.merchant.config.v0.models.Individual;
|
|
8262
|
+
readonly business_url: string;
|
|
8263
|
+
readonly business_address: io.flow.common.v0.models.Address;
|
|
8264
|
+
}
|
|
8265
|
+
interface PackageDimensions {
|
|
8266
|
+
readonly dimensions: io.flow.common.v0.models.Dimension[];
|
|
8267
|
+
}
|
|
8268
|
+
interface PackageDimensionsForm {
|
|
8269
|
+
readonly dimensions: io.flow.common.v0.models.Dimension[];
|
|
8270
|
+
}
|
|
8271
|
+
}
|
|
8272
|
+
declare namespace io.flow.shopify.merchant.config.v0.unions {
|
|
8273
|
+
type Entity = io.flow.shopify.merchant.config.v0.models.Company | io.flow.shopify.merchant.config.v0.models.Individual;
|
|
8274
|
+
type KnowYourBusiness = io.flow.shopify.merchant.config.v0.models.KnowYourBusinessUsa;
|
|
8275
|
+
type KnowYourBusinessForm = io.flow.shopify.merchant.config.v0.models.KnowYourBusinessUsaForm;
|
|
8276
|
+
}
|
|
8277
|
+
declare namespace io.flow.price.v0.enums {
|
|
8278
|
+
type LevyComponent = 'goods' | 'duty' | 'insurance' | 'freight' | 'vat';
|
|
8279
|
+
type LevyStrategy = 'minimum' | 'average' | 'maximum';
|
|
8280
|
+
type PriceAccuracy = 'calculated' | 'estimated_from_partial_destination';
|
|
8281
|
+
type PriceDetailComponentKey = 'base_price' | 'discount' | 'currency_margin' | 'percent_item_margin' | 'fixed_item_margin' | 'duties_item_price' | 'duties_added_margin' | 'duties_rounding' | 'duties_deminimis' | 'vat_item_price' | 'vat_added_margin' | 'vat_rounding' | 'vat_duties_item_price' | 'vat_duties_added_margin' | 'vat_duties_rounding' | 'vat_deminimis' | 'item_price_percent_sales_margin' | 'margins_percent_sales_margin' | 'rounding_percent_sales_margin' | 'vat_percent_sales_margin' | 'vat_duty_percent_sales_margin' | 'duty_percent_sales_margin';
|
|
8282
|
+
type PriceDetailKey = 'item_price' | 'margins' | 'vat' | 'duty' | 'rounding' | 'adjustment';
|
|
8283
|
+
type PricingLevySetting = 'included' | 'displayed' | 'ignored';
|
|
8284
|
+
}
|
|
8285
|
+
declare namespace io.flow.price.v0.models {
|
|
8286
|
+
interface CurrencyFormat {
|
|
8287
|
+
readonly symbol: io.flow.common.v0.enums.CurrencySymbolFormat;
|
|
8288
|
+
readonly label_formatters: io.flow.common.v0.enums.CurrencyLabelFormatter[];
|
|
8289
|
+
}
|
|
8290
|
+
interface DeminimisPerItem {
|
|
8291
|
+
readonly discriminator: 'deminimis_per_item';
|
|
8292
|
+
readonly currency: string;
|
|
8293
|
+
readonly minimum?: number;
|
|
8294
|
+
readonly maximum?: number;
|
|
8295
|
+
}
|
|
8296
|
+
interface DeminimisSimple {
|
|
8297
|
+
readonly discriminator: 'deminimis_simple';
|
|
8298
|
+
readonly value?: number;
|
|
8299
|
+
readonly currency: string;
|
|
8300
|
+
readonly components: io.flow.price.v0.enums.LevyComponent[];
|
|
8301
|
+
readonly minimum?: number;
|
|
8302
|
+
}
|
|
8303
|
+
interface Duty {
|
|
8304
|
+
readonly rate: number;
|
|
8305
|
+
readonly components: io.flow.price.v0.enums.LevyComponent[];
|
|
8306
|
+
readonly deminimis?: io.flow.price.v0.unions.Deminimis;
|
|
8307
|
+
readonly name?: string;
|
|
8308
|
+
}
|
|
8309
|
+
interface LocalPriceDetails {
|
|
8310
|
+
readonly base: io.flow.price.v0.models.PriceDetails;
|
|
8311
|
+
readonly local: io.flow.price.v0.models.PriceDetails;
|
|
8312
|
+
readonly discount?: io.flow.price.v0.models.PriceDetail;
|
|
8313
|
+
readonly local_before_discount?: io.flow.price.v0.models.PriceDetail;
|
|
8314
|
+
}
|
|
8315
|
+
interface PriceBook {
|
|
8316
|
+
readonly id: string;
|
|
8317
|
+
readonly key: string;
|
|
8318
|
+
readonly currency: string;
|
|
8319
|
+
readonly name: string;
|
|
8320
|
+
readonly includes: io.flow.common.v0.models.IncludedLevies;
|
|
8321
|
+
readonly status: io.flow.common.v0.enums.PriceBookStatus;
|
|
8322
|
+
}
|
|
8323
|
+
interface PriceBookForm {
|
|
8324
|
+
readonly currency: string;
|
|
8325
|
+
readonly name: string;
|
|
8326
|
+
readonly includes: io.flow.common.v0.enums.IncludedLevyKey;
|
|
8327
|
+
readonly status?: io.flow.common.v0.enums.PriceBookStatus;
|
|
8328
|
+
}
|
|
8329
|
+
interface PriceBookItem {
|
|
8330
|
+
readonly id: string;
|
|
8331
|
+
readonly key: string;
|
|
8332
|
+
readonly price_book: io.flow.price.v0.models.PriceBookReference;
|
|
8333
|
+
readonly price: io.flow.common.v0.models.Price;
|
|
8334
|
+
readonly item_number: string;
|
|
8335
|
+
readonly schedule: io.flow.price.v0.models.PriceBookItemSchedule;
|
|
8336
|
+
readonly item_attributes?: Record<string, string>;
|
|
8337
|
+
}
|
|
8338
|
+
interface PriceBookItemForm {
|
|
8339
|
+
readonly price_book_key: string;
|
|
8340
|
+
readonly item_number: string;
|
|
8341
|
+
readonly amount: number;
|
|
8342
|
+
readonly schedule?: io.flow.price.v0.models.PriceBookItemSchedule;
|
|
8343
|
+
readonly item_attributes?: Record<string, string>;
|
|
8344
|
+
}
|
|
8345
|
+
interface PriceBookItemQueryForm {
|
|
8346
|
+
readonly price_book_key: string;
|
|
8347
|
+
readonly item_query: string;
|
|
8348
|
+
readonly amount: number;
|
|
8349
|
+
readonly schedule?: io.flow.price.v0.models.PriceBookItemSchedule;
|
|
8350
|
+
readonly item_attributes?: Record<string, string>;
|
|
8351
|
+
}
|
|
8352
|
+
interface PriceBookItemSchedule {
|
|
8353
|
+
readonly starts_at: string;
|
|
8354
|
+
readonly ends_at?: string;
|
|
8355
|
+
}
|
|
8356
|
+
interface PriceBookReference {
|
|
8357
|
+
readonly id: string;
|
|
8358
|
+
readonly key: string;
|
|
8359
|
+
}
|
|
8360
|
+
interface PriceCheck {
|
|
8361
|
+
readonly display: io.flow.price.v0.models.LocalPriceDetails;
|
|
8362
|
+
readonly final: io.flow.price.v0.models.LocalPriceDetails;
|
|
8363
|
+
}
|
|
8364
|
+
interface PriceDetail {
|
|
8365
|
+
readonly key: io.flow.price.v0.enums.PriceDetailKey;
|
|
8366
|
+
readonly components: io.flow.price.v0.models.PriceDetailComponent[];
|
|
8367
|
+
readonly amount: number;
|
|
8368
|
+
readonly label: string;
|
|
8369
|
+
readonly name?: string;
|
|
8370
|
+
readonly basis?: number;
|
|
8371
|
+
}
|
|
8372
|
+
interface PriceDetailComponent {
|
|
8373
|
+
readonly key: io.flow.price.v0.enums.PriceDetailComponentKey;
|
|
8374
|
+
readonly amount: number;
|
|
8375
|
+
readonly label: string;
|
|
8376
|
+
readonly name?: string;
|
|
8377
|
+
}
|
|
8378
|
+
interface PriceDetails {
|
|
8379
|
+
readonly currency: string;
|
|
8380
|
+
readonly item_price: io.flow.price.v0.models.PriceDetail;
|
|
8381
|
+
readonly margins: io.flow.price.v0.models.PriceDetail;
|
|
8382
|
+
readonly vat: io.flow.price.v0.models.PriceDetail;
|
|
8383
|
+
readonly duty: io.flow.price.v0.models.PriceDetail;
|
|
8384
|
+
readonly rounding: io.flow.price.v0.models.PriceDetail;
|
|
8385
|
+
readonly price: io.flow.common.v0.models.Price;
|
|
8386
|
+
readonly total: io.flow.common.v0.models.Price;
|
|
8387
|
+
readonly adjustment?: io.flow.price.v0.models.PriceDetail;
|
|
8388
|
+
}
|
|
8389
|
+
interface PriceEquation {
|
|
8390
|
+
readonly contracted_rate: number;
|
|
8391
|
+
readonly rate: number;
|
|
8392
|
+
readonly pricing: io.flow.price.v0.models.Pricing;
|
|
8393
|
+
readonly base_price: number;
|
|
8394
|
+
readonly discount: number;
|
|
8395
|
+
readonly fixed_margin: number;
|
|
8396
|
+
readonly percent_margin: number;
|
|
8397
|
+
readonly insurance: number;
|
|
8398
|
+
readonly freight: number;
|
|
8399
|
+
readonly duty?: io.flow.price.v0.models.Duty;
|
|
8400
|
+
readonly tax?: io.flow.price.v0.models.Tax;
|
|
8401
|
+
readonly percent_sales_margin: number;
|
|
8402
|
+
}
|
|
8403
|
+
interface Pricing {
|
|
8404
|
+
readonly vat: io.flow.price.v0.enums.PricingLevySetting;
|
|
8405
|
+
readonly duty: io.flow.price.v0.enums.PricingLevySetting;
|
|
8406
|
+
readonly rounding?: io.flow.common.v0.models.Rounding;
|
|
8407
|
+
}
|
|
8408
|
+
interface Tax {
|
|
8409
|
+
readonly name: string;
|
|
8410
|
+
readonly rate: number;
|
|
8411
|
+
readonly components: io.flow.price.v0.enums.LevyComponent[];
|
|
8412
|
+
readonly deminimis?: io.flow.price.v0.unions.Deminimis;
|
|
8413
|
+
}
|
|
8414
|
+
}
|
|
8415
|
+
declare namespace io.flow.price.v0.unions {
|
|
8416
|
+
type Deminimis = io.flow.price.v0.models.DeminimisSimple | io.flow.price.v0.models.DeminimisPerItem;
|
|
8417
|
+
}
|
|
8418
|
+
declare namespace io.flow.tracking.v0.enums {
|
|
8419
|
+
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
|
|
8420
|
+
}
|
|
8421
|
+
declare namespace io.flow.tracking.v0.models {
|
|
8422
|
+
interface LabelTrackingCarrierService {
|
|
8423
|
+
readonly carrier_id: string;
|
|
8424
|
+
readonly service_id?: string;
|
|
8425
|
+
}
|
|
8426
|
+
interface LabelTrackingSummary {
|
|
8427
|
+
readonly id: string;
|
|
8428
|
+
readonly carrier_service: io.flow.tracking.v0.models.LabelTrackingCarrierService;
|
|
8429
|
+
readonly carrier_tracking_number: string;
|
|
8430
|
+
readonly order_number?: string;
|
|
8431
|
+
readonly label?: io.flow.label.v0.models.LabelReference;
|
|
8432
|
+
readonly in_transit: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
8433
|
+
readonly delivered?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
8434
|
+
readonly rejected?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
8435
|
+
}
|
|
8436
|
+
interface LabelTrackingSummaryUpdate {
|
|
8437
|
+
readonly timestamp: string;
|
|
8438
|
+
readonly created_at?: string;
|
|
8439
|
+
}
|
|
8440
|
+
interface Tracking {
|
|
8441
|
+
readonly id: string;
|
|
8442
|
+
readonly labels: io.flow.tracking.v0.models.TrackingLabel[];
|
|
8443
|
+
readonly status: io.flow.tracking.v0.enums.TrackingStatus;
|
|
8444
|
+
readonly attributes: Record<string, string>;
|
|
8445
|
+
readonly url: string;
|
|
8446
|
+
readonly window?: io.flow.common.v0.models.DatetimeRange;
|
|
8447
|
+
readonly order_number?: string;
|
|
8448
|
+
}
|
|
8449
|
+
interface TrackingEvent {
|
|
8450
|
+
readonly id: string;
|
|
8451
|
+
readonly address: io.flow.common.v0.models.Address;
|
|
8452
|
+
readonly status: io.flow.tracking.v0.enums.TrackingStatus;
|
|
8453
|
+
readonly timestamp: string;
|
|
8454
|
+
readonly description?: string;
|
|
8455
|
+
}
|
|
8456
|
+
interface TrackingEventForm {
|
|
8457
|
+
readonly tracking_label_id: string;
|
|
8458
|
+
readonly timestamp: string;
|
|
8459
|
+
readonly status: io.flow.tracking.v0.enums.TrackingStatus;
|
|
8171
8460
|
readonly description?: string;
|
|
8172
8461
|
readonly address?: string;
|
|
8173
8462
|
}
|
|
@@ -8292,7 +8581,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
8292
8581
|
readonly status: io.flow.common.v0.enums.OrganizationStatus;
|
|
8293
8582
|
}
|
|
8294
8583
|
interface OperationsContact {
|
|
8295
|
-
readonly full_name?: string;
|
|
8296
8584
|
readonly company?: string;
|
|
8297
8585
|
readonly email?: string;
|
|
8298
8586
|
readonly phone?: string;
|
|
@@ -8309,7 +8597,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
8309
8597
|
readonly status: io.flow.merchant.onboarding.v0.enums.OnboardingApplicationStatus;
|
|
8310
8598
|
readonly company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
8311
8599
|
readonly indirect_tax?: io.flow.merchant.onboarding.v0.models.IndirectTax;
|
|
8312
|
-
readonly parent_company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
8313
8600
|
readonly beneficiary?: string;
|
|
8314
8601
|
readonly ultimate_beneficiary_owner?: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
|
|
8315
8602
|
readonly business_url?: string;
|
|
@@ -8319,30 +8606,29 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
8319
8606
|
readonly chargeback_percentage?: number;
|
|
8320
8607
|
readonly bank_account_number?: string;
|
|
8321
8608
|
readonly aba_routing_transit_number?: string;
|
|
8322
|
-
readonly trade_sectors?: io.flow.merchant.onboarding.v0.enums.OnboardingTradeSector[];
|
|
8323
8609
|
readonly other_trade_sector?: string;
|
|
8324
8610
|
readonly third_party_logistics_partners?: io.flow.merchant.onboarding.v0.models.ThirdPartyLogisticsPartner[];
|
|
8611
|
+
readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
8325
8612
|
readonly average_order_weight?: number;
|
|
8326
8613
|
readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
|
|
8327
8614
|
readonly monthly_average?: io.flow.merchant.onboarding.v0.models.MonthlyAverage;
|
|
8328
|
-
readonly dangerous_goods?: boolean;
|
|
8329
8615
|
readonly default_country_of_origin?: string;
|
|
8330
8616
|
readonly ratecard?: io.flow.ratecard.v0.models.RatecardReference;
|
|
8331
8617
|
readonly rate_card: string;
|
|
8332
8618
|
readonly created_at: string;
|
|
8333
8619
|
readonly activated_at?: string;
|
|
8334
8620
|
readonly status_updated_at?: string;
|
|
8335
|
-
readonly logistics_format?: io.flow.merchant.onboarding.v0.models.LogisticsFormat;
|
|
8336
8621
|
readonly shop?: io.flow.merchant.onboarding.v0.models.Shop;
|
|
8337
8622
|
readonly last_year_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
8338
8623
|
readonly last_month_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
8339
8624
|
readonly average_order_value?: io.flow.common.v0.models.Money;
|
|
8625
|
+
readonly glbe_merchant_guid?: string;
|
|
8626
|
+
readonly mcc_codes?: number[];
|
|
8340
8627
|
}
|
|
8341
8628
|
interface ShopifyMerchantApplicationForm {
|
|
8342
8629
|
readonly discriminator: 'shopify_merchant_application_form';
|
|
8343
8630
|
readonly company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
8344
8631
|
readonly indirect_tax?: io.flow.merchant.onboarding.v0.models.IndirectTax;
|
|
8345
|
-
readonly parent_company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
8346
8632
|
readonly beneficiary?: string;
|
|
8347
8633
|
readonly ultimate_beneficiary_owner?: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
|
|
8348
8634
|
readonly business_url?: string;
|
|
@@ -8352,23 +8638,22 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
8352
8638
|
readonly chargeback_percentage?: number;
|
|
8353
8639
|
readonly bank_account_number?: string;
|
|
8354
8640
|
readonly aba_routing_transit_number?: string;
|
|
8355
|
-
readonly trade_sectors?: io.flow.merchant.onboarding.v0.enums.OnboardingTradeSector[];
|
|
8356
8641
|
readonly other_trade_sector?: string;
|
|
8357
8642
|
readonly third_party_logistics_partners?: io.flow.merchant.onboarding.v0.models.ThirdPartyLogisticsPartner[];
|
|
8643
|
+
readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
8358
8644
|
readonly average_order_weight?: number;
|
|
8359
8645
|
readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
|
|
8360
8646
|
readonly monthly_average_volume_amount?: number;
|
|
8361
8647
|
readonly monthly_average_volume_currency?: string;
|
|
8362
8648
|
readonly monthly_average_number_transactions?: number;
|
|
8363
|
-
readonly dangerous_goods?: boolean;
|
|
8364
8649
|
readonly default_country_of_origin?: string;
|
|
8365
8650
|
readonly ratecard_id?: string;
|
|
8366
8651
|
readonly rate_card: string;
|
|
8367
|
-
readonly logistics_format?: io.flow.merchant.onboarding.v0.models.LogisticsFormat;
|
|
8368
8652
|
readonly shop?: io.flow.merchant.onboarding.v0.models.Shop;
|
|
8369
8653
|
readonly last_year_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
8370
8654
|
readonly last_month_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
8371
8655
|
readonly average_order_value?: io.flow.common.v0.models.Money;
|
|
8656
|
+
readonly mcc_codes?: number[];
|
|
8372
8657
|
}
|
|
8373
8658
|
interface ShopifyMerchantApplicationPutForm {
|
|
8374
8659
|
readonly discriminator: 'shopify_merchant_application_put_form';
|
|
@@ -8931,6 +9216,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
8931
9216
|
type PayoutAttachmentType = 'transactions';
|
|
8932
9217
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
8933
9218
|
type StatementAttachmentType = 'csv';
|
|
9219
|
+
type TransactionPayoutPendingReason = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'external_fulfillment_missing_tracking_info' | 'waiting_for_positive_account_balance';
|
|
8934
9220
|
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
8935
9221
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
8936
9222
|
}
|
|
@@ -9007,6 +9293,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
9007
9293
|
interface ChannelTransaction {
|
|
9008
9294
|
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
9009
9295
|
readonly id: string;
|
|
9296
|
+
readonly metadata?: io.flow.billing.v0.unions.TransactionMetadata;
|
|
9010
9297
|
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
9011
9298
|
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
9012
9299
|
readonly currency: string;
|
|
@@ -9021,6 +9308,11 @@ declare namespace io.flow.billing.v0.models {
|
|
|
9021
9308
|
readonly created_at: string;
|
|
9022
9309
|
readonly updated_at: string;
|
|
9023
9310
|
}
|
|
9311
|
+
interface ChannelTransactionPayout {
|
|
9312
|
+
readonly transaction: io.flow.billing.v0.models.TransactionReference;
|
|
9313
|
+
readonly waiting_for?: io.flow.billing.v0.enums.TransactionPayoutPendingReason;
|
|
9314
|
+
readonly payout?: io.flow.billing.v0.models.PayoutReference;
|
|
9315
|
+
}
|
|
9024
9316
|
interface DefaultBankAccountForm {
|
|
9025
9317
|
readonly bank_account_id: string;
|
|
9026
9318
|
}
|
|
@@ -9048,6 +9340,11 @@ declare namespace io.flow.billing.v0.models {
|
|
|
9048
9340
|
readonly created_at: string;
|
|
9049
9341
|
readonly updated_at: string;
|
|
9050
9342
|
}
|
|
9343
|
+
interface OrganizationTransactionPayout {
|
|
9344
|
+
readonly transaction: io.flow.billing.v0.models.TransactionReference;
|
|
9345
|
+
readonly waiting_for?: io.flow.billing.v0.enums.TransactionPayoutPendingReason;
|
|
9346
|
+
readonly payout?: io.flow.billing.v0.models.PayoutReference;
|
|
9347
|
+
}
|
|
9051
9348
|
interface ParentTransactionSummary {
|
|
9052
9349
|
readonly id: string;
|
|
9053
9350
|
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
@@ -9056,6 +9353,9 @@ declare namespace io.flow.billing.v0.models {
|
|
|
9056
9353
|
readonly type: io.flow.billing.v0.enums.PayoutAttachmentType;
|
|
9057
9354
|
readonly url: string;
|
|
9058
9355
|
}
|
|
9356
|
+
interface PayoutReference {
|
|
9357
|
+
readonly id: string;
|
|
9358
|
+
}
|
|
9059
9359
|
interface PayoutStatusFailed {
|
|
9060
9360
|
readonly code: 'failed';
|
|
9061
9361
|
readonly timestamp: string;
|
|
@@ -9071,6 +9371,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
9071
9371
|
}
|
|
9072
9372
|
interface PayoutTransaction {
|
|
9073
9373
|
readonly id: string;
|
|
9374
|
+
readonly metadata?: io.flow.billing.v0.unions.TransactionMetadata;
|
|
9074
9375
|
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
9075
9376
|
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
9076
9377
|
readonly currency: string;
|
|
@@ -9106,6 +9407,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
9106
9407
|
interface Transaction {
|
|
9107
9408
|
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
9108
9409
|
readonly id: string;
|
|
9410
|
+
readonly metadata?: io.flow.billing.v0.unions.TransactionMetadata;
|
|
9109
9411
|
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
9110
9412
|
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
9111
9413
|
readonly currency: string;
|
|
@@ -9120,6 +9422,13 @@ declare namespace io.flow.billing.v0.models {
|
|
|
9120
9422
|
readonly created_at: string;
|
|
9121
9423
|
readonly updated_at: string;
|
|
9122
9424
|
}
|
|
9425
|
+
interface TransactionMetadataShippingLabel {
|
|
9426
|
+
readonly discriminator: 'shipping_label';
|
|
9427
|
+
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
9428
|
+
}
|
|
9429
|
+
interface TransactionReference {
|
|
9430
|
+
readonly id: string;
|
|
9431
|
+
}
|
|
9123
9432
|
interface WithholdingDeduction {
|
|
9124
9433
|
readonly type: io.flow.billing.v0.enums.WithholdingDeductionType;
|
|
9125
9434
|
readonly amount: number;
|
|
@@ -9130,6 +9439,7 @@ declare namespace io.flow.billing.v0.unions {
|
|
|
9130
9439
|
type BankAccountForm = io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple;
|
|
9131
9440
|
type PayoutStatus = io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed;
|
|
9132
9441
|
type Settlement = io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout;
|
|
9442
|
+
type TransactionMetadata = io.flow.billing.v0.models.TransactionMetadataShippingLabel;
|
|
9133
9443
|
}
|
|
9134
9444
|
declare namespace io.flow.harmonization.v0.enums {
|
|
9135
9445
|
type TaxApplicability = 'none' | 'all';
|
|
@@ -9496,6 +9806,7 @@ declare namespace io.flow.fulfillment.v0.enums {
|
|
|
9496
9806
|
type LanePreselectPreference = 'lowest_cost' | 'default_tier';
|
|
9497
9807
|
type LaneStrategy = 'oldest' | 'fastest' | 'lowest_cost' | 'highest_priority';
|
|
9498
9808
|
type PhysicalDeliverySpecialSerivce = 'cold_storage' | 'hazardous' | 'perishable';
|
|
9809
|
+
type PreferredServiceSelectionStrategy = 'calculated_rate' | 'flat_rate' | 'custom_rate';
|
|
9499
9810
|
type QuoteErrorCode = 'generic_error' | 'items_not_available' | 'shipping_unavailable';
|
|
9500
9811
|
type RatecardOwner = 'flow' | 'organization';
|
|
9501
9812
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
@@ -9761,6 +10072,11 @@ declare namespace io.flow.fulfillment.v0.models {
|
|
|
9761
10072
|
readonly total?: io.flow.catalog.v0.models.LocalizedTotal;
|
|
9762
10073
|
readonly goods_supply?: io.flow.common.v0.enums.GoodsSupply;
|
|
9763
10074
|
readonly merchant_of_record_flow_entity?: io.flow.merchant.of.record.v0.enums.FlowEntity;
|
|
10075
|
+
readonly preferred_service?: io.flow.fulfillment.v0.models.PhysicalDeliveryPreferredService;
|
|
10076
|
+
}
|
|
10077
|
+
interface PhysicalDeliveryPreferredService {
|
|
10078
|
+
readonly id: string;
|
|
10079
|
+
readonly selection_stratey: io.flow.fulfillment.v0.enums.PreferredServiceSelectionStrategy;
|
|
9764
10080
|
}
|
|
9765
10081
|
interface PriceWithBaseAndDetails {
|
|
9766
10082
|
readonly currency: string;
|
|
@@ -10185,6 +10501,9 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
10185
10501
|
interface ActivationPutForm {
|
|
10186
10502
|
readonly placeholder?: boolean;
|
|
10187
10503
|
}
|
|
10504
|
+
interface DeactivationPutForm {
|
|
10505
|
+
readonly reason: string;
|
|
10506
|
+
}
|
|
10188
10507
|
interface InComplianceReview {
|
|
10189
10508
|
readonly discriminator: 'in_compliance_review';
|
|
10190
10509
|
readonly placeholder?: boolean;
|
|
@@ -10193,6 +10512,10 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
10193
10512
|
readonly discriminator: 'merchant_activated';
|
|
10194
10513
|
readonly placeholder?: boolean;
|
|
10195
10514
|
}
|
|
10515
|
+
interface MerchantDeactivated {
|
|
10516
|
+
readonly discriminator: 'merchant_deactivated';
|
|
10517
|
+
readonly reason: string;
|
|
10518
|
+
}
|
|
10196
10519
|
interface MerchantRejected {
|
|
10197
10520
|
readonly discriminator: 'merchant_rejected';
|
|
10198
10521
|
readonly reason: io.flow.organization.onboarding.state.v0.enums.MerchantRejectedReason;
|
|
@@ -10212,6 +10535,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
10212
10535
|
readonly time_blocked?: number;
|
|
10213
10536
|
readonly blocked_since?: string;
|
|
10214
10537
|
readonly completed_at?: string;
|
|
10538
|
+
readonly onboarding_started_at?: string;
|
|
10215
10539
|
}
|
|
10216
10540
|
interface SetupBlocked {
|
|
10217
10541
|
readonly discriminator: 'setup_blocked';
|
|
@@ -10227,7 +10551,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
10227
10551
|
}
|
|
10228
10552
|
}
|
|
10229
10553
|
declare namespace io.flow.organization.onboarding.state.v0.unions {
|
|
10230
|
-
type OnboardingState = io.flow.organization.onboarding.state.v0.models.InComplianceReview | io.flow.organization.onboarding.state.v0.models.SetupInProgress | io.flow.organization.onboarding.state.v0.models.MerchantRejected | io.flow.organization.onboarding.state.v0.models.SetupBlocked | io.flow.organization.onboarding.state.v0.models.SetupCompleted | io.flow.organization.onboarding.state.v0.models.MerchantActivated;
|
|
10554
|
+
type OnboardingState = io.flow.organization.onboarding.state.v0.models.InComplianceReview | io.flow.organization.onboarding.state.v0.models.SetupInProgress | io.flow.organization.onboarding.state.v0.models.MerchantRejected | io.flow.organization.onboarding.state.v0.models.SetupBlocked | io.flow.organization.onboarding.state.v0.models.SetupCompleted | io.flow.organization.onboarding.state.v0.models.MerchantActivated | io.flow.organization.onboarding.state.v0.models.MerchantDeactivated;
|
|
10231
10555
|
}
|
|
10232
10556
|
declare namespace io.flow.fraud.v0.enums {
|
|
10233
10557
|
type FraudEmailRuleDecision = 'approved' | 'declined';
|
|
@@ -10538,9 +10862,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10538
10862
|
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-0522d426a5b741c791ba05496c35297a';
|
|
10539
10863
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
10540
10864
|
type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
|
|
10541
|
-
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_total' | '
|
|
10865
|
+
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_total' | 'channel_transactions_capture_count' | 'channel_transactions_capture_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_transactions_other_count' | 'channel_transactions_other_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_capture_deletion_unprocessed_count' | 'queued_channel_transaction_unprocessed_count' | 'queued_channel_organization_unprocessed_count' | 'queued_consumer_invoice_unprocessed_count' | 'queued_fulfillment_external_unprocessed_count' | 'queued_fulfillment_in_transit_unprocessed_count' | 'queued_fulfillment_shipping_notification_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_label_tracking_summary_unprocessed_count' | 'queued_label_origin_unprocessed_count' | 'queued_order_unprocessed_count' | 'queued_order_identifier_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_refund_deletion_unprocessed_count' | 'queued_refund_over_capture_unprocessed_count' | 'queued_sales_record_unprocessed_count' | 'queued_statement_batch_unprocessed_count' | 'queued_statement_email_unprocessed_count' | 'queued_statement_summary_email_unprocessed_count' | 'queued_record_snooze_count' | 'queued_record_snooze_ending_in_48_hours_count' | 'statements_no_payout_count' | 'statements_no_payout_total' | 'statements_pending_payout_count' | 'statements_pending_payout_total' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'pending_payouts_max_age' | 'average_payout_amount' | 'orders_with_payments_count' | 'orders_without_payments_count' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count';
|
|
10542
10866
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'all';
|
|
10543
|
-
type BillingStatementBatchFileKey = '
|
|
10867
|
+
type BillingStatementBatchFileKey = 'summary';
|
|
10544
10868
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
10545
10869
|
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty';
|
|
10546
10870
|
type BlazeCheckoutEvent = 'begin_checkout' | 'select_promotion' | 'add_shipping_info' | 'add_payment_info' | 'purchase';
|
|
@@ -10548,10 +10872,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10548
10872
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
10549
10873
|
type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax';
|
|
10550
10874
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
10875
|
+
type CarrierValidationStatus = 'success' | 'error';
|
|
10551
10876
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
10552
10877
|
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
10553
|
-
type ChannelOrderAcceptanceErrorAction = 'auto_reject';
|
|
10554
|
-
type
|
|
10878
|
+
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
10879
|
+
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tlc_team';
|
|
10880
|
+
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';
|
|
10555
10881
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
|
|
10556
10882
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
10557
10883
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
@@ -10647,6 +10973,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10647
10973
|
type DisputeLiability = 'flow' | 'organization';
|
|
10648
10974
|
type DisputeProcessor = 'adyen' | 'paypal';
|
|
10649
10975
|
type DisputeStatus = 'pending' | 'won' | 'lost' | 'expired';
|
|
10976
|
+
type DisputeTransactionType = 'adjustment' | 'dispute';
|
|
10650
10977
|
type DisputeType = 'chargeback';
|
|
10651
10978
|
type DutyCompoundExpressionType = 'sum' | 'max' | 'min';
|
|
10652
10979
|
type DutyExemptItemTypes = 'gift_card' | 'service' | 'digital_item' | 'personalization';
|
|
@@ -10657,7 +10984,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10657
10984
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
10658
10985
|
type EmptyAttribute = 'irrelevant';
|
|
10659
10986
|
type ErpFileType = 'vendor';
|
|
10660
|
-
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' | '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' | 'daily_value_upserted' | 'daily_value_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' | '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_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_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' | 'partner_organization_settings_upserted' | 'partner_organization_settings_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' | '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_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';
|
|
10987
|
+
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' | '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' | '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_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' | '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';
|
|
10661
10988
|
type ExperienceImportType = 'experience_with_settings';
|
|
10662
10989
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
10663
10990
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -10691,6 +11018,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10691
11018
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
10692
11019
|
type LabelGenerationAddressFailureStatus = 'in_review' | 'resolved' | 'unresolved';
|
|
10693
11020
|
type LabelInputSource = 'estimate';
|
|
11021
|
+
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_system';
|
|
10694
11022
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
10695
11023
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
10696
11024
|
type MainTransactionStatus = 'scheduled' | 'pending_proof';
|
|
@@ -10714,7 +11042,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10714
11042
|
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | 'miscellaneous';
|
|
10715
11043
|
type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
10716
11044
|
type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
10717
|
-
type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'api_internal_delete_transaction' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
|
|
11045
|
+
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';
|
|
10718
11046
|
type OrderAction = 'consumer_submit' | 'fraud_review_accept' | 'fraud_review_decline' | 'payment_fully_authorize' | 'payment_fully_capture';
|
|
10719
11047
|
type OrderAttributeIntent = 'discount_code';
|
|
10720
11048
|
type OrderCancellationInitiatedBy = 'flow' | 'organization';
|
|
@@ -10745,13 +11073,15 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10745
11073
|
type PromptCheckoutDisplayPosition = 'email' | 'submission';
|
|
10746
11074
|
type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
|
|
10747
11075
|
type PromptTarget = 'browse' | 'checkout';
|
|
10748
|
-
type QueuedRecordType = 'capture' | 'capture_deletion' | 'channel_transaction' | 'channel_organization' | 'consumer_invoice' | 'label_tracking_summary' | 'order' | 'order_identifier' | 'refund' | 'refund_deletion' | '
|
|
11076
|
+
type QueuedRecordType = 'capture' | 'capture_deletion' | 'channel_transaction' | 'channel_organization' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'label_tracking_summary' | 'label_invoice_request' | 'label_origin' | 'order' | 'order_identifier' | 'refund' | 'refund_deletion' | 'refund_over_capture' | 'sales_record' | 'statement_batch' | 'statement_email' | 'statement_summary_email' | 'wash';
|
|
10749
11077
|
type QuoteRequestType = 'generate' | 'delete' | 'update_currency_rate' | 'update_country';
|
|
11078
|
+
type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
|
|
10750
11079
|
type RateSource = 'calculated' | 'market';
|
|
10751
11080
|
type ReboundConfigurationStatus = 'active' | 'inactive';
|
|
10752
11081
|
type RedirectReason = 'three_d_secure';
|
|
10753
|
-
type RejectionReason = '
|
|
11082
|
+
type RejectionReason = 'merchant_policy' | 'previous_chargebacks' | 'restricted_party_screening' | 'risky_velocity' | 'suspicious_behavior' | 'suspicious_past_activity';
|
|
10754
11083
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
11084
|
+
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
10755
11085
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
10756
11086
|
type ResponsibleParty = 'flow' | 'organization';
|
|
10757
11087
|
type RestrictionAction = 'prohibited' | 'restricted';
|
|
@@ -10767,6 +11097,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10767
11097
|
type ShopifyGrantStatus = 'pass' | 'fail';
|
|
10768
11098
|
type ShopifyMarketsDangerousGoods = 'aerosols' | 'air_bag_inflators_or_seat_belt_pretensioners' | 'alcoholic_beverages_containing_more_than_24_percent_alcohol_by_volume' | 'batteries' | 'carbon_dioxide_or_dry_ice' | 'corrosives' | 'cannabidiol_products' | 'cologne_or_perfume' | 'currency_or_gift_cards_or_monetary_instruments' | 'exotic_leather_goods' | 'environmental_waste' | 'explosives_or_ammunition' | 'flammable_liquids' | 'gases' | 'hazardous_or_combustible_materials' | 'infectious_or_biological_substances' | 'knives' | 'matches_or_lighter_or_lighter_refills' | 'nail_polish' | 'oxidizing_materials_or_organic_peroxides' | 'pornography' | 'prohibited_carriage' | 'pesticides_or_toxic_herbicides_or_insecticides_or_poisonous_toxic_substances';
|
|
10769
11099
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
11100
|
+
type ShopifyMarketsQueuedRecordType = 'order_update' | 'card_payment' | 'online_payment' | 'flow_shop' | 'catalog_publication_sync' | 'product_restriction_result';
|
|
10770
11101
|
type ShopifyMarketsTradeSector = 'apparel_and_accessories' | 'beauty_and_cosmetics' | 'electronics' | 'food_or_perishables' | 'jewellery_and_watches' | 'paper_and_art' | 'sports_and_fitness' | 'toys_hobbies_gifts' | 'other';
|
|
10771
11102
|
type ShopifyMonitoringMonitorReviewStatus = 'in_review' | 'reviewed';
|
|
10772
11103
|
type ShopifyMonitoringTrackingField = 'tracking_number' | 'carrier_service' | 'tracking_url';
|
|
@@ -10787,7 +11118,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10787
11118
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
10788
11119
|
type SurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid';
|
|
10789
11120
|
type TariffEligibilityType = 'rex';
|
|
10790
|
-
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | '
|
|
11121
|
+
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults';
|
|
10791
11122
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
10792
11123
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
10793
11124
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
|
|
@@ -10795,7 +11126,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10795
11126
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
10796
11127
|
type TransactionPostingMethod = 'time' | 'proof';
|
|
10797
11128
|
type TransferMethod = 'ach';
|
|
11129
|
+
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak';
|
|
10798
11130
|
type UnclassifiedProductStatus = 'ignored' | 'escalated' | 'requeued' | 'unverified' | 'queued' | 'unconfident';
|
|
11131
|
+
type WashCarrierActualFileStatus = 'pending' | 'processing' | 'processed' | 'failed';
|
|
11132
|
+
type WeightSelection = 'dead' | 'dimensional';
|
|
10799
11133
|
}
|
|
10800
11134
|
declare namespace io.flow.internal.v0.models {
|
|
10801
11135
|
interface Acceptance {
|
|
@@ -11064,6 +11398,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11064
11398
|
readonly authentication: io.flow.internal.v0.models.AdyenAuthenticationForm;
|
|
11065
11399
|
readonly country: string;
|
|
11066
11400
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
11401
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
11067
11402
|
}
|
|
11068
11403
|
interface AdyenAuthentication {
|
|
11069
11404
|
readonly username: string;
|
|
@@ -11206,6 +11541,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11206
11541
|
readonly external_id: string;
|
|
11207
11542
|
readonly country: string;
|
|
11208
11543
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
11544
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
11209
11545
|
}
|
|
11210
11546
|
interface AdyenPaymentDetailsForm {
|
|
11211
11547
|
readonly fingerprint?: string;
|
|
@@ -11257,6 +11593,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11257
11593
|
readonly country: string;
|
|
11258
11594
|
readonly authentication: io.flow.internal.v0.models.AfterpayAuthenticationForm;
|
|
11259
11595
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
11596
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
11260
11597
|
}
|
|
11261
11598
|
interface AfterpayAuthentication {
|
|
11262
11599
|
readonly username: string;
|
|
@@ -11362,6 +11699,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11362
11699
|
readonly queue: string;
|
|
11363
11700
|
readonly count: number;
|
|
11364
11701
|
}
|
|
11702
|
+
interface AlgoliaIndexAssignment {
|
|
11703
|
+
readonly id: string;
|
|
11704
|
+
readonly name: string;
|
|
11705
|
+
readonly application_id: string;
|
|
11706
|
+
}
|
|
11365
11707
|
interface AllItemsExport {
|
|
11366
11708
|
readonly discriminator: 'all_items_export';
|
|
11367
11709
|
readonly event_id: string;
|
|
@@ -11450,6 +11792,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11450
11792
|
readonly price: io.flow.common.v0.models.PriceWithBase;
|
|
11451
11793
|
readonly charge_trigger: io.flow.internal.v0.enums.OrderChargeTrigger;
|
|
11452
11794
|
}
|
|
11795
|
+
interface AutoReviewCriteria {
|
|
11796
|
+
readonly hs_code?: string;
|
|
11797
|
+
readonly keywords?: string[];
|
|
11798
|
+
readonly action?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
11799
|
+
}
|
|
11453
11800
|
interface Backfill {
|
|
11454
11801
|
readonly days_to_backfill: string[];
|
|
11455
11802
|
}
|
|
@@ -11602,7 +11949,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11602
11949
|
}
|
|
11603
11950
|
interface BillingStatementBatch {
|
|
11604
11951
|
readonly id: string;
|
|
11605
|
-
readonly reconciliation: io.flow.internal.v0.models.BillingStatementBatchReconciliation;
|
|
11606
11952
|
}
|
|
11607
11953
|
interface BillingStatementBatchDeleted {
|
|
11608
11954
|
readonly discriminator: 'billing_statement_batch_deleted';
|
|
@@ -11610,9 +11956,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11610
11956
|
readonly timestamp: string;
|
|
11611
11957
|
readonly id: string;
|
|
11612
11958
|
}
|
|
11613
|
-
interface BillingStatementBatchReconciliation {
|
|
11614
|
-
readonly month: string;
|
|
11615
|
-
}
|
|
11616
11959
|
interface BillingStatementBatchReference {
|
|
11617
11960
|
readonly id: string;
|
|
11618
11961
|
}
|
|
@@ -11720,6 +12063,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11720
12063
|
readonly authentication: io.flow.internal.v0.models.BitpayAuthenticationForm;
|
|
11721
12064
|
readonly country: string;
|
|
11722
12065
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
12066
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
11723
12067
|
}
|
|
11724
12068
|
interface BitpayAuthentication {
|
|
11725
12069
|
readonly api_token: string;
|
|
@@ -11943,6 +12287,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11943
12287
|
readonly rate: number;
|
|
11944
12288
|
readonly name: string;
|
|
11945
12289
|
}
|
|
12290
|
+
interface CalculatorDtcePostBody {
|
|
12291
|
+
readonly products: io.flow.internal.v0.models.CalculatorDtceProduct[];
|
|
12292
|
+
readonly countryCodeFrom: string;
|
|
12293
|
+
readonly countryCodeTo: string;
|
|
12294
|
+
readonly classification: string;
|
|
12295
|
+
readonly shippingCost: number;
|
|
12296
|
+
readonly insuranceCost: number;
|
|
12297
|
+
readonly totalShipmentWeight: number;
|
|
12298
|
+
readonly currencyCode: string;
|
|
12299
|
+
readonly outputCurrencyCode: string;
|
|
12300
|
+
readonly explanation: boolean;
|
|
12301
|
+
readonly responseFormat: number;
|
|
12302
|
+
readonly requestId: string;
|
|
12303
|
+
readonly provinceCode?: string;
|
|
12304
|
+
}
|
|
12305
|
+
interface CalculatorDtceProduct {
|
|
12306
|
+
readonly origin: string;
|
|
12307
|
+
readonly hsCode: string;
|
|
12308
|
+
readonly sku: string;
|
|
12309
|
+
readonly value: number;
|
|
12310
|
+
readonly weight: number;
|
|
12311
|
+
readonly quantity: number;
|
|
12312
|
+
readonly reference?: string;
|
|
12313
|
+
}
|
|
11946
12314
|
interface CalculatorOrganizationSettings {
|
|
11947
12315
|
readonly id: string;
|
|
11948
12316
|
readonly default_country_of_origin?: string;
|
|
@@ -11993,6 +12361,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11993
12361
|
readonly organization: string;
|
|
11994
12362
|
readonly carrier_account: io.flow.internal.v0.models.CarrierAccount;
|
|
11995
12363
|
}
|
|
12364
|
+
interface CarrierAccountValidation {
|
|
12365
|
+
readonly organization: string;
|
|
12366
|
+
readonly status: io.flow.internal.v0.enums.CarrierValidationStatus;
|
|
12367
|
+
readonly error_message?: string;
|
|
12368
|
+
}
|
|
11996
12369
|
interface CarrierInvoice {
|
|
11997
12370
|
readonly number: string;
|
|
11998
12371
|
readonly timestamp: string;
|
|
@@ -12037,6 +12410,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12037
12410
|
readonly organization: string;
|
|
12038
12411
|
readonly data: io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesData;
|
|
12039
12412
|
}
|
|
12413
|
+
interface CatalogPublicationSyncValidationError {
|
|
12414
|
+
readonly message: string;
|
|
12415
|
+
readonly reason: string;
|
|
12416
|
+
readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
12417
|
+
}
|
|
12040
12418
|
interface CatalogSettings {
|
|
12041
12419
|
readonly id: string;
|
|
12042
12420
|
readonly mixed_bag_weight: io.flow.internal.v0.enums.MixedBagWeight;
|
|
@@ -12228,6 +12606,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12228
12606
|
readonly payment_request_id?: string;
|
|
12229
12607
|
readonly status: io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
12230
12608
|
readonly reasons: io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
12609
|
+
readonly next_action_from?: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
12231
12610
|
readonly order_created_at?: string;
|
|
12232
12611
|
}
|
|
12233
12612
|
interface ChannelOrderAcceptanceDeleted {
|
|
@@ -14170,6 +14549,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14170
14549
|
readonly customs_description?: string;
|
|
14171
14550
|
readonly hs6_code?: string;
|
|
14172
14551
|
readonly hs6_description?: string;
|
|
14552
|
+
readonly status?: io.flow.internal.v0.enums.ItemHarmonizationStatus;
|
|
14173
14553
|
}
|
|
14174
14554
|
interface ClassificationProductId {
|
|
14175
14555
|
readonly organization_id: string;
|
|
@@ -14223,6 +14603,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14223
14603
|
interface CommercialInvoiceComparison {
|
|
14224
14604
|
readonly urls: string[];
|
|
14225
14605
|
}
|
|
14606
|
+
interface CompanyReference {
|
|
14607
|
+
readonly id: string;
|
|
14608
|
+
}
|
|
14226
14609
|
interface Compliance {
|
|
14227
14610
|
readonly id: string;
|
|
14228
14611
|
readonly destination: string;
|
|
@@ -14333,6 +14716,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14333
14716
|
readonly authentication: io.flow.internal.v0.models.CryptoAuthenticationForm;
|
|
14334
14717
|
readonly country: string;
|
|
14335
14718
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
14719
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
14336
14720
|
}
|
|
14337
14721
|
interface CryptoAuthentication {
|
|
14338
14722
|
readonly public_key: string;
|
|
@@ -14350,7 +14734,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14350
14734
|
readonly base_amount: number;
|
|
14351
14735
|
readonly surcharges: io.flow.internal.v0.models.CsvSurcharges;
|
|
14352
14736
|
readonly total: number;
|
|
14353
|
-
readonly weight_unit: io.flow.
|
|
14737
|
+
readonly weight_unit: io.flow.units.v0.enums.UnitOfWeight;
|
|
14354
14738
|
readonly weight: number;
|
|
14355
14739
|
readonly ratecard: io.flow.internal.v0.models.CsvActualRatecard;
|
|
14356
14740
|
}
|
|
@@ -14358,7 +14742,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14358
14742
|
readonly base_amount?: number;
|
|
14359
14743
|
}
|
|
14360
14744
|
interface CsvDimensions {
|
|
14361
|
-
readonly unit: io.flow.
|
|
14745
|
+
readonly unit: io.flow.units.v0.enums.UnitOfLength;
|
|
14362
14746
|
readonly length: number;
|
|
14363
14747
|
readonly width: number;
|
|
14364
14748
|
readonly depth: number;
|
|
@@ -14392,7 +14776,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14392
14776
|
readonly base_amount: number;
|
|
14393
14777
|
readonly surcharges: io.flow.internal.v0.models.CsvSurcharges;
|
|
14394
14778
|
readonly total: number;
|
|
14395
|
-
readonly weight_unit: io.flow.
|
|
14779
|
+
readonly weight_unit: io.flow.units.v0.enums.UnitOfWeight;
|
|
14396
14780
|
readonly weight: number;
|
|
14397
14781
|
readonly variance: number;
|
|
14398
14782
|
}
|
|
@@ -14449,7 +14833,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14449
14833
|
readonly duties_paid: number;
|
|
14450
14834
|
}
|
|
14451
14835
|
interface CsvWeight {
|
|
14452
|
-
readonly unit: io.flow.
|
|
14836
|
+
readonly unit: io.flow.units.v0.enums.UnitOfWeight;
|
|
14453
14837
|
readonly provided: number;
|
|
14454
14838
|
readonly dimensional: number;
|
|
14455
14839
|
readonly lookup: number;
|
|
@@ -14633,6 +15017,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14633
15017
|
readonly order: io.flow.internal.v0.models.DebugOrder;
|
|
14634
15018
|
readonly debug: io.flow.internal.v0.models.DebugDetails;
|
|
14635
15019
|
readonly transactions: io.flow.billing.v0.models.Transaction[];
|
|
15020
|
+
readonly reporting: io.flow.internal.v0.models.ReportingDetails;
|
|
14636
15021
|
}
|
|
14637
15022
|
interface DebugOrderTransactionForm {
|
|
14638
15023
|
readonly order_id?: string;
|
|
@@ -14643,6 +15028,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14643
15028
|
readonly refund_id?: string;
|
|
14644
15029
|
readonly order_identifier?: io.flow.internal.v0.models.DebugOrderTransactionFormOrderIdentifier;
|
|
14645
15030
|
readonly authorization_id?: string;
|
|
15031
|
+
readonly posting_proof_id?: string;
|
|
15032
|
+
readonly label_tracking_summary_id?: string;
|
|
14646
15033
|
}
|
|
14647
15034
|
interface DebugOrderTransactionFormOrderIdentifier {
|
|
14648
15035
|
readonly key?: string;
|
|
@@ -15074,6 +15461,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15074
15461
|
readonly type: io.flow.internal.v0.enums.ErpFileType;
|
|
15075
15462
|
}
|
|
15076
15463
|
interface ErpFlowVendor {
|
|
15464
|
+
readonly company: io.flow.internal.v0.models.CompanyReference;
|
|
15465
|
+
readonly entity: io.flow.internal.v0.models.EntityReference;
|
|
15077
15466
|
readonly acc_des: string;
|
|
15078
15467
|
readonly country_name: string;
|
|
15079
15468
|
readonly acng_code: string;
|
|
@@ -15085,7 +15474,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15085
15474
|
readonly state_a: string;
|
|
15086
15475
|
readonly bank_code: string;
|
|
15087
15476
|
readonly id: string;
|
|
15088
|
-
readonly entity: io.flow.internal.v0.models.EntityReference;
|
|
15089
15477
|
readonly tax_code?: string;
|
|
15090
15478
|
readonly vat_flag?: string;
|
|
15091
15479
|
readonly w_tax_percent?: string;
|
|
@@ -15124,21 +15512,109 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15124
15512
|
}
|
|
15125
15513
|
interface ErpPriorityFileForm {
|
|
15126
15514
|
readonly type: io.flow.internal.v0.enums.ErpFileType;
|
|
15515
|
+
readonly name: string;
|
|
15127
15516
|
readonly url: string;
|
|
15128
15517
|
}
|
|
15518
|
+
interface ErpPriorityVendor {
|
|
15519
|
+
readonly id: string;
|
|
15520
|
+
readonly acc_des?: string;
|
|
15521
|
+
readonly tax_code?: string;
|
|
15522
|
+
readonly vat_flag?: string;
|
|
15523
|
+
readonly country_name?: string;
|
|
15524
|
+
readonly w_tax_percent?: string;
|
|
15525
|
+
readonly iban?: string;
|
|
15526
|
+
readonly confirmed_date?: string;
|
|
15527
|
+
readonly w_tax_date?: string;
|
|
15528
|
+
readonly w_tax_num_expl?: string;
|
|
15529
|
+
readonly acng_code?: string;
|
|
15530
|
+
readonly phone?: string;
|
|
15531
|
+
readonly address?: string;
|
|
15532
|
+
readonly address_a?: string;
|
|
15533
|
+
readonly address_2?: string;
|
|
15534
|
+
readonly address_3?: string;
|
|
15535
|
+
readonly state_name?: string;
|
|
15536
|
+
readonly code?: string;
|
|
15537
|
+
readonly zip?: string;
|
|
15538
|
+
readonly pay_account?: string;
|
|
15539
|
+
readonly comp_num?: string;
|
|
15540
|
+
readonly w_tax_num?: string;
|
|
15541
|
+
readonly vat_num?: string;
|
|
15542
|
+
readonly orig_acc_name?: string;
|
|
15543
|
+
readonly branch?: string;
|
|
15544
|
+
readonly form_1099_code?: string;
|
|
15545
|
+
readonly trial_bal_code?: string;
|
|
15546
|
+
readonly sec_name?: string;
|
|
15547
|
+
readonly state?: string;
|
|
15548
|
+
readonly state_a?: string;
|
|
15549
|
+
readonly fax?: string;
|
|
15550
|
+
readonly details?: string;
|
|
15551
|
+
readonly bank_code?: string;
|
|
15552
|
+
readonly state_code?: string;
|
|
15553
|
+
readonly tax_office_code?: string;
|
|
15554
|
+
readonly pay_code?: string;
|
|
15555
|
+
readonly eacc_des?: string;
|
|
15556
|
+
readonly acng_des?: string;
|
|
15557
|
+
readonly branch_des?: string;
|
|
15558
|
+
}
|
|
15559
|
+
interface ErpPriorityVendorForm {
|
|
15560
|
+
readonly acc_des?: string;
|
|
15561
|
+
readonly tax_code?: string;
|
|
15562
|
+
readonly vat_flag?: string;
|
|
15563
|
+
readonly country_name?: string;
|
|
15564
|
+
readonly w_tax_percent?: string;
|
|
15565
|
+
readonly iban?: string;
|
|
15566
|
+
readonly confirmed_date?: string;
|
|
15567
|
+
readonly w_tax_date?: string;
|
|
15568
|
+
readonly w_tax_num_expl?: string;
|
|
15569
|
+
readonly acng_code?: string;
|
|
15570
|
+
readonly phone?: string;
|
|
15571
|
+
readonly address?: string;
|
|
15572
|
+
readonly address_a?: string;
|
|
15573
|
+
readonly address_2?: string;
|
|
15574
|
+
readonly address_3?: string;
|
|
15575
|
+
readonly state_name?: string;
|
|
15576
|
+
readonly code?: string;
|
|
15577
|
+
readonly zip?: string;
|
|
15578
|
+
readonly pay_account?: string;
|
|
15579
|
+
readonly comp_num?: string;
|
|
15580
|
+
readonly w_tax_num?: string;
|
|
15581
|
+
readonly vat_num?: string;
|
|
15582
|
+
readonly orig_acc_name?: string;
|
|
15583
|
+
readonly branch?: string;
|
|
15584
|
+
readonly form_1099_code?: string;
|
|
15585
|
+
readonly trial_bal_code?: string;
|
|
15586
|
+
readonly sec_name?: string;
|
|
15587
|
+
readonly state?: string;
|
|
15588
|
+
readonly state_a?: string;
|
|
15589
|
+
readonly fax?: string;
|
|
15590
|
+
readonly details?: string;
|
|
15591
|
+
readonly bank_code?: string;
|
|
15592
|
+
readonly state_code?: string;
|
|
15593
|
+
readonly tax_office_code?: string;
|
|
15594
|
+
readonly pay_code?: string;
|
|
15595
|
+
readonly eacc_des?: string;
|
|
15596
|
+
readonly acng_des?: string;
|
|
15597
|
+
readonly branch_des?: string;
|
|
15598
|
+
}
|
|
15129
15599
|
interface ErpVendor {
|
|
15130
15600
|
readonly placeholder?: string;
|
|
15131
15601
|
}
|
|
15132
15602
|
interface ErpVendorStatus {
|
|
15133
15603
|
readonly entities: io.flow.internal.v0.models.ErpVendorStatusEntity[];
|
|
15134
|
-
readonly
|
|
15604
|
+
readonly latest_flow_file?: io.flow.internal.v0.models.ErpVendorStatusFlowFile;
|
|
15605
|
+
readonly latest_priority_file?: io.flow.internal.v0.models.ErpVendorStatusPriorityFile;
|
|
15135
15606
|
}
|
|
15136
15607
|
interface ErpVendorStatusEntity {
|
|
15137
15608
|
readonly entity: io.flow.internal.v0.models.EntityReference;
|
|
15138
15609
|
readonly number_differences: number;
|
|
15139
15610
|
}
|
|
15140
|
-
interface
|
|
15611
|
+
interface ErpVendorStatusFlowFile {
|
|
15612
|
+
readonly url: string;
|
|
15613
|
+
readonly created_at: string;
|
|
15614
|
+
}
|
|
15615
|
+
interface ErpVendorStatusPriorityFile {
|
|
15141
15616
|
readonly name: string;
|
|
15617
|
+
readonly url: string;
|
|
15142
15618
|
readonly created_at: string;
|
|
15143
15619
|
readonly errors?: string[];
|
|
15144
15620
|
readonly processed_at?: string;
|
|
@@ -15413,11 +15889,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15413
15889
|
readonly carrier_id?: string;
|
|
15414
15890
|
readonly service_id?: string;
|
|
15415
15891
|
readonly carrier_tracking_number?: string;
|
|
15892
|
+
readonly fulfilled_via_replacement_order?: boolean;
|
|
15416
15893
|
}
|
|
15417
15894
|
interface ExternalFulfillmentProofTrackingForm {
|
|
15418
15895
|
readonly carrier_id?: string;
|
|
15419
15896
|
readonly service_id?: string;
|
|
15420
15897
|
readonly carrier_tracking_number?: string;
|
|
15898
|
+
readonly fulfilled_via_replacement_order?: boolean;
|
|
15421
15899
|
}
|
|
15422
15900
|
interface FacebookPixel {
|
|
15423
15901
|
readonly discriminator: 'facebook_pixel';
|
|
@@ -15653,6 +16131,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15653
16131
|
readonly authentication: io.flow.internal.v0.models.FiservAuthenticationForm;
|
|
15654
16132
|
readonly country: string;
|
|
15655
16133
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
16134
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
15656
16135
|
}
|
|
15657
16136
|
interface FiservAuthentication {
|
|
15658
16137
|
readonly public_key: string;
|
|
@@ -15697,6 +16176,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15697
16176
|
readonly funding_currency: string;
|
|
15698
16177
|
readonly country: string;
|
|
15699
16178
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
16179
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
15700
16180
|
}
|
|
15701
16181
|
interface FlowAccount {
|
|
15702
16182
|
readonly source: io.flow.internal.v0.models.AccountSource;
|
|
@@ -15737,6 +16217,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15737
16217
|
readonly organization: string;
|
|
15738
16218
|
readonly default_contents: string;
|
|
15739
16219
|
}
|
|
16220
|
+
interface FlowShopValidationError {
|
|
16221
|
+
readonly message: string;
|
|
16222
|
+
readonly reason: string;
|
|
16223
|
+
readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
16224
|
+
}
|
|
15740
16225
|
interface FraudPendingReview {
|
|
15741
16226
|
readonly id: string;
|
|
15742
16227
|
readonly fraud_review_id: string;
|
|
@@ -15815,6 +16300,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15815
16300
|
readonly provider?: io.flow.internal.v0.enums.FraudProvider;
|
|
15816
16301
|
readonly payment_authorization_id?: string;
|
|
15817
16302
|
readonly decline_reason?: io.flow.internal.v0.unions.DeclineReason;
|
|
16303
|
+
readonly created_at?: string;
|
|
15818
16304
|
}
|
|
15819
16305
|
interface FraudReviewDecision {
|
|
15820
16306
|
readonly id: string;
|
|
@@ -15824,6 +16310,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15824
16310
|
readonly status: io.flow.fraud.v0.enums.FraudStatus;
|
|
15825
16311
|
readonly created_at: string;
|
|
15826
16312
|
readonly liability?: io.flow.fraud.v0.enums.FraudLiability;
|
|
16313
|
+
readonly updated_by_user?: io.flow.common.v0.models.UserReference;
|
|
15827
16314
|
}
|
|
15828
16315
|
interface FraudReviewDecisionDeleted {
|
|
15829
16316
|
readonly discriminator: 'fraud_review_decision_deleted';
|
|
@@ -15925,11 +16412,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15925
16412
|
readonly discriminator: 'fuel_surcharge_service_fee_percent_put_form';
|
|
15926
16413
|
readonly percent: number;
|
|
15927
16414
|
}
|
|
16415
|
+
interface Fulfillment {
|
|
16416
|
+
readonly id: string;
|
|
16417
|
+
readonly fulfilled_at: string;
|
|
16418
|
+
readonly currency: string;
|
|
16419
|
+
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
16420
|
+
readonly origin?: io.flow.internal.v0.models.FulfillmentOrigin;
|
|
16421
|
+
readonly lines: io.flow.internal.v0.models.FulfillmentLine[];
|
|
16422
|
+
readonly shipping: io.flow.internal.v0.models.FulfillmentShipping;
|
|
16423
|
+
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
16424
|
+
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
16425
|
+
readonly completes_order: boolean;
|
|
16426
|
+
readonly sequence_number: number;
|
|
16427
|
+
readonly business?: io.flow.internal.v0.models.FulfillmentBusiness;
|
|
16428
|
+
}
|
|
15928
16429
|
interface FulfillmentActionForm {
|
|
15929
16430
|
readonly discriminator: 'fulfillment_action_form';
|
|
15930
16431
|
readonly fulfillment_key: string;
|
|
15931
16432
|
readonly actions: io.flow.internal.v0.models.LineActionQuantities[];
|
|
15932
16433
|
}
|
|
16434
|
+
interface FulfillmentBusiness {
|
|
16435
|
+
readonly vat_registration_number: string;
|
|
16436
|
+
}
|
|
15933
16437
|
interface FulfillmentCancel {
|
|
15934
16438
|
readonly discriminator: 'fulfillment_cancel';
|
|
15935
16439
|
readonly event_id: string;
|
|
@@ -15946,6 +16450,35 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15946
16450
|
readonly id: string;
|
|
15947
16451
|
readonly key: string;
|
|
15948
16452
|
}
|
|
16453
|
+
interface FulfillmentLine {
|
|
16454
|
+
readonly item: io.flow.internal.v0.models.ItemSummary;
|
|
16455
|
+
readonly quantity: number;
|
|
16456
|
+
readonly unit_price: number;
|
|
16457
|
+
readonly price: number;
|
|
16458
|
+
readonly discount: number;
|
|
16459
|
+
readonly tax: number;
|
|
16460
|
+
readonly duty: number;
|
|
16461
|
+
readonly subsidies: io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
|
|
16462
|
+
}
|
|
16463
|
+
interface FulfillmentOrigin {
|
|
16464
|
+
readonly country: string;
|
|
16465
|
+
readonly province_code?: string;
|
|
16466
|
+
}
|
|
16467
|
+
interface FulfillmentProofExternalFulfillmentProofReference {
|
|
16468
|
+
readonly discriminator: 'external_fulfillment';
|
|
16469
|
+
readonly id: string;
|
|
16470
|
+
}
|
|
16471
|
+
interface FulfillmentProofLabelTrackingReference {
|
|
16472
|
+
readonly discriminator: 'label_tracking';
|
|
16473
|
+
readonly id: string;
|
|
16474
|
+
}
|
|
16475
|
+
interface FulfillmentProofShippingNotificationReference {
|
|
16476
|
+
readonly discriminator: 'shipping_notification';
|
|
16477
|
+
readonly id: string;
|
|
16478
|
+
}
|
|
16479
|
+
interface FulfillmentReference {
|
|
16480
|
+
readonly id: string;
|
|
16481
|
+
}
|
|
15949
16482
|
interface FulfillmentShipmentTracking {
|
|
15950
16483
|
readonly fulfillment_key: string;
|
|
15951
16484
|
readonly flow_tracking_number: string;
|
|
@@ -15953,6 +16486,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15953
16486
|
readonly carrier_tracking_url?: string;
|
|
15954
16487
|
readonly items: io.flow.order.management.v0.models.FulfillmentItem[];
|
|
15955
16488
|
}
|
|
16489
|
+
interface FulfillmentShipping {
|
|
16490
|
+
readonly price: number;
|
|
16491
|
+
readonly discount: number;
|
|
16492
|
+
readonly tax: number;
|
|
16493
|
+
readonly duty: number;
|
|
16494
|
+
readonly subsidies: io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
|
|
16495
|
+
}
|
|
15956
16496
|
interface FulfillmentSnapshot {
|
|
15957
16497
|
readonly tracking_source: string;
|
|
15958
16498
|
readonly fulfillment_status?: string;
|
|
@@ -15962,6 +16502,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15962
16502
|
readonly fulfillment_created_at?: string;
|
|
15963
16503
|
readonly fulfillment_updated_at?: string;
|
|
15964
16504
|
}
|
|
16505
|
+
interface FulfillmentSubsidyBreakdown {
|
|
16506
|
+
readonly tax: number;
|
|
16507
|
+
readonly duty: number;
|
|
16508
|
+
}
|
|
15965
16509
|
interface FxFee {
|
|
15966
16510
|
readonly base: io.flow.common.v0.models.Money;
|
|
15967
16511
|
readonly local: io.flow.common.v0.models.Money;
|
|
@@ -16012,6 +16556,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16012
16556
|
readonly organization_id: string;
|
|
16013
16557
|
readonly num_events: number;
|
|
16014
16558
|
}
|
|
16559
|
+
interface GenericValidationError {
|
|
16560
|
+
readonly message: string;
|
|
16561
|
+
readonly reason: string;
|
|
16562
|
+
readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
16563
|
+
}
|
|
16015
16564
|
interface GiftCard {
|
|
16016
16565
|
readonly id: string;
|
|
16017
16566
|
readonly number: string;
|
|
@@ -16131,6 +16680,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16131
16680
|
readonly source_url: string;
|
|
16132
16681
|
readonly filename?: string;
|
|
16133
16682
|
}
|
|
16683
|
+
interface HarmonizationThreshold {
|
|
16684
|
+
readonly id: string;
|
|
16685
|
+
readonly chapter: number;
|
|
16686
|
+
readonly value: number;
|
|
16687
|
+
readonly updated_at: string;
|
|
16688
|
+
}
|
|
16689
|
+
interface HarmonizationThresholdForm {
|
|
16690
|
+
readonly chapter: number;
|
|
16691
|
+
readonly value: number;
|
|
16692
|
+
}
|
|
16134
16693
|
interface HarmonizationUnclassifiedStatistics {
|
|
16135
16694
|
readonly organization: io.flow.common.v0.models.OrganizationSummary;
|
|
16136
16695
|
readonly statistics: io.flow.internal.v0.models.UnclassifiedProductStatistic[];
|
|
@@ -16816,6 +17375,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16816
17375
|
readonly import_id: string;
|
|
16817
17376
|
readonly error: string;
|
|
16818
17377
|
}
|
|
17378
|
+
interface IndexAssignmentDeleted {
|
|
17379
|
+
readonly discriminator: 'index_assignment_deleted';
|
|
17380
|
+
readonly event_id: string;
|
|
17381
|
+
readonly timestamp: string;
|
|
17382
|
+
readonly organization: string;
|
|
17383
|
+
readonly id: string;
|
|
17384
|
+
}
|
|
17385
|
+
interface IndexAssignmentUpserted {
|
|
17386
|
+
readonly discriminator: 'index_assignment_upserted';
|
|
17387
|
+
readonly event_id: string;
|
|
17388
|
+
readonly timestamp: string;
|
|
17389
|
+
readonly organization: string;
|
|
17390
|
+
readonly assignment: io.flow.internal.v0.models.AlgoliaIndexAssignment;
|
|
17391
|
+
}
|
|
16819
17392
|
interface InstallForm {
|
|
16820
17393
|
readonly token: string;
|
|
16821
17394
|
}
|
|
@@ -17087,7 +17660,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17087
17660
|
readonly internal_item_form: io.flow.internal.v0.models.InternalItemForm;
|
|
17088
17661
|
}
|
|
17089
17662
|
interface ItemHarmonization {
|
|
17090
|
-
readonly id
|
|
17663
|
+
readonly id: string;
|
|
17091
17664
|
readonly organization_id: string;
|
|
17092
17665
|
readonly item_number: string;
|
|
17093
17666
|
readonly item_name?: string;
|
|
@@ -17193,6 +17766,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17193
17766
|
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
17194
17767
|
readonly item_sales_margin: io.flow.internal.v0.models.ItemSalesMargin;
|
|
17195
17768
|
}
|
|
17769
|
+
interface ItemSummary {
|
|
17770
|
+
readonly number: string;
|
|
17771
|
+
readonly fulfillment_method: io.flow.catalog.v0.enums.FulfillmentMethodValue;
|
|
17772
|
+
}
|
|
17196
17773
|
interface ItemValuesForm {
|
|
17197
17774
|
readonly values: string[];
|
|
17198
17775
|
}
|
|
@@ -17246,6 +17823,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17246
17823
|
readonly materials: Record<string, string[]>;
|
|
17247
17824
|
readonly constructions: Record<string, string[]>;
|
|
17248
17825
|
}
|
|
17826
|
+
interface LabelBase {
|
|
17827
|
+
readonly amount: number;
|
|
17828
|
+
readonly weight: number;
|
|
17829
|
+
}
|
|
17249
17830
|
interface LabelCancellationError {
|
|
17250
17831
|
readonly code: io.flow.internal.v0.enums.LabelCancellationErrorCode;
|
|
17251
17832
|
readonly messages: string[];
|
|
@@ -17271,6 +17852,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17271
17852
|
readonly shipment_cost?: io.flow.common.v0.models.Money;
|
|
17272
17853
|
readonly reference_id?: string;
|
|
17273
17854
|
}
|
|
17855
|
+
interface LabelDestination {
|
|
17856
|
+
readonly country: string;
|
|
17857
|
+
}
|
|
17274
17858
|
interface LabelGenerationAddressFailureStatusUpdateForm {
|
|
17275
17859
|
readonly status: io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
|
|
17276
17860
|
}
|
|
@@ -17308,6 +17892,61 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17308
17892
|
readonly organization: string;
|
|
17309
17893
|
readonly label_generation_settings: io.flow.internal.v0.models.LabelGenerationSettings;
|
|
17310
17894
|
}
|
|
17895
|
+
interface LabelInvoiceRequest {
|
|
17896
|
+
readonly id: string;
|
|
17897
|
+
readonly label: io.flow.internal.v0.models.TrueUpLabelSummary;
|
|
17898
|
+
readonly units: io.flow.internal.v0.models.LabelUnits;
|
|
17899
|
+
readonly base: io.flow.internal.v0.models.LabelBase;
|
|
17900
|
+
readonly surcharges: io.flow.internal.v0.models.LabelSurcharge[];
|
|
17901
|
+
readonly total: number;
|
|
17902
|
+
readonly destination: io.flow.internal.v0.models.LabelDestination;
|
|
17903
|
+
readonly metadata: io.flow.internal.v0.models.LabelMetadata;
|
|
17904
|
+
}
|
|
17905
|
+
interface LabelInvoiceRequestDeleted {
|
|
17906
|
+
readonly discriminator: 'label_invoice_request_deleted';
|
|
17907
|
+
readonly event_id: string;
|
|
17908
|
+
readonly timestamp: string;
|
|
17909
|
+
readonly organization: string;
|
|
17910
|
+
readonly id: string;
|
|
17911
|
+
}
|
|
17912
|
+
interface LabelInvoiceRequestUpserted {
|
|
17913
|
+
readonly discriminator: 'label_invoice_request_upserted';
|
|
17914
|
+
readonly event_id: string;
|
|
17915
|
+
readonly timestamp: string;
|
|
17916
|
+
readonly organization: string;
|
|
17917
|
+
readonly label_invoice_request: io.flow.internal.v0.models.LabelInvoiceRequest;
|
|
17918
|
+
}
|
|
17919
|
+
interface LabelMetadata {
|
|
17920
|
+
readonly ratecard: io.flow.internal.v0.models.MetadataRatecard;
|
|
17921
|
+
readonly weights: io.flow.internal.v0.models.MetadataWeights;
|
|
17922
|
+
}
|
|
17923
|
+
interface LabelRequestError {
|
|
17924
|
+
readonly id: string;
|
|
17925
|
+
readonly order_number: string;
|
|
17926
|
+
readonly created_at: string;
|
|
17927
|
+
readonly reference_id: string;
|
|
17928
|
+
readonly label_request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
17929
|
+
readonly label_trigger_method?: io.flow.label.v0.enums.LabelTriggerMethod;
|
|
17930
|
+
readonly order_identifier: string[];
|
|
17931
|
+
readonly suggested_responsibility: io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
17932
|
+
readonly carrier_id?: string;
|
|
17933
|
+
readonly service_id?: string;
|
|
17934
|
+
readonly errors: string[];
|
|
17935
|
+
}
|
|
17936
|
+
interface LabelRequestErrorDeleted {
|
|
17937
|
+
readonly discriminator: 'label_request_error_deleted';
|
|
17938
|
+
readonly event_id: string;
|
|
17939
|
+
readonly timestamp: string;
|
|
17940
|
+
readonly organization: string;
|
|
17941
|
+
readonly id: string;
|
|
17942
|
+
}
|
|
17943
|
+
interface LabelRequestErrorUpserted {
|
|
17944
|
+
readonly discriminator: 'label_request_error_upserted';
|
|
17945
|
+
readonly event_id: string;
|
|
17946
|
+
readonly timestamp: string;
|
|
17947
|
+
readonly organization: string;
|
|
17948
|
+
readonly label_request_error: io.flow.internal.v0.models.LabelRequestError;
|
|
17949
|
+
}
|
|
17311
17950
|
interface LabelSummary {
|
|
17312
17951
|
readonly id: string;
|
|
17313
17952
|
readonly commercial_invoice?: string;
|
|
@@ -17321,6 +17960,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17321
17960
|
readonly carrier_tracking_number_url?: string;
|
|
17322
17961
|
readonly service?: io.flow.reference.v0.models.CarrierService;
|
|
17323
17962
|
}
|
|
17963
|
+
interface LabelSurcharge {
|
|
17964
|
+
readonly amount: number;
|
|
17965
|
+
readonly type: io.flow.internal.v0.enums.TrueUpSurchargeType;
|
|
17966
|
+
readonly detail: io.flow.internal.v0.unions.LabelSurchargeDetail;
|
|
17967
|
+
}
|
|
17968
|
+
interface LabelSurchargeDetailFlat {
|
|
17969
|
+
readonly discriminator: 'flat';
|
|
17970
|
+
readonly placeholder?: string;
|
|
17971
|
+
}
|
|
17972
|
+
interface LabelSurchargeDetailPerWeightUnit {
|
|
17973
|
+
readonly discriminator: 'per_weight_unit';
|
|
17974
|
+
readonly fee: number;
|
|
17975
|
+
}
|
|
17976
|
+
interface LabelSurchargeDetailPercentage {
|
|
17977
|
+
readonly discriminator: 'percentage';
|
|
17978
|
+
readonly percentage: number;
|
|
17979
|
+
}
|
|
17324
17980
|
interface LabelTaxonomy {
|
|
17325
17981
|
readonly discriminator: 'item';
|
|
17326
17982
|
readonly item_type: string;
|
|
@@ -17346,8 +18002,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17346
18002
|
interface LabelTransaction {
|
|
17347
18003
|
readonly discriminator: 'label_transaction';
|
|
17348
18004
|
readonly label: io.flow.internal.v0.models.BillingLabelSummary;
|
|
17349
|
-
readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
17350
18005
|
readonly tracking: io.flow.internal.v0.models.BillingLabelTrackingSummaryReference;
|
|
18006
|
+
readonly gross_value: io.flow.common.v0.models.Price;
|
|
18007
|
+
readonly discount: io.flow.internal.v0.models.Discount;
|
|
18008
|
+
readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
17351
18009
|
readonly id: string;
|
|
17352
18010
|
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
17353
18011
|
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
@@ -17369,6 +18027,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17369
18027
|
readonly timestamp: string;
|
|
17370
18028
|
readonly label_transaction: io.flow.internal.v0.models.LabelTransaction;
|
|
17371
18029
|
}
|
|
18030
|
+
interface LabelUnits {
|
|
18031
|
+
readonly currency: string;
|
|
18032
|
+
readonly weight: io.flow.units.v0.enums.UnitOfWeight;
|
|
18033
|
+
readonly length: io.flow.units.v0.enums.UnitOfLength;
|
|
18034
|
+
}
|
|
17372
18035
|
interface LabeledContent {
|
|
17373
18036
|
readonly label: io.flow.internal.v0.models.ContentLabel;
|
|
17374
18037
|
readonly contents: io.flow.internal.v0.unions.ContentItem[];
|
|
@@ -17624,10 +18287,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17624
18287
|
readonly type: io.flow.internal.v0.enums.ContentType;
|
|
17625
18288
|
readonly url: string;
|
|
17626
18289
|
}
|
|
17627
|
-
interface LogisticsCenterCheck {
|
|
17628
|
-
readonly issues?: string[];
|
|
17629
|
-
readonly is_valid: boolean;
|
|
17630
|
-
}
|
|
17631
18290
|
interface Logo {
|
|
17632
18291
|
readonly url: string;
|
|
17633
18292
|
}
|
|
@@ -17970,6 +18629,39 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17970
18629
|
readonly merchant_application: io.flow.merchant.onboarding.v0.unions.MerchantApplication;
|
|
17971
18630
|
readonly organization_reference: io.flow.common.v0.models.Organization;
|
|
17972
18631
|
}
|
|
18632
|
+
interface MerchantCharges {
|
|
18633
|
+
readonly labels: number;
|
|
18634
|
+
readonly total: number;
|
|
18635
|
+
}
|
|
18636
|
+
interface MerchantFees {
|
|
18637
|
+
readonly duty_guarantee: number;
|
|
18638
|
+
readonly mor: number;
|
|
18639
|
+
readonly fraud: number;
|
|
18640
|
+
readonly fx: number;
|
|
18641
|
+
readonly processing: number;
|
|
18642
|
+
readonly rate_lock: number;
|
|
18643
|
+
readonly transfer: number;
|
|
18644
|
+
readonly total: number;
|
|
18645
|
+
}
|
|
18646
|
+
interface MerchantGuidAssignment {
|
|
18647
|
+
readonly id: string;
|
|
18648
|
+
readonly merchant_guid: string;
|
|
18649
|
+
readonly created_at: string;
|
|
18650
|
+
}
|
|
18651
|
+
interface MerchantGuidAssignmentDeleted {
|
|
18652
|
+
readonly discriminator: 'merchant_guid_assignment_deleted';
|
|
18653
|
+
readonly event_id: string;
|
|
18654
|
+
readonly timestamp: string;
|
|
18655
|
+
readonly organization: string;
|
|
18656
|
+
readonly id: string;
|
|
18657
|
+
}
|
|
18658
|
+
interface MerchantGuidAssignmentUpserted {
|
|
18659
|
+
readonly discriminator: 'merchant_guid_assignment_upserted';
|
|
18660
|
+
readonly event_id: string;
|
|
18661
|
+
readonly timestamp: string;
|
|
18662
|
+
readonly organization: string;
|
|
18663
|
+
readonly merchant_guid_assignment: io.flow.internal.v0.models.MerchantGuidAssignment;
|
|
18664
|
+
}
|
|
17973
18665
|
interface MerchantOfRecordEntitySettings {
|
|
17974
18666
|
readonly id: string;
|
|
17975
18667
|
readonly merchant_of_record_entity: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
@@ -17993,6 +18685,38 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17993
18685
|
readonly center?: string;
|
|
17994
18686
|
readonly currency?: string;
|
|
17995
18687
|
}
|
|
18688
|
+
interface MerchantSearchResult {
|
|
18689
|
+
readonly organization_id: string;
|
|
18690
|
+
readonly shop_name?: string;
|
|
18691
|
+
readonly legal_name: string;
|
|
18692
|
+
readonly onboarding_current_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
18693
|
+
}
|
|
18694
|
+
interface MerchantSubsidies {
|
|
18695
|
+
readonly fees: io.flow.internal.v0.models.ShopperFees;
|
|
18696
|
+
readonly shipping: number;
|
|
18697
|
+
readonly tax: number;
|
|
18698
|
+
readonly duty: number;
|
|
18699
|
+
readonly total: number;
|
|
18700
|
+
}
|
|
18701
|
+
interface MerchantSummary {
|
|
18702
|
+
readonly subsidies: io.flow.internal.v0.models.MerchantSubsidies;
|
|
18703
|
+
readonly fees: io.flow.internal.v0.models.MerchantFees;
|
|
18704
|
+
readonly charges: io.flow.internal.v0.models.MerchantCharges;
|
|
18705
|
+
readonly discounts: number;
|
|
18706
|
+
}
|
|
18707
|
+
interface MetadataProposition {
|
|
18708
|
+
readonly shipping_method: io.flow.internal.v0.models.ShippingMethodReference;
|
|
18709
|
+
readonly name: string;
|
|
18710
|
+
}
|
|
18711
|
+
interface MetadataRatecard {
|
|
18712
|
+
readonly id: string;
|
|
18713
|
+
readonly proposition: io.flow.internal.v0.models.MetadataProposition;
|
|
18714
|
+
}
|
|
18715
|
+
interface MetadataWeights {
|
|
18716
|
+
readonly selected: io.flow.internal.v0.enums.WeightSelection;
|
|
18717
|
+
readonly dead?: io.flow.internal.v0.models.WeightsDead;
|
|
18718
|
+
readonly dimensional?: io.flow.internal.v0.models.WeightsDimensional;
|
|
18719
|
+
}
|
|
17996
18720
|
interface NextBillingStatement {
|
|
17997
18721
|
readonly date: string;
|
|
17998
18722
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -18022,6 +18746,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18022
18746
|
readonly description: string;
|
|
18023
18747
|
readonly result: io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
18024
18748
|
readonly messages: io.flow.internal.v0.models.OnboardingAuditMessage[];
|
|
18749
|
+
readonly execution_time_ms?: number;
|
|
18025
18750
|
}
|
|
18026
18751
|
interface OnboardingAuditSnapshot {
|
|
18027
18752
|
readonly id: string;
|
|
@@ -18043,7 +18768,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18043
18768
|
readonly compliance_full_review_required: boolean;
|
|
18044
18769
|
readonly application_received: string;
|
|
18045
18770
|
readonly legal_name: string;
|
|
18046
|
-
readonly shop_name
|
|
18771
|
+
readonly shop_name?: string;
|
|
18047
18772
|
readonly organization_id: string;
|
|
18048
18773
|
readonly onboarding_current_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
18049
18774
|
readonly setup_completed_at?: string;
|
|
@@ -18283,6 +19008,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18283
19008
|
interface OrderSubmissionForm {
|
|
18284
19009
|
readonly authorization?: io.flow.payment.v0.unions.AuthorizationForm;
|
|
18285
19010
|
}
|
|
19011
|
+
interface OrderSummary {
|
|
19012
|
+
readonly id: string;
|
|
19013
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
19014
|
+
readonly number: string;
|
|
19015
|
+
}
|
|
18286
19016
|
interface OrderTransaction {
|
|
18287
19017
|
readonly discriminator: 'order_transaction';
|
|
18288
19018
|
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -18307,6 +19037,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18307
19037
|
readonly timestamp: string;
|
|
18308
19038
|
readonly order_transaction: io.flow.internal.v0.models.OrderTransaction;
|
|
18309
19039
|
}
|
|
19040
|
+
interface OrderValidationError {
|
|
19041
|
+
readonly message: string;
|
|
19042
|
+
readonly reason: io.flow.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
19043
|
+
readonly action?: io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction;
|
|
19044
|
+
readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
19045
|
+
}
|
|
18310
19046
|
interface OrganizationAccount {
|
|
18311
19047
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
18312
19048
|
readonly id: string;
|
|
@@ -18428,6 +19164,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18428
19164
|
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
18429
19165
|
readonly organization_currency_setting: io.flow.internal.v0.models.OrganizationCurrencySetting;
|
|
18430
19166
|
}
|
|
19167
|
+
interface OrganizationDeactivation {
|
|
19168
|
+
readonly id: string;
|
|
19169
|
+
readonly deactivate_at: string;
|
|
19170
|
+
readonly created_at: string;
|
|
19171
|
+
}
|
|
19172
|
+
interface OrganizationDeactivationDeleted {
|
|
19173
|
+
readonly discriminator: 'organization_deactivation_deleted';
|
|
19174
|
+
readonly event_id: string;
|
|
19175
|
+
readonly timestamp: string;
|
|
19176
|
+
readonly organization: string;
|
|
19177
|
+
readonly id: string;
|
|
19178
|
+
}
|
|
19179
|
+
interface OrganizationDeactivationForm {
|
|
19180
|
+
readonly deactivate_at: string;
|
|
19181
|
+
}
|
|
19182
|
+
interface OrganizationDeactivationUpserted {
|
|
19183
|
+
readonly discriminator: 'organization_deactivation_upserted';
|
|
19184
|
+
readonly event_id: string;
|
|
19185
|
+
readonly timestamp: string;
|
|
19186
|
+
readonly organization: string;
|
|
19187
|
+
readonly organization_deactivation: io.flow.internal.v0.models.OrganizationDeactivation;
|
|
19188
|
+
}
|
|
18431
19189
|
interface OrganizationDebugTransaction {
|
|
18432
19190
|
readonly debug?: io.flow.internal.v0.models.DebugTransactionDetails;
|
|
18433
19191
|
readonly order?: io.flow.internal.v0.models.DebugOrder;
|
|
@@ -18606,6 +19364,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18606
19364
|
readonly organization: string;
|
|
18607
19365
|
readonly organization_status_change: io.flow.internal.v0.models.OrganizationStatusChange;
|
|
18608
19366
|
}
|
|
19367
|
+
interface OrganizationsAuditCheckReport {
|
|
19368
|
+
readonly organization_id: string;
|
|
19369
|
+
readonly organization_status: io.flow.common.v0.enums.OrganizationStatus;
|
|
19370
|
+
readonly onboarding_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
19371
|
+
readonly audit_result: io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
19372
|
+
}
|
|
18609
19373
|
interface Partner {
|
|
18610
19374
|
readonly id: string;
|
|
18611
19375
|
readonly name: string;
|
|
@@ -18763,6 +19527,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18763
19527
|
readonly details?: io.flow.internal.v0.unions.PaymentSummaryDetails;
|
|
18764
19528
|
readonly status?: io.flow.internal.v0.enums.PaymentSummaryStatus;
|
|
18765
19529
|
}
|
|
19530
|
+
interface PayoutStatusCounts {
|
|
19531
|
+
readonly scheduled: number;
|
|
19532
|
+
readonly sent: number;
|
|
19533
|
+
readonly failed: number;
|
|
19534
|
+
}
|
|
18766
19535
|
interface PaypalAccount {
|
|
18767
19536
|
readonly discriminator: 'paypal_account';
|
|
18768
19537
|
readonly id: string;
|
|
@@ -18788,6 +19557,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18788
19557
|
readonly country: string;
|
|
18789
19558
|
readonly authentication: io.flow.internal.v0.models.PaypalAuthenticationForm;
|
|
18790
19559
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
19560
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
18791
19561
|
}
|
|
18792
19562
|
interface PaypalAccountReference {
|
|
18793
19563
|
readonly id: string;
|
|
@@ -18898,6 +19668,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18898
19668
|
readonly external_id: string;
|
|
18899
19669
|
readonly country: string;
|
|
18900
19670
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
19671
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
18901
19672
|
}
|
|
18902
19673
|
interface PaypalPaymentDeleted {
|
|
18903
19674
|
readonly discriminator: 'paypal_payment_deleted';
|
|
@@ -19166,6 +19937,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19166
19937
|
interface ProductListSettingsForm {
|
|
19167
19938
|
readonly column_settings: io.flow.internal.v0.models.HarmonizationColumnSetting[];
|
|
19168
19939
|
}
|
|
19940
|
+
interface ProductRestrictionResultValidationError {
|
|
19941
|
+
readonly message: string;
|
|
19942
|
+
readonly reason: string;
|
|
19943
|
+
readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
19944
|
+
}
|
|
19169
19945
|
interface ProductReviewHistory {
|
|
19170
19946
|
readonly product_id: string;
|
|
19171
19947
|
readonly reviews: io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
|
|
@@ -19186,6 +19962,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19186
19962
|
readonly discriminator: 'shipping_notification';
|
|
19187
19963
|
readonly shipping_notification_id: string;
|
|
19188
19964
|
}
|
|
19965
|
+
interface QueuedRecord {
|
|
19966
|
+
readonly type: string;
|
|
19967
|
+
readonly type_id: string;
|
|
19968
|
+
readonly source_type?: string;
|
|
19969
|
+
readonly source_id?: string;
|
|
19970
|
+
readonly environment?: string;
|
|
19971
|
+
readonly created_at: string;
|
|
19972
|
+
readonly num_attempts: number;
|
|
19973
|
+
readonly next_attempt_at: string;
|
|
19974
|
+
readonly errors?: string[];
|
|
19975
|
+
readonly stacktrace?: string;
|
|
19976
|
+
readonly snooze_id?: string;
|
|
19977
|
+
}
|
|
19189
19978
|
interface QuoteRequest {
|
|
19190
19979
|
readonly id: string;
|
|
19191
19980
|
readonly request_type: io.flow.internal.v0.enums.QuoteRequestType;
|
|
@@ -19280,9 +20069,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19280
20069
|
interface RateLevel {
|
|
19281
20070
|
readonly id: string;
|
|
19282
20071
|
readonly name: string;
|
|
20072
|
+
readonly key: string;
|
|
19283
20073
|
}
|
|
19284
20074
|
interface RateLevelForm {
|
|
19285
20075
|
readonly name: string;
|
|
20076
|
+
readonly key: string;
|
|
19286
20077
|
}
|
|
19287
20078
|
interface RateLevelOrganization {
|
|
19288
20079
|
readonly id: string;
|
|
@@ -19306,6 +20097,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19306
20097
|
readonly id: string;
|
|
19307
20098
|
readonly name: string;
|
|
19308
20099
|
readonly effective_at: string;
|
|
20100
|
+
readonly key: string;
|
|
19309
20101
|
}
|
|
19310
20102
|
interface RateNameSummary {
|
|
19311
20103
|
readonly name: string;
|
|
@@ -19570,6 +20362,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19570
20362
|
readonly discriminator: 'rex';
|
|
19571
20363
|
readonly number: string;
|
|
19572
20364
|
}
|
|
20365
|
+
interface Report {
|
|
20366
|
+
readonly key: string;
|
|
20367
|
+
readonly status: io.flow.internal.v0.enums.ReportStatus;
|
|
20368
|
+
readonly from: string;
|
|
20369
|
+
readonly to: string;
|
|
20370
|
+
readonly organization_id?: string;
|
|
20371
|
+
readonly sales_url?: string;
|
|
20372
|
+
readonly refunds_url?: string;
|
|
20373
|
+
}
|
|
20374
|
+
interface ReportForm {
|
|
20375
|
+
readonly key?: string;
|
|
20376
|
+
readonly from: string;
|
|
20377
|
+
readonly to: string;
|
|
20378
|
+
readonly organization_id?: string;
|
|
20379
|
+
}
|
|
19573
20380
|
interface ReportRuleDecision {
|
|
19574
20381
|
readonly rule_id: string;
|
|
19575
20382
|
readonly rule_name: string;
|
|
@@ -19579,6 +20386,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19579
20386
|
interface ReportSummary {
|
|
19580
20387
|
readonly task_id: string;
|
|
19581
20388
|
}
|
|
20389
|
+
interface ReportingDetails {
|
|
20390
|
+
readonly sales_records?: any[];
|
|
20391
|
+
readonly refund_records?: any[];
|
|
20392
|
+
}
|
|
19582
20393
|
interface RequeueRequestForm {
|
|
19583
20394
|
readonly product_ids?: string[];
|
|
19584
20395
|
readonly hs6_codes?: string[];
|
|
@@ -19722,6 +20533,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19722
20533
|
readonly positive_keywords: string[];
|
|
19723
20534
|
readonly negative_keywords: string[];
|
|
19724
20535
|
readonly value_threshold_usd?: number;
|
|
20536
|
+
readonly auto_review_criteria?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
19725
20537
|
}
|
|
19726
20538
|
interface RestrictionRuleDecisionForm {
|
|
19727
20539
|
readonly rule_id: string;
|
|
@@ -19736,6 +20548,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19736
20548
|
readonly positive_keywords: string[];
|
|
19737
20549
|
readonly negative_keywords: string[];
|
|
19738
20550
|
readonly value_threshold_usd?: number;
|
|
20551
|
+
readonly auto_review_criteria?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
19739
20552
|
}
|
|
19740
20553
|
interface RestrictionRuleMetadata {
|
|
19741
20554
|
readonly rule: io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
@@ -19765,6 +20578,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19765
20578
|
interface ResyncFallbackRates {
|
|
19766
20579
|
readonly destinations: io.flow.reference.v0.models.Country[];
|
|
19767
20580
|
}
|
|
20581
|
+
interface Retracking {
|
|
20582
|
+
readonly carrier: string;
|
|
20583
|
+
readonly tracking_number?: string;
|
|
20584
|
+
}
|
|
20585
|
+
interface RetrackingForm {
|
|
20586
|
+
readonly carrier: string;
|
|
20587
|
+
readonly carrier_tracking_numbers: string[];
|
|
20588
|
+
}
|
|
19768
20589
|
interface ReturnPolicyDeleted {
|
|
19769
20590
|
readonly discriminator: 'return_policy_deleted';
|
|
19770
20591
|
readonly event_id: string;
|
|
@@ -19814,6 +20635,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19814
20635
|
readonly discriminator: 'routing_processor';
|
|
19815
20636
|
readonly processor: io.flow.internal.v0.enums.Processor;
|
|
19816
20637
|
}
|
|
20638
|
+
interface SandboxSetup {
|
|
20639
|
+
readonly requested_by: string;
|
|
20640
|
+
}
|
|
20641
|
+
interface SandboxSetupForm {
|
|
20642
|
+
readonly requested_by: string;
|
|
20643
|
+
}
|
|
19817
20644
|
interface Screen {
|
|
19818
20645
|
readonly id: string;
|
|
19819
20646
|
readonly q: string;
|
|
@@ -19924,6 +20751,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19924
20751
|
readonly origin: string;
|
|
19925
20752
|
readonly destination: string;
|
|
19926
20753
|
}
|
|
20754
|
+
interface ShippingMethodReference {
|
|
20755
|
+
readonly id: string;
|
|
20756
|
+
}
|
|
19927
20757
|
interface Shop {
|
|
19928
20758
|
readonly id: string;
|
|
19929
20759
|
readonly organization?: io.flow.common.v0.models.OrganizationReference;
|
|
@@ -20014,12 +20844,35 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20014
20844
|
interface ShopifyGrantsCheck {
|
|
20015
20845
|
readonly placeholder: string;
|
|
20016
20846
|
}
|
|
20847
|
+
interface ShopifyMarketsDiscrepancy {
|
|
20848
|
+
readonly organization_id: string;
|
|
20849
|
+
readonly count: number;
|
|
20850
|
+
}
|
|
20851
|
+
interface ShopifyMarketsDiscrepancyData {
|
|
20852
|
+
readonly total_count: number;
|
|
20853
|
+
readonly discrepancies: io.flow.internal.v0.models.ShopifyMarketsDiscrepancy[];
|
|
20854
|
+
}
|
|
20017
20855
|
interface ShopifyMarketsIncorporationCountry {
|
|
20018
20856
|
readonly country: string;
|
|
20019
20857
|
readonly state?: string;
|
|
20020
20858
|
readonly province?: string;
|
|
20021
20859
|
readonly jurisdiction?: string;
|
|
20022
20860
|
}
|
|
20861
|
+
interface ShopifyMarketsInternalOrderMetrics {
|
|
20862
|
+
readonly total_order_count: number;
|
|
20863
|
+
}
|
|
20864
|
+
interface ShopifyMarketsMetricsDeleted {
|
|
20865
|
+
readonly discriminator: 'shopify_markets_metrics_deleted';
|
|
20866
|
+
readonly event_id: string;
|
|
20867
|
+
readonly timestamp: string;
|
|
20868
|
+
readonly id: string;
|
|
20869
|
+
}
|
|
20870
|
+
interface ShopifyMarketsMetricsUpserted {
|
|
20871
|
+
readonly discriminator: 'shopify_markets_metrics_upserted';
|
|
20872
|
+
readonly event_id: string;
|
|
20873
|
+
readonly timestamp: string;
|
|
20874
|
+
readonly shopify_markets_metrics: io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics;
|
|
20875
|
+
}
|
|
20023
20876
|
interface ShopifyMarketsOrder {
|
|
20024
20877
|
readonly id: string;
|
|
20025
20878
|
readonly model: io.flow.shopify.markets.v0.models.ShopifyOrder;
|
|
@@ -20038,8 +20891,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20038
20891
|
readonly organization: string;
|
|
20039
20892
|
readonly shopify_markets_order: io.flow.internal.v0.models.ShopifyMarketsOrder;
|
|
20040
20893
|
}
|
|
20894
|
+
interface ShopifyMarketsOrdersMetrics {
|
|
20895
|
+
readonly id: string;
|
|
20896
|
+
readonly range: io.flow.common.v0.models.DatetimeRange;
|
|
20897
|
+
readonly shopify: io.flow.internal.v0.models.ShopifyMarketsShopifyOrderMetrics;
|
|
20898
|
+
readonly internal: io.flow.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
|
|
20899
|
+
readonly discrepancy_data: io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData;
|
|
20900
|
+
}
|
|
20041
20901
|
interface ShopifyMarketsShop {
|
|
20042
20902
|
readonly id: string;
|
|
20903
|
+
readonly shopify_shop_id?: string;
|
|
20043
20904
|
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
20044
20905
|
readonly domain: string;
|
|
20045
20906
|
readonly myshopify_domain: string;
|
|
@@ -20092,6 +20953,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20092
20953
|
readonly organization: string;
|
|
20093
20954
|
readonly shopify_markets_shop: io.flow.internal.v0.models.ShopifyMarketsShop;
|
|
20094
20955
|
}
|
|
20956
|
+
interface ShopifyMarketsShopifyOrderMetrics {
|
|
20957
|
+
readonly total_order_count: number;
|
|
20958
|
+
}
|
|
20095
20959
|
interface ShopifyMarketsSubsidiaryCompany {
|
|
20096
20960
|
readonly legal_name?: string;
|
|
20097
20961
|
readonly incorporation_country?: io.flow.internal.v0.models.ShopifyMarketsIncorporationCountry;
|
|
@@ -20350,6 +21214,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20350
21214
|
readonly timestamp: string;
|
|
20351
21215
|
readonly shop: io.flow.internal.v0.models.Shop;
|
|
20352
21216
|
}
|
|
21217
|
+
interface ShopifyStorePassword {
|
|
21218
|
+
readonly temporary_password: string;
|
|
21219
|
+
readonly expiry: string;
|
|
21220
|
+
}
|
|
20353
21221
|
interface ShopifyWebhook {
|
|
20354
21222
|
readonly id: string;
|
|
20355
21223
|
readonly shop_id: string;
|
|
@@ -20364,6 +21232,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20364
21232
|
readonly address: string;
|
|
20365
21233
|
readonly topic: io.flow.shopify.external.v0.enums.Topic;
|
|
20366
21234
|
}
|
|
21235
|
+
interface ShopperFees {
|
|
21236
|
+
readonly fuel: number;
|
|
21237
|
+
readonly remote_area: number;
|
|
21238
|
+
readonly oversize: number;
|
|
21239
|
+
readonly ccf: number;
|
|
21240
|
+
readonly total: number;
|
|
21241
|
+
}
|
|
21242
|
+
interface ShopperSummary {
|
|
21243
|
+
readonly fees: io.flow.internal.v0.models.ShopperFees;
|
|
21244
|
+
}
|
|
20367
21245
|
interface SimpleAccountReference {
|
|
20368
21246
|
readonly id: string;
|
|
20369
21247
|
}
|
|
@@ -20551,6 +21429,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20551
21429
|
readonly country: string;
|
|
20552
21430
|
readonly authentication: io.flow.internal.v0.models.StripeAuthenticationForm;
|
|
20553
21431
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
21432
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
20554
21433
|
}
|
|
20555
21434
|
interface StripeAuthentication {
|
|
20556
21435
|
readonly public_key: string;
|
|
@@ -20664,6 +21543,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20664
21543
|
readonly account_type: io.flow.stripe.v0.enums.AccountType;
|
|
20665
21544
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
20666
21545
|
readonly country: string;
|
|
21546
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
20667
21547
|
}
|
|
20668
21548
|
interface StripeRefundDeleted {
|
|
20669
21549
|
readonly discriminator: 'stripe_refund_deleted';
|
|
@@ -21067,6 +21947,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21067
21947
|
interface TransactionReference {
|
|
21068
21948
|
readonly id: string;
|
|
21069
21949
|
}
|
|
21950
|
+
interface TransactionStatement {
|
|
21951
|
+
readonly id: string;
|
|
21952
|
+
readonly statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
21953
|
+
}
|
|
21954
|
+
interface TransactionStatementDeleted {
|
|
21955
|
+
readonly discriminator: 'transaction_statement_deleted';
|
|
21956
|
+
readonly event_id: string;
|
|
21957
|
+
readonly timestamp: string;
|
|
21958
|
+
readonly id: string;
|
|
21959
|
+
}
|
|
21960
|
+
interface TransactionStatementUpserted {
|
|
21961
|
+
readonly discriminator: 'transaction_statement_upserted';
|
|
21962
|
+
readonly event_id: string;
|
|
21963
|
+
readonly timestamp: string;
|
|
21964
|
+
readonly transaction_statement: io.flow.internal.v0.models.TransactionStatement;
|
|
21965
|
+
}
|
|
21070
21966
|
interface TransferTransaction {
|
|
21071
21967
|
readonly discriminator: 'transfer_transaction';
|
|
21072
21968
|
readonly method: io.flow.internal.v0.enums.TransferMethod;
|
|
@@ -21109,6 +22005,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21109
22005
|
readonly id: string;
|
|
21110
22006
|
readonly description: string;
|
|
21111
22007
|
}
|
|
22008
|
+
interface TrueUpLabelSummary {
|
|
22009
|
+
readonly id: string;
|
|
22010
|
+
readonly carrier_service_id: string;
|
|
22011
|
+
readonly carrier_tracking_number: string;
|
|
22012
|
+
readonly flow_tracking_number: string;
|
|
22013
|
+
readonly created_at: string;
|
|
22014
|
+
}
|
|
22015
|
+
interface UnassignedMerchantGuid {
|
|
22016
|
+
readonly id: string;
|
|
22017
|
+
readonly merchant_guid: string;
|
|
22018
|
+
readonly created_at: string;
|
|
22019
|
+
}
|
|
22020
|
+
interface UnassignedMerchantGuidDeleted {
|
|
22021
|
+
readonly discriminator: 'unassigned_merchant_guid_deleted';
|
|
22022
|
+
readonly event_id: string;
|
|
22023
|
+
readonly timestamp: string;
|
|
22024
|
+
readonly id: string;
|
|
22025
|
+
}
|
|
22026
|
+
interface UnassignedMerchantGuidUpserted {
|
|
22027
|
+
readonly discriminator: 'unassigned_merchant_guid_upserted';
|
|
22028
|
+
readonly event_id: string;
|
|
22029
|
+
readonly timestamp: string;
|
|
22030
|
+
readonly unassigned_merchant_guid: io.flow.internal.v0.models.UnassignedMerchantGuid;
|
|
22031
|
+
}
|
|
21112
22032
|
interface UnclassifiedProductStatistic {
|
|
21113
22033
|
readonly status: io.flow.internal.v0.enums.UnclassifiedProductStatus;
|
|
21114
22034
|
readonly number_of_items: number;
|
|
@@ -21300,6 +22220,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21300
22220
|
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
21301
22221
|
readonly created_at: string;
|
|
21302
22222
|
}
|
|
22223
|
+
interface WashCarrierActualFile {
|
|
22224
|
+
readonly id: string;
|
|
22225
|
+
readonly url: string;
|
|
22226
|
+
readonly status: io.flow.internal.v0.enums.WashCarrierActualFileStatus;
|
|
22227
|
+
}
|
|
22228
|
+
interface WashCarrierActualFileForm {
|
|
22229
|
+
readonly url: string;
|
|
22230
|
+
}
|
|
21303
22231
|
interface WashExportRequest {
|
|
21304
22232
|
readonly url: string;
|
|
21305
22233
|
}
|
|
@@ -21316,6 +22244,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21316
22244
|
interface Webhook {
|
|
21317
22245
|
readonly placeholder?: any;
|
|
21318
22246
|
}
|
|
22247
|
+
interface WeightsDead {
|
|
22248
|
+
readonly weight: number;
|
|
22249
|
+
}
|
|
22250
|
+
interface WeightsDimensional {
|
|
22251
|
+
readonly weight: number;
|
|
22252
|
+
readonly length: number;
|
|
22253
|
+
readonly width: number;
|
|
22254
|
+
readonly height: number;
|
|
22255
|
+
}
|
|
21319
22256
|
interface WholeOrderActionForm {
|
|
21320
22257
|
readonly discriminator: 'whole_order_action_form';
|
|
21321
22258
|
readonly action: io.flow.internal.v0.enums.OrderAction;
|
|
@@ -21422,7 +22359,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
21422
22359
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
21423
22360
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
21424
22361
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
21425
|
-
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.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.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | 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.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.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.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.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | 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.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.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;
|
|
22362
|
+
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.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.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.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.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;
|
|
21426
22363
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
21427
22364
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
21428
22365
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -21433,6 +22370,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
21433
22370
|
type FraudProviderConfiguration = io.flow.internal.v0.models.FraudProviderConfigurationRiskified;
|
|
21434
22371
|
type FraudProviderConfigurationForm = io.flow.internal.v0.models.FraudProviderConfigurationFormRiskified;
|
|
21435
22372
|
type FuelSurchargeServiceFeePutForm = io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm | io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm;
|
|
22373
|
+
type FulfillmentProof = io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference | io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference | io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference;
|
|
21436
22374
|
type GenerateLoad = io.flow.internal.v0.models.GenerateLoadSingleOrg | io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
21437
22375
|
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;
|
|
21438
22376
|
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;
|
|
@@ -21442,6 +22380,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
21442
22380
|
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;
|
|
21443
22381
|
type InternalRefundForm = io.flow.internal.v0.models.AdyenRefundForm;
|
|
21444
22382
|
type InternalTransactionDetails = io.flow.internal.v0.models.InternalTransactionDetailsCard;
|
|
22383
|
+
type LabelSurchargeDetail = io.flow.internal.v0.models.LabelSurchargeDetailFlat | io.flow.internal.v0.models.LabelSurchargeDetailPercentage | io.flow.internal.v0.models.LabelSurchargeDetailPerWeightUnit;
|
|
21445
22384
|
type LocalizableContent = io.flow.internal.v0.models.LocalizableContentReference | io.flow.internal.v0.models.Localization;
|
|
21446
22385
|
type MarketingGatewayChannelDetails = io.flow.internal.v0.models.MarketingGatewayGoogleChannelDetails | io.flow.internal.v0.models.MarketingGatewayFacebookChannelDetails | io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails;
|
|
21447
22386
|
type MarketingGatewayDistributionChannel = io.flow.internal.v0.models.MarketingGatewayDistributionChannelGoogle | io.flow.internal.v0.models.MarketingGatewayDistributionChannelFacebook;
|
|
@@ -21570,6 +22509,7 @@ export declare type AlertFailureSummary = io.flow.internal.v0.models.AlertFailur
|
|
|
21570
22509
|
export declare type AlertFailureSummaryDetail = io.flow.internal.v0.models.AlertFailureSummaryDetail;
|
|
21571
22510
|
export declare type AlertImportSummary = io.flow.internal.v0.models.AlertImportSummary;
|
|
21572
22511
|
export declare type AlertRequeueSummary = io.flow.internal.v0.models.AlertRequeueSummary;
|
|
22512
|
+
export declare type AlgoliaIndexAssignment = io.flow.internal.v0.models.AlgoliaIndexAssignment;
|
|
21573
22513
|
export declare type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
|
|
21574
22514
|
export declare type AllOrganizationsMembership = io.flow.internal.v0.models.AllOrganizationsMembership;
|
|
21575
22515
|
export declare type AllocationItemReference = io.flow.internal.v0.models.AllocationItemReference;
|
|
@@ -21592,6 +22532,7 @@ export declare type AuthorizedLineItemCharge = io.flow.internal.v0.models.Author
|
|
|
21592
22532
|
export declare type AuthorizedOrderCharge = io.flow.internal.v0.unions.AuthorizedOrderCharge;
|
|
21593
22533
|
export declare type AuthorizedShippingCharge = io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
21594
22534
|
export declare type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
|
|
22535
|
+
export declare type AutoReviewCriteria = io.flow.internal.v0.models.AutoReviewCriteria;
|
|
21595
22536
|
export declare type Backfill = io.flow.internal.v0.models.Backfill;
|
|
21596
22537
|
export declare type BackfillForm = io.flow.internal.v0.models.BackfillForm;
|
|
21597
22538
|
export declare type BankAccountReference = io.flow.internal.v0.models.BankAccountReference;
|
|
@@ -21623,7 +22564,6 @@ export declare type BillingStatementAttachmentKey = io.flow.internal.v0.enums.Bi
|
|
|
21623
22564
|
export declare type BillingStatementBatch = io.flow.internal.v0.models.BillingStatementBatch;
|
|
21624
22565
|
export declare type BillingStatementBatchDeleted = io.flow.internal.v0.models.BillingStatementBatchDeleted;
|
|
21625
22566
|
export declare type BillingStatementBatchFileKey = io.flow.internal.v0.enums.BillingStatementBatchFileKey;
|
|
21626
|
-
export declare type BillingStatementBatchReconciliation = io.flow.internal.v0.models.BillingStatementBatchReconciliation;
|
|
21627
22567
|
export declare type BillingStatementBatchReference = io.flow.internal.v0.models.BillingStatementBatchReference;
|
|
21628
22568
|
export declare type BillingStatementBatchStatement = io.flow.internal.v0.models.BillingStatementBatchStatement;
|
|
21629
22569
|
export declare type BillingStatementBatchStatementDeleted = io.flow.internal.v0.models.BillingStatementBatchStatementDeleted;
|
|
@@ -21690,6 +22630,8 @@ export declare type BrowserBundlePaymentMethods = io.flow.internal.v0.models.Bro
|
|
|
21690
22630
|
export declare type BulkClassificationAction = io.flow.internal.v0.models.BulkClassificationAction;
|
|
21691
22631
|
export declare type ByRuleSnapshot = io.flow.internal.v0.models.ByRuleSnapshot;
|
|
21692
22632
|
export declare type CalculatedTaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount;
|
|
22633
|
+
export declare type CalculatorDtcePostBody = io.flow.internal.v0.models.CalculatorDtcePostBody;
|
|
22634
|
+
export declare type CalculatorDtceProduct = io.flow.internal.v0.models.CalculatorDtceProduct;
|
|
21693
22635
|
export declare type CalculatorEngine = io.flow.internal.v0.enums.CalculatorEngine;
|
|
21694
22636
|
export declare type CalculatorOrganizationSettings = io.flow.internal.v0.models.CalculatorOrganizationSettings;
|
|
21695
22637
|
export declare type CalculatorOrganizationSettingsDeleted = io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted;
|
|
@@ -21699,9 +22641,11 @@ export declare type CarrierAccount = io.flow.internal.v0.models.CarrierAccount;
|
|
|
21699
22641
|
export declare type CarrierAccountDeleted = io.flow.internal.v0.models.CarrierAccountDeleted;
|
|
21700
22642
|
export declare type CarrierAccountForm = io.flow.internal.v0.models.CarrierAccountForm;
|
|
21701
22643
|
export declare type CarrierAccountUpsertedV2 = io.flow.internal.v0.models.CarrierAccountUpsertedV2;
|
|
22644
|
+
export declare type CarrierAccountValidation = io.flow.internal.v0.models.CarrierAccountValidation;
|
|
21702
22645
|
export declare type CarrierCredentials = io.flow.internal.v0.unions.CarrierCredentials;
|
|
21703
22646
|
export declare type CarrierInvoice = io.flow.internal.v0.models.CarrierInvoice;
|
|
21704
22647
|
export declare type CarrierLabelGenerationMethod = io.flow.internal.v0.enums.CarrierLabelGenerationMethod;
|
|
22648
|
+
export declare type CarrierValidationStatus = io.flow.internal.v0.enums.CarrierValidationStatus;
|
|
21705
22649
|
export declare type CatalogImportRequest = io.flow.internal.v0.models.CatalogImportRequest;
|
|
21706
22650
|
export declare type CatalogImportType = io.flow.internal.v0.enums.CatalogImportType;
|
|
21707
22651
|
export declare type CatalogItemBatchIndexTask = io.flow.internal.v0.models.CatalogItemBatchIndexTask;
|
|
@@ -21710,6 +22654,7 @@ export declare type CatalogItemIndexTask = io.flow.internal.v0.models.CatalogIte
|
|
|
21710
22654
|
export declare type CatalogItemRegionAvailabilities = io.flow.internal.v0.models.CatalogItemRegionAvailabilities;
|
|
21711
22655
|
export declare type CatalogItemRegionAvailabilitiesData = io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesData;
|
|
21712
22656
|
export declare type CatalogItemRegionAvailabilitiesPublished = io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished;
|
|
22657
|
+
export declare type CatalogPublicationSyncValidationError = io.flow.internal.v0.models.CatalogPublicationSyncValidationError;
|
|
21713
22658
|
export declare type CatalogSettings = io.flow.internal.v0.models.CatalogSettings;
|
|
21714
22659
|
export declare type CatalogSettingsDeleted = io.flow.internal.v0.models.CatalogSettingsDeleted;
|
|
21715
22660
|
export declare type CatalogSettingsPutForm = io.flow.internal.v0.models.CatalogSettingsPutForm;
|
|
@@ -21745,6 +22690,7 @@ export declare type ChannelOrderAcceptance = io.flow.internal.v0.models.ChannelO
|
|
|
21745
22690
|
export declare type ChannelOrderAcceptanceDeleted = io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted;
|
|
21746
22691
|
export declare type ChannelOrderAcceptanceErrorAction = io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction;
|
|
21747
22692
|
export declare type ChannelOrderAcceptanceForm = io.flow.internal.v0.models.ChannelOrderAcceptanceForm;
|
|
22693
|
+
export declare type ChannelOrderAcceptanceNextActionFrom = io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
21748
22694
|
export declare type ChannelOrderAcceptanceReason = io.flow.internal.v0.models.ChannelOrderAcceptanceReason;
|
|
21749
22695
|
export declare type ChannelOrderAcceptanceRejectionReason = io.flow.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
21750
22696
|
export declare type ChannelOrderAcceptanceStatus = io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
@@ -22326,6 +23272,7 @@ export declare type ClassificationWrapper = io.flow.internal.v0.models.Classific
|
|
|
22326
23272
|
export declare type ClassifiedProduct = io.flow.internal.v0.models.ClassifiedProduct;
|
|
22327
23273
|
export declare type ClassifiedProductDetail = io.flow.internal.v0.models.ClassifiedProductDetail;
|
|
22328
23274
|
export declare type CommercialInvoiceComparison = io.flow.internal.v0.models.CommercialInvoiceComparison;
|
|
23275
|
+
export declare type CompanyReference = io.flow.internal.v0.models.CompanyReference;
|
|
22329
23276
|
export declare type Compliance = io.flow.internal.v0.models.Compliance;
|
|
22330
23277
|
export declare type ComplianceData = io.flow.internal.v0.unions.ComplianceData;
|
|
22331
23278
|
export declare type ComplianceForm = io.flow.internal.v0.unions.ComplianceForm;
|
|
@@ -22456,6 +23403,7 @@ export declare type DisputeProcessor = io.flow.internal.v0.enums.DisputeProcesso
|
|
|
22456
23403
|
export declare type DisputeStatus = io.flow.internal.v0.enums.DisputeStatus;
|
|
22457
23404
|
export declare type DisputeStatusForm = io.flow.internal.v0.models.DisputeStatusForm;
|
|
22458
23405
|
export declare type DisputeTransaction = io.flow.internal.v0.models.DisputeTransaction;
|
|
23406
|
+
export declare type DisputeTransactionType = io.flow.internal.v0.enums.DisputeTransactionType;
|
|
22459
23407
|
export declare type DisputeType = io.flow.internal.v0.enums.DisputeType;
|
|
22460
23408
|
export declare type DisputeUpserted = io.flow.internal.v0.models.DisputeUpserted;
|
|
22461
23409
|
export declare type DutiedItemsExport = io.flow.internal.v0.models.DutiedItemsExport;
|
|
@@ -22500,10 +23448,13 @@ export declare type ErpFlowFileForm = io.flow.internal.v0.models.ErpFlowFileForm
|
|
|
22500
23448
|
export declare type ErpFlowVendor = io.flow.internal.v0.models.ErpFlowVendor;
|
|
22501
23449
|
export declare type ErpPriorityFile = io.flow.internal.v0.models.ErpPriorityFile;
|
|
22502
23450
|
export declare type ErpPriorityFileForm = io.flow.internal.v0.models.ErpPriorityFileForm;
|
|
23451
|
+
export declare type ErpPriorityVendor = io.flow.internal.v0.models.ErpPriorityVendor;
|
|
23452
|
+
export declare type ErpPriorityVendorForm = io.flow.internal.v0.models.ErpPriorityVendorForm;
|
|
22503
23453
|
export declare type ErpVendor = io.flow.internal.v0.models.ErpVendor;
|
|
22504
23454
|
export declare type ErpVendorStatus = io.flow.internal.v0.models.ErpVendorStatus;
|
|
22505
23455
|
export declare type ErpVendorStatusEntity = io.flow.internal.v0.models.ErpVendorStatusEntity;
|
|
22506
|
-
export declare type
|
|
23456
|
+
export declare type ErpVendorStatusFlowFile = io.flow.internal.v0.models.ErpVendorStatusFlowFile;
|
|
23457
|
+
export declare type ErpVendorStatusPriorityFile = io.flow.internal.v0.models.ErpVendorStatusPriorityFile;
|
|
22507
23458
|
export declare type Event = io.flow.internal.v0.unions.Event;
|
|
22508
23459
|
export declare type EventType = io.flow.internal.v0.enums.EventType;
|
|
22509
23460
|
export declare type ExclusionRuleDeleted = io.flow.internal.v0.models.ExclusionRuleDeleted;
|
|
@@ -22616,6 +23567,7 @@ export declare type FlowLabProjectPostForm = io.flow.internal.v0.models.FlowLabP
|
|
|
22616
23567
|
export declare type FlowLabProjectPutForm = io.flow.internal.v0.models.FlowLabProjectPutForm;
|
|
22617
23568
|
export declare type FlowLabelSetting = io.flow.internal.v0.models.FlowLabelSetting;
|
|
22618
23569
|
export declare type FlowLabelSettingForm = io.flow.internal.v0.models.FlowLabelSettingForm;
|
|
23570
|
+
export declare type FlowShopValidationError = io.flow.internal.v0.models.FlowShopValidationError;
|
|
22619
23571
|
export declare type Format = io.flow.internal.v0.enums.Format;
|
|
22620
23572
|
export declare type FraudPendingReview = io.flow.internal.v0.models.FraudPendingReview;
|
|
22621
23573
|
export declare type FraudPendingReviewDeleted = io.flow.internal.v0.models.FraudPendingReviewDeleted;
|
|
@@ -22651,11 +23603,22 @@ export declare type FtpSettingsPaths = io.flow.internal.v0.models.FtpSettingsPat
|
|
|
22651
23603
|
export declare type FuelSurchargeServiceFeeAmountByWeightPutForm = io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm;
|
|
22652
23604
|
export declare type FuelSurchargeServiceFeePercentPutForm = io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm;
|
|
22653
23605
|
export declare type FuelSurchargeServiceFeePutForm = io.flow.internal.v0.unions.FuelSurchargeServiceFeePutForm;
|
|
23606
|
+
export declare type Fulfillment = io.flow.internal.v0.models.Fulfillment;
|
|
22654
23607
|
export declare type FulfillmentActionForm = io.flow.internal.v0.models.FulfillmentActionForm;
|
|
23608
|
+
export declare type FulfillmentBusiness = io.flow.internal.v0.models.FulfillmentBusiness;
|
|
22655
23609
|
export declare type FulfillmentCancel = io.flow.internal.v0.models.FulfillmentCancel;
|
|
22656
23610
|
export declare type FulfillmentInternalExperienceReference = io.flow.internal.v0.models.FulfillmentInternalExperienceReference;
|
|
23611
|
+
export declare type FulfillmentLine = io.flow.internal.v0.models.FulfillmentLine;
|
|
23612
|
+
export declare type FulfillmentOrigin = io.flow.internal.v0.models.FulfillmentOrigin;
|
|
23613
|
+
export declare type FulfillmentProof = io.flow.internal.v0.unions.FulfillmentProof;
|
|
23614
|
+
export declare type FulfillmentProofExternalFulfillmentProofReference = io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference;
|
|
23615
|
+
export declare type FulfillmentProofLabelTrackingReference = io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference;
|
|
23616
|
+
export declare type FulfillmentProofShippingNotificationReference = io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference;
|
|
23617
|
+
export declare type FulfillmentReference = io.flow.internal.v0.models.FulfillmentReference;
|
|
22657
23618
|
export declare type FulfillmentShipmentTracking = io.flow.internal.v0.models.FulfillmentShipmentTracking;
|
|
23619
|
+
export declare type FulfillmentShipping = io.flow.internal.v0.models.FulfillmentShipping;
|
|
22658
23620
|
export declare type FulfillmentSnapshot = io.flow.internal.v0.models.FulfillmentSnapshot;
|
|
23621
|
+
export declare type FulfillmentSubsidyBreakdown = io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
|
|
22659
23622
|
export declare type FxFee = io.flow.internal.v0.models.FxFee;
|
|
22660
23623
|
export declare type FxRevenueRecognition = io.flow.internal.v0.models.FxRevenueRecognition;
|
|
22661
23624
|
export declare type FxRevenueRecognitionAccount = io.flow.internal.v0.models.FxRevenueRecognitionAccount;
|
|
@@ -22667,6 +23630,7 @@ export declare type FxRevenueRecognitionSource = io.flow.internal.v0.models.FxRe
|
|
|
22667
23630
|
export declare type GenerateLoad = io.flow.internal.v0.unions.GenerateLoad;
|
|
22668
23631
|
export declare type GenerateLoadMultipleOrgs = io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
22669
23632
|
export declare type GenerateLoadSingleOrg = io.flow.internal.v0.models.GenerateLoadSingleOrg;
|
|
23633
|
+
export declare type GenericValidationError = io.flow.internal.v0.models.GenericValidationError;
|
|
22670
23634
|
export declare type GiftCard = io.flow.internal.v0.models.GiftCard;
|
|
22671
23635
|
export declare type GiftCardAuthorizationError = io.flow.internal.v0.models.GiftCardAuthorizationError;
|
|
22672
23636
|
export declare type GiftCardForm = io.flow.internal.v0.models.GiftCardForm;
|
|
@@ -22689,6 +23653,8 @@ export declare type HarmonizationItemClassificationUpserted = io.flow.internal.v
|
|
|
22689
23653
|
export declare type HarmonizationItemSummary = io.flow.internal.v0.models.HarmonizationItemSummary;
|
|
22690
23654
|
export declare type HarmonizationMlModelSummary = io.flow.internal.v0.models.HarmonizationMlModelSummary;
|
|
22691
23655
|
export declare type HarmonizationPhraseSuggestionRequestImport = io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport;
|
|
23656
|
+
export declare type HarmonizationThreshold = io.flow.internal.v0.models.HarmonizationThreshold;
|
|
23657
|
+
export declare type HarmonizationThresholdForm = io.flow.internal.v0.models.HarmonizationThresholdForm;
|
|
22692
23658
|
export declare type HarmonizationUnclassifiedStatistics = io.flow.internal.v0.models.HarmonizationUnclassifiedStatistics;
|
|
22693
23659
|
export declare type HarmonizeFullyRequestV2 = io.flow.internal.v0.models.HarmonizeFullyRequestV2;
|
|
22694
23660
|
export declare type HarmonizedItemsHs6Export = io.flow.internal.v0.models.HarmonizedItemsHs6Export;
|
|
@@ -22753,6 +23719,8 @@ export declare type HybrisCatalogItemsImportRequest = io.flow.internal.v0.models
|
|
|
22753
23719
|
export declare type HybrisCatalogItemsImportRequestData = io.flow.internal.v0.models.HybrisCatalogItemsImportRequestData;
|
|
22754
23720
|
export declare type ImportCompleted = io.flow.internal.v0.models.ImportCompleted;
|
|
22755
23721
|
export declare type ImportFailed = io.flow.internal.v0.models.ImportFailed;
|
|
23722
|
+
export declare type IndexAssignmentDeleted = io.flow.internal.v0.models.IndexAssignmentDeleted;
|
|
23723
|
+
export declare type IndexAssignmentUpserted = io.flow.internal.v0.models.IndexAssignmentUpserted;
|
|
22756
23724
|
export declare type IndexTaskType = io.flow.internal.v0.unions.IndexTaskType;
|
|
22757
23725
|
export declare type InitialInputDataSource = io.flow.internal.v0.enums.InitialInputDataSource;
|
|
22758
23726
|
export declare type InlineAuthorizationParameters = io.flow.internal.v0.unions.InlineAuthorizationParameters;
|
|
@@ -22823,6 +23791,7 @@ export declare type ItemSalesMarginPostForm = io.flow.internal.v0.models.ItemSal
|
|
|
22823
23791
|
export declare type ItemSalesMarginPutForm = io.flow.internal.v0.models.ItemSalesMarginPutForm;
|
|
22824
23792
|
export declare type ItemSalesMarginUpserted = io.flow.internal.v0.models.ItemSalesMarginUpserted;
|
|
22825
23793
|
export declare type ItemSalesMarginVersion = io.flow.internal.v0.models.ItemSalesMarginVersion;
|
|
23794
|
+
export declare type ItemSummary = io.flow.internal.v0.models.ItemSummary;
|
|
22826
23795
|
export declare type ItemType = io.flow.internal.v0.enums.ItemType;
|
|
22827
23796
|
export declare type ItemValuesForm = io.flow.internal.v0.models.ItemValuesForm;
|
|
22828
23797
|
export declare type ItemsShipped = io.flow.internal.v0.models.ItemsShipped;
|
|
@@ -22836,6 +23805,7 @@ export declare type LabProjectSettingsForm = io.flow.internal.v0.models.LabProje
|
|
|
22836
23805
|
export declare type LabProjectSettingsFormAcceptance = io.flow.internal.v0.models.LabProjectSettingsFormAcceptance;
|
|
22837
23806
|
export declare type LabelAliases = io.flow.internal.v0.models.LabelAliases;
|
|
22838
23807
|
export declare type LabelAssociation = io.flow.internal.v0.models.LabelAssociation;
|
|
23808
|
+
export declare type LabelBase = io.flow.internal.v0.models.LabelBase;
|
|
22839
23809
|
export declare type LabelBillingStrategy = io.flow.internal.v0.enums.LabelBillingStrategy;
|
|
22840
23810
|
export declare type LabelCancellationError = io.flow.internal.v0.models.LabelCancellationError;
|
|
22841
23811
|
export declare type LabelCancellationErrorCode = io.flow.internal.v0.enums.LabelCancellationErrorCode;
|
|
@@ -22843,6 +23813,7 @@ export declare type LabelCreationJob = io.flow.internal.v0.models.LabelCreationJ
|
|
|
22843
23813
|
export declare type LabelCreationJobSummary = io.flow.internal.v0.models.LabelCreationJobSummary;
|
|
22844
23814
|
export declare type LabelCreationRequestForm = io.flow.internal.v0.models.LabelCreationRequestForm;
|
|
22845
23815
|
export declare type LabelCreationStatus = io.flow.internal.v0.enums.LabelCreationStatus;
|
|
23816
|
+
export declare type LabelDestination = io.flow.internal.v0.models.LabelDestination;
|
|
22846
23817
|
export declare type LabelGenerationAddressFailureStatus = io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
|
|
22847
23818
|
export declare type LabelGenerationAddressFailureStatusUpdateForm = io.flow.internal.v0.models.LabelGenerationAddressFailureStatusUpdateForm;
|
|
22848
23819
|
export declare type LabelGenerationAddressFailures = io.flow.internal.v0.models.LabelGenerationAddressFailures;
|
|
@@ -22851,7 +23822,20 @@ export declare type LabelGenerationSettingsDeleted = io.flow.internal.v0.models.
|
|
|
22851
23822
|
export declare type LabelGenerationSettingsForm = io.flow.internal.v0.models.LabelGenerationSettingsForm;
|
|
22852
23823
|
export declare type LabelGenerationSettingsUpserted = io.flow.internal.v0.models.LabelGenerationSettingsUpserted;
|
|
22853
23824
|
export declare type LabelInputSource = io.flow.internal.v0.enums.LabelInputSource;
|
|
23825
|
+
export declare type LabelInvoiceRequest = io.flow.internal.v0.models.LabelInvoiceRequest;
|
|
23826
|
+
export declare type LabelInvoiceRequestDeleted = io.flow.internal.v0.models.LabelInvoiceRequestDeleted;
|
|
23827
|
+
export declare type LabelInvoiceRequestUpserted = io.flow.internal.v0.models.LabelInvoiceRequestUpserted;
|
|
23828
|
+
export declare type LabelMetadata = io.flow.internal.v0.models.LabelMetadata;
|
|
23829
|
+
export declare type LabelRequestError = io.flow.internal.v0.models.LabelRequestError;
|
|
23830
|
+
export declare type LabelRequestErrorDeleted = io.flow.internal.v0.models.LabelRequestErrorDeleted;
|
|
23831
|
+
export declare type LabelRequestErrorHandlingResponsibility = io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
23832
|
+
export declare type LabelRequestErrorUpserted = io.flow.internal.v0.models.LabelRequestErrorUpserted;
|
|
22854
23833
|
export declare type LabelSummary = io.flow.internal.v0.models.LabelSummary;
|
|
23834
|
+
export declare type LabelSurcharge = io.flow.internal.v0.models.LabelSurcharge;
|
|
23835
|
+
export declare type LabelSurchargeDetail = io.flow.internal.v0.unions.LabelSurchargeDetail;
|
|
23836
|
+
export declare type LabelSurchargeDetailFlat = io.flow.internal.v0.models.LabelSurchargeDetailFlat;
|
|
23837
|
+
export declare type LabelSurchargeDetailPerWeightUnit = io.flow.internal.v0.models.LabelSurchargeDetailPerWeightUnit;
|
|
23838
|
+
export declare type LabelSurchargeDetailPercentage = io.flow.internal.v0.models.LabelSurchargeDetailPercentage;
|
|
22855
23839
|
export declare type LabelTaxonomy = io.flow.internal.v0.models.LabelTaxonomy;
|
|
22856
23840
|
export declare type LabelTrackingSummaryDeleted = io.flow.internal.v0.models.LabelTrackingSummaryDeleted;
|
|
22857
23841
|
export declare type LabelTrackingSummaryUpserted = io.flow.internal.v0.models.LabelTrackingSummaryUpserted;
|
|
@@ -22859,6 +23843,7 @@ export declare type LabelTransaction = io.flow.internal.v0.models.LabelTransacti
|
|
|
22859
23843
|
export declare type LabelTransactionDeleted = io.flow.internal.v0.models.LabelTransactionDeleted;
|
|
22860
23844
|
export declare type LabelTransactionType = io.flow.internal.v0.enums.LabelTransactionType;
|
|
22861
23845
|
export declare type LabelTransactionUpserted = io.flow.internal.v0.models.LabelTransactionUpserted;
|
|
23846
|
+
export declare type LabelUnits = io.flow.internal.v0.models.LabelUnits;
|
|
22862
23847
|
export declare type LabeledContent = io.flow.internal.v0.models.LabeledContent;
|
|
22863
23848
|
export declare type LabelsPrediction = io.flow.internal.v0.models.LabelsPrediction;
|
|
22864
23849
|
export declare type LandedCostItem = io.flow.internal.v0.models.LandedCostItem;
|
|
@@ -22898,7 +23883,6 @@ export declare type LocalizedPriceBookItemData = io.flow.internal.v0.models.Loca
|
|
|
22898
23883
|
export declare type LocalizedPriceBookItemDeleted = io.flow.internal.v0.models.LocalizedPriceBookItemDeleted;
|
|
22899
23884
|
export declare type LocalizedPriceBookItemUpserted = io.flow.internal.v0.models.LocalizedPriceBookItemUpserted;
|
|
22900
23885
|
export declare type Location = io.flow.internal.v0.models.Location;
|
|
22901
|
-
export declare type LogisticsCenterCheck = io.flow.internal.v0.models.LogisticsCenterCheck;
|
|
22902
23886
|
export declare type Logo = io.flow.internal.v0.models.Logo;
|
|
22903
23887
|
export declare type LoyaltyProgram = io.flow.internal.v0.models.LoyaltyProgram;
|
|
22904
23888
|
export declare type LoyaltyProgramMessage = io.flow.internal.v0.models.LoyaltyProgramMessage;
|
|
@@ -22975,8 +23959,19 @@ export declare type MarketingGatewaySupportedChannelDetails = io.flow.internal.v
|
|
|
22975
23959
|
export declare type MarketsOrder = io.flow.internal.v0.models.MarketsOrder;
|
|
22976
23960
|
export declare type MerchantApplicationSummaries = io.flow.internal.v0.models.MerchantApplicationSummaries;
|
|
22977
23961
|
export declare type MerchantApplicationSummary = io.flow.internal.v0.models.MerchantApplicationSummary;
|
|
23962
|
+
export declare type MerchantCharges = io.flow.internal.v0.models.MerchantCharges;
|
|
23963
|
+
export declare type MerchantFees = io.flow.internal.v0.models.MerchantFees;
|
|
23964
|
+
export declare type MerchantGuidAssignment = io.flow.internal.v0.models.MerchantGuidAssignment;
|
|
23965
|
+
export declare type MerchantGuidAssignmentDeleted = io.flow.internal.v0.models.MerchantGuidAssignmentDeleted;
|
|
23966
|
+
export declare type MerchantGuidAssignmentUpserted = io.flow.internal.v0.models.MerchantGuidAssignmentUpserted;
|
|
22978
23967
|
export declare type MerchantOfRecordEntitySettings = io.flow.internal.v0.models.MerchantOfRecordEntitySettings;
|
|
22979
23968
|
export declare type MerchantOfRecordEntitySettingsForm = io.flow.internal.v0.models.MerchantOfRecordEntitySettingsForm;
|
|
23969
|
+
export declare type MerchantSearchResult = io.flow.internal.v0.models.MerchantSearchResult;
|
|
23970
|
+
export declare type MerchantSubsidies = io.flow.internal.v0.models.MerchantSubsidies;
|
|
23971
|
+
export declare type MerchantSummary = io.flow.internal.v0.models.MerchantSummary;
|
|
23972
|
+
export declare type MetadataProposition = io.flow.internal.v0.models.MetadataProposition;
|
|
23973
|
+
export declare type MetadataRatecard = io.flow.internal.v0.models.MetadataRatecard;
|
|
23974
|
+
export declare type MetadataWeights = io.flow.internal.v0.models.MetadataWeights;
|
|
22980
23975
|
export declare type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|
|
22981
23976
|
export declare type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
|
|
22982
23977
|
export declare type NextBillingStatement = io.flow.internal.v0.models.NextBillingStatement;
|
|
@@ -23042,10 +24037,12 @@ export declare type OrderRevenueTimelineDataPoint = io.flow.internal.v0.models.O
|
|
|
23042
24037
|
export declare type OrderServiceChangeCsvForm = io.flow.internal.v0.models.OrderServiceChangeCsvForm;
|
|
23043
24038
|
export declare type OrderShipped = io.flow.internal.v0.models.OrderShipped;
|
|
23044
24039
|
export declare type OrderSubmissionForm = io.flow.internal.v0.models.OrderSubmissionForm;
|
|
24040
|
+
export declare type OrderSummary = io.flow.internal.v0.models.OrderSummary;
|
|
23045
24041
|
export declare type OrderTransaction = io.flow.internal.v0.models.OrderTransaction;
|
|
23046
24042
|
export declare type OrderTransactionDeleted = io.flow.internal.v0.models.OrderTransactionDeleted;
|
|
23047
24043
|
export declare type OrderTransactionType = io.flow.internal.v0.enums.OrderTransactionType;
|
|
23048
24044
|
export declare type OrderTransactionUpserted = io.flow.internal.v0.models.OrderTransactionUpserted;
|
|
24045
|
+
export declare type OrderValidationError = io.flow.internal.v0.models.OrderValidationError;
|
|
23049
24046
|
export declare type OrganizationAccount = io.flow.internal.v0.models.OrganizationAccount;
|
|
23050
24047
|
export declare type OrganizationAccountDeleted = io.flow.internal.v0.models.OrganizationAccountDeleted;
|
|
23051
24048
|
export declare type OrganizationAccountUpsertedV2 = io.flow.internal.v0.models.OrganizationAccountUpsertedV2;
|
|
@@ -23064,6 +24061,10 @@ export declare type OrganizationCurrencySettingDeleted = io.flow.internal.v0.mod
|
|
|
23064
24061
|
export declare type OrganizationCurrencySettingForm = io.flow.internal.v0.models.OrganizationCurrencySettingForm;
|
|
23065
24062
|
export declare type OrganizationCurrencySettingUpserted = io.flow.internal.v0.models.OrganizationCurrencySettingUpserted;
|
|
23066
24063
|
export declare type OrganizationCurrencySettingVersion = io.flow.internal.v0.models.OrganizationCurrencySettingVersion;
|
|
24064
|
+
export declare type OrganizationDeactivation = io.flow.internal.v0.models.OrganizationDeactivation;
|
|
24065
|
+
export declare type OrganizationDeactivationDeleted = io.flow.internal.v0.models.OrganizationDeactivationDeleted;
|
|
24066
|
+
export declare type OrganizationDeactivationForm = io.flow.internal.v0.models.OrganizationDeactivationForm;
|
|
24067
|
+
export declare type OrganizationDeactivationUpserted = io.flow.internal.v0.models.OrganizationDeactivationUpserted;
|
|
23067
24068
|
export declare type OrganizationDebugTransaction = io.flow.internal.v0.models.OrganizationDebugTransaction;
|
|
23068
24069
|
export declare type OrganizationInvitationAcceptForm = io.flow.internal.v0.models.OrganizationInvitationAcceptForm;
|
|
23069
24070
|
export declare type OrganizationMembershipCopy = io.flow.internal.v0.models.OrganizationMembershipCopy;
|
|
@@ -23096,6 +24097,7 @@ export declare type OrganizationSettingsForm = io.flow.internal.v0.models.Organi
|
|
|
23096
24097
|
export declare type OrganizationStatusChange = io.flow.internal.v0.models.OrganizationStatusChange;
|
|
23097
24098
|
export declare type OrganizationStatusChangeDeleted = io.flow.internal.v0.models.OrganizationStatusChangeDeleted;
|
|
23098
24099
|
export declare type OrganizationStatusChangeUpserted = io.flow.internal.v0.models.OrganizationStatusChangeUpserted;
|
|
24100
|
+
export declare type OrganizationsAuditCheckReport = io.flow.internal.v0.models.OrganizationsAuditCheckReport;
|
|
23099
24101
|
export declare type OutputStyle = io.flow.internal.v0.enums.OutputStyle;
|
|
23100
24102
|
export declare type Owner = io.flow.internal.v0.enums.Owner;
|
|
23101
24103
|
export declare type Partner = io.flow.internal.v0.models.Partner;
|
|
@@ -23130,6 +24132,7 @@ export declare type PaymentSummaryStatus = io.flow.internal.v0.enums.PaymentSumm
|
|
|
23130
24132
|
export declare type PaymentSummaryType = io.flow.internal.v0.enums.PaymentSummaryType;
|
|
23131
24133
|
export declare type PaymentSummaryV2 = io.flow.internal.v0.models.PaymentSummaryV2;
|
|
23132
24134
|
export declare type PaymentTerm = io.flow.internal.v0.enums.PaymentTerm;
|
|
24135
|
+
export declare type PayoutStatusCounts = io.flow.internal.v0.models.PayoutStatusCounts;
|
|
23133
24136
|
export declare type PaypalAccount = io.flow.internal.v0.models.PaypalAccount;
|
|
23134
24137
|
export declare type PaypalAccountModificationForm = io.flow.internal.v0.models.PaypalAccountModificationForm;
|
|
23135
24138
|
export declare type PaypalAccountPutForm = io.flow.internal.v0.models.PaypalAccountPutForm;
|
|
@@ -23200,6 +24203,7 @@ export declare type ProductHarmonization = io.flow.internal.v0.models.ProductHar
|
|
|
23200
24203
|
export declare type ProductHarmonizationForm = io.flow.internal.v0.models.ProductHarmonizationForm;
|
|
23201
24204
|
export declare type ProductLabels = io.flow.internal.v0.models.ProductLabels;
|
|
23202
24205
|
export declare type ProductListSettingsForm = io.flow.internal.v0.models.ProductListSettingsForm;
|
|
24206
|
+
export declare type ProductRestrictionResultValidationError = io.flow.internal.v0.models.ProductRestrictionResultValidationError;
|
|
23203
24207
|
export declare type ProductReviewHistory = io.flow.internal.v0.models.ProductReviewHistory;
|
|
23204
24208
|
export declare type ProductStatus = io.flow.internal.v0.enums.ProductStatus;
|
|
23205
24209
|
export declare type PromptAction = io.flow.internal.v0.enums.PromptAction;
|
|
@@ -23211,6 +24215,7 @@ export declare type ProofOfPostingExternallyFulfilled = io.flow.internal.v0.mode
|
|
|
23211
24215
|
export declare type ProofOfPostingFulfilled = io.flow.internal.v0.models.ProofOfPostingFulfilled;
|
|
23212
24216
|
export declare type ProofOfPostingOrderCancellation = io.flow.internal.v0.models.ProofOfPostingOrderCancellation;
|
|
23213
24217
|
export declare type ProofOfPostingShippingNotification = io.flow.internal.v0.models.ProofOfPostingShippingNotification;
|
|
24218
|
+
export declare type QueuedRecord = io.flow.internal.v0.models.QueuedRecord;
|
|
23214
24219
|
export declare type QueuedRecordType = io.flow.internal.v0.enums.QueuedRecordType;
|
|
23215
24220
|
export declare type QuoteRequest = io.flow.internal.v0.models.QuoteRequest;
|
|
23216
24221
|
export declare type QuoteRequestType = io.flow.internal.v0.enums.QuoteRequestType;
|
|
@@ -23228,6 +24233,7 @@ export declare type RateFreshnessSummaryDeleted = io.flow.internal.v0.models.Rat
|
|
|
23228
24233
|
export declare type RateFreshnessSummaryUpserted = io.flow.internal.v0.models.RateFreshnessSummaryUpserted;
|
|
23229
24234
|
export declare type RateLevel = io.flow.internal.v0.models.RateLevel;
|
|
23230
24235
|
export declare type RateLevelForm = io.flow.internal.v0.models.RateLevelForm;
|
|
24236
|
+
export declare type RateLevelKey = io.flow.internal.v0.enums.RateLevelKey;
|
|
23231
24237
|
export declare type RateLevelOrganization = io.flow.internal.v0.models.RateLevelOrganization;
|
|
23232
24238
|
export declare type RateLevelOrganizationForm = io.flow.internal.v0.models.RateLevelOrganizationForm;
|
|
23233
24239
|
export declare type RateLevelRatecard = io.flow.internal.v0.models.RateLevelRatecard;
|
|
@@ -23277,9 +24283,13 @@ export declare type RedirectReason = io.flow.internal.v0.enums.RedirectReason;
|
|
|
23277
24283
|
export declare type RegisteredExporterTariffEligibilityData = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData;
|
|
23278
24284
|
export declare type RegisteredExporterTariffEligibilityForm = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
|
|
23279
24285
|
export declare type RejectionReason = io.flow.internal.v0.enums.RejectionReason;
|
|
24286
|
+
export declare type Report = io.flow.internal.v0.models.Report;
|
|
24287
|
+
export declare type ReportForm = io.flow.internal.v0.models.ReportForm;
|
|
23280
24288
|
export declare type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
|
|
23281
24289
|
export declare type ReportRuleDecision = io.flow.internal.v0.models.ReportRuleDecision;
|
|
24290
|
+
export declare type ReportStatus = io.flow.internal.v0.enums.ReportStatus;
|
|
23282
24291
|
export declare type ReportSummary = io.flow.internal.v0.models.ReportSummary;
|
|
24292
|
+
export declare type ReportingDetails = io.flow.internal.v0.models.ReportingDetails;
|
|
23283
24293
|
export declare type ReportingScheme = io.flow.internal.v0.enums.ReportingScheme;
|
|
23284
24294
|
export declare type RequeueRequestForm = io.flow.internal.v0.models.RequeueRequestForm;
|
|
23285
24295
|
export declare type ResponsibleParty = io.flow.internal.v0.enums.ResponsibleParty;
|
|
@@ -23312,6 +24322,8 @@ export declare type ResyncByDestinations = io.flow.internal.v0.models.ResyncByDe
|
|
|
23312
24322
|
export declare type ResyncByHs6Destinations = io.flow.internal.v0.models.ResyncByHs6Destinations;
|
|
23313
24323
|
export declare type ResyncByHs6Origin = io.flow.internal.v0.models.ResyncByHs6Origin;
|
|
23314
24324
|
export declare type ResyncFallbackRates = io.flow.internal.v0.models.ResyncFallbackRates;
|
|
24325
|
+
export declare type Retracking = io.flow.internal.v0.models.Retracking;
|
|
24326
|
+
export declare type RetrackingForm = io.flow.internal.v0.models.RetrackingForm;
|
|
23315
24327
|
export declare type ReturnPolicyDeleted = io.flow.internal.v0.models.ReturnPolicyDeleted;
|
|
23316
24328
|
export declare type ReturnPolicyItemResultDeleted = io.flow.internal.v0.models.ReturnPolicyItemResultDeleted;
|
|
23317
24329
|
export declare type ReturnPolicyItemResultUpserted = io.flow.internal.v0.models.ReturnPolicyItemResultUpserted;
|
|
@@ -23323,6 +24335,8 @@ export declare type RoutingAccount = io.flow.internal.v0.models.RoutingAccount;
|
|
|
23323
24335
|
export declare type RoutingEntity = io.flow.internal.v0.unions.RoutingEntity;
|
|
23324
24336
|
export declare type RoutingMerchant = io.flow.internal.v0.models.RoutingMerchant;
|
|
23325
24337
|
export declare type RoutingProcessor = io.flow.internal.v0.models.RoutingProcessor;
|
|
24338
|
+
export declare type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
|
|
24339
|
+
export declare type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
|
|
23326
24340
|
export declare type Scope = io.flow.internal.v0.enums.Scope;
|
|
23327
24341
|
export declare type Screen = io.flow.internal.v0.models.Screen;
|
|
23328
24342
|
export declare type ScreenForm = io.flow.internal.v0.models.ScreenForm;
|
|
@@ -23348,6 +24362,7 @@ export declare type SfExpress = io.flow.internal.v0.models.SfExpress;
|
|
|
23348
24362
|
export declare type ShippedItemValue = io.flow.internal.v0.models.ShippedItemValue;
|
|
23349
24363
|
export declare type ShipperAccountInfoForm = io.flow.internal.v0.models.ShipperAccountInfoForm;
|
|
23350
24364
|
export declare type ShippingLane = io.flow.internal.v0.models.ShippingLane;
|
|
24365
|
+
export declare type ShippingMethodReference = io.flow.internal.v0.models.ShippingMethodReference;
|
|
23351
24366
|
export declare type Shop = io.flow.internal.v0.models.Shop;
|
|
23352
24367
|
export declare type ShopForm = io.flow.internal.v0.models.ShopForm;
|
|
23353
24368
|
export declare type ShopVersion = io.flow.internal.v0.models.ShopVersion;
|
|
@@ -23369,11 +24384,18 @@ export declare type ShopifyGiftCardReversalForm = io.flow.internal.v0.models.Sho
|
|
|
23369
24384
|
export declare type ShopifyGrantStatus = io.flow.internal.v0.enums.ShopifyGrantStatus;
|
|
23370
24385
|
export declare type ShopifyGrantsCheck = io.flow.internal.v0.models.ShopifyGrantsCheck;
|
|
23371
24386
|
export declare type ShopifyMarketsDangerousGoods = io.flow.internal.v0.enums.ShopifyMarketsDangerousGoods;
|
|
24387
|
+
export declare type ShopifyMarketsDiscrepancy = io.flow.internal.v0.models.ShopifyMarketsDiscrepancy;
|
|
24388
|
+
export declare type ShopifyMarketsDiscrepancyData = io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData;
|
|
23372
24389
|
export declare type ShopifyMarketsHtsNumberAvailable = io.flow.internal.v0.enums.ShopifyMarketsHtsNumberAvailable;
|
|
23373
24390
|
export declare type ShopifyMarketsIncorporationCountry = io.flow.internal.v0.models.ShopifyMarketsIncorporationCountry;
|
|
24391
|
+
export declare type ShopifyMarketsInternalOrderMetrics = io.flow.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
|
|
24392
|
+
export declare type ShopifyMarketsMetricsDeleted = io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted;
|
|
24393
|
+
export declare type ShopifyMarketsMetricsUpserted = io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted;
|
|
23374
24394
|
export declare type ShopifyMarketsOrder = io.flow.internal.v0.models.ShopifyMarketsOrder;
|
|
23375
24395
|
export declare type ShopifyMarketsOrderDeleted = io.flow.internal.v0.models.ShopifyMarketsOrderDeleted;
|
|
23376
24396
|
export declare type ShopifyMarketsOrderUpserted = io.flow.internal.v0.models.ShopifyMarketsOrderUpserted;
|
|
24397
|
+
export declare type ShopifyMarketsOrdersMetrics = io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics;
|
|
24398
|
+
export declare type ShopifyMarketsQueuedRecordType = io.flow.internal.v0.enums.ShopifyMarketsQueuedRecordType;
|
|
23377
24399
|
export declare type ShopifyMarketsShop = io.flow.internal.v0.models.ShopifyMarketsShop;
|
|
23378
24400
|
export declare type ShopifyMarketsShopDeleted = io.flow.internal.v0.models.ShopifyMarketsShopDeleted;
|
|
23379
24401
|
export declare type ShopifyMarketsShopForm = io.flow.internal.v0.models.ShopifyMarketsShopForm;
|
|
@@ -23381,6 +24403,7 @@ export declare type ShopifyMarketsShopStatisticsDeleted = io.flow.internal.v0.mo
|
|
|
23381
24403
|
export declare type ShopifyMarketsShopStatisticsUpserted = io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted;
|
|
23382
24404
|
export declare type ShopifyMarketsShopSummary = io.flow.internal.v0.models.ShopifyMarketsShopSummary;
|
|
23383
24405
|
export declare type ShopifyMarketsShopUpserted = io.flow.internal.v0.models.ShopifyMarketsShopUpserted;
|
|
24406
|
+
export declare type ShopifyMarketsShopifyOrderMetrics = io.flow.internal.v0.models.ShopifyMarketsShopifyOrderMetrics;
|
|
23384
24407
|
export declare type ShopifyMarketsSubsidiaryCompany = io.flow.internal.v0.models.ShopifyMarketsSubsidiaryCompany;
|
|
23385
24408
|
export declare type ShopifyMarketsSync = io.flow.internal.v0.models.ShopifyMarketsSync;
|
|
23386
24409
|
export declare type ShopifyMarketsTradeSector = io.flow.internal.v0.enums.ShopifyMarketsTradeSector;
|
|
@@ -23442,9 +24465,12 @@ export declare type ShopifyService = io.flow.internal.v0.enums.ShopifyService;
|
|
|
23442
24465
|
export declare type ShopifyShopDeleted = io.flow.internal.v0.models.ShopifyShopDeleted;
|
|
23443
24466
|
export declare type ShopifyShopStatistics = io.flow.internal.v0.models.ShopifyShopStatistics;
|
|
23444
24467
|
export declare type ShopifyShopUpserted = io.flow.internal.v0.models.ShopifyShopUpserted;
|
|
24468
|
+
export declare type ShopifyStorePassword = io.flow.internal.v0.models.ShopifyStorePassword;
|
|
23445
24469
|
export declare type ShopifyWebhook = io.flow.internal.v0.models.ShopifyWebhook;
|
|
23446
24470
|
export declare type ShopifyWebhookEvent = io.flow.internal.v0.models.ShopifyWebhookEvent;
|
|
23447
24471
|
export declare type ShopifyWebhookForm = io.flow.internal.v0.models.ShopifyWebhookForm;
|
|
24472
|
+
export declare type ShopperFees = io.flow.internal.v0.models.ShopperFees;
|
|
24473
|
+
export declare type ShopperSummary = io.flow.internal.v0.models.ShopperSummary;
|
|
23448
24474
|
export declare type SignificanceAction = io.flow.internal.v0.enums.SignificanceAction;
|
|
23449
24475
|
export declare type SimpleAccountReference = io.flow.internal.v0.models.SimpleAccountReference;
|
|
23450
24476
|
export declare type SimpleRoundingStrategy = io.flow.internal.v0.enums.SimpleRoundingStrategy;
|
|
@@ -23577,6 +24603,9 @@ export declare type TransactionAdjustment = io.flow.internal.v0.models.Transacti
|
|
|
23577
24603
|
export declare type TransactionAdjustmentForm = io.flow.internal.v0.models.TransactionAdjustmentForm;
|
|
23578
24604
|
export declare type TransactionPostingMethod = io.flow.internal.v0.enums.TransactionPostingMethod;
|
|
23579
24605
|
export declare type TransactionReference = io.flow.internal.v0.models.TransactionReference;
|
|
24606
|
+
export declare type TransactionStatement = io.flow.internal.v0.models.TransactionStatement;
|
|
24607
|
+
export declare type TransactionStatementDeleted = io.flow.internal.v0.models.TransactionStatementDeleted;
|
|
24608
|
+
export declare type TransactionStatementUpserted = io.flow.internal.v0.models.TransactionStatementUpserted;
|
|
23580
24609
|
export declare type TransactionSummary = io.flow.internal.v0.unions.TransactionSummary;
|
|
23581
24610
|
export declare type TransferMethod = io.flow.internal.v0.enums.TransferMethod;
|
|
23582
24611
|
export declare type TransferTransaction = io.flow.internal.v0.models.TransferTransaction;
|
|
@@ -23585,6 +24614,11 @@ export declare type TransferTransactionDeletedV2 = io.flow.internal.v0.models.Tr
|
|
|
23585
24614
|
export declare type TransferTransactionUpserted = io.flow.internal.v0.models.TransferTransactionUpserted;
|
|
23586
24615
|
export declare type TransferTransactionUpsertedV2 = io.flow.internal.v0.models.TransferTransactionUpsertedV2;
|
|
23587
24616
|
export declare type Tribe = io.flow.internal.v0.models.Tribe;
|
|
24617
|
+
export declare type TrueUpLabelSummary = io.flow.internal.v0.models.TrueUpLabelSummary;
|
|
24618
|
+
export declare type TrueUpSurchargeType = io.flow.internal.v0.enums.TrueUpSurchargeType;
|
|
24619
|
+
export declare type UnassignedMerchantGuid = io.flow.internal.v0.models.UnassignedMerchantGuid;
|
|
24620
|
+
export declare type UnassignedMerchantGuidDeleted = io.flow.internal.v0.models.UnassignedMerchantGuidDeleted;
|
|
24621
|
+
export declare type UnassignedMerchantGuidUpserted = io.flow.internal.v0.models.UnassignedMerchantGuidUpserted;
|
|
23588
24622
|
export declare type UnclassifiedProductStatistic = io.flow.internal.v0.models.UnclassifiedProductStatistic;
|
|
23589
24623
|
export declare type UnclassifiedProductStatus = io.flow.internal.v0.enums.UnclassifiedProductStatus;
|
|
23590
24624
|
export declare type UnclassifiedProductsPurgeRequest = io.flow.internal.v0.models.UnclassifiedProductsPurgeRequest;
|
|
@@ -23619,9 +24653,15 @@ export declare type VirtualCardProvider = io.flow.internal.v0.models.VirtualCard
|
|
|
23619
24653
|
export declare type VirtualCardProviderDeleted = io.flow.internal.v0.models.VirtualCardProviderDeleted;
|
|
23620
24654
|
export declare type VirtualCardProviderUpserted = io.flow.internal.v0.models.VirtualCardProviderUpserted;
|
|
23621
24655
|
export declare type VirtualCardTransaction = io.flow.internal.v0.models.VirtualCardTransaction;
|
|
24656
|
+
export declare type WashCarrierActualFile = io.flow.internal.v0.models.WashCarrierActualFile;
|
|
24657
|
+
export declare type WashCarrierActualFileForm = io.flow.internal.v0.models.WashCarrierActualFileForm;
|
|
24658
|
+
export declare type WashCarrierActualFileStatus = io.flow.internal.v0.enums.WashCarrierActualFileStatus;
|
|
23622
24659
|
export declare type WashExportRequest = io.flow.internal.v0.models.WashExportRequest;
|
|
23623
24660
|
export declare type WasteElectricalAndElectronicEquipmentComplianceData = io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceData;
|
|
23624
24661
|
export declare type WasteElectricalAndElectronicEquipmentComplianceForm = io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceForm;
|
|
23625
24662
|
export declare type Webhook = io.flow.internal.v0.models.Webhook;
|
|
24663
|
+
export declare type WeightSelection = io.flow.internal.v0.enums.WeightSelection;
|
|
24664
|
+
export declare type WeightsDead = io.flow.internal.v0.models.WeightsDead;
|
|
24665
|
+
export declare type WeightsDimensional = io.flow.internal.v0.models.WeightsDimensional;
|
|
23626
24666
|
export declare type WholeOrderActionForm = io.flow.internal.v0.models.WholeOrderActionForm;
|
|
23627
24667
|
export {};
|