@flowio/types 11.24.67 → 11.24.69
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 +1319 -249
- package/dist/api.d.ts +371 -33
- package/package.json +2 -2
- package/src/api-internal.ts +1796 -320
- package/src/api.ts +536 -33
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,14 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2493
2424
|
readonly card: string;
|
|
2494
2425
|
readonly customer?: string;
|
|
2495
2426
|
}
|
|
2427
|
+
interface ThreeDSecureCharge {
|
|
2428
|
+
readonly authenticated?: boolean;
|
|
2429
|
+
readonly authentication_flow?: io.flow.stripe.v0.enums.ThreeDsAuthenticationFlow;
|
|
2430
|
+
readonly result?: io.flow.stripe.v0.enums.ThreeDsResult;
|
|
2431
|
+
readonly result_reason?: io.flow.stripe.v0.enums.ThreeDsResultReason;
|
|
2432
|
+
readonly succeeded?: boolean;
|
|
2433
|
+
readonly version?: string;
|
|
2434
|
+
}
|
|
2496
2435
|
interface ThreeDSecureRedirect {
|
|
2497
2436
|
readonly type: io.flow.stripe.v0.enums.UseStripeSdkType;
|
|
2498
2437
|
readonly stripe_js: string;
|
|
@@ -2516,6 +2455,21 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2516
2455
|
readonly amount?: number;
|
|
2517
2456
|
readonly destination?: string;
|
|
2518
2457
|
}
|
|
2458
|
+
interface VisaCheckout {
|
|
2459
|
+
readonly type: 'visa_checkout';
|
|
2460
|
+
readonly visa_checkout: io.flow.stripe.v0.models.VisaCheckoutInformation;
|
|
2461
|
+
readonly dynamic_last4?: string;
|
|
2462
|
+
}
|
|
2463
|
+
interface VisaCheckoutInformation {
|
|
2464
|
+
readonly billing_address?: io.flow.stripe.v0.models.Address;
|
|
2465
|
+
readonly email?: string;
|
|
2466
|
+
readonly name?: string;
|
|
2467
|
+
readonly shipping_address?: io.flow.stripe.v0.models.Address;
|
|
2468
|
+
}
|
|
2469
|
+
}
|
|
2470
|
+
declare namespace io.flow.stripe.v0.unions {
|
|
2471
|
+
type CardWallet = io.flow.stripe.v0.models.Masterpass | io.flow.stripe.v0.models.ApplePay | io.flow.stripe.v0.models.VisaCheckout;
|
|
2472
|
+
type PaymentMethodDetails = io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna;
|
|
2519
2473
|
}
|
|
2520
2474
|
declare namespace io.flow.customer.v0.enums {
|
|
2521
2475
|
type CustomerAddressType = 'billing' | 'invoice' | 'shipping';
|
|
@@ -2599,6 +2553,7 @@ declare namespace io.flow.label.v0.enums {
|
|
|
2599
2553
|
type Direction = 'outbound' | 'return';
|
|
2600
2554
|
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
2555
|
type LabelTriggerMethod = 'autogenerated' | 'on_demand';
|
|
2556
|
+
type PackageDimensionsSource = 'provided' | 'dimensions_estimated';
|
|
2602
2557
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
2603
2558
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
2604
2559
|
}
|
|
@@ -2637,6 +2592,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
2637
2592
|
readonly order_number: string;
|
|
2638
2593
|
readonly service?: string;
|
|
2639
2594
|
readonly shipment_recipient?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
2595
|
+
readonly package_dimensions_source?: io.flow.label.v0.enums.PackageDimensionsSource;
|
|
2640
2596
|
}
|
|
2641
2597
|
interface DetailedShippingNotificationForm {
|
|
2642
2598
|
readonly discriminator: 'detailed_shipping_notification_form';
|
|
@@ -2677,6 +2633,9 @@ declare namespace io.flow.label.v0.models {
|
|
|
2677
2633
|
readonly carrier_tracking_number_url: string;
|
|
2678
2634
|
readonly cost_estimate_source?: io.flow.label.v0.enums.CostEstimateSource;
|
|
2679
2635
|
readonly cost?: io.flow.common.v0.models.Price;
|
|
2636
|
+
readonly delivered_duty?: io.flow.common.v0.enums.DeliveredDuty;
|
|
2637
|
+
readonly taxes_owed?: io.flow.common.v0.models.Money;
|
|
2638
|
+
readonly duties_owed?: io.flow.common.v0.models.Money;
|
|
2680
2639
|
readonly destination: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
2681
2640
|
readonly flow_tracking_number: string;
|
|
2682
2641
|
readonly flow_tracking_number_url: string;
|
|
@@ -2688,6 +2647,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
2688
2647
|
readonly return?: io.flow.label.v0.models.ShippingLabelDocument;
|
|
2689
2648
|
readonly order?: io.flow.label.v0.models.LabelOrderSummary;
|
|
2690
2649
|
readonly package?: io.flow.label.v0.models.ShippingLabelPackage;
|
|
2650
|
+
readonly package_dimension_source?: io.flow.label.v0.enums.PackageDimensionsSource;
|
|
2691
2651
|
readonly order_identifier?: string;
|
|
2692
2652
|
readonly fulfillment_key?: string;
|
|
2693
2653
|
readonly shipment_recipient: io.flow.label.v0.enums.ShipmentRecipient;
|
|
@@ -2705,9 +2665,15 @@ declare namespace io.flow.label.v0.models {
|
|
|
2705
2665
|
readonly html?: string;
|
|
2706
2666
|
readonly required: boolean;
|
|
2707
2667
|
}
|
|
2668
|
+
interface ShippingLabelHopCostItemizedEstimate {
|
|
2669
|
+
readonly units: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
|
|
2670
|
+
readonly base: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
2671
|
+
readonly surcharges: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
|
|
2672
|
+
}
|
|
2708
2673
|
interface ShippingLabelHopSummary {
|
|
2709
2674
|
readonly lane: io.flow.label.v0.models.ShippingLabelLaneSummary;
|
|
2710
2675
|
readonly cost: io.flow.common.v0.models.Money;
|
|
2676
|
+
readonly itemized_estimate?: io.flow.label.v0.models.ShippingLabelHopCostItemizedEstimate;
|
|
2711
2677
|
}
|
|
2712
2678
|
interface ShippingLabelLaneSummary {
|
|
2713
2679
|
readonly id?: string;
|
|
@@ -2715,12 +2681,18 @@ declare namespace io.flow.label.v0.models {
|
|
|
2715
2681
|
}
|
|
2716
2682
|
interface ShippingLabelPackage {
|
|
2717
2683
|
readonly dimensions: io.flow.common.v0.models.Dimension;
|
|
2684
|
+
readonly volumetric_weight?: number;
|
|
2718
2685
|
readonly items: io.flow.common.v0.models.LineItemForm[];
|
|
2719
2686
|
readonly reference_number?: string;
|
|
2720
2687
|
}
|
|
2721
2688
|
interface ShippingLabelRatecardSummary {
|
|
2722
2689
|
readonly id?: string;
|
|
2723
2690
|
readonly ratecard_owner: io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
2691
|
+
readonly rate_level_key?: string;
|
|
2692
|
+
readonly glbe_shipping_method_id?: string;
|
|
2693
|
+
readonly glbe_proposition_name?: string;
|
|
2694
|
+
readonly channel_revenue_share_percentage?: number;
|
|
2695
|
+
readonly shopify_grc_gid?: string;
|
|
2724
2696
|
}
|
|
2725
2697
|
interface ShippingLabelSummary {
|
|
2726
2698
|
readonly id: string;
|
|
@@ -3161,14 +3133,14 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
3161
3133
|
readonly purchase_url?: string;
|
|
3162
3134
|
}
|
|
3163
3135
|
interface ShippingAddress {
|
|
3164
|
-
readonly recipient_name
|
|
3136
|
+
readonly recipient_name?: string;
|
|
3165
3137
|
readonly line1: string;
|
|
3166
3138
|
readonly line2?: string;
|
|
3167
|
-
readonly city
|
|
3139
|
+
readonly city?: string;
|
|
3168
3140
|
readonly country_code: string;
|
|
3169
|
-
readonly postal_code
|
|
3141
|
+
readonly postal_code?: string;
|
|
3170
3142
|
readonly phone?: string;
|
|
3171
|
-
readonly state
|
|
3143
|
+
readonly state?: string;
|
|
3172
3144
|
}
|
|
3173
3145
|
interface SupportingInfo {
|
|
3174
3146
|
readonly notes?: string;
|
|
@@ -3545,7 +3517,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3545
3517
|
readonly merchantOrderReference?: string;
|
|
3546
3518
|
readonly shopperInteraction: io.flow.adyen.v0.enums.ShopperInteraction;
|
|
3547
3519
|
readonly bankAccount?: io.flow.adyen.v0.models.BankAccount;
|
|
3548
|
-
readonly additionalData?:
|
|
3520
|
+
readonly additionalData?: io.flow.adyen.v0.models.AuthorizeRequestAdditionalData;
|
|
3549
3521
|
readonly mpiData?: io.flow.adyen.v0.models.ThreeDSecureData;
|
|
3550
3522
|
readonly selectedBrand?: string;
|
|
3551
3523
|
readonly browserInfo?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
@@ -3553,6 +3525,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3553
3525
|
readonly recurringProcessingModel?: io.flow.adyen.v0.enums.RecurringProcessingModel;
|
|
3554
3526
|
readonly mcc?: string;
|
|
3555
3527
|
readonly metadata?: any;
|
|
3528
|
+
readonly captureDelayHours?: number;
|
|
3556
3529
|
}
|
|
3557
3530
|
interface AuthorizeRequest3D {
|
|
3558
3531
|
readonly merchantAccount: string;
|
|
@@ -3566,6 +3539,10 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3566
3539
|
readonly threeDS2RequestData?: io.flow.adyen.v0.models.Threeds2RequestData;
|
|
3567
3540
|
readonly threeDS2Result?: io.flow.adyen.v0.models.Threeds2Result;
|
|
3568
3541
|
}
|
|
3542
|
+
interface AuthorizeRequestAdditionalData {
|
|
3543
|
+
readonly manualCapture?: boolean;
|
|
3544
|
+
readonly 'paywithgoogle.token'?: string;
|
|
3545
|
+
}
|
|
3569
3546
|
interface AuthorizeResponse {
|
|
3570
3547
|
readonly pspReference: string;
|
|
3571
3548
|
readonly resultCode: io.flow.adyen.v0.enums.ResultCode;
|
|
@@ -3719,6 +3696,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3719
3696
|
readonly redirectToIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
3720
3697
|
readonly redirectFromIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
3721
3698
|
readonly storePaymentMethod?: boolean;
|
|
3699
|
+
readonly captureDelayHours?: number;
|
|
3722
3700
|
}
|
|
3723
3701
|
interface PaymentResponse {
|
|
3724
3702
|
readonly resultCode: io.flow.adyen.v0.enums.ResultCode;
|
|
@@ -3838,6 +3816,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3838
3816
|
interface ThreedsAdditionalData {
|
|
3839
3817
|
readonly executeThreeD?: boolean;
|
|
3840
3818
|
readonly allow3DS2?: boolean;
|
|
3819
|
+
readonly manualCapture?: boolean;
|
|
3841
3820
|
}
|
|
3842
3821
|
}
|
|
3843
3822
|
declare namespace io.flow.adyen.v0.unions {
|
|
@@ -3970,7 +3949,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
3970
3949
|
readonly starts_at: string;
|
|
3971
3950
|
readonly ends_at?: string;
|
|
3972
3951
|
readonly prerequisite_subtotal_range?: io.flow.shopify.external.v0.models.PriceRuleGreaterThanRange;
|
|
3973
|
-
readonly
|
|
3952
|
+
readonly prerequisite_shipping_price_range?: io.flow.shopify.external.v0.models.PriceRuleLessThanRange;
|
|
3974
3953
|
readonly usage_limit?: number;
|
|
3975
3954
|
readonly entitled_product_ids: number[];
|
|
3976
3955
|
readonly entitled_variant_ids: number[];
|
|
@@ -3980,7 +3959,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
3980
3959
|
readonly once_per_customer: boolean;
|
|
3981
3960
|
readonly target_selection: io.flow.shopify.external.v0.enums.PriceRuleTargetSelection;
|
|
3982
3961
|
readonly customer_selection: io.flow.shopify.external.v0.enums.PriceRuleCustomerSelection;
|
|
3983
|
-
readonly
|
|
3962
|
+
readonly customer_segment_prerequisite_ids?: number[];
|
|
3984
3963
|
readonly prerequisite_customer_ids?: number[];
|
|
3985
3964
|
readonly prerequisite_quantity_range?: io.flow.shopify.external.v0.models.PriceRuleGreaterThanRange;
|
|
3986
3965
|
readonly prerequisite_product_ids?: number[];
|
|
@@ -4961,6 +4940,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
4961
4940
|
readonly send_receipt?: boolean;
|
|
4962
4941
|
readonly metafields?: io.flow.shopify.markets.v0.models.ShopifyOrderMetafield[];
|
|
4963
4942
|
readonly merchant_of_record_app_id?: number;
|
|
4943
|
+
readonly total_shipping_price_set?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
4964
4944
|
}
|
|
4965
4945
|
interface ShopifyOrderAddress {
|
|
4966
4946
|
readonly id?: number;
|
|
@@ -5097,7 +5077,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5097
5077
|
readonly grams?: number;
|
|
5098
5078
|
readonly id: number;
|
|
5099
5079
|
readonly price?: string;
|
|
5100
|
-
readonly price_set
|
|
5080
|
+
readonly price_set: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
5101
5081
|
readonly product_id?: number;
|
|
5102
5082
|
readonly quantity: number;
|
|
5103
5083
|
readonly requires_shipping: boolean;
|
|
@@ -5106,7 +5086,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5106
5086
|
readonly variant_id?: number;
|
|
5107
5087
|
readonly variant_title?: string;
|
|
5108
5088
|
readonly vendor?: string;
|
|
5109
|
-
readonly name
|
|
5089
|
+
readonly name: string;
|
|
5110
5090
|
readonly gift_card: boolean;
|
|
5111
5091
|
readonly properties: io.flow.shopify.markets.v0.models.ShopifyOrderProperty[];
|
|
5112
5092
|
readonly taxable: boolean;
|
|
@@ -5196,6 +5176,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5196
5176
|
readonly carrier_identifier?: string;
|
|
5197
5177
|
readonly price_set: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
5198
5178
|
readonly discounted_price_set: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
5179
|
+
readonly discount_allocations?: io.flow.shopify.markets.v0.models.ShopifyOrderDiscountAllocation[];
|
|
5199
5180
|
}
|
|
5200
5181
|
interface ShopifyOrderTaxLine {
|
|
5201
5182
|
readonly price_set: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
@@ -5222,8 +5203,8 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5222
5203
|
readonly parent_id?: number;
|
|
5223
5204
|
readonly user_id?: number;
|
|
5224
5205
|
}
|
|
5225
|
-
interface
|
|
5226
|
-
readonly order: io.flow.shopify.markets.v0.models.
|
|
5206
|
+
interface ShopifyOrderUpdateForm {
|
|
5207
|
+
readonly order: io.flow.shopify.markets.v0.models.ShopifyUpdateOrder;
|
|
5227
5208
|
}
|
|
5228
5209
|
interface ShopifyOrderWrapper {
|
|
5229
5210
|
readonly order: io.flow.shopify.markets.v0.models.ShopifyOrder;
|
|
@@ -5273,9 +5254,10 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5273
5254
|
readonly kind: string;
|
|
5274
5255
|
readonly gateway: string;
|
|
5275
5256
|
}
|
|
5276
|
-
interface
|
|
5257
|
+
interface ShopifyUpdateOrder {
|
|
5277
5258
|
readonly id: number;
|
|
5278
|
-
readonly shipping_address
|
|
5259
|
+
readonly shipping_address?: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
|
|
5260
|
+
readonly note_attributes?: io.flow.shopify.markets.v0.models.ShopifyOrderAttribute[];
|
|
5279
5261
|
}
|
|
5280
5262
|
interface ShopifyWebhookCustomersDataRequest {
|
|
5281
5263
|
readonly shop_id: number;
|
|
@@ -5508,7 +5490,7 @@ declare namespace io.flow.payment.gateway.v0.enums {
|
|
|
5508
5490
|
type PaymentFailureCode = 'action_expired' | 'action_cancelled' | 'action_failed' | 'authorization_declined' | 'not_supported' | 'fraudulent' | 'error' | 'payment_checks_declined';
|
|
5509
5491
|
type PaymentMethodDataOptionType = 'ideal_issuer_option';
|
|
5510
5492
|
type PaymentRequestReviewCheckStatus = 'passed' | 'failed';
|
|
5511
|
-
type PaymentRequestReviewCheckType = 'restricted_party_screening' | 'fraud_suspicious_behavior' | 'fraud_suspicious_past_activity' | 'fraud_risky_velocity' | 'fraud_previous_chargebacks' | 'order_restricted_goods' | 'order_unsupported_destination' | 'order_missing_information' | 'order_domestic';
|
|
5493
|
+
type PaymentRequestReviewCheckType = 'restricted_party_screening' | 'fraud_suspicious_behavior' | 'fraud_suspicious_past_activity' | 'fraud_risky_velocity' | 'fraud_previous_chargebacks' | 'order_restricted_goods' | 'order_unsupported_destination' | 'order_missing_information' | 'order_domestic' | 'order_mismatched_currencies';
|
|
5512
5494
|
type PaymentRequestReviewStatus = 'pending' | 'approved' | 'rejected';
|
|
5513
5495
|
type PaymentStatus = 'requires_payment_method' | 'requires_action' | 'processing' | 'cancelled' | 'expired' | 'authorized' | 'reversed' | 'captured' | 'refunded' | 'in_dispute' | 'charged_back';
|
|
5514
5496
|
type PaymentType = 'card' | 'klarna' | 'googlepay' | 'paypal' | 'applepay' | 'ideal' | 'sofort' | 'afterpay' | 'bancontact';
|
|
@@ -7671,12 +7653,21 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
7671
7653
|
readonly id: string;
|
|
7672
7654
|
readonly ratecard: io.flow.ratecard.v0.models.RatecardSummary;
|
|
7673
7655
|
}
|
|
7674
|
-
interface
|
|
7675
|
-
readonly discriminator: '
|
|
7676
|
-
readonly
|
|
7677
|
-
readonly
|
|
7678
|
-
readonly
|
|
7679
|
-
readonly
|
|
7656
|
+
interface OversizePieceSurchargeRatecardFee {
|
|
7657
|
+
readonly discriminator: 'oversize_piece_surcharge_ratecard_fee';
|
|
7658
|
+
readonly dimensional_threshold?: number;
|
|
7659
|
+
readonly dimensional_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
7660
|
+
readonly weight_threshold?: number;
|
|
7661
|
+
readonly weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
7662
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
7663
|
+
}
|
|
7664
|
+
interface OversizePieceSurchargeServiceFee {
|
|
7665
|
+
readonly discriminator: 'oversize_piece_surcharge_service_fee';
|
|
7666
|
+
readonly dimensional_threshold?: number;
|
|
7667
|
+
readonly dimensional_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
7668
|
+
readonly weight_threshold?: number;
|
|
7669
|
+
readonly weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
7670
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
7680
7671
|
}
|
|
7681
7672
|
interface PeakSurchargeByWeightServiceFee {
|
|
7682
7673
|
readonly discriminator: 'peak_surcharge_by_weight_service_fee';
|
|
@@ -7701,12 +7692,16 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
7701
7692
|
interface Ratecard {
|
|
7702
7693
|
readonly id: string;
|
|
7703
7694
|
readonly number: string;
|
|
7695
|
+
readonly rate_level_key?: string;
|
|
7704
7696
|
readonly direction: io.flow.label.v0.enums.Direction;
|
|
7705
7697
|
readonly effective_at: string;
|
|
7706
7698
|
readonly origination_zones: io.flow.common.v0.models.Zone[];
|
|
7707
7699
|
readonly service: io.flow.ratecard.v0.models.RatecardServiceSummary;
|
|
7708
7700
|
readonly published_at?: string;
|
|
7709
7701
|
readonly ratecard_owner: io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
7702
|
+
readonly glbe_shipping_method_id?: string;
|
|
7703
|
+
readonly glbe_proposition_name?: string;
|
|
7704
|
+
readonly channel_revenue_share_percentage?: number;
|
|
7710
7705
|
}
|
|
7711
7706
|
interface RatecardCarrierSummary {
|
|
7712
7707
|
readonly id: string;
|
|
@@ -7770,6 +7765,10 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
7770
7765
|
readonly dimensional_weight?: io.flow.common.v0.models.Measurement;
|
|
7771
7766
|
readonly gravitational_weight?: io.flow.common.v0.models.Measurement;
|
|
7772
7767
|
readonly ratecard_id?: string;
|
|
7768
|
+
readonly glbe_shipping_method_id?: string;
|
|
7769
|
+
readonly glbe_proposition_name?: string;
|
|
7770
|
+
readonly channel_revenue_share_percentage?: number;
|
|
7771
|
+
readonly rate_level_key?: string;
|
|
7773
7772
|
readonly line_items?: io.flow.common.v0.models.LineItemForm[];
|
|
7774
7773
|
}
|
|
7775
7774
|
interface RatecardForm {
|
|
@@ -7778,7 +7777,12 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
7778
7777
|
readonly origination_zones: io.flow.common.v0.models.Zone[];
|
|
7779
7778
|
readonly service: string;
|
|
7780
7779
|
readonly number?: string;
|
|
7780
|
+
readonly rate_level_key?: string;
|
|
7781
7781
|
readonly ratecard_owner?: io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
7782
|
+
readonly glbe_shipping_method_id?: string;
|
|
7783
|
+
readonly glbe_proposition_name?: string;
|
|
7784
|
+
readonly channel_revenue_share_percentage?: number;
|
|
7785
|
+
readonly data?: Record<string, string>;
|
|
7782
7786
|
}
|
|
7783
7787
|
interface RatecardLane {
|
|
7784
7788
|
readonly id: string;
|
|
@@ -7890,8 +7894,8 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
7890
7894
|
}
|
|
7891
7895
|
declare namespace io.flow.ratecard.v0.unions {
|
|
7892
7896
|
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;
|
|
7897
|
+
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;
|
|
7898
|
+
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
7899
|
}
|
|
7896
7900
|
declare namespace io.flow.token.v0.models {
|
|
7897
7901
|
interface ChannelToken {
|
|
@@ -8127,47 +8131,335 @@ declare namespace io.flow.crypto.v0.models {
|
|
|
8127
8131
|
readonly object: io.flow.crypto.v0.models.Refund;
|
|
8128
8132
|
}
|
|
8129
8133
|
}
|
|
8130
|
-
declare namespace io.flow.
|
|
8131
|
-
type
|
|
8134
|
+
declare namespace io.flow.error.v0.enums {
|
|
8135
|
+
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
8132
8136
|
}
|
|
8133
|
-
declare namespace io.flow.
|
|
8134
|
-
interface
|
|
8135
|
-
readonly
|
|
8136
|
-
readonly
|
|
8137
|
+
declare namespace io.flow.error.v0.models {
|
|
8138
|
+
interface GenericError {
|
|
8139
|
+
readonly code: io.flow.error.v0.enums.GenericErrorCode;
|
|
8140
|
+
readonly messages: string[];
|
|
8137
8141
|
}
|
|
8138
|
-
|
|
8139
|
-
|
|
8140
|
-
|
|
8141
|
-
|
|
8142
|
-
|
|
8143
|
-
|
|
8144
|
-
|
|
8145
|
-
readonly
|
|
8142
|
+
}
|
|
8143
|
+
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.enums {
|
|
8144
|
+
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak';
|
|
8145
|
+
type WeightSelection = 'dead' | 'dimensional';
|
|
8146
|
+
}
|
|
8147
|
+
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
|
|
8148
|
+
interface LabelBase {
|
|
8149
|
+
readonly amount: number;
|
|
8150
|
+
readonly weight: number;
|
|
8146
8151
|
}
|
|
8147
|
-
interface
|
|
8148
|
-
readonly
|
|
8149
|
-
readonly created_at?: string;
|
|
8152
|
+
interface LabelDestination {
|
|
8153
|
+
readonly country: string;
|
|
8150
8154
|
}
|
|
8151
|
-
interface
|
|
8155
|
+
interface LabelInvoiceRequest {
|
|
8152
8156
|
readonly id: string;
|
|
8153
|
-
readonly
|
|
8154
|
-
readonly
|
|
8155
|
-
readonly
|
|
8156
|
-
readonly
|
|
8157
|
-
readonly
|
|
8158
|
-
readonly
|
|
8157
|
+
readonly label: io.flow.billing.RESERVED_WORD_true.up.v0.models.TrueUpLabelSummary;
|
|
8158
|
+
readonly units: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
|
|
8159
|
+
readonly base: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
8160
|
+
readonly surcharges: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
|
|
8161
|
+
readonly total: number;
|
|
8162
|
+
readonly destination: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelDestination;
|
|
8163
|
+
readonly metadata: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelMetadata;
|
|
8159
8164
|
}
|
|
8160
|
-
interface
|
|
8161
|
-
readonly
|
|
8162
|
-
readonly
|
|
8163
|
-
readonly status: io.flow.tracking.v0.enums.TrackingStatus;
|
|
8164
|
-
readonly timestamp: string;
|
|
8165
|
-
readonly description?: string;
|
|
8165
|
+
interface LabelMetadata {
|
|
8166
|
+
readonly ratecard: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataRatecard;
|
|
8167
|
+
readonly weights: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataWeights;
|
|
8166
8168
|
}
|
|
8167
|
-
interface
|
|
8168
|
-
readonly
|
|
8169
|
-
readonly
|
|
8170
|
-
readonly
|
|
8169
|
+
interface LabelSurcharge {
|
|
8170
|
+
readonly amount: number;
|
|
8171
|
+
readonly type: io.flow.billing.RESERVED_WORD_true.up.v0.enums.TrueUpSurchargeType;
|
|
8172
|
+
readonly detail: io.flow.billing.RESERVED_WORD_true.up.v0.unions.LabelSurchargeDetail;
|
|
8173
|
+
}
|
|
8174
|
+
interface LabelSurchargeDetailFlat {
|
|
8175
|
+
readonly discriminator: 'flat';
|
|
8176
|
+
readonly placeholder?: string;
|
|
8177
|
+
}
|
|
8178
|
+
interface LabelSurchargeDetailPerWeightUnit {
|
|
8179
|
+
readonly discriminator: 'per_weight_unit';
|
|
8180
|
+
readonly fee: number;
|
|
8181
|
+
}
|
|
8182
|
+
interface LabelSurchargeDetailPercentage {
|
|
8183
|
+
readonly discriminator: 'percentage';
|
|
8184
|
+
readonly percentage: number;
|
|
8185
|
+
}
|
|
8186
|
+
interface LabelUnits {
|
|
8187
|
+
readonly currency: string;
|
|
8188
|
+
readonly weight: io.flow.units.v0.enums.UnitOfWeight;
|
|
8189
|
+
readonly length: io.flow.units.v0.enums.UnitOfLength;
|
|
8190
|
+
}
|
|
8191
|
+
interface MetadataProposition {
|
|
8192
|
+
readonly shipping_method: io.flow.billing.RESERVED_WORD_true.up.v0.models.ShippingMethodReference;
|
|
8193
|
+
readonly name: string;
|
|
8194
|
+
}
|
|
8195
|
+
interface MetadataRatecard {
|
|
8196
|
+
readonly id: string;
|
|
8197
|
+
readonly proposition: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataProposition;
|
|
8198
|
+
}
|
|
8199
|
+
interface MetadataWeights {
|
|
8200
|
+
readonly selected: io.flow.billing.RESERVED_WORD_true.up.v0.enums.WeightSelection;
|
|
8201
|
+
readonly dead?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDead;
|
|
8202
|
+
readonly dimensional?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDimensional;
|
|
8203
|
+
}
|
|
8204
|
+
interface ShippingMethodReference {
|
|
8205
|
+
readonly id: string;
|
|
8206
|
+
}
|
|
8207
|
+
interface TrueUpLabelSummary {
|
|
8208
|
+
readonly id: string;
|
|
8209
|
+
readonly carrier_service_id: string;
|
|
8210
|
+
readonly carrier_tracking_number: string;
|
|
8211
|
+
readonly flow_tracking_number: string;
|
|
8212
|
+
readonly created_at: string;
|
|
8213
|
+
}
|
|
8214
|
+
interface WeightsDead {
|
|
8215
|
+
readonly weight: number;
|
|
8216
|
+
}
|
|
8217
|
+
interface WeightsDimensional {
|
|
8218
|
+
readonly weight: number;
|
|
8219
|
+
readonly length: number;
|
|
8220
|
+
readonly width: number;
|
|
8221
|
+
readonly height: number;
|
|
8222
|
+
}
|
|
8223
|
+
}
|
|
8224
|
+
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.unions {
|
|
8225
|
+
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;
|
|
8226
|
+
}
|
|
8227
|
+
declare namespace io.flow.shopify.merchant.config.v0.models {
|
|
8228
|
+
interface Company {
|
|
8229
|
+
readonly discriminator: 'company';
|
|
8230
|
+
readonly legal_name: string;
|
|
8231
|
+
readonly incorporation_country: string;
|
|
8232
|
+
readonly incorporation_jurisdiction: string;
|
|
8233
|
+
readonly tax_registration_number: string;
|
|
8234
|
+
}
|
|
8235
|
+
interface CountryOfOrigin {
|
|
8236
|
+
readonly country: io.flow.reference.v0.models.Country;
|
|
8237
|
+
}
|
|
8238
|
+
interface CountryOfOriginForm {
|
|
8239
|
+
readonly country: string;
|
|
8240
|
+
}
|
|
8241
|
+
interface Individual {
|
|
8242
|
+
readonly discriminator: 'individual';
|
|
8243
|
+
readonly legal_name: string;
|
|
8244
|
+
readonly tax_registration_number?: string;
|
|
8245
|
+
readonly date_of_birth: string;
|
|
8246
|
+
}
|
|
8247
|
+
interface KnowYourBusinessUsa {
|
|
8248
|
+
readonly discriminator: 'know_your_business_usa';
|
|
8249
|
+
readonly id: string;
|
|
8250
|
+
readonly organization_id: string;
|
|
8251
|
+
readonly shop?: io.flow.merchant.onboarding.v0.models.Shop;
|
|
8252
|
+
readonly primary_entity: io.flow.shopify.merchant.config.v0.unions.Entity;
|
|
8253
|
+
readonly parent_company?: io.flow.shopify.merchant.config.v0.models.Company;
|
|
8254
|
+
readonly ultimate_parent_company?: io.flow.shopify.merchant.config.v0.models.Company;
|
|
8255
|
+
readonly ultimate_beneficiary_owner: io.flow.shopify.merchant.config.v0.models.Individual;
|
|
8256
|
+
readonly business_url: string;
|
|
8257
|
+
readonly business_address: io.flow.common.v0.models.Address;
|
|
8258
|
+
}
|
|
8259
|
+
interface KnowYourBusinessUsaForm {
|
|
8260
|
+
readonly discriminator: 'know_your_business_usa_form';
|
|
8261
|
+
readonly primary_entity: io.flow.shopify.merchant.config.v0.unions.Entity;
|
|
8262
|
+
readonly parent_company?: io.flow.shopify.merchant.config.v0.models.Company;
|
|
8263
|
+
readonly ultimate_parent_company?: io.flow.shopify.merchant.config.v0.models.Company;
|
|
8264
|
+
readonly ultimate_beneficiary_owner: io.flow.shopify.merchant.config.v0.models.Individual;
|
|
8265
|
+
readonly business_url: string;
|
|
8266
|
+
readonly business_address: io.flow.common.v0.models.Address;
|
|
8267
|
+
}
|
|
8268
|
+
interface PackageDimensions {
|
|
8269
|
+
readonly dimensions: io.flow.common.v0.models.Dimension[];
|
|
8270
|
+
}
|
|
8271
|
+
interface PackageDimensionsForm {
|
|
8272
|
+
readonly dimensions: io.flow.common.v0.models.Dimension[];
|
|
8273
|
+
}
|
|
8274
|
+
}
|
|
8275
|
+
declare namespace io.flow.shopify.merchant.config.v0.unions {
|
|
8276
|
+
type Entity = io.flow.shopify.merchant.config.v0.models.Company | io.flow.shopify.merchant.config.v0.models.Individual;
|
|
8277
|
+
type KnowYourBusiness = io.flow.shopify.merchant.config.v0.models.KnowYourBusinessUsa;
|
|
8278
|
+
type KnowYourBusinessForm = io.flow.shopify.merchant.config.v0.models.KnowYourBusinessUsaForm;
|
|
8279
|
+
}
|
|
8280
|
+
declare namespace io.flow.price.v0.enums {
|
|
8281
|
+
type LevyComponent = 'goods' | 'duty' | 'insurance' | 'freight' | 'vat';
|
|
8282
|
+
type LevyStrategy = 'minimum' | 'average' | 'maximum';
|
|
8283
|
+
type PriceAccuracy = 'calculated' | 'estimated_from_partial_destination';
|
|
8284
|
+
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';
|
|
8285
|
+
type PriceDetailKey = 'item_price' | 'margins' | 'vat' | 'duty' | 'rounding' | 'adjustment';
|
|
8286
|
+
type PricingLevySetting = 'included' | 'displayed' | 'ignored';
|
|
8287
|
+
}
|
|
8288
|
+
declare namespace io.flow.price.v0.models {
|
|
8289
|
+
interface CurrencyFormat {
|
|
8290
|
+
readonly symbol: io.flow.common.v0.enums.CurrencySymbolFormat;
|
|
8291
|
+
readonly label_formatters: io.flow.common.v0.enums.CurrencyLabelFormatter[];
|
|
8292
|
+
}
|
|
8293
|
+
interface DeminimisPerItem {
|
|
8294
|
+
readonly discriminator: 'deminimis_per_item';
|
|
8295
|
+
readonly currency: string;
|
|
8296
|
+
readonly minimum?: number;
|
|
8297
|
+
readonly maximum?: number;
|
|
8298
|
+
}
|
|
8299
|
+
interface DeminimisSimple {
|
|
8300
|
+
readonly discriminator: 'deminimis_simple';
|
|
8301
|
+
readonly value?: number;
|
|
8302
|
+
readonly currency: string;
|
|
8303
|
+
readonly components: io.flow.price.v0.enums.LevyComponent[];
|
|
8304
|
+
readonly minimum?: number;
|
|
8305
|
+
}
|
|
8306
|
+
interface Duty {
|
|
8307
|
+
readonly rate: number;
|
|
8308
|
+
readonly components: io.flow.price.v0.enums.LevyComponent[];
|
|
8309
|
+
readonly deminimis?: io.flow.price.v0.unions.Deminimis;
|
|
8310
|
+
readonly name?: string;
|
|
8311
|
+
}
|
|
8312
|
+
interface LocalPriceDetails {
|
|
8313
|
+
readonly base: io.flow.price.v0.models.PriceDetails;
|
|
8314
|
+
readonly local: io.flow.price.v0.models.PriceDetails;
|
|
8315
|
+
readonly discount?: io.flow.price.v0.models.PriceDetail;
|
|
8316
|
+
readonly local_before_discount?: io.flow.price.v0.models.PriceDetail;
|
|
8317
|
+
}
|
|
8318
|
+
interface PriceBook {
|
|
8319
|
+
readonly id: string;
|
|
8320
|
+
readonly key: string;
|
|
8321
|
+
readonly currency: string;
|
|
8322
|
+
readonly name: string;
|
|
8323
|
+
readonly includes: io.flow.common.v0.models.IncludedLevies;
|
|
8324
|
+
readonly status: io.flow.common.v0.enums.PriceBookStatus;
|
|
8325
|
+
}
|
|
8326
|
+
interface PriceBookForm {
|
|
8327
|
+
readonly currency: string;
|
|
8328
|
+
readonly name: string;
|
|
8329
|
+
readonly includes: io.flow.common.v0.enums.IncludedLevyKey;
|
|
8330
|
+
readonly status?: io.flow.common.v0.enums.PriceBookStatus;
|
|
8331
|
+
}
|
|
8332
|
+
interface PriceBookItem {
|
|
8333
|
+
readonly id: string;
|
|
8334
|
+
readonly key: string;
|
|
8335
|
+
readonly price_book: io.flow.price.v0.models.PriceBookReference;
|
|
8336
|
+
readonly price: io.flow.common.v0.models.Price;
|
|
8337
|
+
readonly item_number: string;
|
|
8338
|
+
readonly schedule: io.flow.price.v0.models.PriceBookItemSchedule;
|
|
8339
|
+
readonly item_attributes?: Record<string, string>;
|
|
8340
|
+
}
|
|
8341
|
+
interface PriceBookItemForm {
|
|
8342
|
+
readonly price_book_key: string;
|
|
8343
|
+
readonly item_number: string;
|
|
8344
|
+
readonly amount: number;
|
|
8345
|
+
readonly schedule?: io.flow.price.v0.models.PriceBookItemSchedule;
|
|
8346
|
+
readonly item_attributes?: Record<string, string>;
|
|
8347
|
+
}
|
|
8348
|
+
interface PriceBookItemQueryForm {
|
|
8349
|
+
readonly price_book_key: string;
|
|
8350
|
+
readonly item_query: string;
|
|
8351
|
+
readonly amount: number;
|
|
8352
|
+
readonly schedule?: io.flow.price.v0.models.PriceBookItemSchedule;
|
|
8353
|
+
readonly item_attributes?: Record<string, string>;
|
|
8354
|
+
}
|
|
8355
|
+
interface PriceBookItemSchedule {
|
|
8356
|
+
readonly starts_at: string;
|
|
8357
|
+
readonly ends_at?: string;
|
|
8358
|
+
}
|
|
8359
|
+
interface PriceBookReference {
|
|
8360
|
+
readonly id: string;
|
|
8361
|
+
readonly key: string;
|
|
8362
|
+
}
|
|
8363
|
+
interface PriceCheck {
|
|
8364
|
+
readonly display: io.flow.price.v0.models.LocalPriceDetails;
|
|
8365
|
+
readonly final: io.flow.price.v0.models.LocalPriceDetails;
|
|
8366
|
+
}
|
|
8367
|
+
interface PriceDetail {
|
|
8368
|
+
readonly key: io.flow.price.v0.enums.PriceDetailKey;
|
|
8369
|
+
readonly components: io.flow.price.v0.models.PriceDetailComponent[];
|
|
8370
|
+
readonly amount: number;
|
|
8371
|
+
readonly label: string;
|
|
8372
|
+
readonly name?: string;
|
|
8373
|
+
readonly basis?: number;
|
|
8374
|
+
}
|
|
8375
|
+
interface PriceDetailComponent {
|
|
8376
|
+
readonly key: io.flow.price.v0.enums.PriceDetailComponentKey;
|
|
8377
|
+
readonly amount: number;
|
|
8378
|
+
readonly label: string;
|
|
8379
|
+
readonly name?: string;
|
|
8380
|
+
}
|
|
8381
|
+
interface PriceDetails {
|
|
8382
|
+
readonly currency: string;
|
|
8383
|
+
readonly item_price: io.flow.price.v0.models.PriceDetail;
|
|
8384
|
+
readonly margins: io.flow.price.v0.models.PriceDetail;
|
|
8385
|
+
readonly vat: io.flow.price.v0.models.PriceDetail;
|
|
8386
|
+
readonly duty: io.flow.price.v0.models.PriceDetail;
|
|
8387
|
+
readonly rounding: io.flow.price.v0.models.PriceDetail;
|
|
8388
|
+
readonly price: io.flow.common.v0.models.Price;
|
|
8389
|
+
readonly total: io.flow.common.v0.models.Price;
|
|
8390
|
+
readonly adjustment?: io.flow.price.v0.models.PriceDetail;
|
|
8391
|
+
}
|
|
8392
|
+
interface PriceEquation {
|
|
8393
|
+
readonly contracted_rate: number;
|
|
8394
|
+
readonly rate: number;
|
|
8395
|
+
readonly pricing: io.flow.price.v0.models.Pricing;
|
|
8396
|
+
readonly base_price: number;
|
|
8397
|
+
readonly discount: number;
|
|
8398
|
+
readonly fixed_margin: number;
|
|
8399
|
+
readonly percent_margin: number;
|
|
8400
|
+
readonly insurance: number;
|
|
8401
|
+
readonly freight: number;
|
|
8402
|
+
readonly duty?: io.flow.price.v0.models.Duty;
|
|
8403
|
+
readonly tax?: io.flow.price.v0.models.Tax;
|
|
8404
|
+
readonly percent_sales_margin: number;
|
|
8405
|
+
}
|
|
8406
|
+
interface Pricing {
|
|
8407
|
+
readonly vat: io.flow.price.v0.enums.PricingLevySetting;
|
|
8408
|
+
readonly duty: io.flow.price.v0.enums.PricingLevySetting;
|
|
8409
|
+
readonly rounding?: io.flow.common.v0.models.Rounding;
|
|
8410
|
+
}
|
|
8411
|
+
interface Tax {
|
|
8412
|
+
readonly name: string;
|
|
8413
|
+
readonly rate: number;
|
|
8414
|
+
readonly components: io.flow.price.v0.enums.LevyComponent[];
|
|
8415
|
+
readonly deminimis?: io.flow.price.v0.unions.Deminimis;
|
|
8416
|
+
}
|
|
8417
|
+
}
|
|
8418
|
+
declare namespace io.flow.price.v0.unions {
|
|
8419
|
+
type Deminimis = io.flow.price.v0.models.DeminimisSimple | io.flow.price.v0.models.DeminimisPerItem;
|
|
8420
|
+
}
|
|
8421
|
+
declare namespace io.flow.tracking.v0.enums {
|
|
8422
|
+
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
|
|
8423
|
+
}
|
|
8424
|
+
declare namespace io.flow.tracking.v0.models {
|
|
8425
|
+
interface LabelTrackingCarrierService {
|
|
8426
|
+
readonly carrier_id: string;
|
|
8427
|
+
readonly service_id?: string;
|
|
8428
|
+
}
|
|
8429
|
+
interface LabelTrackingSummary {
|
|
8430
|
+
readonly id: string;
|
|
8431
|
+
readonly carrier_service: io.flow.tracking.v0.models.LabelTrackingCarrierService;
|
|
8432
|
+
readonly carrier_tracking_number: string;
|
|
8433
|
+
readonly order_number?: string;
|
|
8434
|
+
readonly label?: io.flow.label.v0.models.LabelReference;
|
|
8435
|
+
readonly in_transit: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
8436
|
+
readonly delivered?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
8437
|
+
readonly rejected?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
8438
|
+
}
|
|
8439
|
+
interface LabelTrackingSummaryUpdate {
|
|
8440
|
+
readonly timestamp: string;
|
|
8441
|
+
readonly created_at?: string;
|
|
8442
|
+
}
|
|
8443
|
+
interface Tracking {
|
|
8444
|
+
readonly id: string;
|
|
8445
|
+
readonly labels: io.flow.tracking.v0.models.TrackingLabel[];
|
|
8446
|
+
readonly status: io.flow.tracking.v0.enums.TrackingStatus;
|
|
8447
|
+
readonly attributes: Record<string, string>;
|
|
8448
|
+
readonly url: string;
|
|
8449
|
+
readonly window?: io.flow.common.v0.models.DatetimeRange;
|
|
8450
|
+
readonly order_number?: string;
|
|
8451
|
+
}
|
|
8452
|
+
interface TrackingEvent {
|
|
8453
|
+
readonly id: string;
|
|
8454
|
+
readonly address: io.flow.common.v0.models.Address;
|
|
8455
|
+
readonly status: io.flow.tracking.v0.enums.TrackingStatus;
|
|
8456
|
+
readonly timestamp: string;
|
|
8457
|
+
readonly description?: string;
|
|
8458
|
+
}
|
|
8459
|
+
interface TrackingEventForm {
|
|
8460
|
+
readonly tracking_label_id: string;
|
|
8461
|
+
readonly timestamp: string;
|
|
8462
|
+
readonly status: io.flow.tracking.v0.enums.TrackingStatus;
|
|
8171
8463
|
readonly description?: string;
|
|
8172
8464
|
readonly address?: string;
|
|
8173
8465
|
}
|
|
@@ -8292,7 +8584,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
8292
8584
|
readonly status: io.flow.common.v0.enums.OrganizationStatus;
|
|
8293
8585
|
}
|
|
8294
8586
|
interface OperationsContact {
|
|
8295
|
-
readonly full_name?: string;
|
|
8296
8587
|
readonly company?: string;
|
|
8297
8588
|
readonly email?: string;
|
|
8298
8589
|
readonly phone?: string;
|
|
@@ -8309,7 +8600,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
8309
8600
|
readonly status: io.flow.merchant.onboarding.v0.enums.OnboardingApplicationStatus;
|
|
8310
8601
|
readonly company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
8311
8602
|
readonly indirect_tax?: io.flow.merchant.onboarding.v0.models.IndirectTax;
|
|
8312
|
-
readonly parent_company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
8313
8603
|
readonly beneficiary?: string;
|
|
8314
8604
|
readonly ultimate_beneficiary_owner?: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
|
|
8315
8605
|
readonly business_url?: string;
|
|
@@ -8319,30 +8609,29 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
8319
8609
|
readonly chargeback_percentage?: number;
|
|
8320
8610
|
readonly bank_account_number?: string;
|
|
8321
8611
|
readonly aba_routing_transit_number?: string;
|
|
8322
|
-
readonly trade_sectors?: io.flow.merchant.onboarding.v0.enums.OnboardingTradeSector[];
|
|
8323
8612
|
readonly other_trade_sector?: string;
|
|
8324
8613
|
readonly third_party_logistics_partners?: io.flow.merchant.onboarding.v0.models.ThirdPartyLogisticsPartner[];
|
|
8614
|
+
readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
8325
8615
|
readonly average_order_weight?: number;
|
|
8326
8616
|
readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
|
|
8327
8617
|
readonly monthly_average?: io.flow.merchant.onboarding.v0.models.MonthlyAverage;
|
|
8328
|
-
readonly dangerous_goods?: boolean;
|
|
8329
8618
|
readonly default_country_of_origin?: string;
|
|
8330
8619
|
readonly ratecard?: io.flow.ratecard.v0.models.RatecardReference;
|
|
8331
8620
|
readonly rate_card: string;
|
|
8332
8621
|
readonly created_at: string;
|
|
8333
8622
|
readonly activated_at?: string;
|
|
8334
8623
|
readonly status_updated_at?: string;
|
|
8335
|
-
readonly logistics_format?: io.flow.merchant.onboarding.v0.models.LogisticsFormat;
|
|
8336
8624
|
readonly shop?: io.flow.merchant.onboarding.v0.models.Shop;
|
|
8337
8625
|
readonly last_year_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
8338
8626
|
readonly last_month_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
8339
8627
|
readonly average_order_value?: io.flow.common.v0.models.Money;
|
|
8628
|
+
readonly glbe_merchant_guid?: string;
|
|
8629
|
+
readonly mcc_codes?: number[];
|
|
8340
8630
|
}
|
|
8341
8631
|
interface ShopifyMerchantApplicationForm {
|
|
8342
8632
|
readonly discriminator: 'shopify_merchant_application_form';
|
|
8343
8633
|
readonly company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
8344
8634
|
readonly indirect_tax?: io.flow.merchant.onboarding.v0.models.IndirectTax;
|
|
8345
|
-
readonly parent_company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
8346
8635
|
readonly beneficiary?: string;
|
|
8347
8636
|
readonly ultimate_beneficiary_owner?: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
|
|
8348
8637
|
readonly business_url?: string;
|
|
@@ -8352,23 +8641,22 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
8352
8641
|
readonly chargeback_percentage?: number;
|
|
8353
8642
|
readonly bank_account_number?: string;
|
|
8354
8643
|
readonly aba_routing_transit_number?: string;
|
|
8355
|
-
readonly trade_sectors?: io.flow.merchant.onboarding.v0.enums.OnboardingTradeSector[];
|
|
8356
8644
|
readonly other_trade_sector?: string;
|
|
8357
8645
|
readonly third_party_logistics_partners?: io.flow.merchant.onboarding.v0.models.ThirdPartyLogisticsPartner[];
|
|
8646
|
+
readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
8358
8647
|
readonly average_order_weight?: number;
|
|
8359
8648
|
readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
|
|
8360
8649
|
readonly monthly_average_volume_amount?: number;
|
|
8361
8650
|
readonly monthly_average_volume_currency?: string;
|
|
8362
8651
|
readonly monthly_average_number_transactions?: number;
|
|
8363
|
-
readonly dangerous_goods?: boolean;
|
|
8364
8652
|
readonly default_country_of_origin?: string;
|
|
8365
8653
|
readonly ratecard_id?: string;
|
|
8366
8654
|
readonly rate_card: string;
|
|
8367
|
-
readonly logistics_format?: io.flow.merchant.onboarding.v0.models.LogisticsFormat;
|
|
8368
8655
|
readonly shop?: io.flow.merchant.onboarding.v0.models.Shop;
|
|
8369
8656
|
readonly last_year_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
8370
8657
|
readonly last_month_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
8371
8658
|
readonly average_order_value?: io.flow.common.v0.models.Money;
|
|
8659
|
+
readonly mcc_codes?: number[];
|
|
8372
8660
|
}
|
|
8373
8661
|
interface ShopifyMerchantApplicationPutForm {
|
|
8374
8662
|
readonly discriminator: 'shopify_merchant_application_put_form';
|
|
@@ -8931,6 +9219,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
8931
9219
|
type PayoutAttachmentType = 'transactions';
|
|
8932
9220
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
8933
9221
|
type StatementAttachmentType = 'csv';
|
|
9222
|
+
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
9223
|
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
9224
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
8936
9225
|
}
|
|
@@ -9007,6 +9296,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
9007
9296
|
interface ChannelTransaction {
|
|
9008
9297
|
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
9009
9298
|
readonly id: string;
|
|
9299
|
+
readonly metadata?: io.flow.billing.v0.unions.TransactionMetadata;
|
|
9010
9300
|
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
9011
9301
|
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
9012
9302
|
readonly currency: string;
|
|
@@ -9021,6 +9311,11 @@ declare namespace io.flow.billing.v0.models {
|
|
|
9021
9311
|
readonly created_at: string;
|
|
9022
9312
|
readonly updated_at: string;
|
|
9023
9313
|
}
|
|
9314
|
+
interface ChannelTransactionPayout {
|
|
9315
|
+
readonly transaction: io.flow.billing.v0.models.TransactionReference;
|
|
9316
|
+
readonly waiting_for?: io.flow.billing.v0.enums.TransactionPayoutPendingReason;
|
|
9317
|
+
readonly payout?: io.flow.billing.v0.models.PayoutReference;
|
|
9318
|
+
}
|
|
9024
9319
|
interface DefaultBankAccountForm {
|
|
9025
9320
|
readonly bank_account_id: string;
|
|
9026
9321
|
}
|
|
@@ -9048,6 +9343,11 @@ declare namespace io.flow.billing.v0.models {
|
|
|
9048
9343
|
readonly created_at: string;
|
|
9049
9344
|
readonly updated_at: string;
|
|
9050
9345
|
}
|
|
9346
|
+
interface OrganizationTransactionPayout {
|
|
9347
|
+
readonly transaction: io.flow.billing.v0.models.TransactionReference;
|
|
9348
|
+
readonly waiting_for?: io.flow.billing.v0.enums.TransactionPayoutPendingReason;
|
|
9349
|
+
readonly payout?: io.flow.billing.v0.models.PayoutReference;
|
|
9350
|
+
}
|
|
9051
9351
|
interface ParentTransactionSummary {
|
|
9052
9352
|
readonly id: string;
|
|
9053
9353
|
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
@@ -9056,6 +9356,9 @@ declare namespace io.flow.billing.v0.models {
|
|
|
9056
9356
|
readonly type: io.flow.billing.v0.enums.PayoutAttachmentType;
|
|
9057
9357
|
readonly url: string;
|
|
9058
9358
|
}
|
|
9359
|
+
interface PayoutReference {
|
|
9360
|
+
readonly id: string;
|
|
9361
|
+
}
|
|
9059
9362
|
interface PayoutStatusFailed {
|
|
9060
9363
|
readonly code: 'failed';
|
|
9061
9364
|
readonly timestamp: string;
|
|
@@ -9071,6 +9374,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
9071
9374
|
}
|
|
9072
9375
|
interface PayoutTransaction {
|
|
9073
9376
|
readonly id: string;
|
|
9377
|
+
readonly metadata?: io.flow.billing.v0.unions.TransactionMetadata;
|
|
9074
9378
|
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
9075
9379
|
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
9076
9380
|
readonly currency: string;
|
|
@@ -9106,6 +9410,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
9106
9410
|
interface Transaction {
|
|
9107
9411
|
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
9108
9412
|
readonly id: string;
|
|
9413
|
+
readonly metadata?: io.flow.billing.v0.unions.TransactionMetadata;
|
|
9109
9414
|
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
9110
9415
|
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
9111
9416
|
readonly currency: string;
|
|
@@ -9120,6 +9425,13 @@ declare namespace io.flow.billing.v0.models {
|
|
|
9120
9425
|
readonly created_at: string;
|
|
9121
9426
|
readonly updated_at: string;
|
|
9122
9427
|
}
|
|
9428
|
+
interface TransactionMetadataShippingLabel {
|
|
9429
|
+
readonly discriminator: 'shipping_label';
|
|
9430
|
+
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
9431
|
+
}
|
|
9432
|
+
interface TransactionReference {
|
|
9433
|
+
readonly id: string;
|
|
9434
|
+
}
|
|
9123
9435
|
interface WithholdingDeduction {
|
|
9124
9436
|
readonly type: io.flow.billing.v0.enums.WithholdingDeductionType;
|
|
9125
9437
|
readonly amount: number;
|
|
@@ -9130,6 +9442,7 @@ declare namespace io.flow.billing.v0.unions {
|
|
|
9130
9442
|
type BankAccountForm = io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple;
|
|
9131
9443
|
type PayoutStatus = io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed;
|
|
9132
9444
|
type Settlement = io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout;
|
|
9445
|
+
type TransactionMetadata = io.flow.billing.v0.models.TransactionMetadataShippingLabel;
|
|
9133
9446
|
}
|
|
9134
9447
|
declare namespace io.flow.harmonization.v0.enums {
|
|
9135
9448
|
type TaxApplicability = 'none' | 'all';
|
|
@@ -9496,6 +9809,7 @@ declare namespace io.flow.fulfillment.v0.enums {
|
|
|
9496
9809
|
type LanePreselectPreference = 'lowest_cost' | 'default_tier';
|
|
9497
9810
|
type LaneStrategy = 'oldest' | 'fastest' | 'lowest_cost' | 'highest_priority';
|
|
9498
9811
|
type PhysicalDeliverySpecialSerivce = 'cold_storage' | 'hazardous' | 'perishable';
|
|
9812
|
+
type PreferredServiceSelectionStrategy = 'calculated_rate' | 'flat_rate' | 'custom_rate';
|
|
9499
9813
|
type QuoteErrorCode = 'generic_error' | 'items_not_available' | 'shipping_unavailable';
|
|
9500
9814
|
type RatecardOwner = 'flow' | 'organization';
|
|
9501
9815
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
@@ -9761,6 +10075,11 @@ declare namespace io.flow.fulfillment.v0.models {
|
|
|
9761
10075
|
readonly total?: io.flow.catalog.v0.models.LocalizedTotal;
|
|
9762
10076
|
readonly goods_supply?: io.flow.common.v0.enums.GoodsSupply;
|
|
9763
10077
|
readonly merchant_of_record_flow_entity?: io.flow.merchant.of.record.v0.enums.FlowEntity;
|
|
10078
|
+
readonly preferred_service?: io.flow.fulfillment.v0.models.PhysicalDeliveryPreferredService;
|
|
10079
|
+
}
|
|
10080
|
+
interface PhysicalDeliveryPreferredService {
|
|
10081
|
+
readonly id: string;
|
|
10082
|
+
readonly selection_stratey: io.flow.fulfillment.v0.enums.PreferredServiceSelectionStrategy;
|
|
9764
10083
|
}
|
|
9765
10084
|
interface PriceWithBaseAndDetails {
|
|
9766
10085
|
readonly currency: string;
|
|
@@ -10185,6 +10504,9 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
10185
10504
|
interface ActivationPutForm {
|
|
10186
10505
|
readonly placeholder?: boolean;
|
|
10187
10506
|
}
|
|
10507
|
+
interface DeactivationPutForm {
|
|
10508
|
+
readonly reason: string;
|
|
10509
|
+
}
|
|
10188
10510
|
interface InComplianceReview {
|
|
10189
10511
|
readonly discriminator: 'in_compliance_review';
|
|
10190
10512
|
readonly placeholder?: boolean;
|
|
@@ -10193,6 +10515,10 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
10193
10515
|
readonly discriminator: 'merchant_activated';
|
|
10194
10516
|
readonly placeholder?: boolean;
|
|
10195
10517
|
}
|
|
10518
|
+
interface MerchantDeactivated {
|
|
10519
|
+
readonly discriminator: 'merchant_deactivated';
|
|
10520
|
+
readonly reason: string;
|
|
10521
|
+
}
|
|
10196
10522
|
interface MerchantRejected {
|
|
10197
10523
|
readonly discriminator: 'merchant_rejected';
|
|
10198
10524
|
readonly reason: io.flow.organization.onboarding.state.v0.enums.MerchantRejectedReason;
|
|
@@ -10212,6 +10538,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
10212
10538
|
readonly time_blocked?: number;
|
|
10213
10539
|
readonly blocked_since?: string;
|
|
10214
10540
|
readonly completed_at?: string;
|
|
10541
|
+
readonly onboarding_started_at?: string;
|
|
10215
10542
|
}
|
|
10216
10543
|
interface SetupBlocked {
|
|
10217
10544
|
readonly discriminator: 'setup_blocked';
|
|
@@ -10227,7 +10554,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
10227
10554
|
}
|
|
10228
10555
|
}
|
|
10229
10556
|
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;
|
|
10557
|
+
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
10558
|
}
|
|
10232
10559
|
declare namespace io.flow.fraud.v0.enums {
|
|
10233
10560
|
type FraudEmailRuleDecision = 'approved' | 'declined';
|
|
@@ -10538,9 +10865,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10538
10865
|
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-0522d426a5b741c791ba05496c35297a';
|
|
10539
10866
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
10540
10867
|
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' | '
|
|
10868
|
+
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_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_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' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_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' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_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' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count';
|
|
10542
10869
|
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 = '
|
|
10870
|
+
type BillingStatementBatchFileKey = 'summary';
|
|
10544
10871
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
10545
10872
|
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
10873
|
type BlazeCheckoutEvent = 'begin_checkout' | 'select_promotion' | 'add_shipping_info' | 'add_payment_info' | 'purchase';
|
|
@@ -10548,10 +10875,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10548
10875
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
10549
10876
|
type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax';
|
|
10550
10877
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
10878
|
+
type CarrierValidationStatus = 'success' | 'error';
|
|
10551
10879
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
10552
10880
|
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
10553
|
-
type ChannelOrderAcceptanceErrorAction = 'auto_reject';
|
|
10554
|
-
type
|
|
10881
|
+
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
10882
|
+
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
10883
|
+
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
10884
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
|
|
10556
10885
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
10557
10886
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
@@ -10647,6 +10976,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10647
10976
|
type DisputeLiability = 'flow' | 'organization';
|
|
10648
10977
|
type DisputeProcessor = 'adyen' | 'paypal';
|
|
10649
10978
|
type DisputeStatus = 'pending' | 'won' | 'lost' | 'expired';
|
|
10979
|
+
type DisputeTransactionType = 'adjustment' | 'dispute';
|
|
10650
10980
|
type DisputeType = 'chargeback';
|
|
10651
10981
|
type DutyCompoundExpressionType = 'sum' | 'max' | 'min';
|
|
10652
10982
|
type DutyExemptItemTypes = 'gift_card' | 'service' | 'digital_item' | 'personalization';
|
|
@@ -10657,7 +10987,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10657
10987
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
10658
10988
|
type EmptyAttribute = 'irrelevant';
|
|
10659
10989
|
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';
|
|
10990
|
+
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
10991
|
type ExperienceImportType = 'experience_with_settings';
|
|
10662
10992
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
10663
10993
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -10691,6 +11021,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10691
11021
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
10692
11022
|
type LabelGenerationAddressFailureStatus = 'in_review' | 'resolved' | 'unresolved';
|
|
10693
11023
|
type LabelInputSource = 'estimate';
|
|
11024
|
+
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_system';
|
|
10694
11025
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
10695
11026
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
10696
11027
|
type MainTransactionStatus = 'scheduled' | 'pending_proof';
|
|
@@ -10714,7 +11045,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10714
11045
|
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | 'miscellaneous';
|
|
10715
11046
|
type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
10716
11047
|
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';
|
|
11048
|
+
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
11049
|
type OrderAction = 'consumer_submit' | 'fraud_review_accept' | 'fraud_review_decline' | 'payment_fully_authorize' | 'payment_fully_capture';
|
|
10719
11050
|
type OrderAttributeIntent = 'discount_code';
|
|
10720
11051
|
type OrderCancellationInitiatedBy = 'flow' | 'organization';
|
|
@@ -10745,13 +11076,15 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10745
11076
|
type PromptCheckoutDisplayPosition = 'email' | 'submission';
|
|
10746
11077
|
type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
|
|
10747
11078
|
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' | '
|
|
11079
|
+
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
11080
|
type QuoteRequestType = 'generate' | 'delete' | 'update_currency_rate' | 'update_country';
|
|
11081
|
+
type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
|
|
10750
11082
|
type RateSource = 'calculated' | 'market';
|
|
10751
11083
|
type ReboundConfigurationStatus = 'active' | 'inactive';
|
|
10752
11084
|
type RedirectReason = 'three_d_secure';
|
|
10753
|
-
type RejectionReason = '
|
|
11085
|
+
type RejectionReason = 'merchant_policy' | 'previous_chargebacks' | 'restricted_party_screening' | 'risky_velocity' | 'suspicious_behavior' | 'suspicious_past_activity';
|
|
10754
11086
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
11087
|
+
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
10755
11088
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
10756
11089
|
type ResponsibleParty = 'flow' | 'organization';
|
|
10757
11090
|
type RestrictionAction = 'prohibited' | 'restricted';
|
|
@@ -10767,6 +11100,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10767
11100
|
type ShopifyGrantStatus = 'pass' | 'fail';
|
|
10768
11101
|
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
11102
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
11103
|
+
type ShopifyMarketsQueuedRecordType = 'order_update' | 'card_payment' | 'online_payment' | 'flow_shop' | 'catalog_publication_sync' | 'product_restriction_result';
|
|
10770
11104
|
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
11105
|
type ShopifyMonitoringMonitorReviewStatus = 'in_review' | 'reviewed';
|
|
10772
11106
|
type ShopifyMonitoringTrackingField = 'tracking_number' | 'carrier_service' | 'tracking_url';
|
|
@@ -10787,7 +11121,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10787
11121
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
10788
11122
|
type SurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid';
|
|
10789
11123
|
type TariffEligibilityType = 'rex';
|
|
10790
|
-
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | '
|
|
11124
|
+
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults';
|
|
10791
11125
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
10792
11126
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
10793
11127
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
|
|
@@ -10795,7 +11129,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10795
11129
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
10796
11130
|
type TransactionPostingMethod = 'time' | 'proof';
|
|
10797
11131
|
type TransferMethod = 'ach';
|
|
11132
|
+
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak';
|
|
10798
11133
|
type UnclassifiedProductStatus = 'ignored' | 'escalated' | 'requeued' | 'unverified' | 'queued' | 'unconfident';
|
|
11134
|
+
type WashCarrierActualFileStatus = 'pending' | 'processing' | 'processed' | 'failed';
|
|
10799
11135
|
}
|
|
10800
11136
|
declare namespace io.flow.internal.v0.models {
|
|
10801
11137
|
interface Acceptance {
|
|
@@ -11064,6 +11400,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11064
11400
|
readonly authentication: io.flow.internal.v0.models.AdyenAuthenticationForm;
|
|
11065
11401
|
readonly country: string;
|
|
11066
11402
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
11403
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
11067
11404
|
}
|
|
11068
11405
|
interface AdyenAuthentication {
|
|
11069
11406
|
readonly username: string;
|
|
@@ -11206,6 +11543,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11206
11543
|
readonly external_id: string;
|
|
11207
11544
|
readonly country: string;
|
|
11208
11545
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
11546
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
11209
11547
|
}
|
|
11210
11548
|
interface AdyenPaymentDetailsForm {
|
|
11211
11549
|
readonly fingerprint?: string;
|
|
@@ -11257,6 +11595,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11257
11595
|
readonly country: string;
|
|
11258
11596
|
readonly authentication: io.flow.internal.v0.models.AfterpayAuthenticationForm;
|
|
11259
11597
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
11598
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
11260
11599
|
}
|
|
11261
11600
|
interface AfterpayAuthentication {
|
|
11262
11601
|
readonly username: string;
|
|
@@ -11362,6 +11701,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11362
11701
|
readonly queue: string;
|
|
11363
11702
|
readonly count: number;
|
|
11364
11703
|
}
|
|
11704
|
+
interface AlgoliaIndexAssignment {
|
|
11705
|
+
readonly id: string;
|
|
11706
|
+
readonly name: string;
|
|
11707
|
+
readonly application_id: string;
|
|
11708
|
+
}
|
|
11365
11709
|
interface AllItemsExport {
|
|
11366
11710
|
readonly discriminator: 'all_items_export';
|
|
11367
11711
|
readonly event_id: string;
|
|
@@ -11450,6 +11794,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11450
11794
|
readonly price: io.flow.common.v0.models.PriceWithBase;
|
|
11451
11795
|
readonly charge_trigger: io.flow.internal.v0.enums.OrderChargeTrigger;
|
|
11452
11796
|
}
|
|
11797
|
+
interface AutoReviewCriteria {
|
|
11798
|
+
readonly hs_code?: string;
|
|
11799
|
+
readonly keywords?: string[];
|
|
11800
|
+
readonly action?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
11801
|
+
}
|
|
11453
11802
|
interface Backfill {
|
|
11454
11803
|
readonly days_to_backfill: string[];
|
|
11455
11804
|
}
|
|
@@ -11602,7 +11951,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11602
11951
|
}
|
|
11603
11952
|
interface BillingStatementBatch {
|
|
11604
11953
|
readonly id: string;
|
|
11605
|
-
readonly reconciliation: io.flow.internal.v0.models.BillingStatementBatchReconciliation;
|
|
11606
11954
|
}
|
|
11607
11955
|
interface BillingStatementBatchDeleted {
|
|
11608
11956
|
readonly discriminator: 'billing_statement_batch_deleted';
|
|
@@ -11610,9 +11958,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11610
11958
|
readonly timestamp: string;
|
|
11611
11959
|
readonly id: string;
|
|
11612
11960
|
}
|
|
11613
|
-
interface BillingStatementBatchReconciliation {
|
|
11614
|
-
readonly month: string;
|
|
11615
|
-
}
|
|
11616
11961
|
interface BillingStatementBatchReference {
|
|
11617
11962
|
readonly id: string;
|
|
11618
11963
|
}
|
|
@@ -11720,6 +12065,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11720
12065
|
readonly authentication: io.flow.internal.v0.models.BitpayAuthenticationForm;
|
|
11721
12066
|
readonly country: string;
|
|
11722
12067
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
12068
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
11723
12069
|
}
|
|
11724
12070
|
interface BitpayAuthentication {
|
|
11725
12071
|
readonly api_token: string;
|
|
@@ -11943,6 +12289,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11943
12289
|
readonly rate: number;
|
|
11944
12290
|
readonly name: string;
|
|
11945
12291
|
}
|
|
12292
|
+
interface CalculatorDtcePostBody {
|
|
12293
|
+
readonly products: io.flow.internal.v0.models.CalculatorDtceProduct[];
|
|
12294
|
+
readonly countryCodeFrom: string;
|
|
12295
|
+
readonly countryCodeTo: string;
|
|
12296
|
+
readonly classification: string;
|
|
12297
|
+
readonly shippingCost: number;
|
|
12298
|
+
readonly insuranceCost: number;
|
|
12299
|
+
readonly totalShipmentWeight: number;
|
|
12300
|
+
readonly currencyCode: string;
|
|
12301
|
+
readonly outputCurrencyCode: string;
|
|
12302
|
+
readonly explanation: boolean;
|
|
12303
|
+
readonly responseFormat: number;
|
|
12304
|
+
readonly requestId: string;
|
|
12305
|
+
readonly provinceCode?: string;
|
|
12306
|
+
}
|
|
12307
|
+
interface CalculatorDtceProduct {
|
|
12308
|
+
readonly origin: string;
|
|
12309
|
+
readonly hsCode: string;
|
|
12310
|
+
readonly sku: string;
|
|
12311
|
+
readonly value: number;
|
|
12312
|
+
readonly weight: number;
|
|
12313
|
+
readonly quantity: number;
|
|
12314
|
+
readonly reference?: string;
|
|
12315
|
+
}
|
|
11946
12316
|
interface CalculatorOrganizationSettings {
|
|
11947
12317
|
readonly id: string;
|
|
11948
12318
|
readonly default_country_of_origin?: string;
|
|
@@ -11993,6 +12363,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11993
12363
|
readonly organization: string;
|
|
11994
12364
|
readonly carrier_account: io.flow.internal.v0.models.CarrierAccount;
|
|
11995
12365
|
}
|
|
12366
|
+
interface CarrierAccountValidation {
|
|
12367
|
+
readonly organization: string;
|
|
12368
|
+
readonly status: io.flow.internal.v0.enums.CarrierValidationStatus;
|
|
12369
|
+
readonly error_message?: string;
|
|
12370
|
+
}
|
|
11996
12371
|
interface CarrierInvoice {
|
|
11997
12372
|
readonly number: string;
|
|
11998
12373
|
readonly timestamp: string;
|
|
@@ -12037,6 +12412,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12037
12412
|
readonly organization: string;
|
|
12038
12413
|
readonly data: io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesData;
|
|
12039
12414
|
}
|
|
12415
|
+
interface CatalogPublicationSyncValidationError {
|
|
12416
|
+
readonly message: string;
|
|
12417
|
+
readonly reason: string;
|
|
12418
|
+
readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
12419
|
+
}
|
|
12040
12420
|
interface CatalogSettings {
|
|
12041
12421
|
readonly id: string;
|
|
12042
12422
|
readonly mixed_bag_weight: io.flow.internal.v0.enums.MixedBagWeight;
|
|
@@ -12228,6 +12608,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12228
12608
|
readonly payment_request_id?: string;
|
|
12229
12609
|
readonly status: io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
12230
12610
|
readonly reasons: io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
12611
|
+
readonly next_action_from?: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
12231
12612
|
readonly order_created_at?: string;
|
|
12232
12613
|
}
|
|
12233
12614
|
interface ChannelOrderAcceptanceDeleted {
|
|
@@ -14170,6 +14551,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14170
14551
|
readonly customs_description?: string;
|
|
14171
14552
|
readonly hs6_code?: string;
|
|
14172
14553
|
readonly hs6_description?: string;
|
|
14554
|
+
readonly status?: io.flow.internal.v0.enums.ItemHarmonizationStatus;
|
|
14173
14555
|
}
|
|
14174
14556
|
interface ClassificationProductId {
|
|
14175
14557
|
readonly organization_id: string;
|
|
@@ -14223,6 +14605,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14223
14605
|
interface CommercialInvoiceComparison {
|
|
14224
14606
|
readonly urls: string[];
|
|
14225
14607
|
}
|
|
14608
|
+
interface CompanyReference {
|
|
14609
|
+
readonly id: string;
|
|
14610
|
+
}
|
|
14226
14611
|
interface Compliance {
|
|
14227
14612
|
readonly id: string;
|
|
14228
14613
|
readonly destination: string;
|
|
@@ -14333,6 +14718,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14333
14718
|
readonly authentication: io.flow.internal.v0.models.CryptoAuthenticationForm;
|
|
14334
14719
|
readonly country: string;
|
|
14335
14720
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
14721
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
14336
14722
|
}
|
|
14337
14723
|
interface CryptoAuthentication {
|
|
14338
14724
|
readonly public_key: string;
|
|
@@ -14350,7 +14736,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14350
14736
|
readonly base_amount: number;
|
|
14351
14737
|
readonly surcharges: io.flow.internal.v0.models.CsvSurcharges;
|
|
14352
14738
|
readonly total: number;
|
|
14353
|
-
readonly weight_unit: io.flow.
|
|
14739
|
+
readonly weight_unit: io.flow.units.v0.enums.UnitOfWeight;
|
|
14354
14740
|
readonly weight: number;
|
|
14355
14741
|
readonly ratecard: io.flow.internal.v0.models.CsvActualRatecard;
|
|
14356
14742
|
}
|
|
@@ -14358,7 +14744,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14358
14744
|
readonly base_amount?: number;
|
|
14359
14745
|
}
|
|
14360
14746
|
interface CsvDimensions {
|
|
14361
|
-
readonly unit: io.flow.
|
|
14747
|
+
readonly unit: io.flow.units.v0.enums.UnitOfLength;
|
|
14362
14748
|
readonly length: number;
|
|
14363
14749
|
readonly width: number;
|
|
14364
14750
|
readonly depth: number;
|
|
@@ -14392,7 +14778,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14392
14778
|
readonly base_amount: number;
|
|
14393
14779
|
readonly surcharges: io.flow.internal.v0.models.CsvSurcharges;
|
|
14394
14780
|
readonly total: number;
|
|
14395
|
-
readonly weight_unit: io.flow.
|
|
14781
|
+
readonly weight_unit: io.flow.units.v0.enums.UnitOfWeight;
|
|
14396
14782
|
readonly weight: number;
|
|
14397
14783
|
readonly variance: number;
|
|
14398
14784
|
}
|
|
@@ -14449,7 +14835,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14449
14835
|
readonly duties_paid: number;
|
|
14450
14836
|
}
|
|
14451
14837
|
interface CsvWeight {
|
|
14452
|
-
readonly unit: io.flow.
|
|
14838
|
+
readonly unit: io.flow.units.v0.enums.UnitOfWeight;
|
|
14453
14839
|
readonly provided: number;
|
|
14454
14840
|
readonly dimensional: number;
|
|
14455
14841
|
readonly lookup: number;
|
|
@@ -14633,6 +15019,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14633
15019
|
readonly order: io.flow.internal.v0.models.DebugOrder;
|
|
14634
15020
|
readonly debug: io.flow.internal.v0.models.DebugDetails;
|
|
14635
15021
|
readonly transactions: io.flow.billing.v0.models.Transaction[];
|
|
15022
|
+
readonly reporting: io.flow.internal.v0.models.ReportingDetails;
|
|
14636
15023
|
}
|
|
14637
15024
|
interface DebugOrderTransactionForm {
|
|
14638
15025
|
readonly order_id?: string;
|
|
@@ -14643,6 +15030,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14643
15030
|
readonly refund_id?: string;
|
|
14644
15031
|
readonly order_identifier?: io.flow.internal.v0.models.DebugOrderTransactionFormOrderIdentifier;
|
|
14645
15032
|
readonly authorization_id?: string;
|
|
15033
|
+
readonly posting_proof_id?: string;
|
|
15034
|
+
readonly label_tracking_summary_id?: string;
|
|
14646
15035
|
}
|
|
14647
15036
|
interface DebugOrderTransactionFormOrderIdentifier {
|
|
14648
15037
|
readonly key?: string;
|
|
@@ -15074,6 +15463,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15074
15463
|
readonly type: io.flow.internal.v0.enums.ErpFileType;
|
|
15075
15464
|
}
|
|
15076
15465
|
interface ErpFlowVendor {
|
|
15466
|
+
readonly company: io.flow.internal.v0.models.CompanyReference;
|
|
15467
|
+
readonly entity: io.flow.internal.v0.models.EntityReference;
|
|
15077
15468
|
readonly acc_des: string;
|
|
15078
15469
|
readonly country_name: string;
|
|
15079
15470
|
readonly acng_code: string;
|
|
@@ -15085,7 +15476,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15085
15476
|
readonly state_a: string;
|
|
15086
15477
|
readonly bank_code: string;
|
|
15087
15478
|
readonly id: string;
|
|
15088
|
-
readonly entity: io.flow.internal.v0.models.EntityReference;
|
|
15089
15479
|
readonly tax_code?: string;
|
|
15090
15480
|
readonly vat_flag?: string;
|
|
15091
15481
|
readonly w_tax_percent?: string;
|
|
@@ -15124,21 +15514,109 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15124
15514
|
}
|
|
15125
15515
|
interface ErpPriorityFileForm {
|
|
15126
15516
|
readonly type: io.flow.internal.v0.enums.ErpFileType;
|
|
15517
|
+
readonly name: string;
|
|
15127
15518
|
readonly url: string;
|
|
15128
15519
|
}
|
|
15520
|
+
interface ErpPriorityVendor {
|
|
15521
|
+
readonly id: string;
|
|
15522
|
+
readonly acc_des?: string;
|
|
15523
|
+
readonly tax_code?: string;
|
|
15524
|
+
readonly vat_flag?: string;
|
|
15525
|
+
readonly country_name?: string;
|
|
15526
|
+
readonly w_tax_percent?: string;
|
|
15527
|
+
readonly iban?: string;
|
|
15528
|
+
readonly confirmed_date?: string;
|
|
15529
|
+
readonly w_tax_date?: string;
|
|
15530
|
+
readonly w_tax_num_expl?: string;
|
|
15531
|
+
readonly acng_code?: string;
|
|
15532
|
+
readonly phone?: string;
|
|
15533
|
+
readonly address?: string;
|
|
15534
|
+
readonly address_a?: string;
|
|
15535
|
+
readonly address_2?: string;
|
|
15536
|
+
readonly address_3?: string;
|
|
15537
|
+
readonly state_name?: string;
|
|
15538
|
+
readonly code?: string;
|
|
15539
|
+
readonly zip?: string;
|
|
15540
|
+
readonly pay_account?: string;
|
|
15541
|
+
readonly comp_num?: string;
|
|
15542
|
+
readonly w_tax_num?: string;
|
|
15543
|
+
readonly vat_num?: string;
|
|
15544
|
+
readonly orig_acc_name?: string;
|
|
15545
|
+
readonly branch?: string;
|
|
15546
|
+
readonly form_1099_code?: string;
|
|
15547
|
+
readonly trial_bal_code?: string;
|
|
15548
|
+
readonly sec_name?: string;
|
|
15549
|
+
readonly state?: string;
|
|
15550
|
+
readonly state_a?: string;
|
|
15551
|
+
readonly fax?: string;
|
|
15552
|
+
readonly details?: string;
|
|
15553
|
+
readonly bank_code?: string;
|
|
15554
|
+
readonly state_code?: string;
|
|
15555
|
+
readonly tax_office_code?: string;
|
|
15556
|
+
readonly pay_code?: string;
|
|
15557
|
+
readonly eacc_des?: string;
|
|
15558
|
+
readonly acng_des?: string;
|
|
15559
|
+
readonly branch_des?: string;
|
|
15560
|
+
}
|
|
15561
|
+
interface ErpPriorityVendorForm {
|
|
15562
|
+
readonly acc_des?: string;
|
|
15563
|
+
readonly tax_code?: string;
|
|
15564
|
+
readonly vat_flag?: string;
|
|
15565
|
+
readonly country_name?: string;
|
|
15566
|
+
readonly w_tax_percent?: string;
|
|
15567
|
+
readonly iban?: string;
|
|
15568
|
+
readonly confirmed_date?: string;
|
|
15569
|
+
readonly w_tax_date?: string;
|
|
15570
|
+
readonly w_tax_num_expl?: string;
|
|
15571
|
+
readonly acng_code?: string;
|
|
15572
|
+
readonly phone?: string;
|
|
15573
|
+
readonly address?: string;
|
|
15574
|
+
readonly address_a?: string;
|
|
15575
|
+
readonly address_2?: string;
|
|
15576
|
+
readonly address_3?: string;
|
|
15577
|
+
readonly state_name?: string;
|
|
15578
|
+
readonly code?: string;
|
|
15579
|
+
readonly zip?: string;
|
|
15580
|
+
readonly pay_account?: string;
|
|
15581
|
+
readonly comp_num?: string;
|
|
15582
|
+
readonly w_tax_num?: string;
|
|
15583
|
+
readonly vat_num?: string;
|
|
15584
|
+
readonly orig_acc_name?: string;
|
|
15585
|
+
readonly branch?: string;
|
|
15586
|
+
readonly form_1099_code?: string;
|
|
15587
|
+
readonly trial_bal_code?: string;
|
|
15588
|
+
readonly sec_name?: string;
|
|
15589
|
+
readonly state?: string;
|
|
15590
|
+
readonly state_a?: string;
|
|
15591
|
+
readonly fax?: string;
|
|
15592
|
+
readonly details?: string;
|
|
15593
|
+
readonly bank_code?: string;
|
|
15594
|
+
readonly state_code?: string;
|
|
15595
|
+
readonly tax_office_code?: string;
|
|
15596
|
+
readonly pay_code?: string;
|
|
15597
|
+
readonly eacc_des?: string;
|
|
15598
|
+
readonly acng_des?: string;
|
|
15599
|
+
readonly branch_des?: string;
|
|
15600
|
+
}
|
|
15129
15601
|
interface ErpVendor {
|
|
15130
15602
|
readonly placeholder?: string;
|
|
15131
15603
|
}
|
|
15132
15604
|
interface ErpVendorStatus {
|
|
15133
15605
|
readonly entities: io.flow.internal.v0.models.ErpVendorStatusEntity[];
|
|
15134
|
-
readonly
|
|
15606
|
+
readonly latest_flow_file?: io.flow.internal.v0.models.ErpVendorStatusFlowFile;
|
|
15607
|
+
readonly latest_priority_file?: io.flow.internal.v0.models.ErpVendorStatusPriorityFile;
|
|
15135
15608
|
}
|
|
15136
15609
|
interface ErpVendorStatusEntity {
|
|
15137
15610
|
readonly entity: io.flow.internal.v0.models.EntityReference;
|
|
15138
15611
|
readonly number_differences: number;
|
|
15139
15612
|
}
|
|
15140
|
-
interface
|
|
15613
|
+
interface ErpVendorStatusFlowFile {
|
|
15614
|
+
readonly url: string;
|
|
15615
|
+
readonly created_at: string;
|
|
15616
|
+
}
|
|
15617
|
+
interface ErpVendorStatusPriorityFile {
|
|
15141
15618
|
readonly name: string;
|
|
15619
|
+
readonly url: string;
|
|
15142
15620
|
readonly created_at: string;
|
|
15143
15621
|
readonly errors?: string[];
|
|
15144
15622
|
readonly processed_at?: string;
|
|
@@ -15413,11 +15891,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15413
15891
|
readonly carrier_id?: string;
|
|
15414
15892
|
readonly service_id?: string;
|
|
15415
15893
|
readonly carrier_tracking_number?: string;
|
|
15894
|
+
readonly fulfilled_via_replacement_order?: boolean;
|
|
15416
15895
|
}
|
|
15417
15896
|
interface ExternalFulfillmentProofTrackingForm {
|
|
15418
15897
|
readonly carrier_id?: string;
|
|
15419
15898
|
readonly service_id?: string;
|
|
15420
15899
|
readonly carrier_tracking_number?: string;
|
|
15900
|
+
readonly fulfilled_via_replacement_order?: boolean;
|
|
15421
15901
|
}
|
|
15422
15902
|
interface FacebookPixel {
|
|
15423
15903
|
readonly discriminator: 'facebook_pixel';
|
|
@@ -15653,6 +16133,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15653
16133
|
readonly authentication: io.flow.internal.v0.models.FiservAuthenticationForm;
|
|
15654
16134
|
readonly country: string;
|
|
15655
16135
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
16136
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
15656
16137
|
}
|
|
15657
16138
|
interface FiservAuthentication {
|
|
15658
16139
|
readonly public_key: string;
|
|
@@ -15697,6 +16178,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15697
16178
|
readonly funding_currency: string;
|
|
15698
16179
|
readonly country: string;
|
|
15699
16180
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
16181
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
15700
16182
|
}
|
|
15701
16183
|
interface FlowAccount {
|
|
15702
16184
|
readonly source: io.flow.internal.v0.models.AccountSource;
|
|
@@ -15737,6 +16219,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15737
16219
|
readonly organization: string;
|
|
15738
16220
|
readonly default_contents: string;
|
|
15739
16221
|
}
|
|
16222
|
+
interface FlowShopValidationError {
|
|
16223
|
+
readonly message: string;
|
|
16224
|
+
readonly reason: string;
|
|
16225
|
+
readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
16226
|
+
}
|
|
15740
16227
|
interface FraudPendingReview {
|
|
15741
16228
|
readonly id: string;
|
|
15742
16229
|
readonly fraud_review_id: string;
|
|
@@ -15815,6 +16302,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15815
16302
|
readonly provider?: io.flow.internal.v0.enums.FraudProvider;
|
|
15816
16303
|
readonly payment_authorization_id?: string;
|
|
15817
16304
|
readonly decline_reason?: io.flow.internal.v0.unions.DeclineReason;
|
|
16305
|
+
readonly created_at?: string;
|
|
15818
16306
|
}
|
|
15819
16307
|
interface FraudReviewDecision {
|
|
15820
16308
|
readonly id: string;
|
|
@@ -15824,6 +16312,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15824
16312
|
readonly status: io.flow.fraud.v0.enums.FraudStatus;
|
|
15825
16313
|
readonly created_at: string;
|
|
15826
16314
|
readonly liability?: io.flow.fraud.v0.enums.FraudLiability;
|
|
16315
|
+
readonly updated_by_user?: io.flow.common.v0.models.UserReference;
|
|
15827
16316
|
}
|
|
15828
16317
|
interface FraudReviewDecisionDeleted {
|
|
15829
16318
|
readonly discriminator: 'fraud_review_decision_deleted';
|
|
@@ -15925,11 +16414,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15925
16414
|
readonly discriminator: 'fuel_surcharge_service_fee_percent_put_form';
|
|
15926
16415
|
readonly percent: number;
|
|
15927
16416
|
}
|
|
16417
|
+
interface Fulfillment {
|
|
16418
|
+
readonly id: string;
|
|
16419
|
+
readonly fulfilled_at: string;
|
|
16420
|
+
readonly currency: string;
|
|
16421
|
+
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
16422
|
+
readonly origin?: io.flow.internal.v0.models.FulfillmentOrigin;
|
|
16423
|
+
readonly lines: io.flow.internal.v0.models.FulfillmentLine[];
|
|
16424
|
+
readonly shipping: io.flow.internal.v0.models.FulfillmentShipping;
|
|
16425
|
+
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
16426
|
+
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
16427
|
+
readonly completes_order: boolean;
|
|
16428
|
+
readonly sequence_number: number;
|
|
16429
|
+
readonly business?: io.flow.internal.v0.models.FulfillmentBusiness;
|
|
16430
|
+
}
|
|
15928
16431
|
interface FulfillmentActionForm {
|
|
15929
16432
|
readonly discriminator: 'fulfillment_action_form';
|
|
15930
16433
|
readonly fulfillment_key: string;
|
|
15931
16434
|
readonly actions: io.flow.internal.v0.models.LineActionQuantities[];
|
|
15932
16435
|
}
|
|
16436
|
+
interface FulfillmentBusiness {
|
|
16437
|
+
readonly vat_registration_number: string;
|
|
16438
|
+
}
|
|
15933
16439
|
interface FulfillmentCancel {
|
|
15934
16440
|
readonly discriminator: 'fulfillment_cancel';
|
|
15935
16441
|
readonly event_id: string;
|
|
@@ -15946,6 +16452,35 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15946
16452
|
readonly id: string;
|
|
15947
16453
|
readonly key: string;
|
|
15948
16454
|
}
|
|
16455
|
+
interface FulfillmentLine {
|
|
16456
|
+
readonly item: io.flow.internal.v0.models.ItemSummary;
|
|
16457
|
+
readonly quantity: number;
|
|
16458
|
+
readonly unit_price: number;
|
|
16459
|
+
readonly price: number;
|
|
16460
|
+
readonly discount: number;
|
|
16461
|
+
readonly tax: number;
|
|
16462
|
+
readonly duty: number;
|
|
16463
|
+
readonly subsidies: io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
|
|
16464
|
+
}
|
|
16465
|
+
interface FulfillmentOrigin {
|
|
16466
|
+
readonly country: string;
|
|
16467
|
+
readonly province_code?: string;
|
|
16468
|
+
}
|
|
16469
|
+
interface FulfillmentProofExternalFulfillmentProofReference {
|
|
16470
|
+
readonly discriminator: 'external_fulfillment';
|
|
16471
|
+
readonly id: string;
|
|
16472
|
+
}
|
|
16473
|
+
interface FulfillmentProofLabelTrackingReference {
|
|
16474
|
+
readonly discriminator: 'label_tracking';
|
|
16475
|
+
readonly id: string;
|
|
16476
|
+
}
|
|
16477
|
+
interface FulfillmentProofShippingNotificationReference {
|
|
16478
|
+
readonly discriminator: 'shipping_notification';
|
|
16479
|
+
readonly id: string;
|
|
16480
|
+
}
|
|
16481
|
+
interface FulfillmentReference {
|
|
16482
|
+
readonly id: string;
|
|
16483
|
+
}
|
|
15949
16484
|
interface FulfillmentShipmentTracking {
|
|
15950
16485
|
readonly fulfillment_key: string;
|
|
15951
16486
|
readonly flow_tracking_number: string;
|
|
@@ -15953,6 +16488,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15953
16488
|
readonly carrier_tracking_url?: string;
|
|
15954
16489
|
readonly items: io.flow.order.management.v0.models.FulfillmentItem[];
|
|
15955
16490
|
}
|
|
16491
|
+
interface FulfillmentShipping {
|
|
16492
|
+
readonly price: number;
|
|
16493
|
+
readonly discount: number;
|
|
16494
|
+
readonly tax: number;
|
|
16495
|
+
readonly duty: number;
|
|
16496
|
+
readonly subsidies: io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
|
|
16497
|
+
}
|
|
15956
16498
|
interface FulfillmentSnapshot {
|
|
15957
16499
|
readonly tracking_source: string;
|
|
15958
16500
|
readonly fulfillment_status?: string;
|
|
@@ -15962,6 +16504,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15962
16504
|
readonly fulfillment_created_at?: string;
|
|
15963
16505
|
readonly fulfillment_updated_at?: string;
|
|
15964
16506
|
}
|
|
16507
|
+
interface FulfillmentSubsidyBreakdown {
|
|
16508
|
+
readonly tax: number;
|
|
16509
|
+
readonly duty: number;
|
|
16510
|
+
}
|
|
15965
16511
|
interface FxFee {
|
|
15966
16512
|
readonly base: io.flow.common.v0.models.Money;
|
|
15967
16513
|
readonly local: io.flow.common.v0.models.Money;
|
|
@@ -16012,6 +16558,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16012
16558
|
readonly organization_id: string;
|
|
16013
16559
|
readonly num_events: number;
|
|
16014
16560
|
}
|
|
16561
|
+
interface GenericValidationError {
|
|
16562
|
+
readonly message: string;
|
|
16563
|
+
readonly reason: string;
|
|
16564
|
+
readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
16565
|
+
}
|
|
16015
16566
|
interface GiftCard {
|
|
16016
16567
|
readonly id: string;
|
|
16017
16568
|
readonly number: string;
|
|
@@ -16131,6 +16682,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16131
16682
|
readonly source_url: string;
|
|
16132
16683
|
readonly filename?: string;
|
|
16133
16684
|
}
|
|
16685
|
+
interface HarmonizationThreshold {
|
|
16686
|
+
readonly id: string;
|
|
16687
|
+
readonly chapter: number;
|
|
16688
|
+
readonly value: number;
|
|
16689
|
+
readonly updated_at: string;
|
|
16690
|
+
}
|
|
16691
|
+
interface HarmonizationThresholdForm {
|
|
16692
|
+
readonly chapter: number;
|
|
16693
|
+
readonly value: number;
|
|
16694
|
+
}
|
|
16134
16695
|
interface HarmonizationUnclassifiedStatistics {
|
|
16135
16696
|
readonly organization: io.flow.common.v0.models.OrganizationSummary;
|
|
16136
16697
|
readonly statistics: io.flow.internal.v0.models.UnclassifiedProductStatistic[];
|
|
@@ -16816,6 +17377,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16816
17377
|
readonly import_id: string;
|
|
16817
17378
|
readonly error: string;
|
|
16818
17379
|
}
|
|
17380
|
+
interface IndexAssignmentDeleted {
|
|
17381
|
+
readonly discriminator: 'index_assignment_deleted';
|
|
17382
|
+
readonly event_id: string;
|
|
17383
|
+
readonly timestamp: string;
|
|
17384
|
+
readonly organization: string;
|
|
17385
|
+
readonly id: string;
|
|
17386
|
+
}
|
|
17387
|
+
interface IndexAssignmentUpserted {
|
|
17388
|
+
readonly discriminator: 'index_assignment_upserted';
|
|
17389
|
+
readonly event_id: string;
|
|
17390
|
+
readonly timestamp: string;
|
|
17391
|
+
readonly organization: string;
|
|
17392
|
+
readonly assignment: io.flow.internal.v0.models.AlgoliaIndexAssignment;
|
|
17393
|
+
}
|
|
16819
17394
|
interface InstallForm {
|
|
16820
17395
|
readonly token: string;
|
|
16821
17396
|
}
|
|
@@ -17087,7 +17662,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17087
17662
|
readonly internal_item_form: io.flow.internal.v0.models.InternalItemForm;
|
|
17088
17663
|
}
|
|
17089
17664
|
interface ItemHarmonization {
|
|
17090
|
-
readonly id
|
|
17665
|
+
readonly id: string;
|
|
17091
17666
|
readonly organization_id: string;
|
|
17092
17667
|
readonly item_number: string;
|
|
17093
17668
|
readonly item_name?: string;
|
|
@@ -17193,6 +17768,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17193
17768
|
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
17194
17769
|
readonly item_sales_margin: io.flow.internal.v0.models.ItemSalesMargin;
|
|
17195
17770
|
}
|
|
17771
|
+
interface ItemSummary {
|
|
17772
|
+
readonly number: string;
|
|
17773
|
+
readonly fulfillment_method: io.flow.catalog.v0.enums.FulfillmentMethodValue;
|
|
17774
|
+
}
|
|
17196
17775
|
interface ItemValuesForm {
|
|
17197
17776
|
readonly values: string[];
|
|
17198
17777
|
}
|
|
@@ -17246,6 +17825,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17246
17825
|
readonly materials: Record<string, string[]>;
|
|
17247
17826
|
readonly constructions: Record<string, string[]>;
|
|
17248
17827
|
}
|
|
17828
|
+
interface LabelBase {
|
|
17829
|
+
readonly amount: number;
|
|
17830
|
+
readonly weight: number;
|
|
17831
|
+
}
|
|
17249
17832
|
interface LabelCancellationError {
|
|
17250
17833
|
readonly code: io.flow.internal.v0.enums.LabelCancellationErrorCode;
|
|
17251
17834
|
readonly messages: string[];
|
|
@@ -17271,6 +17854,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17271
17854
|
readonly shipment_cost?: io.flow.common.v0.models.Money;
|
|
17272
17855
|
readonly reference_id?: string;
|
|
17273
17856
|
}
|
|
17857
|
+
interface LabelDestination {
|
|
17858
|
+
readonly country: string;
|
|
17859
|
+
}
|
|
17274
17860
|
interface LabelGenerationAddressFailureStatusUpdateForm {
|
|
17275
17861
|
readonly status: io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
|
|
17276
17862
|
}
|
|
@@ -17308,6 +17894,74 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17308
17894
|
readonly organization: string;
|
|
17309
17895
|
readonly label_generation_settings: io.flow.internal.v0.models.LabelGenerationSettings;
|
|
17310
17896
|
}
|
|
17897
|
+
interface LabelInvoiceRequest {
|
|
17898
|
+
readonly id: string;
|
|
17899
|
+
readonly label: io.flow.internal.v0.models.TrueUpLabelSummary;
|
|
17900
|
+
readonly units: io.flow.internal.v0.models.LabelUnits;
|
|
17901
|
+
readonly base: io.flow.internal.v0.models.LabelBase;
|
|
17902
|
+
readonly surcharges: io.flow.internal.v0.models.LabelSurcharge[];
|
|
17903
|
+
readonly total: number;
|
|
17904
|
+
readonly destination: io.flow.internal.v0.models.LabelDestination;
|
|
17905
|
+
readonly metadata: io.flow.internal.v0.models.LabelMetadata;
|
|
17906
|
+
}
|
|
17907
|
+
interface LabelInvoiceRequestDeleted {
|
|
17908
|
+
readonly discriminator: 'label_invoice_request_deleted';
|
|
17909
|
+
readonly event_id: string;
|
|
17910
|
+
readonly timestamp: string;
|
|
17911
|
+
readonly organization: string;
|
|
17912
|
+
readonly id: string;
|
|
17913
|
+
}
|
|
17914
|
+
interface LabelInvoiceRequestUpserted {
|
|
17915
|
+
readonly discriminator: 'label_invoice_request_upserted';
|
|
17916
|
+
readonly event_id: string;
|
|
17917
|
+
readonly timestamp: string;
|
|
17918
|
+
readonly organization: string;
|
|
17919
|
+
readonly label_invoice_request: io.flow.internal.v0.models.LabelInvoiceRequest;
|
|
17920
|
+
}
|
|
17921
|
+
interface LabelInvoiceResponseForm {
|
|
17922
|
+
readonly id: string;
|
|
17923
|
+
readonly label_invoice_request_id: string;
|
|
17924
|
+
readonly units: io.flow.internal.v0.models.LabelResponseUnits;
|
|
17925
|
+
readonly base: io.flow.internal.v0.models.LabelBase;
|
|
17926
|
+
readonly surcharges: io.flow.internal.v0.models.LabelSurchargeForm;
|
|
17927
|
+
readonly total: number;
|
|
17928
|
+
}
|
|
17929
|
+
interface LabelMetadata {
|
|
17930
|
+
readonly ratecard: io.flow.internal.v0.models.MetadataRatecard;
|
|
17931
|
+
readonly weights: io.flow.internal.v0.models.MetadataWeights;
|
|
17932
|
+
}
|
|
17933
|
+
interface LabelRequestError {
|
|
17934
|
+
readonly id: string;
|
|
17935
|
+
readonly order_number: string;
|
|
17936
|
+
readonly created_at: string;
|
|
17937
|
+
readonly reference_id: string;
|
|
17938
|
+
readonly label_request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
17939
|
+
readonly label_trigger_method?: io.flow.label.v0.enums.LabelTriggerMethod;
|
|
17940
|
+
readonly order_identifier: string[];
|
|
17941
|
+
readonly suggested_responsibility: io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
17942
|
+
readonly carrier_id?: string;
|
|
17943
|
+
readonly service_id?: string;
|
|
17944
|
+
readonly errors: string[];
|
|
17945
|
+
}
|
|
17946
|
+
interface LabelRequestErrorDeleted {
|
|
17947
|
+
readonly discriminator: 'label_request_error_deleted';
|
|
17948
|
+
readonly event_id: string;
|
|
17949
|
+
readonly timestamp: string;
|
|
17950
|
+
readonly organization: string;
|
|
17951
|
+
readonly id: string;
|
|
17952
|
+
}
|
|
17953
|
+
interface LabelRequestErrorUpserted {
|
|
17954
|
+
readonly discriminator: 'label_request_error_upserted';
|
|
17955
|
+
readonly event_id: string;
|
|
17956
|
+
readonly timestamp: string;
|
|
17957
|
+
readonly organization: string;
|
|
17958
|
+
readonly label_request_error: io.flow.internal.v0.models.LabelRequestError;
|
|
17959
|
+
}
|
|
17960
|
+
interface LabelResponseUnits {
|
|
17961
|
+
readonly currency: string;
|
|
17962
|
+
readonly weight: io.flow.units.v0.enums.UnitOfWeight;
|
|
17963
|
+
readonly length?: io.flow.units.v0.enums.UnitOfLength;
|
|
17964
|
+
}
|
|
17311
17965
|
interface LabelSummary {
|
|
17312
17966
|
readonly id: string;
|
|
17313
17967
|
readonly commercial_invoice?: string;
|
|
@@ -17321,6 +17975,36 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17321
17975
|
readonly carrier_tracking_number_url?: string;
|
|
17322
17976
|
readonly service?: io.flow.reference.v0.models.CarrierService;
|
|
17323
17977
|
}
|
|
17978
|
+
interface LabelSurcharge {
|
|
17979
|
+
readonly amount: number;
|
|
17980
|
+
readonly type: io.flow.internal.v0.enums.TrueUpSurchargeType;
|
|
17981
|
+
readonly detail: io.flow.internal.v0.unions.LabelSurchargeDetail;
|
|
17982
|
+
}
|
|
17983
|
+
interface LabelSurchargeDetailFlat {
|
|
17984
|
+
readonly discriminator: 'flat';
|
|
17985
|
+
readonly placeholder?: string;
|
|
17986
|
+
}
|
|
17987
|
+
interface LabelSurchargeDetailPerWeightUnit {
|
|
17988
|
+
readonly discriminator: 'per_weight_unit';
|
|
17989
|
+
readonly fee: number;
|
|
17990
|
+
}
|
|
17991
|
+
interface LabelSurchargeDetailPercentage {
|
|
17992
|
+
readonly discriminator: 'percentage';
|
|
17993
|
+
readonly percentage: number;
|
|
17994
|
+
}
|
|
17995
|
+
interface LabelSurchargeForm {
|
|
17996
|
+
readonly fuel?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
17997
|
+
readonly remote_area?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
17998
|
+
readonly oversize?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
17999
|
+
readonly duties_paid?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
18000
|
+
readonly emergency?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
18001
|
+
readonly peak?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
18002
|
+
}
|
|
18003
|
+
interface LabelSurchargeSingleForm {
|
|
18004
|
+
readonly amount: number;
|
|
18005
|
+
readonly percentage?: number;
|
|
18006
|
+
readonly fee_per_weight_unit?: number;
|
|
18007
|
+
}
|
|
17324
18008
|
interface LabelTaxonomy {
|
|
17325
18009
|
readonly discriminator: 'item';
|
|
17326
18010
|
readonly item_type: string;
|
|
@@ -17346,8 +18030,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17346
18030
|
interface LabelTransaction {
|
|
17347
18031
|
readonly discriminator: 'label_transaction';
|
|
17348
18032
|
readonly label: io.flow.internal.v0.models.BillingLabelSummary;
|
|
17349
|
-
readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
17350
18033
|
readonly tracking: io.flow.internal.v0.models.BillingLabelTrackingSummaryReference;
|
|
18034
|
+
readonly gross_value: io.flow.common.v0.models.Price;
|
|
18035
|
+
readonly discount: io.flow.internal.v0.models.Discount;
|
|
18036
|
+
readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
17351
18037
|
readonly id: string;
|
|
17352
18038
|
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
17353
18039
|
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
@@ -17369,6 +18055,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17369
18055
|
readonly timestamp: string;
|
|
17370
18056
|
readonly label_transaction: io.flow.internal.v0.models.LabelTransaction;
|
|
17371
18057
|
}
|
|
18058
|
+
interface LabelUnits {
|
|
18059
|
+
readonly currency: string;
|
|
18060
|
+
readonly weight: io.flow.units.v0.enums.UnitOfWeight;
|
|
18061
|
+
readonly length: io.flow.units.v0.enums.UnitOfLength;
|
|
18062
|
+
}
|
|
17372
18063
|
interface LabeledContent {
|
|
17373
18064
|
readonly label: io.flow.internal.v0.models.ContentLabel;
|
|
17374
18065
|
readonly contents: io.flow.internal.v0.unions.ContentItem[];
|
|
@@ -17624,10 +18315,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17624
18315
|
readonly type: io.flow.internal.v0.enums.ContentType;
|
|
17625
18316
|
readonly url: string;
|
|
17626
18317
|
}
|
|
17627
|
-
interface LogisticsCenterCheck {
|
|
17628
|
-
readonly issues?: string[];
|
|
17629
|
-
readonly is_valid: boolean;
|
|
17630
|
-
}
|
|
17631
18318
|
interface Logo {
|
|
17632
18319
|
readonly url: string;
|
|
17633
18320
|
}
|
|
@@ -17970,6 +18657,39 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17970
18657
|
readonly merchant_application: io.flow.merchant.onboarding.v0.unions.MerchantApplication;
|
|
17971
18658
|
readonly organization_reference: io.flow.common.v0.models.Organization;
|
|
17972
18659
|
}
|
|
18660
|
+
interface MerchantCharges {
|
|
18661
|
+
readonly labels: number;
|
|
18662
|
+
readonly total: number;
|
|
18663
|
+
}
|
|
18664
|
+
interface MerchantFees {
|
|
18665
|
+
readonly duty_guarantee: number;
|
|
18666
|
+
readonly mor: number;
|
|
18667
|
+
readonly fraud: number;
|
|
18668
|
+
readonly fx: number;
|
|
18669
|
+
readonly processing: number;
|
|
18670
|
+
readonly rate_lock: number;
|
|
18671
|
+
readonly transfer: number;
|
|
18672
|
+
readonly total: number;
|
|
18673
|
+
}
|
|
18674
|
+
interface MerchantGuidAssignment {
|
|
18675
|
+
readonly id: string;
|
|
18676
|
+
readonly merchant_guid: string;
|
|
18677
|
+
readonly created_at: string;
|
|
18678
|
+
}
|
|
18679
|
+
interface MerchantGuidAssignmentDeleted {
|
|
18680
|
+
readonly discriminator: 'merchant_guid_assignment_deleted';
|
|
18681
|
+
readonly event_id: string;
|
|
18682
|
+
readonly timestamp: string;
|
|
18683
|
+
readonly organization: string;
|
|
18684
|
+
readonly id: string;
|
|
18685
|
+
}
|
|
18686
|
+
interface MerchantGuidAssignmentUpserted {
|
|
18687
|
+
readonly discriminator: 'merchant_guid_assignment_upserted';
|
|
18688
|
+
readonly event_id: string;
|
|
18689
|
+
readonly timestamp: string;
|
|
18690
|
+
readonly organization: string;
|
|
18691
|
+
readonly merchant_guid_assignment: io.flow.internal.v0.models.MerchantGuidAssignment;
|
|
18692
|
+
}
|
|
17973
18693
|
interface MerchantOfRecordEntitySettings {
|
|
17974
18694
|
readonly id: string;
|
|
17975
18695
|
readonly merchant_of_record_entity: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
@@ -17993,6 +18713,36 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17993
18713
|
readonly center?: string;
|
|
17994
18714
|
readonly currency?: string;
|
|
17995
18715
|
}
|
|
18716
|
+
interface MerchantSearchResult {
|
|
18717
|
+
readonly organization_id: string;
|
|
18718
|
+
readonly shop_name?: string;
|
|
18719
|
+
readonly legal_name: string;
|
|
18720
|
+
readonly onboarding_current_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
18721
|
+
}
|
|
18722
|
+
interface MerchantSubsidies {
|
|
18723
|
+
readonly fees: io.flow.internal.v0.models.ShopperFees;
|
|
18724
|
+
readonly tax: number;
|
|
18725
|
+
readonly duty: number;
|
|
18726
|
+
readonly total: number;
|
|
18727
|
+
}
|
|
18728
|
+
interface MerchantSummary {
|
|
18729
|
+
readonly subsidies: io.flow.internal.v0.models.MerchantSubsidies;
|
|
18730
|
+
readonly fees: io.flow.internal.v0.models.MerchantFees;
|
|
18731
|
+
readonly charges: io.flow.internal.v0.models.MerchantCharges;
|
|
18732
|
+
readonly discounts: number;
|
|
18733
|
+
}
|
|
18734
|
+
interface MetadataProposition {
|
|
18735
|
+
readonly shipping_method: io.flow.internal.v0.models.ShippingMethodReference;
|
|
18736
|
+
readonly name: string;
|
|
18737
|
+
}
|
|
18738
|
+
interface MetadataRatecard {
|
|
18739
|
+
readonly id: string;
|
|
18740
|
+
readonly proposition: io.flow.internal.v0.models.MetadataProposition;
|
|
18741
|
+
}
|
|
18742
|
+
interface MetadataWeights {
|
|
18743
|
+
readonly dead?: io.flow.internal.v0.models.WeightsDead;
|
|
18744
|
+
readonly dimensional?: io.flow.internal.v0.models.WeightsDimensional;
|
|
18745
|
+
}
|
|
17996
18746
|
interface NextBillingStatement {
|
|
17997
18747
|
readonly date: string;
|
|
17998
18748
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -18022,6 +18772,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18022
18772
|
readonly description: string;
|
|
18023
18773
|
readonly result: io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
18024
18774
|
readonly messages: io.flow.internal.v0.models.OnboardingAuditMessage[];
|
|
18775
|
+
readonly execution_time_ms?: number;
|
|
18025
18776
|
}
|
|
18026
18777
|
interface OnboardingAuditSnapshot {
|
|
18027
18778
|
readonly id: string;
|
|
@@ -18043,7 +18794,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18043
18794
|
readonly compliance_full_review_required: boolean;
|
|
18044
18795
|
readonly application_received: string;
|
|
18045
18796
|
readonly legal_name: string;
|
|
18046
|
-
readonly shop_name
|
|
18797
|
+
readonly shop_name?: string;
|
|
18047
18798
|
readonly organization_id: string;
|
|
18048
18799
|
readonly onboarding_current_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
18049
18800
|
readonly setup_completed_at?: string;
|
|
@@ -18283,6 +19034,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18283
19034
|
interface OrderSubmissionForm {
|
|
18284
19035
|
readonly authorization?: io.flow.payment.v0.unions.AuthorizationForm;
|
|
18285
19036
|
}
|
|
19037
|
+
interface OrderSummary {
|
|
19038
|
+
readonly id: string;
|
|
19039
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
19040
|
+
readonly number: string;
|
|
19041
|
+
}
|
|
18286
19042
|
interface OrderTransaction {
|
|
18287
19043
|
readonly discriminator: 'order_transaction';
|
|
18288
19044
|
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -18307,6 +19063,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18307
19063
|
readonly timestamp: string;
|
|
18308
19064
|
readonly order_transaction: io.flow.internal.v0.models.OrderTransaction;
|
|
18309
19065
|
}
|
|
19066
|
+
interface OrderValidationError {
|
|
19067
|
+
readonly message: string;
|
|
19068
|
+
readonly reason: io.flow.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
19069
|
+
readonly action?: io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction;
|
|
19070
|
+
readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
19071
|
+
}
|
|
18310
19072
|
interface OrganizationAccount {
|
|
18311
19073
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
18312
19074
|
readonly id: string;
|
|
@@ -18428,6 +19190,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18428
19190
|
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
18429
19191
|
readonly organization_currency_setting: io.flow.internal.v0.models.OrganizationCurrencySetting;
|
|
18430
19192
|
}
|
|
19193
|
+
interface OrganizationDeactivation {
|
|
19194
|
+
readonly id: string;
|
|
19195
|
+
readonly deactivate_at: string;
|
|
19196
|
+
readonly created_at: string;
|
|
19197
|
+
}
|
|
19198
|
+
interface OrganizationDeactivationDeleted {
|
|
19199
|
+
readonly discriminator: 'organization_deactivation_deleted';
|
|
19200
|
+
readonly event_id: string;
|
|
19201
|
+
readonly timestamp: string;
|
|
19202
|
+
readonly organization: string;
|
|
19203
|
+
readonly id: string;
|
|
19204
|
+
}
|
|
19205
|
+
interface OrganizationDeactivationForm {
|
|
19206
|
+
readonly deactivate_at: string;
|
|
19207
|
+
}
|
|
19208
|
+
interface OrganizationDeactivationUpserted {
|
|
19209
|
+
readonly discriminator: 'organization_deactivation_upserted';
|
|
19210
|
+
readonly event_id: string;
|
|
19211
|
+
readonly timestamp: string;
|
|
19212
|
+
readonly organization: string;
|
|
19213
|
+
readonly organization_deactivation: io.flow.internal.v0.models.OrganizationDeactivation;
|
|
19214
|
+
}
|
|
18431
19215
|
interface OrganizationDebugTransaction {
|
|
18432
19216
|
readonly debug?: io.flow.internal.v0.models.DebugTransactionDetails;
|
|
18433
19217
|
readonly order?: io.flow.internal.v0.models.DebugOrder;
|
|
@@ -18606,6 +19390,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18606
19390
|
readonly organization: string;
|
|
18607
19391
|
readonly organization_status_change: io.flow.internal.v0.models.OrganizationStatusChange;
|
|
18608
19392
|
}
|
|
19393
|
+
interface OrganizationsAuditCheckReport {
|
|
19394
|
+
readonly organization_id: string;
|
|
19395
|
+
readonly organization_status: io.flow.common.v0.enums.OrganizationStatus;
|
|
19396
|
+
readonly onboarding_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
19397
|
+
readonly audit_result: io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
19398
|
+
}
|
|
18609
19399
|
interface Partner {
|
|
18610
19400
|
readonly id: string;
|
|
18611
19401
|
readonly name: string;
|
|
@@ -18763,6 +19553,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18763
19553
|
readonly details?: io.flow.internal.v0.unions.PaymentSummaryDetails;
|
|
18764
19554
|
readonly status?: io.flow.internal.v0.enums.PaymentSummaryStatus;
|
|
18765
19555
|
}
|
|
19556
|
+
interface PayoutStatusCounts {
|
|
19557
|
+
readonly scheduled: number;
|
|
19558
|
+
readonly sent: number;
|
|
19559
|
+
readonly failed: number;
|
|
19560
|
+
}
|
|
18766
19561
|
interface PaypalAccount {
|
|
18767
19562
|
readonly discriminator: 'paypal_account';
|
|
18768
19563
|
readonly id: string;
|
|
@@ -18788,6 +19583,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18788
19583
|
readonly country: string;
|
|
18789
19584
|
readonly authentication: io.flow.internal.v0.models.PaypalAuthenticationForm;
|
|
18790
19585
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
19586
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
18791
19587
|
}
|
|
18792
19588
|
interface PaypalAccountReference {
|
|
18793
19589
|
readonly id: string;
|
|
@@ -18898,6 +19694,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18898
19694
|
readonly external_id: string;
|
|
18899
19695
|
readonly country: string;
|
|
18900
19696
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
19697
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
18901
19698
|
}
|
|
18902
19699
|
interface PaypalPaymentDeleted {
|
|
18903
19700
|
readonly discriminator: 'paypal_payment_deleted';
|
|
@@ -19166,6 +19963,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19166
19963
|
interface ProductListSettingsForm {
|
|
19167
19964
|
readonly column_settings: io.flow.internal.v0.models.HarmonizationColumnSetting[];
|
|
19168
19965
|
}
|
|
19966
|
+
interface ProductRestrictionResultValidationError {
|
|
19967
|
+
readonly message: string;
|
|
19968
|
+
readonly reason: string;
|
|
19969
|
+
readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
19970
|
+
}
|
|
19169
19971
|
interface ProductReviewHistory {
|
|
19170
19972
|
readonly product_id: string;
|
|
19171
19973
|
readonly reviews: io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
|
|
@@ -19186,6 +19988,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19186
19988
|
readonly discriminator: 'shipping_notification';
|
|
19187
19989
|
readonly shipping_notification_id: string;
|
|
19188
19990
|
}
|
|
19991
|
+
interface QueuedRecord {
|
|
19992
|
+
readonly type: string;
|
|
19993
|
+
readonly type_id: string;
|
|
19994
|
+
readonly source_type?: string;
|
|
19995
|
+
readonly source_id?: string;
|
|
19996
|
+
readonly environment?: string;
|
|
19997
|
+
readonly created_at: string;
|
|
19998
|
+
readonly num_attempts: number;
|
|
19999
|
+
readonly next_attempt_at: string;
|
|
20000
|
+
readonly errors?: string[];
|
|
20001
|
+
readonly stacktrace?: string;
|
|
20002
|
+
readonly snooze_id?: string;
|
|
20003
|
+
}
|
|
19189
20004
|
interface QuoteRequest {
|
|
19190
20005
|
readonly id: string;
|
|
19191
20006
|
readonly request_type: io.flow.internal.v0.enums.QuoteRequestType;
|
|
@@ -19280,9 +20095,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19280
20095
|
interface RateLevel {
|
|
19281
20096
|
readonly id: string;
|
|
19282
20097
|
readonly name: string;
|
|
20098
|
+
readonly key: string;
|
|
19283
20099
|
}
|
|
19284
20100
|
interface RateLevelForm {
|
|
19285
20101
|
readonly name: string;
|
|
20102
|
+
readonly key: string;
|
|
19286
20103
|
}
|
|
19287
20104
|
interface RateLevelOrganization {
|
|
19288
20105
|
readonly id: string;
|
|
@@ -19306,6 +20123,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19306
20123
|
readonly id: string;
|
|
19307
20124
|
readonly name: string;
|
|
19308
20125
|
readonly effective_at: string;
|
|
20126
|
+
readonly key: string;
|
|
19309
20127
|
}
|
|
19310
20128
|
interface RateNameSummary {
|
|
19311
20129
|
readonly name: string;
|
|
@@ -19570,6 +20388,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19570
20388
|
readonly discriminator: 'rex';
|
|
19571
20389
|
readonly number: string;
|
|
19572
20390
|
}
|
|
20391
|
+
interface Report {
|
|
20392
|
+
readonly key: string;
|
|
20393
|
+
readonly status: io.flow.internal.v0.enums.ReportStatus;
|
|
20394
|
+
readonly from: string;
|
|
20395
|
+
readonly to: string;
|
|
20396
|
+
readonly organization_id?: string;
|
|
20397
|
+
readonly sales_url?: string;
|
|
20398
|
+
readonly refunds_url?: string;
|
|
20399
|
+
}
|
|
20400
|
+
interface ReportForm {
|
|
20401
|
+
readonly key?: string;
|
|
20402
|
+
readonly from: string;
|
|
20403
|
+
readonly to: string;
|
|
20404
|
+
readonly organization_id?: string;
|
|
20405
|
+
}
|
|
19573
20406
|
interface ReportRuleDecision {
|
|
19574
20407
|
readonly rule_id: string;
|
|
19575
20408
|
readonly rule_name: string;
|
|
@@ -19579,6 +20412,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19579
20412
|
interface ReportSummary {
|
|
19580
20413
|
readonly task_id: string;
|
|
19581
20414
|
}
|
|
20415
|
+
interface ReportingDetails {
|
|
20416
|
+
readonly sales_records?: any[];
|
|
20417
|
+
readonly refund_records?: any[];
|
|
20418
|
+
}
|
|
19582
20419
|
interface RequeueRequestForm {
|
|
19583
20420
|
readonly product_ids?: string[];
|
|
19584
20421
|
readonly hs6_codes?: string[];
|
|
@@ -19660,6 +20497,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19660
20497
|
interface RestrictionOrganizationDecisionSummary {
|
|
19661
20498
|
readonly organization: io.flow.internal.v0.models.RestrictionOrganization;
|
|
19662
20499
|
readonly earliest_pending_date: string;
|
|
20500
|
+
readonly priority_score: number;
|
|
19663
20501
|
readonly date: string;
|
|
19664
20502
|
readonly statuses: io.flow.internal.v0.models.RestrictionStatusMetadata[];
|
|
19665
20503
|
readonly rules: io.flow.internal.v0.models.RestrictionRuleMetadata[];
|
|
@@ -19722,6 +20560,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19722
20560
|
readonly positive_keywords: string[];
|
|
19723
20561
|
readonly negative_keywords: string[];
|
|
19724
20562
|
readonly value_threshold_usd?: number;
|
|
20563
|
+
readonly auto_review_criteria?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
19725
20564
|
}
|
|
19726
20565
|
interface RestrictionRuleDecisionForm {
|
|
19727
20566
|
readonly rule_id: string;
|
|
@@ -19736,6 +20575,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19736
20575
|
readonly positive_keywords: string[];
|
|
19737
20576
|
readonly negative_keywords: string[];
|
|
19738
20577
|
readonly value_threshold_usd?: number;
|
|
20578
|
+
readonly auto_review_criteria?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
19739
20579
|
}
|
|
19740
20580
|
interface RestrictionRuleMetadata {
|
|
19741
20581
|
readonly rule: io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
@@ -19765,6 +20605,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19765
20605
|
interface ResyncFallbackRates {
|
|
19766
20606
|
readonly destinations: io.flow.reference.v0.models.Country[];
|
|
19767
20607
|
}
|
|
20608
|
+
interface Retracking {
|
|
20609
|
+
readonly carrier: string;
|
|
20610
|
+
readonly tracking_number?: string;
|
|
20611
|
+
}
|
|
20612
|
+
interface RetrackingForm {
|
|
20613
|
+
readonly carrier: string;
|
|
20614
|
+
readonly carrier_tracking_numbers: string[];
|
|
20615
|
+
}
|
|
19768
20616
|
interface ReturnPolicyDeleted {
|
|
19769
20617
|
readonly discriminator: 'return_policy_deleted';
|
|
19770
20618
|
readonly event_id: string;
|
|
@@ -19814,6 +20662,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19814
20662
|
readonly discriminator: 'routing_processor';
|
|
19815
20663
|
readonly processor: io.flow.internal.v0.enums.Processor;
|
|
19816
20664
|
}
|
|
20665
|
+
interface SandboxSetup {
|
|
20666
|
+
readonly requested_by: string;
|
|
20667
|
+
}
|
|
20668
|
+
interface SandboxSetupForm {
|
|
20669
|
+
readonly requested_by: string;
|
|
20670
|
+
}
|
|
19817
20671
|
interface Screen {
|
|
19818
20672
|
readonly id: string;
|
|
19819
20673
|
readonly q: string;
|
|
@@ -19924,6 +20778,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19924
20778
|
readonly origin: string;
|
|
19925
20779
|
readonly destination: string;
|
|
19926
20780
|
}
|
|
20781
|
+
interface ShippingMethodReference {
|
|
20782
|
+
readonly id: string;
|
|
20783
|
+
}
|
|
19927
20784
|
interface Shop {
|
|
19928
20785
|
readonly id: string;
|
|
19929
20786
|
readonly organization?: io.flow.common.v0.models.OrganizationReference;
|
|
@@ -20014,12 +20871,35 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20014
20871
|
interface ShopifyGrantsCheck {
|
|
20015
20872
|
readonly placeholder: string;
|
|
20016
20873
|
}
|
|
20874
|
+
interface ShopifyMarketsDiscrepancy {
|
|
20875
|
+
readonly organization_id: string;
|
|
20876
|
+
readonly count: number;
|
|
20877
|
+
}
|
|
20878
|
+
interface ShopifyMarketsDiscrepancyData {
|
|
20879
|
+
readonly total_count: number;
|
|
20880
|
+
readonly discrepancies: io.flow.internal.v0.models.ShopifyMarketsDiscrepancy[];
|
|
20881
|
+
}
|
|
20017
20882
|
interface ShopifyMarketsIncorporationCountry {
|
|
20018
20883
|
readonly country: string;
|
|
20019
20884
|
readonly state?: string;
|
|
20020
20885
|
readonly province?: string;
|
|
20021
20886
|
readonly jurisdiction?: string;
|
|
20022
20887
|
}
|
|
20888
|
+
interface ShopifyMarketsInternalOrderMetrics {
|
|
20889
|
+
readonly total_order_count: number;
|
|
20890
|
+
}
|
|
20891
|
+
interface ShopifyMarketsMetricsDeleted {
|
|
20892
|
+
readonly discriminator: 'shopify_markets_metrics_deleted';
|
|
20893
|
+
readonly event_id: string;
|
|
20894
|
+
readonly timestamp: string;
|
|
20895
|
+
readonly id: string;
|
|
20896
|
+
}
|
|
20897
|
+
interface ShopifyMarketsMetricsUpserted {
|
|
20898
|
+
readonly discriminator: 'shopify_markets_metrics_upserted';
|
|
20899
|
+
readonly event_id: string;
|
|
20900
|
+
readonly timestamp: string;
|
|
20901
|
+
readonly shopify_markets_metrics: io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics;
|
|
20902
|
+
}
|
|
20023
20903
|
interface ShopifyMarketsOrder {
|
|
20024
20904
|
readonly id: string;
|
|
20025
20905
|
readonly model: io.flow.shopify.markets.v0.models.ShopifyOrder;
|
|
@@ -20038,8 +20918,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20038
20918
|
readonly organization: string;
|
|
20039
20919
|
readonly shopify_markets_order: io.flow.internal.v0.models.ShopifyMarketsOrder;
|
|
20040
20920
|
}
|
|
20921
|
+
interface ShopifyMarketsOrdersMetrics {
|
|
20922
|
+
readonly id: string;
|
|
20923
|
+
readonly range: io.flow.common.v0.models.DatetimeRange;
|
|
20924
|
+
readonly shopify: io.flow.internal.v0.models.ShopifyMarketsShopifyOrderMetrics;
|
|
20925
|
+
readonly internal: io.flow.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
|
|
20926
|
+
readonly discrepancy_data: io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData;
|
|
20927
|
+
}
|
|
20041
20928
|
interface ShopifyMarketsShop {
|
|
20042
20929
|
readonly id: string;
|
|
20930
|
+
readonly shopify_shop_id?: string;
|
|
20043
20931
|
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
20044
20932
|
readonly domain: string;
|
|
20045
20933
|
readonly myshopify_domain: string;
|
|
@@ -20092,6 +20980,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20092
20980
|
readonly organization: string;
|
|
20093
20981
|
readonly shopify_markets_shop: io.flow.internal.v0.models.ShopifyMarketsShop;
|
|
20094
20982
|
}
|
|
20983
|
+
interface ShopifyMarketsShopifyOrderMetrics {
|
|
20984
|
+
readonly total_order_count: number;
|
|
20985
|
+
}
|
|
20095
20986
|
interface ShopifyMarketsSubsidiaryCompany {
|
|
20096
20987
|
readonly legal_name?: string;
|
|
20097
20988
|
readonly incorporation_country?: io.flow.internal.v0.models.ShopifyMarketsIncorporationCountry;
|
|
@@ -20350,6 +21241,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20350
21241
|
readonly timestamp: string;
|
|
20351
21242
|
readonly shop: io.flow.internal.v0.models.Shop;
|
|
20352
21243
|
}
|
|
21244
|
+
interface ShopifyStorePassword {
|
|
21245
|
+
readonly temporary_password: string;
|
|
21246
|
+
readonly expiry: string;
|
|
21247
|
+
}
|
|
20353
21248
|
interface ShopifyWebhook {
|
|
20354
21249
|
readonly id: string;
|
|
20355
21250
|
readonly shop_id: string;
|
|
@@ -20364,6 +21259,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20364
21259
|
readonly address: string;
|
|
20365
21260
|
readonly topic: io.flow.shopify.external.v0.enums.Topic;
|
|
20366
21261
|
}
|
|
21262
|
+
interface ShopperFees {
|
|
21263
|
+
readonly fuel: number;
|
|
21264
|
+
readonly remote_area: number;
|
|
21265
|
+
readonly oversize: number;
|
|
21266
|
+
readonly ccf: number;
|
|
21267
|
+
readonly total: number;
|
|
21268
|
+
}
|
|
21269
|
+
interface ShopperSummary {
|
|
21270
|
+
readonly fees: io.flow.internal.v0.models.ShopperFees;
|
|
21271
|
+
}
|
|
20367
21272
|
interface SimpleAccountReference {
|
|
20368
21273
|
readonly id: string;
|
|
20369
21274
|
}
|
|
@@ -20551,6 +21456,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20551
21456
|
readonly country: string;
|
|
20552
21457
|
readonly authentication: io.flow.internal.v0.models.StripeAuthenticationForm;
|
|
20553
21458
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
21459
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
20554
21460
|
}
|
|
20555
21461
|
interface StripeAuthentication {
|
|
20556
21462
|
readonly public_key: string;
|
|
@@ -20664,6 +21570,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20664
21570
|
readonly account_type: io.flow.stripe.v0.enums.AccountType;
|
|
20665
21571
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
20666
21572
|
readonly country: string;
|
|
21573
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
20667
21574
|
}
|
|
20668
21575
|
interface StripeRefundDeleted {
|
|
20669
21576
|
readonly discriminator: 'stripe_refund_deleted';
|
|
@@ -21067,6 +21974,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21067
21974
|
interface TransactionReference {
|
|
21068
21975
|
readonly id: string;
|
|
21069
21976
|
}
|
|
21977
|
+
interface TransactionStatement {
|
|
21978
|
+
readonly id: string;
|
|
21979
|
+
readonly statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
21980
|
+
}
|
|
21981
|
+
interface TransactionStatementDeleted {
|
|
21982
|
+
readonly discriminator: 'transaction_statement_deleted';
|
|
21983
|
+
readonly event_id: string;
|
|
21984
|
+
readonly timestamp: string;
|
|
21985
|
+
readonly id: string;
|
|
21986
|
+
}
|
|
21987
|
+
interface TransactionStatementUpserted {
|
|
21988
|
+
readonly discriminator: 'transaction_statement_upserted';
|
|
21989
|
+
readonly event_id: string;
|
|
21990
|
+
readonly timestamp: string;
|
|
21991
|
+
readonly transaction_statement: io.flow.internal.v0.models.TransactionStatement;
|
|
21992
|
+
}
|
|
21070
21993
|
interface TransferTransaction {
|
|
21071
21994
|
readonly discriminator: 'transfer_transaction';
|
|
21072
21995
|
readonly method: io.flow.internal.v0.enums.TransferMethod;
|
|
@@ -21109,6 +22032,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21109
22032
|
readonly id: string;
|
|
21110
22033
|
readonly description: string;
|
|
21111
22034
|
}
|
|
22035
|
+
interface TrueUpLabelSummary {
|
|
22036
|
+
readonly id: string;
|
|
22037
|
+
readonly carrier_service_id: string;
|
|
22038
|
+
readonly carrier_tracking_number: string;
|
|
22039
|
+
readonly flow_tracking_number: string;
|
|
22040
|
+
readonly created_at: string;
|
|
22041
|
+
}
|
|
22042
|
+
interface UnassignedMerchantGuid {
|
|
22043
|
+
readonly id: string;
|
|
22044
|
+
readonly merchant_guid: string;
|
|
22045
|
+
readonly created_at: string;
|
|
22046
|
+
}
|
|
22047
|
+
interface UnassignedMerchantGuidDeleted {
|
|
22048
|
+
readonly discriminator: 'unassigned_merchant_guid_deleted';
|
|
22049
|
+
readonly event_id: string;
|
|
22050
|
+
readonly timestamp: string;
|
|
22051
|
+
readonly id: string;
|
|
22052
|
+
}
|
|
22053
|
+
interface UnassignedMerchantGuidUpserted {
|
|
22054
|
+
readonly discriminator: 'unassigned_merchant_guid_upserted';
|
|
22055
|
+
readonly event_id: string;
|
|
22056
|
+
readonly timestamp: string;
|
|
22057
|
+
readonly unassigned_merchant_guid: io.flow.internal.v0.models.UnassignedMerchantGuid;
|
|
22058
|
+
}
|
|
21112
22059
|
interface UnclassifiedProductStatistic {
|
|
21113
22060
|
readonly status: io.flow.internal.v0.enums.UnclassifiedProductStatus;
|
|
21114
22061
|
readonly number_of_items: number;
|
|
@@ -21300,6 +22247,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21300
22247
|
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
21301
22248
|
readonly created_at: string;
|
|
21302
22249
|
}
|
|
22250
|
+
interface WashCarrierActualFile {
|
|
22251
|
+
readonly id: string;
|
|
22252
|
+
readonly url: string;
|
|
22253
|
+
readonly status: io.flow.internal.v0.enums.WashCarrierActualFileStatus;
|
|
22254
|
+
}
|
|
22255
|
+
interface WashCarrierActualFileForm {
|
|
22256
|
+
readonly url: string;
|
|
22257
|
+
}
|
|
21303
22258
|
interface WashExportRequest {
|
|
21304
22259
|
readonly url: string;
|
|
21305
22260
|
}
|
|
@@ -21316,6 +22271,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21316
22271
|
interface Webhook {
|
|
21317
22272
|
readonly placeholder?: any;
|
|
21318
22273
|
}
|
|
22274
|
+
interface WeightsDead {
|
|
22275
|
+
readonly weight: number;
|
|
22276
|
+
}
|
|
22277
|
+
interface WeightsDimensional {
|
|
22278
|
+
readonly weight: number;
|
|
22279
|
+
readonly length: number;
|
|
22280
|
+
readonly width: number;
|
|
22281
|
+
readonly height: number;
|
|
22282
|
+
}
|
|
21319
22283
|
interface WholeOrderActionForm {
|
|
21320
22284
|
readonly discriminator: 'whole_order_action_form';
|
|
21321
22285
|
readonly action: io.flow.internal.v0.enums.OrderAction;
|
|
@@ -21422,7 +22386,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
21422
22386
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
21423
22387
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
21424
22388
|
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;
|
|
22389
|
+
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
22390
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
21427
22391
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
21428
22392
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -21433,6 +22397,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
21433
22397
|
type FraudProviderConfiguration = io.flow.internal.v0.models.FraudProviderConfigurationRiskified;
|
|
21434
22398
|
type FraudProviderConfigurationForm = io.flow.internal.v0.models.FraudProviderConfigurationFormRiskified;
|
|
21435
22399
|
type FuelSurchargeServiceFeePutForm = io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm | io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm;
|
|
22400
|
+
type FulfillmentProof = io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference | io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference | io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference;
|
|
21436
22401
|
type GenerateLoad = io.flow.internal.v0.models.GenerateLoadSingleOrg | io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
21437
22402
|
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
22403
|
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 +22407,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
21442
22407
|
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
22408
|
type InternalRefundForm = io.flow.internal.v0.models.AdyenRefundForm;
|
|
21444
22409
|
type InternalTransactionDetails = io.flow.internal.v0.models.InternalTransactionDetailsCard;
|
|
22410
|
+
type LabelSurchargeDetail = io.flow.internal.v0.models.LabelSurchargeDetailFlat | io.flow.internal.v0.models.LabelSurchargeDetailPercentage | io.flow.internal.v0.models.LabelSurchargeDetailPerWeightUnit;
|
|
21445
22411
|
type LocalizableContent = io.flow.internal.v0.models.LocalizableContentReference | io.flow.internal.v0.models.Localization;
|
|
21446
22412
|
type MarketingGatewayChannelDetails = io.flow.internal.v0.models.MarketingGatewayGoogleChannelDetails | io.flow.internal.v0.models.MarketingGatewayFacebookChannelDetails | io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails;
|
|
21447
22413
|
type MarketingGatewayDistributionChannel = io.flow.internal.v0.models.MarketingGatewayDistributionChannelGoogle | io.flow.internal.v0.models.MarketingGatewayDistributionChannelFacebook;
|
|
@@ -21570,6 +22536,7 @@ export declare type AlertFailureSummary = io.flow.internal.v0.models.AlertFailur
|
|
|
21570
22536
|
export declare type AlertFailureSummaryDetail = io.flow.internal.v0.models.AlertFailureSummaryDetail;
|
|
21571
22537
|
export declare type AlertImportSummary = io.flow.internal.v0.models.AlertImportSummary;
|
|
21572
22538
|
export declare type AlertRequeueSummary = io.flow.internal.v0.models.AlertRequeueSummary;
|
|
22539
|
+
export declare type AlgoliaIndexAssignment = io.flow.internal.v0.models.AlgoliaIndexAssignment;
|
|
21573
22540
|
export declare type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
|
|
21574
22541
|
export declare type AllOrganizationsMembership = io.flow.internal.v0.models.AllOrganizationsMembership;
|
|
21575
22542
|
export declare type AllocationItemReference = io.flow.internal.v0.models.AllocationItemReference;
|
|
@@ -21592,6 +22559,7 @@ export declare type AuthorizedLineItemCharge = io.flow.internal.v0.models.Author
|
|
|
21592
22559
|
export declare type AuthorizedOrderCharge = io.flow.internal.v0.unions.AuthorizedOrderCharge;
|
|
21593
22560
|
export declare type AuthorizedShippingCharge = io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
21594
22561
|
export declare type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
|
|
22562
|
+
export declare type AutoReviewCriteria = io.flow.internal.v0.models.AutoReviewCriteria;
|
|
21595
22563
|
export declare type Backfill = io.flow.internal.v0.models.Backfill;
|
|
21596
22564
|
export declare type BackfillForm = io.flow.internal.v0.models.BackfillForm;
|
|
21597
22565
|
export declare type BankAccountReference = io.flow.internal.v0.models.BankAccountReference;
|
|
@@ -21623,7 +22591,6 @@ export declare type BillingStatementAttachmentKey = io.flow.internal.v0.enums.Bi
|
|
|
21623
22591
|
export declare type BillingStatementBatch = io.flow.internal.v0.models.BillingStatementBatch;
|
|
21624
22592
|
export declare type BillingStatementBatchDeleted = io.flow.internal.v0.models.BillingStatementBatchDeleted;
|
|
21625
22593
|
export declare type BillingStatementBatchFileKey = io.flow.internal.v0.enums.BillingStatementBatchFileKey;
|
|
21626
|
-
export declare type BillingStatementBatchReconciliation = io.flow.internal.v0.models.BillingStatementBatchReconciliation;
|
|
21627
22594
|
export declare type BillingStatementBatchReference = io.flow.internal.v0.models.BillingStatementBatchReference;
|
|
21628
22595
|
export declare type BillingStatementBatchStatement = io.flow.internal.v0.models.BillingStatementBatchStatement;
|
|
21629
22596
|
export declare type BillingStatementBatchStatementDeleted = io.flow.internal.v0.models.BillingStatementBatchStatementDeleted;
|
|
@@ -21690,6 +22657,8 @@ export declare type BrowserBundlePaymentMethods = io.flow.internal.v0.models.Bro
|
|
|
21690
22657
|
export declare type BulkClassificationAction = io.flow.internal.v0.models.BulkClassificationAction;
|
|
21691
22658
|
export declare type ByRuleSnapshot = io.flow.internal.v0.models.ByRuleSnapshot;
|
|
21692
22659
|
export declare type CalculatedTaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount;
|
|
22660
|
+
export declare type CalculatorDtcePostBody = io.flow.internal.v0.models.CalculatorDtcePostBody;
|
|
22661
|
+
export declare type CalculatorDtceProduct = io.flow.internal.v0.models.CalculatorDtceProduct;
|
|
21693
22662
|
export declare type CalculatorEngine = io.flow.internal.v0.enums.CalculatorEngine;
|
|
21694
22663
|
export declare type CalculatorOrganizationSettings = io.flow.internal.v0.models.CalculatorOrganizationSettings;
|
|
21695
22664
|
export declare type CalculatorOrganizationSettingsDeleted = io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted;
|
|
@@ -21699,9 +22668,11 @@ export declare type CarrierAccount = io.flow.internal.v0.models.CarrierAccount;
|
|
|
21699
22668
|
export declare type CarrierAccountDeleted = io.flow.internal.v0.models.CarrierAccountDeleted;
|
|
21700
22669
|
export declare type CarrierAccountForm = io.flow.internal.v0.models.CarrierAccountForm;
|
|
21701
22670
|
export declare type CarrierAccountUpsertedV2 = io.flow.internal.v0.models.CarrierAccountUpsertedV2;
|
|
22671
|
+
export declare type CarrierAccountValidation = io.flow.internal.v0.models.CarrierAccountValidation;
|
|
21702
22672
|
export declare type CarrierCredentials = io.flow.internal.v0.unions.CarrierCredentials;
|
|
21703
22673
|
export declare type CarrierInvoice = io.flow.internal.v0.models.CarrierInvoice;
|
|
21704
22674
|
export declare type CarrierLabelGenerationMethod = io.flow.internal.v0.enums.CarrierLabelGenerationMethod;
|
|
22675
|
+
export declare type CarrierValidationStatus = io.flow.internal.v0.enums.CarrierValidationStatus;
|
|
21705
22676
|
export declare type CatalogImportRequest = io.flow.internal.v0.models.CatalogImportRequest;
|
|
21706
22677
|
export declare type CatalogImportType = io.flow.internal.v0.enums.CatalogImportType;
|
|
21707
22678
|
export declare type CatalogItemBatchIndexTask = io.flow.internal.v0.models.CatalogItemBatchIndexTask;
|
|
@@ -21710,6 +22681,7 @@ export declare type CatalogItemIndexTask = io.flow.internal.v0.models.CatalogIte
|
|
|
21710
22681
|
export declare type CatalogItemRegionAvailabilities = io.flow.internal.v0.models.CatalogItemRegionAvailabilities;
|
|
21711
22682
|
export declare type CatalogItemRegionAvailabilitiesData = io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesData;
|
|
21712
22683
|
export declare type CatalogItemRegionAvailabilitiesPublished = io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished;
|
|
22684
|
+
export declare type CatalogPublicationSyncValidationError = io.flow.internal.v0.models.CatalogPublicationSyncValidationError;
|
|
21713
22685
|
export declare type CatalogSettings = io.flow.internal.v0.models.CatalogSettings;
|
|
21714
22686
|
export declare type CatalogSettingsDeleted = io.flow.internal.v0.models.CatalogSettingsDeleted;
|
|
21715
22687
|
export declare type CatalogSettingsPutForm = io.flow.internal.v0.models.CatalogSettingsPutForm;
|
|
@@ -21745,6 +22717,7 @@ export declare type ChannelOrderAcceptance = io.flow.internal.v0.models.ChannelO
|
|
|
21745
22717
|
export declare type ChannelOrderAcceptanceDeleted = io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted;
|
|
21746
22718
|
export declare type ChannelOrderAcceptanceErrorAction = io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction;
|
|
21747
22719
|
export declare type ChannelOrderAcceptanceForm = io.flow.internal.v0.models.ChannelOrderAcceptanceForm;
|
|
22720
|
+
export declare type ChannelOrderAcceptanceNextActionFrom = io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
21748
22721
|
export declare type ChannelOrderAcceptanceReason = io.flow.internal.v0.models.ChannelOrderAcceptanceReason;
|
|
21749
22722
|
export declare type ChannelOrderAcceptanceRejectionReason = io.flow.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
21750
22723
|
export declare type ChannelOrderAcceptanceStatus = io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
@@ -22326,6 +23299,7 @@ export declare type ClassificationWrapper = io.flow.internal.v0.models.Classific
|
|
|
22326
23299
|
export declare type ClassifiedProduct = io.flow.internal.v0.models.ClassifiedProduct;
|
|
22327
23300
|
export declare type ClassifiedProductDetail = io.flow.internal.v0.models.ClassifiedProductDetail;
|
|
22328
23301
|
export declare type CommercialInvoiceComparison = io.flow.internal.v0.models.CommercialInvoiceComparison;
|
|
23302
|
+
export declare type CompanyReference = io.flow.internal.v0.models.CompanyReference;
|
|
22329
23303
|
export declare type Compliance = io.flow.internal.v0.models.Compliance;
|
|
22330
23304
|
export declare type ComplianceData = io.flow.internal.v0.unions.ComplianceData;
|
|
22331
23305
|
export declare type ComplianceForm = io.flow.internal.v0.unions.ComplianceForm;
|
|
@@ -22456,6 +23430,7 @@ export declare type DisputeProcessor = io.flow.internal.v0.enums.DisputeProcesso
|
|
|
22456
23430
|
export declare type DisputeStatus = io.flow.internal.v0.enums.DisputeStatus;
|
|
22457
23431
|
export declare type DisputeStatusForm = io.flow.internal.v0.models.DisputeStatusForm;
|
|
22458
23432
|
export declare type DisputeTransaction = io.flow.internal.v0.models.DisputeTransaction;
|
|
23433
|
+
export declare type DisputeTransactionType = io.flow.internal.v0.enums.DisputeTransactionType;
|
|
22459
23434
|
export declare type DisputeType = io.flow.internal.v0.enums.DisputeType;
|
|
22460
23435
|
export declare type DisputeUpserted = io.flow.internal.v0.models.DisputeUpserted;
|
|
22461
23436
|
export declare type DutiedItemsExport = io.flow.internal.v0.models.DutiedItemsExport;
|
|
@@ -22500,10 +23475,13 @@ export declare type ErpFlowFileForm = io.flow.internal.v0.models.ErpFlowFileForm
|
|
|
22500
23475
|
export declare type ErpFlowVendor = io.flow.internal.v0.models.ErpFlowVendor;
|
|
22501
23476
|
export declare type ErpPriorityFile = io.flow.internal.v0.models.ErpPriorityFile;
|
|
22502
23477
|
export declare type ErpPriorityFileForm = io.flow.internal.v0.models.ErpPriorityFileForm;
|
|
23478
|
+
export declare type ErpPriorityVendor = io.flow.internal.v0.models.ErpPriorityVendor;
|
|
23479
|
+
export declare type ErpPriorityVendorForm = io.flow.internal.v0.models.ErpPriorityVendorForm;
|
|
22503
23480
|
export declare type ErpVendor = io.flow.internal.v0.models.ErpVendor;
|
|
22504
23481
|
export declare type ErpVendorStatus = io.flow.internal.v0.models.ErpVendorStatus;
|
|
22505
23482
|
export declare type ErpVendorStatusEntity = io.flow.internal.v0.models.ErpVendorStatusEntity;
|
|
22506
|
-
export declare type
|
|
23483
|
+
export declare type ErpVendorStatusFlowFile = io.flow.internal.v0.models.ErpVendorStatusFlowFile;
|
|
23484
|
+
export declare type ErpVendorStatusPriorityFile = io.flow.internal.v0.models.ErpVendorStatusPriorityFile;
|
|
22507
23485
|
export declare type Event = io.flow.internal.v0.unions.Event;
|
|
22508
23486
|
export declare type EventType = io.flow.internal.v0.enums.EventType;
|
|
22509
23487
|
export declare type ExclusionRuleDeleted = io.flow.internal.v0.models.ExclusionRuleDeleted;
|
|
@@ -22616,6 +23594,7 @@ export declare type FlowLabProjectPostForm = io.flow.internal.v0.models.FlowLabP
|
|
|
22616
23594
|
export declare type FlowLabProjectPutForm = io.flow.internal.v0.models.FlowLabProjectPutForm;
|
|
22617
23595
|
export declare type FlowLabelSetting = io.flow.internal.v0.models.FlowLabelSetting;
|
|
22618
23596
|
export declare type FlowLabelSettingForm = io.flow.internal.v0.models.FlowLabelSettingForm;
|
|
23597
|
+
export declare type FlowShopValidationError = io.flow.internal.v0.models.FlowShopValidationError;
|
|
22619
23598
|
export declare type Format = io.flow.internal.v0.enums.Format;
|
|
22620
23599
|
export declare type FraudPendingReview = io.flow.internal.v0.models.FraudPendingReview;
|
|
22621
23600
|
export declare type FraudPendingReviewDeleted = io.flow.internal.v0.models.FraudPendingReviewDeleted;
|
|
@@ -22651,11 +23630,22 @@ export declare type FtpSettingsPaths = io.flow.internal.v0.models.FtpSettingsPat
|
|
|
22651
23630
|
export declare type FuelSurchargeServiceFeeAmountByWeightPutForm = io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm;
|
|
22652
23631
|
export declare type FuelSurchargeServiceFeePercentPutForm = io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm;
|
|
22653
23632
|
export declare type FuelSurchargeServiceFeePutForm = io.flow.internal.v0.unions.FuelSurchargeServiceFeePutForm;
|
|
23633
|
+
export declare type Fulfillment = io.flow.internal.v0.models.Fulfillment;
|
|
22654
23634
|
export declare type FulfillmentActionForm = io.flow.internal.v0.models.FulfillmentActionForm;
|
|
23635
|
+
export declare type FulfillmentBusiness = io.flow.internal.v0.models.FulfillmentBusiness;
|
|
22655
23636
|
export declare type FulfillmentCancel = io.flow.internal.v0.models.FulfillmentCancel;
|
|
22656
23637
|
export declare type FulfillmentInternalExperienceReference = io.flow.internal.v0.models.FulfillmentInternalExperienceReference;
|
|
23638
|
+
export declare type FulfillmentLine = io.flow.internal.v0.models.FulfillmentLine;
|
|
23639
|
+
export declare type FulfillmentOrigin = io.flow.internal.v0.models.FulfillmentOrigin;
|
|
23640
|
+
export declare type FulfillmentProof = io.flow.internal.v0.unions.FulfillmentProof;
|
|
23641
|
+
export declare type FulfillmentProofExternalFulfillmentProofReference = io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference;
|
|
23642
|
+
export declare type FulfillmentProofLabelTrackingReference = io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference;
|
|
23643
|
+
export declare type FulfillmentProofShippingNotificationReference = io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference;
|
|
23644
|
+
export declare type FulfillmentReference = io.flow.internal.v0.models.FulfillmentReference;
|
|
22657
23645
|
export declare type FulfillmentShipmentTracking = io.flow.internal.v0.models.FulfillmentShipmentTracking;
|
|
23646
|
+
export declare type FulfillmentShipping = io.flow.internal.v0.models.FulfillmentShipping;
|
|
22658
23647
|
export declare type FulfillmentSnapshot = io.flow.internal.v0.models.FulfillmentSnapshot;
|
|
23648
|
+
export declare type FulfillmentSubsidyBreakdown = io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
|
|
22659
23649
|
export declare type FxFee = io.flow.internal.v0.models.FxFee;
|
|
22660
23650
|
export declare type FxRevenueRecognition = io.flow.internal.v0.models.FxRevenueRecognition;
|
|
22661
23651
|
export declare type FxRevenueRecognitionAccount = io.flow.internal.v0.models.FxRevenueRecognitionAccount;
|
|
@@ -22667,6 +23657,7 @@ export declare type FxRevenueRecognitionSource = io.flow.internal.v0.models.FxRe
|
|
|
22667
23657
|
export declare type GenerateLoad = io.flow.internal.v0.unions.GenerateLoad;
|
|
22668
23658
|
export declare type GenerateLoadMultipleOrgs = io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
22669
23659
|
export declare type GenerateLoadSingleOrg = io.flow.internal.v0.models.GenerateLoadSingleOrg;
|
|
23660
|
+
export declare type GenericValidationError = io.flow.internal.v0.models.GenericValidationError;
|
|
22670
23661
|
export declare type GiftCard = io.flow.internal.v0.models.GiftCard;
|
|
22671
23662
|
export declare type GiftCardAuthorizationError = io.flow.internal.v0.models.GiftCardAuthorizationError;
|
|
22672
23663
|
export declare type GiftCardForm = io.flow.internal.v0.models.GiftCardForm;
|
|
@@ -22689,6 +23680,8 @@ export declare type HarmonizationItemClassificationUpserted = io.flow.internal.v
|
|
|
22689
23680
|
export declare type HarmonizationItemSummary = io.flow.internal.v0.models.HarmonizationItemSummary;
|
|
22690
23681
|
export declare type HarmonizationMlModelSummary = io.flow.internal.v0.models.HarmonizationMlModelSummary;
|
|
22691
23682
|
export declare type HarmonizationPhraseSuggestionRequestImport = io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport;
|
|
23683
|
+
export declare type HarmonizationThreshold = io.flow.internal.v0.models.HarmonizationThreshold;
|
|
23684
|
+
export declare type HarmonizationThresholdForm = io.flow.internal.v0.models.HarmonizationThresholdForm;
|
|
22692
23685
|
export declare type HarmonizationUnclassifiedStatistics = io.flow.internal.v0.models.HarmonizationUnclassifiedStatistics;
|
|
22693
23686
|
export declare type HarmonizeFullyRequestV2 = io.flow.internal.v0.models.HarmonizeFullyRequestV2;
|
|
22694
23687
|
export declare type HarmonizedItemsHs6Export = io.flow.internal.v0.models.HarmonizedItemsHs6Export;
|
|
@@ -22753,6 +23746,8 @@ export declare type HybrisCatalogItemsImportRequest = io.flow.internal.v0.models
|
|
|
22753
23746
|
export declare type HybrisCatalogItemsImportRequestData = io.flow.internal.v0.models.HybrisCatalogItemsImportRequestData;
|
|
22754
23747
|
export declare type ImportCompleted = io.flow.internal.v0.models.ImportCompleted;
|
|
22755
23748
|
export declare type ImportFailed = io.flow.internal.v0.models.ImportFailed;
|
|
23749
|
+
export declare type IndexAssignmentDeleted = io.flow.internal.v0.models.IndexAssignmentDeleted;
|
|
23750
|
+
export declare type IndexAssignmentUpserted = io.flow.internal.v0.models.IndexAssignmentUpserted;
|
|
22756
23751
|
export declare type IndexTaskType = io.flow.internal.v0.unions.IndexTaskType;
|
|
22757
23752
|
export declare type InitialInputDataSource = io.flow.internal.v0.enums.InitialInputDataSource;
|
|
22758
23753
|
export declare type InlineAuthorizationParameters = io.flow.internal.v0.unions.InlineAuthorizationParameters;
|
|
@@ -22823,6 +23818,7 @@ export declare type ItemSalesMarginPostForm = io.flow.internal.v0.models.ItemSal
|
|
|
22823
23818
|
export declare type ItemSalesMarginPutForm = io.flow.internal.v0.models.ItemSalesMarginPutForm;
|
|
22824
23819
|
export declare type ItemSalesMarginUpserted = io.flow.internal.v0.models.ItemSalesMarginUpserted;
|
|
22825
23820
|
export declare type ItemSalesMarginVersion = io.flow.internal.v0.models.ItemSalesMarginVersion;
|
|
23821
|
+
export declare type ItemSummary = io.flow.internal.v0.models.ItemSummary;
|
|
22826
23822
|
export declare type ItemType = io.flow.internal.v0.enums.ItemType;
|
|
22827
23823
|
export declare type ItemValuesForm = io.flow.internal.v0.models.ItemValuesForm;
|
|
22828
23824
|
export declare type ItemsShipped = io.flow.internal.v0.models.ItemsShipped;
|
|
@@ -22836,6 +23832,7 @@ export declare type LabProjectSettingsForm = io.flow.internal.v0.models.LabProje
|
|
|
22836
23832
|
export declare type LabProjectSettingsFormAcceptance = io.flow.internal.v0.models.LabProjectSettingsFormAcceptance;
|
|
22837
23833
|
export declare type LabelAliases = io.flow.internal.v0.models.LabelAliases;
|
|
22838
23834
|
export declare type LabelAssociation = io.flow.internal.v0.models.LabelAssociation;
|
|
23835
|
+
export declare type LabelBase = io.flow.internal.v0.models.LabelBase;
|
|
22839
23836
|
export declare type LabelBillingStrategy = io.flow.internal.v0.enums.LabelBillingStrategy;
|
|
22840
23837
|
export declare type LabelCancellationError = io.flow.internal.v0.models.LabelCancellationError;
|
|
22841
23838
|
export declare type LabelCancellationErrorCode = io.flow.internal.v0.enums.LabelCancellationErrorCode;
|
|
@@ -22843,6 +23840,7 @@ export declare type LabelCreationJob = io.flow.internal.v0.models.LabelCreationJ
|
|
|
22843
23840
|
export declare type LabelCreationJobSummary = io.flow.internal.v0.models.LabelCreationJobSummary;
|
|
22844
23841
|
export declare type LabelCreationRequestForm = io.flow.internal.v0.models.LabelCreationRequestForm;
|
|
22845
23842
|
export declare type LabelCreationStatus = io.flow.internal.v0.enums.LabelCreationStatus;
|
|
23843
|
+
export declare type LabelDestination = io.flow.internal.v0.models.LabelDestination;
|
|
22846
23844
|
export declare type LabelGenerationAddressFailureStatus = io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
|
|
22847
23845
|
export declare type LabelGenerationAddressFailureStatusUpdateForm = io.flow.internal.v0.models.LabelGenerationAddressFailureStatusUpdateForm;
|
|
22848
23846
|
export declare type LabelGenerationAddressFailures = io.flow.internal.v0.models.LabelGenerationAddressFailures;
|
|
@@ -22851,7 +23849,24 @@ export declare type LabelGenerationSettingsDeleted = io.flow.internal.v0.models.
|
|
|
22851
23849
|
export declare type LabelGenerationSettingsForm = io.flow.internal.v0.models.LabelGenerationSettingsForm;
|
|
22852
23850
|
export declare type LabelGenerationSettingsUpserted = io.flow.internal.v0.models.LabelGenerationSettingsUpserted;
|
|
22853
23851
|
export declare type LabelInputSource = io.flow.internal.v0.enums.LabelInputSource;
|
|
23852
|
+
export declare type LabelInvoiceRequest = io.flow.internal.v0.models.LabelInvoiceRequest;
|
|
23853
|
+
export declare type LabelInvoiceRequestDeleted = io.flow.internal.v0.models.LabelInvoiceRequestDeleted;
|
|
23854
|
+
export declare type LabelInvoiceRequestUpserted = io.flow.internal.v0.models.LabelInvoiceRequestUpserted;
|
|
23855
|
+
export declare type LabelInvoiceResponseForm = io.flow.internal.v0.models.LabelInvoiceResponseForm;
|
|
23856
|
+
export declare type LabelMetadata = io.flow.internal.v0.models.LabelMetadata;
|
|
23857
|
+
export declare type LabelRequestError = io.flow.internal.v0.models.LabelRequestError;
|
|
23858
|
+
export declare type LabelRequestErrorDeleted = io.flow.internal.v0.models.LabelRequestErrorDeleted;
|
|
23859
|
+
export declare type LabelRequestErrorHandlingResponsibility = io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
23860
|
+
export declare type LabelRequestErrorUpserted = io.flow.internal.v0.models.LabelRequestErrorUpserted;
|
|
23861
|
+
export declare type LabelResponseUnits = io.flow.internal.v0.models.LabelResponseUnits;
|
|
22854
23862
|
export declare type LabelSummary = io.flow.internal.v0.models.LabelSummary;
|
|
23863
|
+
export declare type LabelSurcharge = io.flow.internal.v0.models.LabelSurcharge;
|
|
23864
|
+
export declare type LabelSurchargeDetail = io.flow.internal.v0.unions.LabelSurchargeDetail;
|
|
23865
|
+
export declare type LabelSurchargeDetailFlat = io.flow.internal.v0.models.LabelSurchargeDetailFlat;
|
|
23866
|
+
export declare type LabelSurchargeDetailPerWeightUnit = io.flow.internal.v0.models.LabelSurchargeDetailPerWeightUnit;
|
|
23867
|
+
export declare type LabelSurchargeDetailPercentage = io.flow.internal.v0.models.LabelSurchargeDetailPercentage;
|
|
23868
|
+
export declare type LabelSurchargeForm = io.flow.internal.v0.models.LabelSurchargeForm;
|
|
23869
|
+
export declare type LabelSurchargeSingleForm = io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
22855
23870
|
export declare type LabelTaxonomy = io.flow.internal.v0.models.LabelTaxonomy;
|
|
22856
23871
|
export declare type LabelTrackingSummaryDeleted = io.flow.internal.v0.models.LabelTrackingSummaryDeleted;
|
|
22857
23872
|
export declare type LabelTrackingSummaryUpserted = io.flow.internal.v0.models.LabelTrackingSummaryUpserted;
|
|
@@ -22859,6 +23874,7 @@ export declare type LabelTransaction = io.flow.internal.v0.models.LabelTransacti
|
|
|
22859
23874
|
export declare type LabelTransactionDeleted = io.flow.internal.v0.models.LabelTransactionDeleted;
|
|
22860
23875
|
export declare type LabelTransactionType = io.flow.internal.v0.enums.LabelTransactionType;
|
|
22861
23876
|
export declare type LabelTransactionUpserted = io.flow.internal.v0.models.LabelTransactionUpserted;
|
|
23877
|
+
export declare type LabelUnits = io.flow.internal.v0.models.LabelUnits;
|
|
22862
23878
|
export declare type LabeledContent = io.flow.internal.v0.models.LabeledContent;
|
|
22863
23879
|
export declare type LabelsPrediction = io.flow.internal.v0.models.LabelsPrediction;
|
|
22864
23880
|
export declare type LandedCostItem = io.flow.internal.v0.models.LandedCostItem;
|
|
@@ -22898,7 +23914,6 @@ export declare type LocalizedPriceBookItemData = io.flow.internal.v0.models.Loca
|
|
|
22898
23914
|
export declare type LocalizedPriceBookItemDeleted = io.flow.internal.v0.models.LocalizedPriceBookItemDeleted;
|
|
22899
23915
|
export declare type LocalizedPriceBookItemUpserted = io.flow.internal.v0.models.LocalizedPriceBookItemUpserted;
|
|
22900
23916
|
export declare type Location = io.flow.internal.v0.models.Location;
|
|
22901
|
-
export declare type LogisticsCenterCheck = io.flow.internal.v0.models.LogisticsCenterCheck;
|
|
22902
23917
|
export declare type Logo = io.flow.internal.v0.models.Logo;
|
|
22903
23918
|
export declare type LoyaltyProgram = io.flow.internal.v0.models.LoyaltyProgram;
|
|
22904
23919
|
export declare type LoyaltyProgramMessage = io.flow.internal.v0.models.LoyaltyProgramMessage;
|
|
@@ -22975,8 +23990,19 @@ export declare type MarketingGatewaySupportedChannelDetails = io.flow.internal.v
|
|
|
22975
23990
|
export declare type MarketsOrder = io.flow.internal.v0.models.MarketsOrder;
|
|
22976
23991
|
export declare type MerchantApplicationSummaries = io.flow.internal.v0.models.MerchantApplicationSummaries;
|
|
22977
23992
|
export declare type MerchantApplicationSummary = io.flow.internal.v0.models.MerchantApplicationSummary;
|
|
23993
|
+
export declare type MerchantCharges = io.flow.internal.v0.models.MerchantCharges;
|
|
23994
|
+
export declare type MerchantFees = io.flow.internal.v0.models.MerchantFees;
|
|
23995
|
+
export declare type MerchantGuidAssignment = io.flow.internal.v0.models.MerchantGuidAssignment;
|
|
23996
|
+
export declare type MerchantGuidAssignmentDeleted = io.flow.internal.v0.models.MerchantGuidAssignmentDeleted;
|
|
23997
|
+
export declare type MerchantGuidAssignmentUpserted = io.flow.internal.v0.models.MerchantGuidAssignmentUpserted;
|
|
22978
23998
|
export declare type MerchantOfRecordEntitySettings = io.flow.internal.v0.models.MerchantOfRecordEntitySettings;
|
|
22979
23999
|
export declare type MerchantOfRecordEntitySettingsForm = io.flow.internal.v0.models.MerchantOfRecordEntitySettingsForm;
|
|
24000
|
+
export declare type MerchantSearchResult = io.flow.internal.v0.models.MerchantSearchResult;
|
|
24001
|
+
export declare type MerchantSubsidies = io.flow.internal.v0.models.MerchantSubsidies;
|
|
24002
|
+
export declare type MerchantSummary = io.flow.internal.v0.models.MerchantSummary;
|
|
24003
|
+
export declare type MetadataProposition = io.flow.internal.v0.models.MetadataProposition;
|
|
24004
|
+
export declare type MetadataRatecard = io.flow.internal.v0.models.MetadataRatecard;
|
|
24005
|
+
export declare type MetadataWeights = io.flow.internal.v0.models.MetadataWeights;
|
|
22980
24006
|
export declare type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|
|
22981
24007
|
export declare type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
|
|
22982
24008
|
export declare type NextBillingStatement = io.flow.internal.v0.models.NextBillingStatement;
|
|
@@ -23042,10 +24068,12 @@ export declare type OrderRevenueTimelineDataPoint = io.flow.internal.v0.models.O
|
|
|
23042
24068
|
export declare type OrderServiceChangeCsvForm = io.flow.internal.v0.models.OrderServiceChangeCsvForm;
|
|
23043
24069
|
export declare type OrderShipped = io.flow.internal.v0.models.OrderShipped;
|
|
23044
24070
|
export declare type OrderSubmissionForm = io.flow.internal.v0.models.OrderSubmissionForm;
|
|
24071
|
+
export declare type OrderSummary = io.flow.internal.v0.models.OrderSummary;
|
|
23045
24072
|
export declare type OrderTransaction = io.flow.internal.v0.models.OrderTransaction;
|
|
23046
24073
|
export declare type OrderTransactionDeleted = io.flow.internal.v0.models.OrderTransactionDeleted;
|
|
23047
24074
|
export declare type OrderTransactionType = io.flow.internal.v0.enums.OrderTransactionType;
|
|
23048
24075
|
export declare type OrderTransactionUpserted = io.flow.internal.v0.models.OrderTransactionUpserted;
|
|
24076
|
+
export declare type OrderValidationError = io.flow.internal.v0.models.OrderValidationError;
|
|
23049
24077
|
export declare type OrganizationAccount = io.flow.internal.v0.models.OrganizationAccount;
|
|
23050
24078
|
export declare type OrganizationAccountDeleted = io.flow.internal.v0.models.OrganizationAccountDeleted;
|
|
23051
24079
|
export declare type OrganizationAccountUpsertedV2 = io.flow.internal.v0.models.OrganizationAccountUpsertedV2;
|
|
@@ -23064,6 +24092,10 @@ export declare type OrganizationCurrencySettingDeleted = io.flow.internal.v0.mod
|
|
|
23064
24092
|
export declare type OrganizationCurrencySettingForm = io.flow.internal.v0.models.OrganizationCurrencySettingForm;
|
|
23065
24093
|
export declare type OrganizationCurrencySettingUpserted = io.flow.internal.v0.models.OrganizationCurrencySettingUpserted;
|
|
23066
24094
|
export declare type OrganizationCurrencySettingVersion = io.flow.internal.v0.models.OrganizationCurrencySettingVersion;
|
|
24095
|
+
export declare type OrganizationDeactivation = io.flow.internal.v0.models.OrganizationDeactivation;
|
|
24096
|
+
export declare type OrganizationDeactivationDeleted = io.flow.internal.v0.models.OrganizationDeactivationDeleted;
|
|
24097
|
+
export declare type OrganizationDeactivationForm = io.flow.internal.v0.models.OrganizationDeactivationForm;
|
|
24098
|
+
export declare type OrganizationDeactivationUpserted = io.flow.internal.v0.models.OrganizationDeactivationUpserted;
|
|
23067
24099
|
export declare type OrganizationDebugTransaction = io.flow.internal.v0.models.OrganizationDebugTransaction;
|
|
23068
24100
|
export declare type OrganizationInvitationAcceptForm = io.flow.internal.v0.models.OrganizationInvitationAcceptForm;
|
|
23069
24101
|
export declare type OrganizationMembershipCopy = io.flow.internal.v0.models.OrganizationMembershipCopy;
|
|
@@ -23096,6 +24128,7 @@ export declare type OrganizationSettingsForm = io.flow.internal.v0.models.Organi
|
|
|
23096
24128
|
export declare type OrganizationStatusChange = io.flow.internal.v0.models.OrganizationStatusChange;
|
|
23097
24129
|
export declare type OrganizationStatusChangeDeleted = io.flow.internal.v0.models.OrganizationStatusChangeDeleted;
|
|
23098
24130
|
export declare type OrganizationStatusChangeUpserted = io.flow.internal.v0.models.OrganizationStatusChangeUpserted;
|
|
24131
|
+
export declare type OrganizationsAuditCheckReport = io.flow.internal.v0.models.OrganizationsAuditCheckReport;
|
|
23099
24132
|
export declare type OutputStyle = io.flow.internal.v0.enums.OutputStyle;
|
|
23100
24133
|
export declare type Owner = io.flow.internal.v0.enums.Owner;
|
|
23101
24134
|
export declare type Partner = io.flow.internal.v0.models.Partner;
|
|
@@ -23130,6 +24163,7 @@ export declare type PaymentSummaryStatus = io.flow.internal.v0.enums.PaymentSumm
|
|
|
23130
24163
|
export declare type PaymentSummaryType = io.flow.internal.v0.enums.PaymentSummaryType;
|
|
23131
24164
|
export declare type PaymentSummaryV2 = io.flow.internal.v0.models.PaymentSummaryV2;
|
|
23132
24165
|
export declare type PaymentTerm = io.flow.internal.v0.enums.PaymentTerm;
|
|
24166
|
+
export declare type PayoutStatusCounts = io.flow.internal.v0.models.PayoutStatusCounts;
|
|
23133
24167
|
export declare type PaypalAccount = io.flow.internal.v0.models.PaypalAccount;
|
|
23134
24168
|
export declare type PaypalAccountModificationForm = io.flow.internal.v0.models.PaypalAccountModificationForm;
|
|
23135
24169
|
export declare type PaypalAccountPutForm = io.flow.internal.v0.models.PaypalAccountPutForm;
|
|
@@ -23200,6 +24234,7 @@ export declare type ProductHarmonization = io.flow.internal.v0.models.ProductHar
|
|
|
23200
24234
|
export declare type ProductHarmonizationForm = io.flow.internal.v0.models.ProductHarmonizationForm;
|
|
23201
24235
|
export declare type ProductLabels = io.flow.internal.v0.models.ProductLabels;
|
|
23202
24236
|
export declare type ProductListSettingsForm = io.flow.internal.v0.models.ProductListSettingsForm;
|
|
24237
|
+
export declare type ProductRestrictionResultValidationError = io.flow.internal.v0.models.ProductRestrictionResultValidationError;
|
|
23203
24238
|
export declare type ProductReviewHistory = io.flow.internal.v0.models.ProductReviewHistory;
|
|
23204
24239
|
export declare type ProductStatus = io.flow.internal.v0.enums.ProductStatus;
|
|
23205
24240
|
export declare type PromptAction = io.flow.internal.v0.enums.PromptAction;
|
|
@@ -23211,6 +24246,7 @@ export declare type ProofOfPostingExternallyFulfilled = io.flow.internal.v0.mode
|
|
|
23211
24246
|
export declare type ProofOfPostingFulfilled = io.flow.internal.v0.models.ProofOfPostingFulfilled;
|
|
23212
24247
|
export declare type ProofOfPostingOrderCancellation = io.flow.internal.v0.models.ProofOfPostingOrderCancellation;
|
|
23213
24248
|
export declare type ProofOfPostingShippingNotification = io.flow.internal.v0.models.ProofOfPostingShippingNotification;
|
|
24249
|
+
export declare type QueuedRecord = io.flow.internal.v0.models.QueuedRecord;
|
|
23214
24250
|
export declare type QueuedRecordType = io.flow.internal.v0.enums.QueuedRecordType;
|
|
23215
24251
|
export declare type QuoteRequest = io.flow.internal.v0.models.QuoteRequest;
|
|
23216
24252
|
export declare type QuoteRequestType = io.flow.internal.v0.enums.QuoteRequestType;
|
|
@@ -23228,6 +24264,7 @@ export declare type RateFreshnessSummaryDeleted = io.flow.internal.v0.models.Rat
|
|
|
23228
24264
|
export declare type RateFreshnessSummaryUpserted = io.flow.internal.v0.models.RateFreshnessSummaryUpserted;
|
|
23229
24265
|
export declare type RateLevel = io.flow.internal.v0.models.RateLevel;
|
|
23230
24266
|
export declare type RateLevelForm = io.flow.internal.v0.models.RateLevelForm;
|
|
24267
|
+
export declare type RateLevelKey = io.flow.internal.v0.enums.RateLevelKey;
|
|
23231
24268
|
export declare type RateLevelOrganization = io.flow.internal.v0.models.RateLevelOrganization;
|
|
23232
24269
|
export declare type RateLevelOrganizationForm = io.flow.internal.v0.models.RateLevelOrganizationForm;
|
|
23233
24270
|
export declare type RateLevelRatecard = io.flow.internal.v0.models.RateLevelRatecard;
|
|
@@ -23277,9 +24314,13 @@ export declare type RedirectReason = io.flow.internal.v0.enums.RedirectReason;
|
|
|
23277
24314
|
export declare type RegisteredExporterTariffEligibilityData = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData;
|
|
23278
24315
|
export declare type RegisteredExporterTariffEligibilityForm = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
|
|
23279
24316
|
export declare type RejectionReason = io.flow.internal.v0.enums.RejectionReason;
|
|
24317
|
+
export declare type Report = io.flow.internal.v0.models.Report;
|
|
24318
|
+
export declare type ReportForm = io.flow.internal.v0.models.ReportForm;
|
|
23280
24319
|
export declare type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
|
|
23281
24320
|
export declare type ReportRuleDecision = io.flow.internal.v0.models.ReportRuleDecision;
|
|
24321
|
+
export declare type ReportStatus = io.flow.internal.v0.enums.ReportStatus;
|
|
23282
24322
|
export declare type ReportSummary = io.flow.internal.v0.models.ReportSummary;
|
|
24323
|
+
export declare type ReportingDetails = io.flow.internal.v0.models.ReportingDetails;
|
|
23283
24324
|
export declare type ReportingScheme = io.flow.internal.v0.enums.ReportingScheme;
|
|
23284
24325
|
export declare type RequeueRequestForm = io.flow.internal.v0.models.RequeueRequestForm;
|
|
23285
24326
|
export declare type ResponsibleParty = io.flow.internal.v0.enums.ResponsibleParty;
|
|
@@ -23312,6 +24353,8 @@ export declare type ResyncByDestinations = io.flow.internal.v0.models.ResyncByDe
|
|
|
23312
24353
|
export declare type ResyncByHs6Destinations = io.flow.internal.v0.models.ResyncByHs6Destinations;
|
|
23313
24354
|
export declare type ResyncByHs6Origin = io.flow.internal.v0.models.ResyncByHs6Origin;
|
|
23314
24355
|
export declare type ResyncFallbackRates = io.flow.internal.v0.models.ResyncFallbackRates;
|
|
24356
|
+
export declare type Retracking = io.flow.internal.v0.models.Retracking;
|
|
24357
|
+
export declare type RetrackingForm = io.flow.internal.v0.models.RetrackingForm;
|
|
23315
24358
|
export declare type ReturnPolicyDeleted = io.flow.internal.v0.models.ReturnPolicyDeleted;
|
|
23316
24359
|
export declare type ReturnPolicyItemResultDeleted = io.flow.internal.v0.models.ReturnPolicyItemResultDeleted;
|
|
23317
24360
|
export declare type ReturnPolicyItemResultUpserted = io.flow.internal.v0.models.ReturnPolicyItemResultUpserted;
|
|
@@ -23323,6 +24366,8 @@ export declare type RoutingAccount = io.flow.internal.v0.models.RoutingAccount;
|
|
|
23323
24366
|
export declare type RoutingEntity = io.flow.internal.v0.unions.RoutingEntity;
|
|
23324
24367
|
export declare type RoutingMerchant = io.flow.internal.v0.models.RoutingMerchant;
|
|
23325
24368
|
export declare type RoutingProcessor = io.flow.internal.v0.models.RoutingProcessor;
|
|
24369
|
+
export declare type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
|
|
24370
|
+
export declare type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
|
|
23326
24371
|
export declare type Scope = io.flow.internal.v0.enums.Scope;
|
|
23327
24372
|
export declare type Screen = io.flow.internal.v0.models.Screen;
|
|
23328
24373
|
export declare type ScreenForm = io.flow.internal.v0.models.ScreenForm;
|
|
@@ -23348,6 +24393,7 @@ export declare type SfExpress = io.flow.internal.v0.models.SfExpress;
|
|
|
23348
24393
|
export declare type ShippedItemValue = io.flow.internal.v0.models.ShippedItemValue;
|
|
23349
24394
|
export declare type ShipperAccountInfoForm = io.flow.internal.v0.models.ShipperAccountInfoForm;
|
|
23350
24395
|
export declare type ShippingLane = io.flow.internal.v0.models.ShippingLane;
|
|
24396
|
+
export declare type ShippingMethodReference = io.flow.internal.v0.models.ShippingMethodReference;
|
|
23351
24397
|
export declare type Shop = io.flow.internal.v0.models.Shop;
|
|
23352
24398
|
export declare type ShopForm = io.flow.internal.v0.models.ShopForm;
|
|
23353
24399
|
export declare type ShopVersion = io.flow.internal.v0.models.ShopVersion;
|
|
@@ -23369,11 +24415,18 @@ export declare type ShopifyGiftCardReversalForm = io.flow.internal.v0.models.Sho
|
|
|
23369
24415
|
export declare type ShopifyGrantStatus = io.flow.internal.v0.enums.ShopifyGrantStatus;
|
|
23370
24416
|
export declare type ShopifyGrantsCheck = io.flow.internal.v0.models.ShopifyGrantsCheck;
|
|
23371
24417
|
export declare type ShopifyMarketsDangerousGoods = io.flow.internal.v0.enums.ShopifyMarketsDangerousGoods;
|
|
24418
|
+
export declare type ShopifyMarketsDiscrepancy = io.flow.internal.v0.models.ShopifyMarketsDiscrepancy;
|
|
24419
|
+
export declare type ShopifyMarketsDiscrepancyData = io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData;
|
|
23372
24420
|
export declare type ShopifyMarketsHtsNumberAvailable = io.flow.internal.v0.enums.ShopifyMarketsHtsNumberAvailable;
|
|
23373
24421
|
export declare type ShopifyMarketsIncorporationCountry = io.flow.internal.v0.models.ShopifyMarketsIncorporationCountry;
|
|
24422
|
+
export declare type ShopifyMarketsInternalOrderMetrics = io.flow.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
|
|
24423
|
+
export declare type ShopifyMarketsMetricsDeleted = io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted;
|
|
24424
|
+
export declare type ShopifyMarketsMetricsUpserted = io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted;
|
|
23374
24425
|
export declare type ShopifyMarketsOrder = io.flow.internal.v0.models.ShopifyMarketsOrder;
|
|
23375
24426
|
export declare type ShopifyMarketsOrderDeleted = io.flow.internal.v0.models.ShopifyMarketsOrderDeleted;
|
|
23376
24427
|
export declare type ShopifyMarketsOrderUpserted = io.flow.internal.v0.models.ShopifyMarketsOrderUpserted;
|
|
24428
|
+
export declare type ShopifyMarketsOrdersMetrics = io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics;
|
|
24429
|
+
export declare type ShopifyMarketsQueuedRecordType = io.flow.internal.v0.enums.ShopifyMarketsQueuedRecordType;
|
|
23377
24430
|
export declare type ShopifyMarketsShop = io.flow.internal.v0.models.ShopifyMarketsShop;
|
|
23378
24431
|
export declare type ShopifyMarketsShopDeleted = io.flow.internal.v0.models.ShopifyMarketsShopDeleted;
|
|
23379
24432
|
export declare type ShopifyMarketsShopForm = io.flow.internal.v0.models.ShopifyMarketsShopForm;
|
|
@@ -23381,6 +24434,7 @@ export declare type ShopifyMarketsShopStatisticsDeleted = io.flow.internal.v0.mo
|
|
|
23381
24434
|
export declare type ShopifyMarketsShopStatisticsUpserted = io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted;
|
|
23382
24435
|
export declare type ShopifyMarketsShopSummary = io.flow.internal.v0.models.ShopifyMarketsShopSummary;
|
|
23383
24436
|
export declare type ShopifyMarketsShopUpserted = io.flow.internal.v0.models.ShopifyMarketsShopUpserted;
|
|
24437
|
+
export declare type ShopifyMarketsShopifyOrderMetrics = io.flow.internal.v0.models.ShopifyMarketsShopifyOrderMetrics;
|
|
23384
24438
|
export declare type ShopifyMarketsSubsidiaryCompany = io.flow.internal.v0.models.ShopifyMarketsSubsidiaryCompany;
|
|
23385
24439
|
export declare type ShopifyMarketsSync = io.flow.internal.v0.models.ShopifyMarketsSync;
|
|
23386
24440
|
export declare type ShopifyMarketsTradeSector = io.flow.internal.v0.enums.ShopifyMarketsTradeSector;
|
|
@@ -23442,9 +24496,12 @@ export declare type ShopifyService = io.flow.internal.v0.enums.ShopifyService;
|
|
|
23442
24496
|
export declare type ShopifyShopDeleted = io.flow.internal.v0.models.ShopifyShopDeleted;
|
|
23443
24497
|
export declare type ShopifyShopStatistics = io.flow.internal.v0.models.ShopifyShopStatistics;
|
|
23444
24498
|
export declare type ShopifyShopUpserted = io.flow.internal.v0.models.ShopifyShopUpserted;
|
|
24499
|
+
export declare type ShopifyStorePassword = io.flow.internal.v0.models.ShopifyStorePassword;
|
|
23445
24500
|
export declare type ShopifyWebhook = io.flow.internal.v0.models.ShopifyWebhook;
|
|
23446
24501
|
export declare type ShopifyWebhookEvent = io.flow.internal.v0.models.ShopifyWebhookEvent;
|
|
23447
24502
|
export declare type ShopifyWebhookForm = io.flow.internal.v0.models.ShopifyWebhookForm;
|
|
24503
|
+
export declare type ShopperFees = io.flow.internal.v0.models.ShopperFees;
|
|
24504
|
+
export declare type ShopperSummary = io.flow.internal.v0.models.ShopperSummary;
|
|
23448
24505
|
export declare type SignificanceAction = io.flow.internal.v0.enums.SignificanceAction;
|
|
23449
24506
|
export declare type SimpleAccountReference = io.flow.internal.v0.models.SimpleAccountReference;
|
|
23450
24507
|
export declare type SimpleRoundingStrategy = io.flow.internal.v0.enums.SimpleRoundingStrategy;
|
|
@@ -23577,6 +24634,9 @@ export declare type TransactionAdjustment = io.flow.internal.v0.models.Transacti
|
|
|
23577
24634
|
export declare type TransactionAdjustmentForm = io.flow.internal.v0.models.TransactionAdjustmentForm;
|
|
23578
24635
|
export declare type TransactionPostingMethod = io.flow.internal.v0.enums.TransactionPostingMethod;
|
|
23579
24636
|
export declare type TransactionReference = io.flow.internal.v0.models.TransactionReference;
|
|
24637
|
+
export declare type TransactionStatement = io.flow.internal.v0.models.TransactionStatement;
|
|
24638
|
+
export declare type TransactionStatementDeleted = io.flow.internal.v0.models.TransactionStatementDeleted;
|
|
24639
|
+
export declare type TransactionStatementUpserted = io.flow.internal.v0.models.TransactionStatementUpserted;
|
|
23580
24640
|
export declare type TransactionSummary = io.flow.internal.v0.unions.TransactionSummary;
|
|
23581
24641
|
export declare type TransferMethod = io.flow.internal.v0.enums.TransferMethod;
|
|
23582
24642
|
export declare type TransferTransaction = io.flow.internal.v0.models.TransferTransaction;
|
|
@@ -23585,6 +24645,11 @@ export declare type TransferTransactionDeletedV2 = io.flow.internal.v0.models.Tr
|
|
|
23585
24645
|
export declare type TransferTransactionUpserted = io.flow.internal.v0.models.TransferTransactionUpserted;
|
|
23586
24646
|
export declare type TransferTransactionUpsertedV2 = io.flow.internal.v0.models.TransferTransactionUpsertedV2;
|
|
23587
24647
|
export declare type Tribe = io.flow.internal.v0.models.Tribe;
|
|
24648
|
+
export declare type TrueUpLabelSummary = io.flow.internal.v0.models.TrueUpLabelSummary;
|
|
24649
|
+
export declare type TrueUpSurchargeType = io.flow.internal.v0.enums.TrueUpSurchargeType;
|
|
24650
|
+
export declare type UnassignedMerchantGuid = io.flow.internal.v0.models.UnassignedMerchantGuid;
|
|
24651
|
+
export declare type UnassignedMerchantGuidDeleted = io.flow.internal.v0.models.UnassignedMerchantGuidDeleted;
|
|
24652
|
+
export declare type UnassignedMerchantGuidUpserted = io.flow.internal.v0.models.UnassignedMerchantGuidUpserted;
|
|
23588
24653
|
export declare type UnclassifiedProductStatistic = io.flow.internal.v0.models.UnclassifiedProductStatistic;
|
|
23589
24654
|
export declare type UnclassifiedProductStatus = io.flow.internal.v0.enums.UnclassifiedProductStatus;
|
|
23590
24655
|
export declare type UnclassifiedProductsPurgeRequest = io.flow.internal.v0.models.UnclassifiedProductsPurgeRequest;
|
|
@@ -23619,9 +24684,14 @@ export declare type VirtualCardProvider = io.flow.internal.v0.models.VirtualCard
|
|
|
23619
24684
|
export declare type VirtualCardProviderDeleted = io.flow.internal.v0.models.VirtualCardProviderDeleted;
|
|
23620
24685
|
export declare type VirtualCardProviderUpserted = io.flow.internal.v0.models.VirtualCardProviderUpserted;
|
|
23621
24686
|
export declare type VirtualCardTransaction = io.flow.internal.v0.models.VirtualCardTransaction;
|
|
24687
|
+
export declare type WashCarrierActualFile = io.flow.internal.v0.models.WashCarrierActualFile;
|
|
24688
|
+
export declare type WashCarrierActualFileForm = io.flow.internal.v0.models.WashCarrierActualFileForm;
|
|
24689
|
+
export declare type WashCarrierActualFileStatus = io.flow.internal.v0.enums.WashCarrierActualFileStatus;
|
|
23622
24690
|
export declare type WashExportRequest = io.flow.internal.v0.models.WashExportRequest;
|
|
23623
24691
|
export declare type WasteElectricalAndElectronicEquipmentComplianceData = io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceData;
|
|
23624
24692
|
export declare type WasteElectricalAndElectronicEquipmentComplianceForm = io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceForm;
|
|
23625
24693
|
export declare type Webhook = io.flow.internal.v0.models.Webhook;
|
|
24694
|
+
export declare type WeightsDead = io.flow.internal.v0.models.WeightsDead;
|
|
24695
|
+
export declare type WeightsDimensional = io.flow.internal.v0.models.WeightsDimensional;
|
|
23626
24696
|
export declare type WholeOrderActionForm = io.flow.internal.v0.models.WholeOrderActionForm;
|
|
23627
24697
|
export {};
|