@flowio/types 11.24.66 → 11.24.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +1351 -250
- package/dist/api.d.ts +368 -32
- package/package.json +2 -2
- package/src/api-internal.ts +1843 -322
- package/src/api.ts +532 -32
package/dist/api-internal.d.ts
CHANGED
|
@@ -200,6 +200,11 @@ declare namespace io.flow.RESERVED_WORD_return.v0.models {
|
|
|
200
200
|
declare namespace io.flow.RESERVED_WORD_return.v0.unions {
|
|
201
201
|
type ReturnSource = io.flow.RESERVED_WORD_return.v0.models.ReturnSourceFlow | io.flow.RESERVED_WORD_return.v0.models.ReturnSourceExternalVendor;
|
|
202
202
|
}
|
|
203
|
+
declare namespace io.flow.units.v0.enums {
|
|
204
|
+
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
205
|
+
type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
|
|
206
|
+
type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
|
|
207
|
+
}
|
|
203
208
|
declare namespace io.flow.order.price.v0.enums {
|
|
204
209
|
type OrderPriceDetailComponentKey = 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge';
|
|
205
210
|
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges';
|
|
@@ -226,156 +231,6 @@ declare namespace io.flow.order.price.v0.models {
|
|
|
226
231
|
readonly name?: string;
|
|
227
232
|
}
|
|
228
233
|
}
|
|
229
|
-
declare namespace io.flow.error.v0.enums {
|
|
230
|
-
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
231
|
-
}
|
|
232
|
-
declare namespace io.flow.error.v0.models {
|
|
233
|
-
interface GenericError {
|
|
234
|
-
readonly code: io.flow.error.v0.enums.GenericErrorCode;
|
|
235
|
-
readonly messages: string[];
|
|
236
|
-
}
|
|
237
|
-
}
|
|
238
|
-
declare namespace io.flow.price.v0.enums {
|
|
239
|
-
type LevyComponent = 'goods' | 'duty' | 'insurance' | 'freight' | 'vat';
|
|
240
|
-
type LevyStrategy = 'minimum' | 'average' | 'maximum';
|
|
241
|
-
type PriceAccuracy = 'calculated' | 'estimated_from_partial_destination';
|
|
242
|
-
type PriceDetailComponentKey = 'base_price' | 'discount' | 'currency_margin' | 'percent_item_margin' | 'fixed_item_margin' | 'duties_item_price' | 'duties_added_margin' | 'duties_rounding' | 'duties_deminimis' | 'vat_item_price' | 'vat_added_margin' | 'vat_rounding' | 'vat_duties_item_price' | 'vat_duties_added_margin' | 'vat_duties_rounding' | 'vat_deminimis' | 'item_price_percent_sales_margin' | 'margins_percent_sales_margin' | 'rounding_percent_sales_margin' | 'vat_percent_sales_margin' | 'vat_duty_percent_sales_margin' | 'duty_percent_sales_margin';
|
|
243
|
-
type PriceDetailKey = 'item_price' | 'margins' | 'vat' | 'duty' | 'rounding' | 'adjustment';
|
|
244
|
-
type PricingLevySetting = 'included' | 'displayed' | 'ignored';
|
|
245
|
-
}
|
|
246
|
-
declare namespace io.flow.price.v0.models {
|
|
247
|
-
interface CurrencyFormat {
|
|
248
|
-
readonly symbol: io.flow.common.v0.enums.CurrencySymbolFormat;
|
|
249
|
-
readonly label_formatters: io.flow.common.v0.enums.CurrencyLabelFormatter[];
|
|
250
|
-
}
|
|
251
|
-
interface DeminimisPerItem {
|
|
252
|
-
readonly discriminator: 'deminimis_per_item';
|
|
253
|
-
readonly currency: string;
|
|
254
|
-
readonly minimum?: number;
|
|
255
|
-
readonly maximum?: number;
|
|
256
|
-
}
|
|
257
|
-
interface DeminimisSimple {
|
|
258
|
-
readonly discriminator: 'deminimis_simple';
|
|
259
|
-
readonly value?: number;
|
|
260
|
-
readonly currency: string;
|
|
261
|
-
readonly components: io.flow.price.v0.enums.LevyComponent[];
|
|
262
|
-
readonly minimum?: number;
|
|
263
|
-
}
|
|
264
|
-
interface Duty {
|
|
265
|
-
readonly rate: number;
|
|
266
|
-
readonly components: io.flow.price.v0.enums.LevyComponent[];
|
|
267
|
-
readonly deminimis?: io.flow.price.v0.unions.Deminimis;
|
|
268
|
-
readonly name?: string;
|
|
269
|
-
}
|
|
270
|
-
interface LocalPriceDetails {
|
|
271
|
-
readonly base: io.flow.price.v0.models.PriceDetails;
|
|
272
|
-
readonly local: io.flow.price.v0.models.PriceDetails;
|
|
273
|
-
readonly discount?: io.flow.price.v0.models.PriceDetail;
|
|
274
|
-
readonly local_before_discount?: io.flow.price.v0.models.PriceDetail;
|
|
275
|
-
}
|
|
276
|
-
interface PriceBook {
|
|
277
|
-
readonly id: string;
|
|
278
|
-
readonly key: string;
|
|
279
|
-
readonly currency: string;
|
|
280
|
-
readonly name: string;
|
|
281
|
-
readonly includes: io.flow.common.v0.models.IncludedLevies;
|
|
282
|
-
readonly status: io.flow.common.v0.enums.PriceBookStatus;
|
|
283
|
-
}
|
|
284
|
-
interface PriceBookForm {
|
|
285
|
-
readonly currency: string;
|
|
286
|
-
readonly name: string;
|
|
287
|
-
readonly includes: io.flow.common.v0.enums.IncludedLevyKey;
|
|
288
|
-
readonly status?: io.flow.common.v0.enums.PriceBookStatus;
|
|
289
|
-
}
|
|
290
|
-
interface PriceBookItem {
|
|
291
|
-
readonly id: string;
|
|
292
|
-
readonly key: string;
|
|
293
|
-
readonly price_book: io.flow.price.v0.models.PriceBookReference;
|
|
294
|
-
readonly price: io.flow.common.v0.models.Price;
|
|
295
|
-
readonly item_number: string;
|
|
296
|
-
readonly schedule: io.flow.price.v0.models.PriceBookItemSchedule;
|
|
297
|
-
readonly item_attributes?: Record<string, string>;
|
|
298
|
-
}
|
|
299
|
-
interface PriceBookItemForm {
|
|
300
|
-
readonly price_book_key: string;
|
|
301
|
-
readonly item_number: string;
|
|
302
|
-
readonly amount: number;
|
|
303
|
-
readonly schedule?: io.flow.price.v0.models.PriceBookItemSchedule;
|
|
304
|
-
readonly item_attributes?: Record<string, string>;
|
|
305
|
-
}
|
|
306
|
-
interface PriceBookItemQueryForm {
|
|
307
|
-
readonly price_book_key: string;
|
|
308
|
-
readonly item_query: string;
|
|
309
|
-
readonly amount: number;
|
|
310
|
-
readonly schedule?: io.flow.price.v0.models.PriceBookItemSchedule;
|
|
311
|
-
readonly item_attributes?: Record<string, string>;
|
|
312
|
-
}
|
|
313
|
-
interface PriceBookItemSchedule {
|
|
314
|
-
readonly starts_at: string;
|
|
315
|
-
readonly ends_at?: string;
|
|
316
|
-
}
|
|
317
|
-
interface PriceBookReference {
|
|
318
|
-
readonly id: string;
|
|
319
|
-
readonly key: string;
|
|
320
|
-
}
|
|
321
|
-
interface PriceCheck {
|
|
322
|
-
readonly display: io.flow.price.v0.models.LocalPriceDetails;
|
|
323
|
-
readonly final: io.flow.price.v0.models.LocalPriceDetails;
|
|
324
|
-
}
|
|
325
|
-
interface PriceDetail {
|
|
326
|
-
readonly key: io.flow.price.v0.enums.PriceDetailKey;
|
|
327
|
-
readonly components: io.flow.price.v0.models.PriceDetailComponent[];
|
|
328
|
-
readonly amount: number;
|
|
329
|
-
readonly label: string;
|
|
330
|
-
readonly name?: string;
|
|
331
|
-
readonly basis?: number;
|
|
332
|
-
}
|
|
333
|
-
interface PriceDetailComponent {
|
|
334
|
-
readonly key: io.flow.price.v0.enums.PriceDetailComponentKey;
|
|
335
|
-
readonly amount: number;
|
|
336
|
-
readonly label: string;
|
|
337
|
-
readonly name?: string;
|
|
338
|
-
}
|
|
339
|
-
interface PriceDetails {
|
|
340
|
-
readonly currency: string;
|
|
341
|
-
readonly item_price: io.flow.price.v0.models.PriceDetail;
|
|
342
|
-
readonly margins: io.flow.price.v0.models.PriceDetail;
|
|
343
|
-
readonly vat: io.flow.price.v0.models.PriceDetail;
|
|
344
|
-
readonly duty: io.flow.price.v0.models.PriceDetail;
|
|
345
|
-
readonly rounding: io.flow.price.v0.models.PriceDetail;
|
|
346
|
-
readonly price: io.flow.common.v0.models.Price;
|
|
347
|
-
readonly total: io.flow.common.v0.models.Price;
|
|
348
|
-
readonly adjustment?: io.flow.price.v0.models.PriceDetail;
|
|
349
|
-
}
|
|
350
|
-
interface PriceEquation {
|
|
351
|
-
readonly contracted_rate: number;
|
|
352
|
-
readonly rate: number;
|
|
353
|
-
readonly pricing: io.flow.price.v0.models.Pricing;
|
|
354
|
-
readonly base_price: number;
|
|
355
|
-
readonly discount: number;
|
|
356
|
-
readonly fixed_margin: number;
|
|
357
|
-
readonly percent_margin: number;
|
|
358
|
-
readonly insurance: number;
|
|
359
|
-
readonly freight: number;
|
|
360
|
-
readonly duty?: io.flow.price.v0.models.Duty;
|
|
361
|
-
readonly tax?: io.flow.price.v0.models.Tax;
|
|
362
|
-
readonly percent_sales_margin: number;
|
|
363
|
-
}
|
|
364
|
-
interface Pricing {
|
|
365
|
-
readonly vat: io.flow.price.v0.enums.PricingLevySetting;
|
|
366
|
-
readonly duty: io.flow.price.v0.enums.PricingLevySetting;
|
|
367
|
-
readonly rounding?: io.flow.common.v0.models.Rounding;
|
|
368
|
-
}
|
|
369
|
-
interface Tax {
|
|
370
|
-
readonly name: string;
|
|
371
|
-
readonly rate: number;
|
|
372
|
-
readonly components: io.flow.price.v0.enums.LevyComponent[];
|
|
373
|
-
readonly deminimis?: io.flow.price.v0.unions.Deminimis;
|
|
374
|
-
}
|
|
375
|
-
}
|
|
376
|
-
declare namespace io.flow.price.v0.unions {
|
|
377
|
-
type Deminimis = io.flow.price.v0.models.DeminimisSimple | io.flow.price.v0.models.DeminimisPerItem;
|
|
378
|
-
}
|
|
379
234
|
declare namespace io.flow.channel.v0.enums {
|
|
380
235
|
type ChannelCurrencyCapability = 'payment_authorizations' | 'settlement_currency';
|
|
381
236
|
}
|
|
@@ -1019,6 +874,7 @@ declare namespace io.flow.payment.v0.enums {
|
|
|
1019
874
|
type RefundStatus = 'pending' | 'succeeded' | 'failed' | 'canceled';
|
|
1020
875
|
type ReversalErrorCode = 'amount_exceeds_balance' | 'authorization_declined' | 'authorization_expired' | 'invalid_authorization' | 'invalid_key' | 'invalid_amount' | 'invalid_currency' | 'no_remaining_balance' | 'partial_reversal_not_supported' | 'unknown';
|
|
1021
876
|
type ReversalStatus = 'pending' | 'processed' | 'failed';
|
|
877
|
+
type StoredMethodUsageStep = 'initial' | 'subsequent';
|
|
1022
878
|
type ThreeDSecureCode = 'verified' | 'not_verified' | 'failed';
|
|
1023
879
|
type ThreedsTwoChallengeViewport = 'xxx_small' | 'xx_small' | 'x_small' | 'small' | 'fullscreen';
|
|
1024
880
|
type TokenType = 'permanent' | 'one_time';
|
|
@@ -1238,6 +1094,8 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1238
1094
|
readonly expires_at?: string;
|
|
1239
1095
|
readonly base?: io.flow.common.v0.models.Money;
|
|
1240
1096
|
readonly processor?: io.flow.payment.v0.unions.ExpandablePaymentProcessor;
|
|
1097
|
+
readonly stored_method_usage_step?: io.flow.payment.v0.enums.StoredMethodUsageStep;
|
|
1098
|
+
readonly authorized_at?: string;
|
|
1241
1099
|
}
|
|
1242
1100
|
interface CardBrowserActionConfiguration {
|
|
1243
1101
|
readonly discriminator: 'card_browser_action_configuration';
|
|
@@ -1354,6 +1212,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1354
1212
|
readonly cookie_created_at?: number;
|
|
1355
1213
|
readonly session_duration?: number;
|
|
1356
1214
|
readonly fingerprint?: string;
|
|
1215
|
+
readonly fraud_references?: Record<string, string>;
|
|
1357
1216
|
}
|
|
1358
1217
|
interface DirectAuthorizationForm {
|
|
1359
1218
|
readonly discriminator: 'direct_authorization_form';
|
|
@@ -1484,6 +1343,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1484
1343
|
readonly base?: io.flow.common.v0.models.Money;
|
|
1485
1344
|
readonly processor?: io.flow.payment.v0.unions.ExpandablePaymentProcessor;
|
|
1486
1345
|
readonly confirmation_details?: io.flow.payment.v0.unions.ConfirmationDetails;
|
|
1346
|
+
readonly authorized_at?: string;
|
|
1487
1347
|
}
|
|
1488
1348
|
interface OnlinePaymentAuthorizationForm {
|
|
1489
1349
|
readonly discriminator: 'online_payment_authorization_form';
|
|
@@ -1867,11 +1727,13 @@ declare namespace io.flow.field.validation.v0.unions {
|
|
|
1867
1727
|
}
|
|
1868
1728
|
declare namespace io.flow.stripe.v0.enums {
|
|
1869
1729
|
type AccountType = 'platform' | 'custom' | 'standard' | 'express';
|
|
1730
|
+
type ApplePayType = 'apple_pay' | 'apple_pay_later';
|
|
1870
1731
|
type CancellationReason = 'abandoned' | 'automatic' | 'duplicate' | 'failed_invoice' | 'fraudulent' | 'requested_by_customer' | 'void_invoice';
|
|
1871
1732
|
type CaptureMethod = 'automatic' | 'manual';
|
|
1872
1733
|
type CardBrand = 'American Express' | 'MasterCard' | 'Discover' | 'JCB' | 'Diners Club' | 'Unknown';
|
|
1873
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';
|
|
1874
1735
|
type CardFundingType = 'credit' | 'debit' | 'prepaid' | 'unknown';
|
|
1736
|
+
type CardNetwork = 'amex' | 'cartes_bancaires' | 'diners' | 'discover' | 'eftpos_au' | 'interac' | 'jcb' | 'mastercard' | 'unionpay' | 'visa' | 'unknown';
|
|
1875
1737
|
type CheckOutcome = 'pass' | 'fail' | 'unavailable' | 'unchecked';
|
|
1876
1738
|
type CodeVerificationStatus = 'pending' | 'succeeded' | 'failed';
|
|
1877
1739
|
type ConfirmationMethod = 'automatic' | 'manual';
|
|
@@ -1884,9 +1746,11 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
1884
1746
|
type NextActionType = 'redirect_to_url' | 'use_stripe_sdk';
|
|
1885
1747
|
type OrderItemType = 'sku' | 'tax' | 'shipping' | 'discount';
|
|
1886
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';
|
|
1887
1750
|
type PaymentMethodType = 'card' | 'card_present';
|
|
1888
1751
|
type PaymentOutcomeType = 'authorized' | 'manual_review' | 'issuer_declined' | 'blocked' | 'invalid';
|
|
1889
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';
|
|
1890
1754
|
type RefundFailureReason = 'lost_or_stolen_card' | 'expired_or_canceled_card' | 'unknown';
|
|
1891
1755
|
type RefundReason = 'duplicate' | 'fraudulent' | 'requested_by_customer';
|
|
1892
1756
|
type RefundStatus = 'succeeded' | 'failed' | 'pending' | 'canceled';
|
|
@@ -1898,6 +1762,9 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
1898
1762
|
type SourceType = 'ach_credit_transfer' | 'ach_debit' | 'alipay' | 'bancontact' | 'bitcoin' | 'card' | 'eps' | 'giropay' | 'ideal' | 'klarna' | 'multibanco' | 'p24' | 'sepa_debit' | 'sofort' | 'three_d_secure';
|
|
1899
1763
|
type SourceUsageType = 'reusable' | 'single_use';
|
|
1900
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';
|
|
1901
1768
|
type TokenType = 'account' | 'bank_account' | 'card' | 'pii';
|
|
1902
1769
|
type UseStripeSdkType = 'three_d_secure_redirect' | 'stripe_3ds2_fingerprint';
|
|
1903
1770
|
}
|
|
@@ -1943,6 +1810,14 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
1943
1810
|
readonly postal_code?: string;
|
|
1944
1811
|
readonly state?: string;
|
|
1945
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
|
+
}
|
|
1946
1821
|
interface Card {
|
|
1947
1822
|
readonly id: string;
|
|
1948
1823
|
readonly object: string;
|
|
@@ -1967,6 +1842,11 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
1967
1842
|
readonly name?: string;
|
|
1968
1843
|
readonly tokenization_method?: string;
|
|
1969
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
|
+
}
|
|
1970
1850
|
interface CardRequest {
|
|
1971
1851
|
readonly object: string;
|
|
1972
1852
|
readonly exp_month: string;
|
|
@@ -2009,7 +1889,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2009
1889
|
readonly payment_intent?: string;
|
|
2010
1890
|
readonly calculated_statement_descriptor?: string;
|
|
2011
1891
|
readonly statement_descriptor?: string;
|
|
2012
|
-
readonly payment_method_details?:
|
|
1892
|
+
readonly payment_method_details?: io.flow.stripe.v0.unions.PaymentMethodDetails;
|
|
2013
1893
|
}
|
|
2014
1894
|
interface ChargeDestination {
|
|
2015
1895
|
readonly account: string;
|
|
@@ -2056,7 +1936,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2056
1936
|
readonly payment_intent?: string;
|
|
2057
1937
|
readonly calculated_statement_descriptor?: string;
|
|
2058
1938
|
readonly statement_descriptor?: string;
|
|
2059
|
-
readonly payment_method_details?:
|
|
1939
|
+
readonly payment_method_details?: io.flow.stripe.v0.unions.PaymentMethodDetails;
|
|
2060
1940
|
}
|
|
2061
1941
|
interface CodeVerification {
|
|
2062
1942
|
readonly attempts_remaining: number;
|
|
@@ -2103,11 +1983,25 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2103
1983
|
interface LegalEntity {
|
|
2104
1984
|
readonly additional_owners?: io.flow.stripe.v0.models.Owner[];
|
|
2105
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
|
+
}
|
|
2106
1997
|
interface Metadata {
|
|
2107
1998
|
readonly order_number?: string;
|
|
2108
1999
|
readonly authorization_id?: string;
|
|
2109
2000
|
readonly organization_id?: string;
|
|
2110
2001
|
}
|
|
2002
|
+
interface NetworkTokenUsed {
|
|
2003
|
+
readonly used?: boolean;
|
|
2004
|
+
}
|
|
2111
2005
|
interface NextAction {
|
|
2112
2006
|
readonly type: io.flow.stripe.v0.enums.NextActionType;
|
|
2113
2007
|
readonly use_stripe_sdk?: any;
|
|
@@ -2274,6 +2168,39 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2274
2168
|
readonly name?: string;
|
|
2275
2169
|
readonly phone?: string;
|
|
2276
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
|
+
}
|
|
2277
2204
|
interface PaymentMethodForm {
|
|
2278
2205
|
readonly type: io.flow.stripe.v0.enums.PaymentMethodType;
|
|
2279
2206
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
@@ -2292,6 +2219,11 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2292
2219
|
readonly reason?: string;
|
|
2293
2220
|
readonly type?: io.flow.stripe.v0.enums.PaymentOutcomeType;
|
|
2294
2221
|
}
|
|
2222
|
+
interface Plan {
|
|
2223
|
+
readonly count?: number;
|
|
2224
|
+
readonly interval?: string;
|
|
2225
|
+
readonly type?: string;
|
|
2226
|
+
}
|
|
2295
2227
|
interface Receiver {
|
|
2296
2228
|
readonly address?: string;
|
|
2297
2229
|
readonly amount_charged?: number;
|
|
@@ -2492,6 +2424,12 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2492
2424
|
readonly card: string;
|
|
2493
2425
|
readonly customer?: string;
|
|
2494
2426
|
}
|
|
2427
|
+
interface ThreeDSecureCharge {
|
|
2428
|
+
readonly authentication_flow?: io.flow.stripe.v0.enums.ThreeDsAuthenticationFlow;
|
|
2429
|
+
readonly result?: io.flow.stripe.v0.enums.ThreeDsResult;
|
|
2430
|
+
readonly result_reason?: io.flow.stripe.v0.enums.ThreeDsResultReason;
|
|
2431
|
+
readonly version?: string;
|
|
2432
|
+
}
|
|
2495
2433
|
interface ThreeDSecureRedirect {
|
|
2496
2434
|
readonly type: io.flow.stripe.v0.enums.UseStripeSdkType;
|
|
2497
2435
|
readonly stripe_js: string;
|
|
@@ -2515,6 +2453,21 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2515
2453
|
readonly amount?: number;
|
|
2516
2454
|
readonly destination?: string;
|
|
2517
2455
|
}
|
|
2456
|
+
interface VisaCheckout {
|
|
2457
|
+
readonly type: 'visa_checkout';
|
|
2458
|
+
readonly visa_checkout: io.flow.stripe.v0.models.VisaCheckoutInformation;
|
|
2459
|
+
readonly dynamic_last4?: string;
|
|
2460
|
+
}
|
|
2461
|
+
interface VisaCheckoutInformation {
|
|
2462
|
+
readonly billing_address?: io.flow.stripe.v0.models.Address;
|
|
2463
|
+
readonly email?: string;
|
|
2464
|
+
readonly name?: string;
|
|
2465
|
+
readonly shipping_address?: io.flow.stripe.v0.models.Address;
|
|
2466
|
+
}
|
|
2467
|
+
}
|
|
2468
|
+
declare namespace io.flow.stripe.v0.unions {
|
|
2469
|
+
type CardWallet = io.flow.stripe.v0.models.Masterpass | io.flow.stripe.v0.models.ApplePay | io.flow.stripe.v0.models.VisaCheckout;
|
|
2470
|
+
type PaymentMethodDetails = io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna;
|
|
2518
2471
|
}
|
|
2519
2472
|
declare namespace io.flow.customer.v0.enums {
|
|
2520
2473
|
type CustomerAddressType = 'billing' | 'invoice' | 'shipping';
|
|
@@ -2598,6 +2551,7 @@ declare namespace io.flow.label.v0.enums {
|
|
|
2598
2551
|
type Direction = 'outbound' | 'return';
|
|
2599
2552
|
type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'notification_requiring_crossdock' | 'autogenerated';
|
|
2600
2553
|
type LabelTriggerMethod = 'autogenerated' | 'on_demand';
|
|
2554
|
+
type PackageDimensionsSource = 'provided' | 'dimensions_estimated';
|
|
2601
2555
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
2602
2556
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
2603
2557
|
}
|
|
@@ -2636,6 +2590,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
2636
2590
|
readonly order_number: string;
|
|
2637
2591
|
readonly service?: string;
|
|
2638
2592
|
readonly shipment_recipient?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
2593
|
+
readonly package_dimensions_source?: io.flow.label.v0.enums.PackageDimensionsSource;
|
|
2639
2594
|
}
|
|
2640
2595
|
interface DetailedShippingNotificationForm {
|
|
2641
2596
|
readonly discriminator: 'detailed_shipping_notification_form';
|
|
@@ -2676,6 +2631,9 @@ declare namespace io.flow.label.v0.models {
|
|
|
2676
2631
|
readonly carrier_tracking_number_url: string;
|
|
2677
2632
|
readonly cost_estimate_source?: io.flow.label.v0.enums.CostEstimateSource;
|
|
2678
2633
|
readonly cost?: io.flow.common.v0.models.Price;
|
|
2634
|
+
readonly delivered_duty?: io.flow.common.v0.enums.DeliveredDuty;
|
|
2635
|
+
readonly taxes_owed?: io.flow.common.v0.models.Money;
|
|
2636
|
+
readonly duties_owed?: io.flow.common.v0.models.Money;
|
|
2679
2637
|
readonly destination: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
2680
2638
|
readonly flow_tracking_number: string;
|
|
2681
2639
|
readonly flow_tracking_number_url: string;
|
|
@@ -2687,6 +2645,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
2687
2645
|
readonly return?: io.flow.label.v0.models.ShippingLabelDocument;
|
|
2688
2646
|
readonly order?: io.flow.label.v0.models.LabelOrderSummary;
|
|
2689
2647
|
readonly package?: io.flow.label.v0.models.ShippingLabelPackage;
|
|
2648
|
+
readonly package_dimension_source?: io.flow.label.v0.enums.PackageDimensionsSource;
|
|
2690
2649
|
readonly order_identifier?: string;
|
|
2691
2650
|
readonly fulfillment_key?: string;
|
|
2692
2651
|
readonly shipment_recipient: io.flow.label.v0.enums.ShipmentRecipient;
|
|
@@ -2704,9 +2663,15 @@ declare namespace io.flow.label.v0.models {
|
|
|
2704
2663
|
readonly html?: string;
|
|
2705
2664
|
readonly required: boolean;
|
|
2706
2665
|
}
|
|
2666
|
+
interface ShippingLabelHopCostItemizedEstimate {
|
|
2667
|
+
readonly units: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
|
|
2668
|
+
readonly base: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
2669
|
+
readonly surcharges: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
|
|
2670
|
+
}
|
|
2707
2671
|
interface ShippingLabelHopSummary {
|
|
2708
2672
|
readonly lane: io.flow.label.v0.models.ShippingLabelLaneSummary;
|
|
2709
2673
|
readonly cost: io.flow.common.v0.models.Money;
|
|
2674
|
+
readonly itemized_estimate?: io.flow.label.v0.models.ShippingLabelHopCostItemizedEstimate;
|
|
2710
2675
|
}
|
|
2711
2676
|
interface ShippingLabelLaneSummary {
|
|
2712
2677
|
readonly id?: string;
|
|
@@ -2714,12 +2679,18 @@ declare namespace io.flow.label.v0.models {
|
|
|
2714
2679
|
}
|
|
2715
2680
|
interface ShippingLabelPackage {
|
|
2716
2681
|
readonly dimensions: io.flow.common.v0.models.Dimension;
|
|
2682
|
+
readonly volumetric_weight?: number;
|
|
2717
2683
|
readonly items: io.flow.common.v0.models.LineItemForm[];
|
|
2718
2684
|
readonly reference_number?: string;
|
|
2719
2685
|
}
|
|
2720
2686
|
interface ShippingLabelRatecardSummary {
|
|
2721
2687
|
readonly id?: string;
|
|
2722
2688
|
readonly ratecard_owner: io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
2689
|
+
readonly rate_level_key?: string;
|
|
2690
|
+
readonly glbe_shipping_method_id?: string;
|
|
2691
|
+
readonly glbe_proposition_name?: string;
|
|
2692
|
+
readonly channel_revenue_share_percentage?: number;
|
|
2693
|
+
readonly shopify_grc_gid?: string;
|
|
2723
2694
|
}
|
|
2724
2695
|
interface ShippingLabelSummary {
|
|
2725
2696
|
readonly id: string;
|
|
@@ -3160,14 +3131,14 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
3160
3131
|
readonly purchase_url?: string;
|
|
3161
3132
|
}
|
|
3162
3133
|
interface ShippingAddress {
|
|
3163
|
-
readonly recipient_name
|
|
3134
|
+
readonly recipient_name?: string;
|
|
3164
3135
|
readonly line1: string;
|
|
3165
3136
|
readonly line2?: string;
|
|
3166
|
-
readonly city
|
|
3137
|
+
readonly city?: string;
|
|
3167
3138
|
readonly country_code: string;
|
|
3168
|
-
readonly postal_code
|
|
3139
|
+
readonly postal_code?: string;
|
|
3169
3140
|
readonly phone?: string;
|
|
3170
|
-
readonly state
|
|
3141
|
+
readonly state?: string;
|
|
3171
3142
|
}
|
|
3172
3143
|
interface SupportingInfo {
|
|
3173
3144
|
readonly notes?: string;
|
|
@@ -3544,7 +3515,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3544
3515
|
readonly merchantOrderReference?: string;
|
|
3545
3516
|
readonly shopperInteraction: io.flow.adyen.v0.enums.ShopperInteraction;
|
|
3546
3517
|
readonly bankAccount?: io.flow.adyen.v0.models.BankAccount;
|
|
3547
|
-
readonly additionalData?:
|
|
3518
|
+
readonly additionalData?: io.flow.adyen.v0.models.AuthorizeRequestAdditionalData;
|
|
3548
3519
|
readonly mpiData?: io.flow.adyen.v0.models.ThreeDSecureData;
|
|
3549
3520
|
readonly selectedBrand?: string;
|
|
3550
3521
|
readonly browserInfo?: io.flow.adyen.v0.unions.BrowserInfo;
|
|
@@ -3552,6 +3523,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3552
3523
|
readonly recurringProcessingModel?: io.flow.adyen.v0.enums.RecurringProcessingModel;
|
|
3553
3524
|
readonly mcc?: string;
|
|
3554
3525
|
readonly metadata?: any;
|
|
3526
|
+
readonly captureDelayHours?: number;
|
|
3555
3527
|
}
|
|
3556
3528
|
interface AuthorizeRequest3D {
|
|
3557
3529
|
readonly merchantAccount: string;
|
|
@@ -3565,6 +3537,10 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3565
3537
|
readonly threeDS2RequestData?: io.flow.adyen.v0.models.Threeds2RequestData;
|
|
3566
3538
|
readonly threeDS2Result?: io.flow.adyen.v0.models.Threeds2Result;
|
|
3567
3539
|
}
|
|
3540
|
+
interface AuthorizeRequestAdditionalData {
|
|
3541
|
+
readonly manualCapture?: boolean;
|
|
3542
|
+
readonly 'paywithgoogle.token'?: string;
|
|
3543
|
+
}
|
|
3568
3544
|
interface AuthorizeResponse {
|
|
3569
3545
|
readonly pspReference: string;
|
|
3570
3546
|
readonly resultCode: io.flow.adyen.v0.enums.ResultCode;
|
|
@@ -3718,6 +3694,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3718
3694
|
readonly redirectToIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
3719
3695
|
readonly redirectFromIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
|
|
3720
3696
|
readonly storePaymentMethod?: boolean;
|
|
3697
|
+
readonly captureDelayHours?: number;
|
|
3721
3698
|
}
|
|
3722
3699
|
interface PaymentResponse {
|
|
3723
3700
|
readonly resultCode: io.flow.adyen.v0.enums.ResultCode;
|
|
@@ -3837,6 +3814,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3837
3814
|
interface ThreedsAdditionalData {
|
|
3838
3815
|
readonly executeThreeD?: boolean;
|
|
3839
3816
|
readonly allow3DS2?: boolean;
|
|
3817
|
+
readonly manualCapture?: boolean;
|
|
3840
3818
|
}
|
|
3841
3819
|
}
|
|
3842
3820
|
declare namespace io.flow.adyen.v0.unions {
|
|
@@ -3969,7 +3947,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
3969
3947
|
readonly starts_at: string;
|
|
3970
3948
|
readonly ends_at?: string;
|
|
3971
3949
|
readonly prerequisite_subtotal_range?: io.flow.shopify.external.v0.models.PriceRuleGreaterThanRange;
|
|
3972
|
-
readonly
|
|
3950
|
+
readonly prerequisite_shipping_price_range?: io.flow.shopify.external.v0.models.PriceRuleLessThanRange;
|
|
3973
3951
|
readonly usage_limit?: number;
|
|
3974
3952
|
readonly entitled_product_ids: number[];
|
|
3975
3953
|
readonly entitled_variant_ids: number[];
|
|
@@ -3979,7 +3957,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
3979
3957
|
readonly once_per_customer: boolean;
|
|
3980
3958
|
readonly target_selection: io.flow.shopify.external.v0.enums.PriceRuleTargetSelection;
|
|
3981
3959
|
readonly customer_selection: io.flow.shopify.external.v0.enums.PriceRuleCustomerSelection;
|
|
3982
|
-
readonly
|
|
3960
|
+
readonly customer_segment_prerequisite_ids?: number[];
|
|
3983
3961
|
readonly prerequisite_customer_ids?: number[];
|
|
3984
3962
|
readonly prerequisite_quantity_range?: io.flow.shopify.external.v0.models.PriceRuleGreaterThanRange;
|
|
3985
3963
|
readonly prerequisite_product_ids?: number[];
|
|
@@ -4960,6 +4938,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
4960
4938
|
readonly send_receipt?: boolean;
|
|
4961
4939
|
readonly metafields?: io.flow.shopify.markets.v0.models.ShopifyOrderMetafield[];
|
|
4962
4940
|
readonly merchant_of_record_app_id?: number;
|
|
4941
|
+
readonly total_shipping_price_set?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
4963
4942
|
}
|
|
4964
4943
|
interface ShopifyOrderAddress {
|
|
4965
4944
|
readonly id?: number;
|
|
@@ -5096,7 +5075,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5096
5075
|
readonly grams?: number;
|
|
5097
5076
|
readonly id: number;
|
|
5098
5077
|
readonly price?: string;
|
|
5099
|
-
readonly price_set
|
|
5078
|
+
readonly price_set: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
5100
5079
|
readonly product_id?: number;
|
|
5101
5080
|
readonly quantity: number;
|
|
5102
5081
|
readonly requires_shipping: boolean;
|
|
@@ -5105,7 +5084,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5105
5084
|
readonly variant_id?: number;
|
|
5106
5085
|
readonly variant_title?: string;
|
|
5107
5086
|
readonly vendor?: string;
|
|
5108
|
-
readonly name
|
|
5087
|
+
readonly name: string;
|
|
5109
5088
|
readonly gift_card: boolean;
|
|
5110
5089
|
readonly properties: io.flow.shopify.markets.v0.models.ShopifyOrderProperty[];
|
|
5111
5090
|
readonly taxable: boolean;
|
|
@@ -5189,12 +5168,13 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5189
5168
|
interface ShopifyOrderShippingLine {
|
|
5190
5169
|
readonly code?: string;
|
|
5191
5170
|
readonly price: string;
|
|
5192
|
-
readonly source
|
|
5171
|
+
readonly source?: string;
|
|
5193
5172
|
readonly title: string;
|
|
5194
5173
|
readonly tax_lines: io.flow.shopify.markets.v0.models.ShopifyOrderTaxLine[];
|
|
5195
5174
|
readonly carrier_identifier?: string;
|
|
5196
5175
|
readonly price_set: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
5197
5176
|
readonly discounted_price_set: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
5177
|
+
readonly discount_allocations?: io.flow.shopify.markets.v0.models.ShopifyOrderDiscountAllocation[];
|
|
5198
5178
|
}
|
|
5199
5179
|
interface ShopifyOrderTaxLine {
|
|
5200
5180
|
readonly price_set: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
@@ -5221,8 +5201,8 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5221
5201
|
readonly parent_id?: number;
|
|
5222
5202
|
readonly user_id?: number;
|
|
5223
5203
|
}
|
|
5224
|
-
interface
|
|
5225
|
-
readonly order: io.flow.shopify.markets.v0.models.
|
|
5204
|
+
interface ShopifyOrderUpdateForm {
|
|
5205
|
+
readonly order: io.flow.shopify.markets.v0.models.ShopifyUpdateOrder;
|
|
5226
5206
|
}
|
|
5227
5207
|
interface ShopifyOrderWrapper {
|
|
5228
5208
|
readonly order: io.flow.shopify.markets.v0.models.ShopifyOrder;
|
|
@@ -5272,9 +5252,10 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5272
5252
|
readonly kind: string;
|
|
5273
5253
|
readonly gateway: string;
|
|
5274
5254
|
}
|
|
5275
|
-
interface
|
|
5255
|
+
interface ShopifyUpdateOrder {
|
|
5276
5256
|
readonly id: number;
|
|
5277
|
-
readonly shipping_address
|
|
5257
|
+
readonly shipping_address?: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
|
|
5258
|
+
readonly note_attributes?: io.flow.shopify.markets.v0.models.ShopifyOrderAttribute[];
|
|
5278
5259
|
}
|
|
5279
5260
|
interface ShopifyWebhookCustomersDataRequest {
|
|
5280
5261
|
readonly shop_id: number;
|
|
@@ -7670,12 +7651,21 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
7670
7651
|
readonly id: string;
|
|
7671
7652
|
readonly ratecard: io.flow.ratecard.v0.models.RatecardSummary;
|
|
7672
7653
|
}
|
|
7673
|
-
interface
|
|
7674
|
-
readonly discriminator: '
|
|
7675
|
-
readonly
|
|
7676
|
-
readonly
|
|
7677
|
-
readonly
|
|
7678
|
-
readonly
|
|
7654
|
+
interface OversizePieceSurchargeRatecardFee {
|
|
7655
|
+
readonly discriminator: 'oversize_piece_surcharge_ratecard_fee';
|
|
7656
|
+
readonly dimensional_threshold?: number;
|
|
7657
|
+
readonly dimensional_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
7658
|
+
readonly weight_threshold?: number;
|
|
7659
|
+
readonly weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
7660
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
7661
|
+
}
|
|
7662
|
+
interface OversizePieceSurchargeServiceFee {
|
|
7663
|
+
readonly discriminator: 'oversize_piece_surcharge_service_fee';
|
|
7664
|
+
readonly dimensional_threshold?: number;
|
|
7665
|
+
readonly dimensional_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
7666
|
+
readonly weight_threshold?: number;
|
|
7667
|
+
readonly weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
7668
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
7679
7669
|
}
|
|
7680
7670
|
interface PeakSurchargeByWeightServiceFee {
|
|
7681
7671
|
readonly discriminator: 'peak_surcharge_by_weight_service_fee';
|
|
@@ -7700,12 +7690,16 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
7700
7690
|
interface Ratecard {
|
|
7701
7691
|
readonly id: string;
|
|
7702
7692
|
readonly number: string;
|
|
7693
|
+
readonly rate_level_key?: string;
|
|
7703
7694
|
readonly direction: io.flow.label.v0.enums.Direction;
|
|
7704
7695
|
readonly effective_at: string;
|
|
7705
7696
|
readonly origination_zones: io.flow.common.v0.models.Zone[];
|
|
7706
7697
|
readonly service: io.flow.ratecard.v0.models.RatecardServiceSummary;
|
|
7707
7698
|
readonly published_at?: string;
|
|
7708
7699
|
readonly ratecard_owner: io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
7700
|
+
readonly glbe_shipping_method_id?: string;
|
|
7701
|
+
readonly glbe_proposition_name?: string;
|
|
7702
|
+
readonly channel_revenue_share_percentage?: number;
|
|
7709
7703
|
}
|
|
7710
7704
|
interface RatecardCarrierSummary {
|
|
7711
7705
|
readonly id: string;
|
|
@@ -7769,6 +7763,10 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
7769
7763
|
readonly dimensional_weight?: io.flow.common.v0.models.Measurement;
|
|
7770
7764
|
readonly gravitational_weight?: io.flow.common.v0.models.Measurement;
|
|
7771
7765
|
readonly ratecard_id?: string;
|
|
7766
|
+
readonly glbe_shipping_method_id?: string;
|
|
7767
|
+
readonly glbe_proposition_name?: string;
|
|
7768
|
+
readonly channel_revenue_share_percentage?: number;
|
|
7769
|
+
readonly rate_level_key?: string;
|
|
7772
7770
|
readonly line_items?: io.flow.common.v0.models.LineItemForm[];
|
|
7773
7771
|
}
|
|
7774
7772
|
interface RatecardForm {
|
|
@@ -7777,7 +7775,12 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
7777
7775
|
readonly origination_zones: io.flow.common.v0.models.Zone[];
|
|
7778
7776
|
readonly service: string;
|
|
7779
7777
|
readonly number?: string;
|
|
7778
|
+
readonly rate_level_key?: string;
|
|
7780
7779
|
readonly ratecard_owner?: io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
7780
|
+
readonly glbe_shipping_method_id?: string;
|
|
7781
|
+
readonly glbe_proposition_name?: string;
|
|
7782
|
+
readonly channel_revenue_share_percentage?: number;
|
|
7783
|
+
readonly data?: Record<string, string>;
|
|
7781
7784
|
}
|
|
7782
7785
|
interface RatecardLane {
|
|
7783
7786
|
readonly id: string;
|
|
@@ -7889,8 +7892,8 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
7889
7892
|
}
|
|
7890
7893
|
declare namespace io.flow.ratecard.v0.unions {
|
|
7891
7894
|
type RatecardEstimate = io.flow.ratecard.v0.models.RatecardEstimateV1 | io.flow.ratecard.v0.models.RatecardEstimateV2 | io.flow.ratecard.v0.models.RatecardEstimateV3 | io.flow.ratecard.v0.models.RatecardEstimateV4;
|
|
7892
|
-
type RatecardFee = io.flow.ratecard.v0.models.DdpRatecardFee | io.flow.ratecard.v0.models.FuelSurchargeRatecardFee | io.flow.ratecard.v0.models.
|
|
7893
|
-
type ServiceFee = io.flow.ratecard.v0.models.FuelSurchargeServiceFee | io.flow.ratecard.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.ratecard.v0.models.RemoteAreaServiceFee | io.flow.ratecard.v0.models.EmergencySituationSurchargeServiceFee | io.flow.ratecard.v0.models.PeakSurchargeServiceFee | io.flow.ratecard.v0.models.PeakSurchargeByWeightServiceFee | io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeServiceFee;
|
|
7895
|
+
type RatecardFee = io.flow.ratecard.v0.models.DdpRatecardFee | io.flow.ratecard.v0.models.FuelSurchargeRatecardFee | io.flow.ratecard.v0.models.OversizePieceSurchargeRatecardFee | io.flow.ratecard.v0.models.ReturnPackageRatecardFee | io.flow.ratecard.v0.models.CrossdockRatecardFee | io.flow.ratecard.v0.models.RemoteAreaRatecardFee | io.flow.ratecard.v0.models.EmergencySituationSurchargeRatecardFee | io.flow.ratecard.v0.models.PeakSurchargeRatecardFee | io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeRatecardFee;
|
|
7896
|
+
type ServiceFee = io.flow.ratecard.v0.models.FuelSurchargeServiceFee | io.flow.ratecard.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.ratecard.v0.models.RemoteAreaServiceFee | io.flow.ratecard.v0.models.EmergencySituationSurchargeServiceFee | io.flow.ratecard.v0.models.PeakSurchargeServiceFee | io.flow.ratecard.v0.models.PeakSurchargeByWeightServiceFee | io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeServiceFee | io.flow.ratecard.v0.models.OversizePieceSurchargeServiceFee;
|
|
7894
7897
|
}
|
|
7895
7898
|
declare namespace io.flow.token.v0.models {
|
|
7896
7899
|
interface ChannelToken {
|
|
@@ -8126,45 +8129,332 @@ declare namespace io.flow.crypto.v0.models {
|
|
|
8126
8129
|
readonly object: io.flow.crypto.v0.models.Refund;
|
|
8127
8130
|
}
|
|
8128
8131
|
}
|
|
8129
|
-
declare namespace io.flow.
|
|
8130
|
-
type
|
|
8132
|
+
declare namespace io.flow.error.v0.enums {
|
|
8133
|
+
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
8131
8134
|
}
|
|
8132
|
-
declare namespace io.flow.
|
|
8133
|
-
interface
|
|
8134
|
-
readonly
|
|
8135
|
-
readonly
|
|
8135
|
+
declare namespace io.flow.error.v0.models {
|
|
8136
|
+
interface GenericError {
|
|
8137
|
+
readonly code: io.flow.error.v0.enums.GenericErrorCode;
|
|
8138
|
+
readonly messages: string[];
|
|
8136
8139
|
}
|
|
8137
|
-
|
|
8138
|
-
|
|
8139
|
-
|
|
8140
|
-
|
|
8141
|
-
|
|
8142
|
-
|
|
8143
|
-
|
|
8144
|
-
readonly
|
|
8140
|
+
}
|
|
8141
|
+
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.enums {
|
|
8142
|
+
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak';
|
|
8143
|
+
type WeightSelection = 'dead' | 'dimensional';
|
|
8144
|
+
}
|
|
8145
|
+
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
|
|
8146
|
+
interface LabelBase {
|
|
8147
|
+
readonly amount: number;
|
|
8148
|
+
readonly weight: number;
|
|
8145
8149
|
}
|
|
8146
|
-
interface
|
|
8147
|
-
readonly
|
|
8148
|
-
readonly created_at?: string;
|
|
8150
|
+
interface LabelDestination {
|
|
8151
|
+
readonly country: string;
|
|
8149
8152
|
}
|
|
8150
|
-
interface
|
|
8153
|
+
interface LabelInvoiceRequest {
|
|
8151
8154
|
readonly id: string;
|
|
8152
|
-
readonly
|
|
8153
|
-
readonly
|
|
8154
|
-
readonly
|
|
8155
|
-
readonly
|
|
8156
|
-
readonly
|
|
8157
|
-
readonly
|
|
8155
|
+
readonly label: io.flow.billing.RESERVED_WORD_true.up.v0.models.TrueUpLabelSummary;
|
|
8156
|
+
readonly units: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelUnits;
|
|
8157
|
+
readonly base: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
8158
|
+
readonly surcharges: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurcharge[];
|
|
8159
|
+
readonly total: number;
|
|
8160
|
+
readonly destination: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelDestination;
|
|
8161
|
+
readonly metadata: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelMetadata;
|
|
8158
8162
|
}
|
|
8159
|
-
interface
|
|
8160
|
-
readonly
|
|
8161
|
-
readonly
|
|
8162
|
-
readonly status: io.flow.tracking.v0.enums.TrackingStatus;
|
|
8163
|
-
readonly timestamp: string;
|
|
8164
|
-
readonly description?: string;
|
|
8163
|
+
interface LabelMetadata {
|
|
8164
|
+
readonly ratecard: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataRatecard;
|
|
8165
|
+
readonly weights: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataWeights;
|
|
8165
8166
|
}
|
|
8166
|
-
interface
|
|
8167
|
-
readonly
|
|
8167
|
+
interface LabelSurcharge {
|
|
8168
|
+
readonly amount: number;
|
|
8169
|
+
readonly type: io.flow.billing.RESERVED_WORD_true.up.v0.enums.TrueUpSurchargeType;
|
|
8170
|
+
readonly detail: io.flow.billing.RESERVED_WORD_true.up.v0.unions.LabelSurchargeDetail;
|
|
8171
|
+
}
|
|
8172
|
+
interface LabelSurchargeDetailFlat {
|
|
8173
|
+
readonly discriminator: 'flat';
|
|
8174
|
+
readonly placeholder?: string;
|
|
8175
|
+
}
|
|
8176
|
+
interface LabelSurchargeDetailPerWeightUnit {
|
|
8177
|
+
readonly discriminator: 'per_weight_unit';
|
|
8178
|
+
readonly fee: number;
|
|
8179
|
+
}
|
|
8180
|
+
interface LabelSurchargeDetailPercentage {
|
|
8181
|
+
readonly discriminator: 'percentage';
|
|
8182
|
+
readonly percentage: number;
|
|
8183
|
+
}
|
|
8184
|
+
interface LabelUnits {
|
|
8185
|
+
readonly currency: string;
|
|
8186
|
+
readonly weight: io.flow.units.v0.enums.UnitOfWeight;
|
|
8187
|
+
readonly length: io.flow.units.v0.enums.UnitOfLength;
|
|
8188
|
+
}
|
|
8189
|
+
interface MetadataProposition {
|
|
8190
|
+
readonly shipping_method: io.flow.billing.RESERVED_WORD_true.up.v0.models.ShippingMethodReference;
|
|
8191
|
+
readonly name: string;
|
|
8192
|
+
}
|
|
8193
|
+
interface MetadataRatecard {
|
|
8194
|
+
readonly id: string;
|
|
8195
|
+
readonly proposition: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataProposition;
|
|
8196
|
+
}
|
|
8197
|
+
interface MetadataWeights {
|
|
8198
|
+
readonly selected: io.flow.billing.RESERVED_WORD_true.up.v0.enums.WeightSelection;
|
|
8199
|
+
readonly dead?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDead;
|
|
8200
|
+
readonly dimensional?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDimensional;
|
|
8201
|
+
}
|
|
8202
|
+
interface ShippingMethodReference {
|
|
8203
|
+
readonly id: string;
|
|
8204
|
+
}
|
|
8205
|
+
interface TrueUpLabelSummary {
|
|
8206
|
+
readonly id: string;
|
|
8207
|
+
readonly carrier_service_id: string;
|
|
8208
|
+
readonly carrier_tracking_number: string;
|
|
8209
|
+
readonly flow_tracking_number: string;
|
|
8210
|
+
readonly created_at: string;
|
|
8211
|
+
}
|
|
8212
|
+
interface WeightsDead {
|
|
8213
|
+
readonly weight: number;
|
|
8214
|
+
}
|
|
8215
|
+
interface WeightsDimensional {
|
|
8216
|
+
readonly weight: number;
|
|
8217
|
+
readonly length: number;
|
|
8218
|
+
readonly width: number;
|
|
8219
|
+
readonly height: number;
|
|
8220
|
+
}
|
|
8221
|
+
}
|
|
8222
|
+
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.unions {
|
|
8223
|
+
type LabelSurchargeDetail = io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailFlat | io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailPercentage | io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeDetailPerWeightUnit;
|
|
8224
|
+
}
|
|
8225
|
+
declare namespace io.flow.shopify.merchant.config.v0.models {
|
|
8226
|
+
interface Company {
|
|
8227
|
+
readonly discriminator: 'company';
|
|
8228
|
+
readonly legal_name: string;
|
|
8229
|
+
readonly incorporation_country: string;
|
|
8230
|
+
readonly incorporation_jurisdiction: string;
|
|
8231
|
+
readonly tax_registration_number: string;
|
|
8232
|
+
}
|
|
8233
|
+
interface CountryOfOrigin {
|
|
8234
|
+
readonly country: io.flow.reference.v0.models.Country;
|
|
8235
|
+
}
|
|
8236
|
+
interface CountryOfOriginForm {
|
|
8237
|
+
readonly country: string;
|
|
8238
|
+
}
|
|
8239
|
+
interface Individual {
|
|
8240
|
+
readonly discriminator: 'individual';
|
|
8241
|
+
readonly legal_name: string;
|
|
8242
|
+
readonly tax_registration_number?: string;
|
|
8243
|
+
readonly date_of_birth: string;
|
|
8244
|
+
}
|
|
8245
|
+
interface KnowYourBusinessUsa {
|
|
8246
|
+
readonly discriminator: 'know_your_business_usa';
|
|
8247
|
+
readonly id: string;
|
|
8248
|
+
readonly organization_id: string;
|
|
8249
|
+
readonly primary_entity: io.flow.shopify.merchant.config.v0.unions.Entity;
|
|
8250
|
+
readonly parent_company?: io.flow.shopify.merchant.config.v0.models.Company;
|
|
8251
|
+
readonly ultimate_parent_company?: io.flow.shopify.merchant.config.v0.models.Company;
|
|
8252
|
+
readonly ultimate_beneficiary_owner: io.flow.shopify.merchant.config.v0.models.Individual;
|
|
8253
|
+
readonly business_url: string;
|
|
8254
|
+
readonly business_address: io.flow.common.v0.models.Address;
|
|
8255
|
+
}
|
|
8256
|
+
interface KnowYourBusinessUsaForm {
|
|
8257
|
+
readonly discriminator: 'know_your_business_usa_form';
|
|
8258
|
+
readonly primary_entity: io.flow.shopify.merchant.config.v0.unions.Entity;
|
|
8259
|
+
readonly parent_company?: io.flow.shopify.merchant.config.v0.models.Company;
|
|
8260
|
+
readonly ultimate_parent_company?: io.flow.shopify.merchant.config.v0.models.Company;
|
|
8261
|
+
readonly ultimate_beneficiary_owner: io.flow.shopify.merchant.config.v0.models.Individual;
|
|
8262
|
+
readonly business_url: string;
|
|
8263
|
+
readonly business_address: io.flow.common.v0.models.Address;
|
|
8264
|
+
}
|
|
8265
|
+
interface PackageDimensions {
|
|
8266
|
+
readonly dimensions: io.flow.common.v0.models.Dimension[];
|
|
8267
|
+
}
|
|
8268
|
+
interface PackageDimensionsForm {
|
|
8269
|
+
readonly dimensions: io.flow.common.v0.models.Dimension[];
|
|
8270
|
+
}
|
|
8271
|
+
}
|
|
8272
|
+
declare namespace io.flow.shopify.merchant.config.v0.unions {
|
|
8273
|
+
type Entity = io.flow.shopify.merchant.config.v0.models.Company | io.flow.shopify.merchant.config.v0.models.Individual;
|
|
8274
|
+
type KnowYourBusiness = io.flow.shopify.merchant.config.v0.models.KnowYourBusinessUsa;
|
|
8275
|
+
type KnowYourBusinessForm = io.flow.shopify.merchant.config.v0.models.KnowYourBusinessUsaForm;
|
|
8276
|
+
}
|
|
8277
|
+
declare namespace io.flow.price.v0.enums {
|
|
8278
|
+
type LevyComponent = 'goods' | 'duty' | 'insurance' | 'freight' | 'vat';
|
|
8279
|
+
type LevyStrategy = 'minimum' | 'average' | 'maximum';
|
|
8280
|
+
type PriceAccuracy = 'calculated' | 'estimated_from_partial_destination';
|
|
8281
|
+
type PriceDetailComponentKey = 'base_price' | 'discount' | 'currency_margin' | 'percent_item_margin' | 'fixed_item_margin' | 'duties_item_price' | 'duties_added_margin' | 'duties_rounding' | 'duties_deminimis' | 'vat_item_price' | 'vat_added_margin' | 'vat_rounding' | 'vat_duties_item_price' | 'vat_duties_added_margin' | 'vat_duties_rounding' | 'vat_deminimis' | 'item_price_percent_sales_margin' | 'margins_percent_sales_margin' | 'rounding_percent_sales_margin' | 'vat_percent_sales_margin' | 'vat_duty_percent_sales_margin' | 'duty_percent_sales_margin';
|
|
8282
|
+
type PriceDetailKey = 'item_price' | 'margins' | 'vat' | 'duty' | 'rounding' | 'adjustment';
|
|
8283
|
+
type PricingLevySetting = 'included' | 'displayed' | 'ignored';
|
|
8284
|
+
}
|
|
8285
|
+
declare namespace io.flow.price.v0.models {
|
|
8286
|
+
interface CurrencyFormat {
|
|
8287
|
+
readonly symbol: io.flow.common.v0.enums.CurrencySymbolFormat;
|
|
8288
|
+
readonly label_formatters: io.flow.common.v0.enums.CurrencyLabelFormatter[];
|
|
8289
|
+
}
|
|
8290
|
+
interface DeminimisPerItem {
|
|
8291
|
+
readonly discriminator: 'deminimis_per_item';
|
|
8292
|
+
readonly currency: string;
|
|
8293
|
+
readonly minimum?: number;
|
|
8294
|
+
readonly maximum?: number;
|
|
8295
|
+
}
|
|
8296
|
+
interface DeminimisSimple {
|
|
8297
|
+
readonly discriminator: 'deminimis_simple';
|
|
8298
|
+
readonly value?: number;
|
|
8299
|
+
readonly currency: string;
|
|
8300
|
+
readonly components: io.flow.price.v0.enums.LevyComponent[];
|
|
8301
|
+
readonly minimum?: number;
|
|
8302
|
+
}
|
|
8303
|
+
interface Duty {
|
|
8304
|
+
readonly rate: number;
|
|
8305
|
+
readonly components: io.flow.price.v0.enums.LevyComponent[];
|
|
8306
|
+
readonly deminimis?: io.flow.price.v0.unions.Deminimis;
|
|
8307
|
+
readonly name?: string;
|
|
8308
|
+
}
|
|
8309
|
+
interface LocalPriceDetails {
|
|
8310
|
+
readonly base: io.flow.price.v0.models.PriceDetails;
|
|
8311
|
+
readonly local: io.flow.price.v0.models.PriceDetails;
|
|
8312
|
+
readonly discount?: io.flow.price.v0.models.PriceDetail;
|
|
8313
|
+
readonly local_before_discount?: io.flow.price.v0.models.PriceDetail;
|
|
8314
|
+
}
|
|
8315
|
+
interface PriceBook {
|
|
8316
|
+
readonly id: string;
|
|
8317
|
+
readonly key: string;
|
|
8318
|
+
readonly currency: string;
|
|
8319
|
+
readonly name: string;
|
|
8320
|
+
readonly includes: io.flow.common.v0.models.IncludedLevies;
|
|
8321
|
+
readonly status: io.flow.common.v0.enums.PriceBookStatus;
|
|
8322
|
+
}
|
|
8323
|
+
interface PriceBookForm {
|
|
8324
|
+
readonly currency: string;
|
|
8325
|
+
readonly name: string;
|
|
8326
|
+
readonly includes: io.flow.common.v0.enums.IncludedLevyKey;
|
|
8327
|
+
readonly status?: io.flow.common.v0.enums.PriceBookStatus;
|
|
8328
|
+
}
|
|
8329
|
+
interface PriceBookItem {
|
|
8330
|
+
readonly id: string;
|
|
8331
|
+
readonly key: string;
|
|
8332
|
+
readonly price_book: io.flow.price.v0.models.PriceBookReference;
|
|
8333
|
+
readonly price: io.flow.common.v0.models.Price;
|
|
8334
|
+
readonly item_number: string;
|
|
8335
|
+
readonly schedule: io.flow.price.v0.models.PriceBookItemSchedule;
|
|
8336
|
+
readonly item_attributes?: Record<string, string>;
|
|
8337
|
+
}
|
|
8338
|
+
interface PriceBookItemForm {
|
|
8339
|
+
readonly price_book_key: string;
|
|
8340
|
+
readonly item_number: string;
|
|
8341
|
+
readonly amount: number;
|
|
8342
|
+
readonly schedule?: io.flow.price.v0.models.PriceBookItemSchedule;
|
|
8343
|
+
readonly item_attributes?: Record<string, string>;
|
|
8344
|
+
}
|
|
8345
|
+
interface PriceBookItemQueryForm {
|
|
8346
|
+
readonly price_book_key: string;
|
|
8347
|
+
readonly item_query: string;
|
|
8348
|
+
readonly amount: number;
|
|
8349
|
+
readonly schedule?: io.flow.price.v0.models.PriceBookItemSchedule;
|
|
8350
|
+
readonly item_attributes?: Record<string, string>;
|
|
8351
|
+
}
|
|
8352
|
+
interface PriceBookItemSchedule {
|
|
8353
|
+
readonly starts_at: string;
|
|
8354
|
+
readonly ends_at?: string;
|
|
8355
|
+
}
|
|
8356
|
+
interface PriceBookReference {
|
|
8357
|
+
readonly id: string;
|
|
8358
|
+
readonly key: string;
|
|
8359
|
+
}
|
|
8360
|
+
interface PriceCheck {
|
|
8361
|
+
readonly display: io.flow.price.v0.models.LocalPriceDetails;
|
|
8362
|
+
readonly final: io.flow.price.v0.models.LocalPriceDetails;
|
|
8363
|
+
}
|
|
8364
|
+
interface PriceDetail {
|
|
8365
|
+
readonly key: io.flow.price.v0.enums.PriceDetailKey;
|
|
8366
|
+
readonly components: io.flow.price.v0.models.PriceDetailComponent[];
|
|
8367
|
+
readonly amount: number;
|
|
8368
|
+
readonly label: string;
|
|
8369
|
+
readonly name?: string;
|
|
8370
|
+
readonly basis?: number;
|
|
8371
|
+
}
|
|
8372
|
+
interface PriceDetailComponent {
|
|
8373
|
+
readonly key: io.flow.price.v0.enums.PriceDetailComponentKey;
|
|
8374
|
+
readonly amount: number;
|
|
8375
|
+
readonly label: string;
|
|
8376
|
+
readonly name?: string;
|
|
8377
|
+
}
|
|
8378
|
+
interface PriceDetails {
|
|
8379
|
+
readonly currency: string;
|
|
8380
|
+
readonly item_price: io.flow.price.v0.models.PriceDetail;
|
|
8381
|
+
readonly margins: io.flow.price.v0.models.PriceDetail;
|
|
8382
|
+
readonly vat: io.flow.price.v0.models.PriceDetail;
|
|
8383
|
+
readonly duty: io.flow.price.v0.models.PriceDetail;
|
|
8384
|
+
readonly rounding: io.flow.price.v0.models.PriceDetail;
|
|
8385
|
+
readonly price: io.flow.common.v0.models.Price;
|
|
8386
|
+
readonly total: io.flow.common.v0.models.Price;
|
|
8387
|
+
readonly adjustment?: io.flow.price.v0.models.PriceDetail;
|
|
8388
|
+
}
|
|
8389
|
+
interface PriceEquation {
|
|
8390
|
+
readonly contracted_rate: number;
|
|
8391
|
+
readonly rate: number;
|
|
8392
|
+
readonly pricing: io.flow.price.v0.models.Pricing;
|
|
8393
|
+
readonly base_price: number;
|
|
8394
|
+
readonly discount: number;
|
|
8395
|
+
readonly fixed_margin: number;
|
|
8396
|
+
readonly percent_margin: number;
|
|
8397
|
+
readonly insurance: number;
|
|
8398
|
+
readonly freight: number;
|
|
8399
|
+
readonly duty?: io.flow.price.v0.models.Duty;
|
|
8400
|
+
readonly tax?: io.flow.price.v0.models.Tax;
|
|
8401
|
+
readonly percent_sales_margin: number;
|
|
8402
|
+
}
|
|
8403
|
+
interface Pricing {
|
|
8404
|
+
readonly vat: io.flow.price.v0.enums.PricingLevySetting;
|
|
8405
|
+
readonly duty: io.flow.price.v0.enums.PricingLevySetting;
|
|
8406
|
+
readonly rounding?: io.flow.common.v0.models.Rounding;
|
|
8407
|
+
}
|
|
8408
|
+
interface Tax {
|
|
8409
|
+
readonly name: string;
|
|
8410
|
+
readonly rate: number;
|
|
8411
|
+
readonly components: io.flow.price.v0.enums.LevyComponent[];
|
|
8412
|
+
readonly deminimis?: io.flow.price.v0.unions.Deminimis;
|
|
8413
|
+
}
|
|
8414
|
+
}
|
|
8415
|
+
declare namespace io.flow.price.v0.unions {
|
|
8416
|
+
type Deminimis = io.flow.price.v0.models.DeminimisSimple | io.flow.price.v0.models.DeminimisPerItem;
|
|
8417
|
+
}
|
|
8418
|
+
declare namespace io.flow.tracking.v0.enums {
|
|
8419
|
+
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
|
|
8420
|
+
}
|
|
8421
|
+
declare namespace io.flow.tracking.v0.models {
|
|
8422
|
+
interface LabelTrackingCarrierService {
|
|
8423
|
+
readonly carrier_id: string;
|
|
8424
|
+
readonly service_id?: string;
|
|
8425
|
+
}
|
|
8426
|
+
interface LabelTrackingSummary {
|
|
8427
|
+
readonly id: string;
|
|
8428
|
+
readonly carrier_service: io.flow.tracking.v0.models.LabelTrackingCarrierService;
|
|
8429
|
+
readonly carrier_tracking_number: string;
|
|
8430
|
+
readonly order_number?: string;
|
|
8431
|
+
readonly label?: io.flow.label.v0.models.LabelReference;
|
|
8432
|
+
readonly in_transit: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
8433
|
+
readonly delivered?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
8434
|
+
readonly rejected?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
8435
|
+
}
|
|
8436
|
+
interface LabelTrackingSummaryUpdate {
|
|
8437
|
+
readonly timestamp: string;
|
|
8438
|
+
readonly created_at?: string;
|
|
8439
|
+
}
|
|
8440
|
+
interface Tracking {
|
|
8441
|
+
readonly id: string;
|
|
8442
|
+
readonly labels: io.flow.tracking.v0.models.TrackingLabel[];
|
|
8443
|
+
readonly status: io.flow.tracking.v0.enums.TrackingStatus;
|
|
8444
|
+
readonly attributes: Record<string, string>;
|
|
8445
|
+
readonly url: string;
|
|
8446
|
+
readonly window?: io.flow.common.v0.models.DatetimeRange;
|
|
8447
|
+
readonly order_number?: string;
|
|
8448
|
+
}
|
|
8449
|
+
interface TrackingEvent {
|
|
8450
|
+
readonly id: string;
|
|
8451
|
+
readonly address: io.flow.common.v0.models.Address;
|
|
8452
|
+
readonly status: io.flow.tracking.v0.enums.TrackingStatus;
|
|
8453
|
+
readonly timestamp: string;
|
|
8454
|
+
readonly description?: string;
|
|
8455
|
+
}
|
|
8456
|
+
interface TrackingEventForm {
|
|
8457
|
+
readonly tracking_label_id: string;
|
|
8168
8458
|
readonly timestamp: string;
|
|
8169
8459
|
readonly status: io.flow.tracking.v0.enums.TrackingStatus;
|
|
8170
8460
|
readonly description?: string;
|
|
@@ -8291,7 +8581,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
8291
8581
|
readonly status: io.flow.common.v0.enums.OrganizationStatus;
|
|
8292
8582
|
}
|
|
8293
8583
|
interface OperationsContact {
|
|
8294
|
-
readonly full_name?: string;
|
|
8295
8584
|
readonly company?: string;
|
|
8296
8585
|
readonly email?: string;
|
|
8297
8586
|
readonly phone?: string;
|
|
@@ -8308,7 +8597,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
8308
8597
|
readonly status: io.flow.merchant.onboarding.v0.enums.OnboardingApplicationStatus;
|
|
8309
8598
|
readonly company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
8310
8599
|
readonly indirect_tax?: io.flow.merchant.onboarding.v0.models.IndirectTax;
|
|
8311
|
-
readonly parent_company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
8312
8600
|
readonly beneficiary?: string;
|
|
8313
8601
|
readonly ultimate_beneficiary_owner?: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
|
|
8314
8602
|
readonly business_url?: string;
|
|
@@ -8318,30 +8606,29 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
8318
8606
|
readonly chargeback_percentage?: number;
|
|
8319
8607
|
readonly bank_account_number?: string;
|
|
8320
8608
|
readonly aba_routing_transit_number?: string;
|
|
8321
|
-
readonly trade_sectors?: io.flow.merchant.onboarding.v0.enums.OnboardingTradeSector[];
|
|
8322
8609
|
readonly other_trade_sector?: string;
|
|
8323
8610
|
readonly third_party_logistics_partners?: io.flow.merchant.onboarding.v0.models.ThirdPartyLogisticsPartner[];
|
|
8611
|
+
readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
8324
8612
|
readonly average_order_weight?: number;
|
|
8325
8613
|
readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
|
|
8326
8614
|
readonly monthly_average?: io.flow.merchant.onboarding.v0.models.MonthlyAverage;
|
|
8327
|
-
readonly dangerous_goods?: boolean;
|
|
8328
8615
|
readonly default_country_of_origin?: string;
|
|
8329
8616
|
readonly ratecard?: io.flow.ratecard.v0.models.RatecardReference;
|
|
8330
8617
|
readonly rate_card: string;
|
|
8331
8618
|
readonly created_at: string;
|
|
8332
8619
|
readonly activated_at?: string;
|
|
8333
8620
|
readonly status_updated_at?: string;
|
|
8334
|
-
readonly logistics_format?: io.flow.merchant.onboarding.v0.models.LogisticsFormat;
|
|
8335
8621
|
readonly shop?: io.flow.merchant.onboarding.v0.models.Shop;
|
|
8336
8622
|
readonly last_year_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
8337
8623
|
readonly last_month_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
8338
8624
|
readonly average_order_value?: io.flow.common.v0.models.Money;
|
|
8625
|
+
readonly glbe_merchant_guid?: string;
|
|
8626
|
+
readonly mcc_codes?: number[];
|
|
8339
8627
|
}
|
|
8340
8628
|
interface ShopifyMerchantApplicationForm {
|
|
8341
8629
|
readonly discriminator: 'shopify_merchant_application_form';
|
|
8342
8630
|
readonly company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
8343
8631
|
readonly indirect_tax?: io.flow.merchant.onboarding.v0.models.IndirectTax;
|
|
8344
|
-
readonly parent_company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
8345
8632
|
readonly beneficiary?: string;
|
|
8346
8633
|
readonly ultimate_beneficiary_owner?: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
|
|
8347
8634
|
readonly business_url?: string;
|
|
@@ -8351,23 +8638,22 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
8351
8638
|
readonly chargeback_percentage?: number;
|
|
8352
8639
|
readonly bank_account_number?: string;
|
|
8353
8640
|
readonly aba_routing_transit_number?: string;
|
|
8354
|
-
readonly trade_sectors?: io.flow.merchant.onboarding.v0.enums.OnboardingTradeSector[];
|
|
8355
8641
|
readonly other_trade_sector?: string;
|
|
8356
8642
|
readonly third_party_logistics_partners?: io.flow.merchant.onboarding.v0.models.ThirdPartyLogisticsPartner[];
|
|
8643
|
+
readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
8357
8644
|
readonly average_order_weight?: number;
|
|
8358
8645
|
readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
|
|
8359
8646
|
readonly monthly_average_volume_amount?: number;
|
|
8360
8647
|
readonly monthly_average_volume_currency?: string;
|
|
8361
8648
|
readonly monthly_average_number_transactions?: number;
|
|
8362
|
-
readonly dangerous_goods?: boolean;
|
|
8363
8649
|
readonly default_country_of_origin?: string;
|
|
8364
8650
|
readonly ratecard_id?: string;
|
|
8365
8651
|
readonly rate_card: string;
|
|
8366
|
-
readonly logistics_format?: io.flow.merchant.onboarding.v0.models.LogisticsFormat;
|
|
8367
8652
|
readonly shop?: io.flow.merchant.onboarding.v0.models.Shop;
|
|
8368
8653
|
readonly last_year_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
8369
8654
|
readonly last_month_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
8370
8655
|
readonly average_order_value?: io.flow.common.v0.models.Money;
|
|
8656
|
+
readonly mcc_codes?: number[];
|
|
8371
8657
|
}
|
|
8372
8658
|
interface ShopifyMerchantApplicationPutForm {
|
|
8373
8659
|
readonly discriminator: 'shopify_merchant_application_put_form';
|
|
@@ -8930,6 +9216,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
8930
9216
|
type PayoutAttachmentType = 'transactions';
|
|
8931
9217
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
8932
9218
|
type StatementAttachmentType = 'csv';
|
|
9219
|
+
type TransactionPayoutPendingReason = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'external_fulfillment_missing_tracking_info' | 'waiting_for_positive_account_balance';
|
|
8933
9220
|
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
8934
9221
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
8935
9222
|
}
|
|
@@ -9006,6 +9293,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
9006
9293
|
interface ChannelTransaction {
|
|
9007
9294
|
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
9008
9295
|
readonly id: string;
|
|
9296
|
+
readonly metadata?: io.flow.billing.v0.unions.TransactionMetadata;
|
|
9009
9297
|
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
9010
9298
|
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
9011
9299
|
readonly currency: string;
|
|
@@ -9020,6 +9308,11 @@ declare namespace io.flow.billing.v0.models {
|
|
|
9020
9308
|
readonly created_at: string;
|
|
9021
9309
|
readonly updated_at: string;
|
|
9022
9310
|
}
|
|
9311
|
+
interface ChannelTransactionPayout {
|
|
9312
|
+
readonly transaction: io.flow.billing.v0.models.TransactionReference;
|
|
9313
|
+
readonly waiting_for?: io.flow.billing.v0.enums.TransactionPayoutPendingReason;
|
|
9314
|
+
readonly payout?: io.flow.billing.v0.models.PayoutReference;
|
|
9315
|
+
}
|
|
9023
9316
|
interface DefaultBankAccountForm {
|
|
9024
9317
|
readonly bank_account_id: string;
|
|
9025
9318
|
}
|
|
@@ -9047,6 +9340,11 @@ declare namespace io.flow.billing.v0.models {
|
|
|
9047
9340
|
readonly created_at: string;
|
|
9048
9341
|
readonly updated_at: string;
|
|
9049
9342
|
}
|
|
9343
|
+
interface OrganizationTransactionPayout {
|
|
9344
|
+
readonly transaction: io.flow.billing.v0.models.TransactionReference;
|
|
9345
|
+
readonly waiting_for?: io.flow.billing.v0.enums.TransactionPayoutPendingReason;
|
|
9346
|
+
readonly payout?: io.flow.billing.v0.models.PayoutReference;
|
|
9347
|
+
}
|
|
9050
9348
|
interface ParentTransactionSummary {
|
|
9051
9349
|
readonly id: string;
|
|
9052
9350
|
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
@@ -9055,6 +9353,9 @@ declare namespace io.flow.billing.v0.models {
|
|
|
9055
9353
|
readonly type: io.flow.billing.v0.enums.PayoutAttachmentType;
|
|
9056
9354
|
readonly url: string;
|
|
9057
9355
|
}
|
|
9356
|
+
interface PayoutReference {
|
|
9357
|
+
readonly id: string;
|
|
9358
|
+
}
|
|
9058
9359
|
interface PayoutStatusFailed {
|
|
9059
9360
|
readonly code: 'failed';
|
|
9060
9361
|
readonly timestamp: string;
|
|
@@ -9070,6 +9371,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
9070
9371
|
}
|
|
9071
9372
|
interface PayoutTransaction {
|
|
9072
9373
|
readonly id: string;
|
|
9374
|
+
readonly metadata?: io.flow.billing.v0.unions.TransactionMetadata;
|
|
9073
9375
|
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
9074
9376
|
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
9075
9377
|
readonly currency: string;
|
|
@@ -9105,6 +9407,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
9105
9407
|
interface Transaction {
|
|
9106
9408
|
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
9107
9409
|
readonly id: string;
|
|
9410
|
+
readonly metadata?: io.flow.billing.v0.unions.TransactionMetadata;
|
|
9108
9411
|
readonly order?: io.flow.billing.v0.models.BillingChannelOrderSummary;
|
|
9109
9412
|
readonly payment_request?: io.flow.billing.v0.models.BillingChannelPaymentRequestReference;
|
|
9110
9413
|
readonly currency: string;
|
|
@@ -9119,6 +9422,13 @@ declare namespace io.flow.billing.v0.models {
|
|
|
9119
9422
|
readonly created_at: string;
|
|
9120
9423
|
readonly updated_at: string;
|
|
9121
9424
|
}
|
|
9425
|
+
interface TransactionMetadataShippingLabel {
|
|
9426
|
+
readonly discriminator: 'shipping_label';
|
|
9427
|
+
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
9428
|
+
}
|
|
9429
|
+
interface TransactionReference {
|
|
9430
|
+
readonly id: string;
|
|
9431
|
+
}
|
|
9122
9432
|
interface WithholdingDeduction {
|
|
9123
9433
|
readonly type: io.flow.billing.v0.enums.WithholdingDeductionType;
|
|
9124
9434
|
readonly amount: number;
|
|
@@ -9129,6 +9439,7 @@ declare namespace io.flow.billing.v0.unions {
|
|
|
9129
9439
|
type BankAccountForm = io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple;
|
|
9130
9440
|
type PayoutStatus = io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed;
|
|
9131
9441
|
type Settlement = io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout;
|
|
9442
|
+
type TransactionMetadata = io.flow.billing.v0.models.TransactionMetadataShippingLabel;
|
|
9132
9443
|
}
|
|
9133
9444
|
declare namespace io.flow.harmonization.v0.enums {
|
|
9134
9445
|
type TaxApplicability = 'none' | 'all';
|
|
@@ -9495,6 +9806,7 @@ declare namespace io.flow.fulfillment.v0.enums {
|
|
|
9495
9806
|
type LanePreselectPreference = 'lowest_cost' | 'default_tier';
|
|
9496
9807
|
type LaneStrategy = 'oldest' | 'fastest' | 'lowest_cost' | 'highest_priority';
|
|
9497
9808
|
type PhysicalDeliverySpecialSerivce = 'cold_storage' | 'hazardous' | 'perishable';
|
|
9809
|
+
type PreferredServiceSelectionStrategy = 'calculated_rate' | 'flat_rate' | 'custom_rate';
|
|
9498
9810
|
type QuoteErrorCode = 'generic_error' | 'items_not_available' | 'shipping_unavailable';
|
|
9499
9811
|
type RatecardOwner = 'flow' | 'organization';
|
|
9500
9812
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
@@ -9760,6 +10072,11 @@ declare namespace io.flow.fulfillment.v0.models {
|
|
|
9760
10072
|
readonly total?: io.flow.catalog.v0.models.LocalizedTotal;
|
|
9761
10073
|
readonly goods_supply?: io.flow.common.v0.enums.GoodsSupply;
|
|
9762
10074
|
readonly merchant_of_record_flow_entity?: io.flow.merchant.of.record.v0.enums.FlowEntity;
|
|
10075
|
+
readonly preferred_service?: io.flow.fulfillment.v0.models.PhysicalDeliveryPreferredService;
|
|
10076
|
+
}
|
|
10077
|
+
interface PhysicalDeliveryPreferredService {
|
|
10078
|
+
readonly id: string;
|
|
10079
|
+
readonly selection_stratey: io.flow.fulfillment.v0.enums.PreferredServiceSelectionStrategy;
|
|
9763
10080
|
}
|
|
9764
10081
|
interface PriceWithBaseAndDetails {
|
|
9765
10082
|
readonly currency: string;
|
|
@@ -10184,6 +10501,9 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
10184
10501
|
interface ActivationPutForm {
|
|
10185
10502
|
readonly placeholder?: boolean;
|
|
10186
10503
|
}
|
|
10504
|
+
interface DeactivationPutForm {
|
|
10505
|
+
readonly reason: string;
|
|
10506
|
+
}
|
|
10187
10507
|
interface InComplianceReview {
|
|
10188
10508
|
readonly discriminator: 'in_compliance_review';
|
|
10189
10509
|
readonly placeholder?: boolean;
|
|
@@ -10192,6 +10512,10 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
10192
10512
|
readonly discriminator: 'merchant_activated';
|
|
10193
10513
|
readonly placeholder?: boolean;
|
|
10194
10514
|
}
|
|
10515
|
+
interface MerchantDeactivated {
|
|
10516
|
+
readonly discriminator: 'merchant_deactivated';
|
|
10517
|
+
readonly reason: string;
|
|
10518
|
+
}
|
|
10195
10519
|
interface MerchantRejected {
|
|
10196
10520
|
readonly discriminator: 'merchant_rejected';
|
|
10197
10521
|
readonly reason: io.flow.organization.onboarding.state.v0.enums.MerchantRejectedReason;
|
|
@@ -10211,6 +10535,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
10211
10535
|
readonly time_blocked?: number;
|
|
10212
10536
|
readonly blocked_since?: string;
|
|
10213
10537
|
readonly completed_at?: string;
|
|
10538
|
+
readonly onboarding_started_at?: string;
|
|
10214
10539
|
}
|
|
10215
10540
|
interface SetupBlocked {
|
|
10216
10541
|
readonly discriminator: 'setup_blocked';
|
|
@@ -10226,7 +10551,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
10226
10551
|
}
|
|
10227
10552
|
}
|
|
10228
10553
|
declare namespace io.flow.organization.onboarding.state.v0.unions {
|
|
10229
|
-
type OnboardingState = io.flow.organization.onboarding.state.v0.models.InComplianceReview | io.flow.organization.onboarding.state.v0.models.SetupInProgress | io.flow.organization.onboarding.state.v0.models.MerchantRejected | io.flow.organization.onboarding.state.v0.models.SetupBlocked | io.flow.organization.onboarding.state.v0.models.SetupCompleted | io.flow.organization.onboarding.state.v0.models.MerchantActivated;
|
|
10554
|
+
type OnboardingState = io.flow.organization.onboarding.state.v0.models.InComplianceReview | io.flow.organization.onboarding.state.v0.models.SetupInProgress | io.flow.organization.onboarding.state.v0.models.MerchantRejected | io.flow.organization.onboarding.state.v0.models.SetupBlocked | io.flow.organization.onboarding.state.v0.models.SetupCompleted | io.flow.organization.onboarding.state.v0.models.MerchantActivated | io.flow.organization.onboarding.state.v0.models.MerchantDeactivated;
|
|
10230
10555
|
}
|
|
10231
10556
|
declare namespace io.flow.fraud.v0.enums {
|
|
10232
10557
|
type FraudEmailRuleDecision = 'approved' | 'declined';
|
|
@@ -10537,9 +10862,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10537
10862
|
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-0522d426a5b741c791ba05496c35297a';
|
|
10538
10863
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
10539
10864
|
type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
|
|
10540
|
-
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_total' | '
|
|
10865
|
+
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_total' | 'channel_transactions_capture_count' | 'channel_transactions_capture_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_transactions_other_count' | 'channel_transactions_other_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_capture_deletion_unprocessed_count' | 'queued_channel_transaction_unprocessed_count' | 'queued_channel_organization_unprocessed_count' | 'queued_consumer_invoice_unprocessed_count' | 'queued_fulfillment_external_unprocessed_count' | 'queued_fulfillment_in_transit_unprocessed_count' | 'queued_fulfillment_shipping_notification_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_label_tracking_summary_unprocessed_count' | 'queued_label_origin_unprocessed_count' | 'queued_order_unprocessed_count' | 'queued_order_identifier_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_refund_deletion_unprocessed_count' | 'queued_refund_over_capture_unprocessed_count' | 'queued_sales_record_unprocessed_count' | 'queued_statement_batch_unprocessed_count' | 'queued_statement_email_unprocessed_count' | 'queued_statement_summary_email_unprocessed_count' | 'queued_record_snooze_count' | 'queued_record_snooze_ending_in_48_hours_count' | 'statements_no_payout_count' | 'statements_no_payout_total' | 'statements_pending_payout_count' | 'statements_pending_payout_total' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'pending_payouts_max_age' | 'average_payout_amount' | 'orders_with_payments_count' | 'orders_without_payments_count' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count';
|
|
10541
10866
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'all';
|
|
10542
|
-
type BillingStatementBatchFileKey = '
|
|
10867
|
+
type BillingStatementBatchFileKey = 'summary';
|
|
10543
10868
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
10544
10869
|
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty';
|
|
10545
10870
|
type BlazeCheckoutEvent = 'begin_checkout' | 'select_promotion' | 'add_shipping_info' | 'add_payment_info' | 'purchase';
|
|
@@ -10547,10 +10872,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10547
10872
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
10548
10873
|
type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax';
|
|
10549
10874
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
10875
|
+
type CarrierValidationStatus = 'success' | 'error';
|
|
10550
10876
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
10551
10877
|
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
10552
|
-
type ChannelOrderAcceptanceErrorAction = 'auto_reject';
|
|
10553
|
-
type
|
|
10878
|
+
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
10879
|
+
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tlc_team';
|
|
10880
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies';
|
|
10554
10881
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
|
|
10555
10882
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
10556
10883
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
@@ -10646,6 +10973,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10646
10973
|
type DisputeLiability = 'flow' | 'organization';
|
|
10647
10974
|
type DisputeProcessor = 'adyen' | 'paypal';
|
|
10648
10975
|
type DisputeStatus = 'pending' | 'won' | 'lost' | 'expired';
|
|
10976
|
+
type DisputeTransactionType = 'adjustment' | 'dispute';
|
|
10649
10977
|
type DisputeType = 'chargeback';
|
|
10650
10978
|
type DutyCompoundExpressionType = 'sum' | 'max' | 'min';
|
|
10651
10979
|
type DutyExemptItemTypes = 'gift_card' | 'service' | 'digital_item' | 'personalization';
|
|
@@ -10656,7 +10984,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10656
10984
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
10657
10985
|
type EmptyAttribute = 'irrelevant';
|
|
10658
10986
|
type ErpFileType = 'vendor';
|
|
10659
|
-
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_deleted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
10987
|
+
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_deleted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
10660
10988
|
type ExperienceImportType = 'experience_with_settings';
|
|
10661
10989
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
10662
10990
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -10690,6 +11018,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10690
11018
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
10691
11019
|
type LabelGenerationAddressFailureStatus = 'in_review' | 'resolved' | 'unresolved';
|
|
10692
11020
|
type LabelInputSource = 'estimate';
|
|
11021
|
+
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_system';
|
|
10693
11022
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
10694
11023
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
10695
11024
|
type MainTransactionStatus = 'scheduled' | 'pending_proof';
|
|
@@ -10713,7 +11042,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10713
11042
|
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | 'miscellaneous';
|
|
10714
11043
|
type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
10715
11044
|
type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
10716
|
-
type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'api_internal_delete_transaction' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
|
|
11045
|
+
type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'api_sandbox_setup' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'api_internal_delete_transaction' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
|
|
10717
11046
|
type OrderAction = 'consumer_submit' | 'fraud_review_accept' | 'fraud_review_decline' | 'payment_fully_authorize' | 'payment_fully_capture';
|
|
10718
11047
|
type OrderAttributeIntent = 'discount_code';
|
|
10719
11048
|
type OrderCancellationInitiatedBy = 'flow' | 'organization';
|
|
@@ -10744,13 +11073,15 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10744
11073
|
type PromptCheckoutDisplayPosition = 'email' | 'submission';
|
|
10745
11074
|
type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
|
|
10746
11075
|
type PromptTarget = 'browse' | 'checkout';
|
|
10747
|
-
type QueuedRecordType = 'capture' | 'capture_deletion' | 'channel_transaction' | 'channel_organization' | 'consumer_invoice' | 'label_tracking_summary' | 'order' | 'order_identifier' | 'refund' | 'refund_deletion' | '
|
|
11076
|
+
type QueuedRecordType = 'capture' | 'capture_deletion' | 'channel_transaction' | 'channel_organization' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'label_tracking_summary' | 'label_invoice_request' | 'label_origin' | 'order' | 'order_identifier' | 'refund' | 'refund_deletion' | 'refund_over_capture' | 'sales_record' | 'statement_batch' | 'statement_email' | 'statement_summary_email' | 'wash';
|
|
10748
11077
|
type QuoteRequestType = 'generate' | 'delete' | 'update_currency_rate' | 'update_country';
|
|
11078
|
+
type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
|
|
10749
11079
|
type RateSource = 'calculated' | 'market';
|
|
10750
11080
|
type ReboundConfigurationStatus = 'active' | 'inactive';
|
|
10751
11081
|
type RedirectReason = 'three_d_secure';
|
|
10752
|
-
type RejectionReason = '
|
|
11082
|
+
type RejectionReason = 'merchant_policy' | 'previous_chargebacks' | 'restricted_party_screening' | 'risky_velocity' | 'suspicious_behavior' | 'suspicious_past_activity';
|
|
10753
11083
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
11084
|
+
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
10754
11085
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
10755
11086
|
type ResponsibleParty = 'flow' | 'organization';
|
|
10756
11087
|
type RestrictionAction = 'prohibited' | 'restricted';
|
|
@@ -10766,6 +11097,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10766
11097
|
type ShopifyGrantStatus = 'pass' | 'fail';
|
|
10767
11098
|
type ShopifyMarketsDangerousGoods = 'aerosols' | 'air_bag_inflators_or_seat_belt_pretensioners' | 'alcoholic_beverages_containing_more_than_24_percent_alcohol_by_volume' | 'batteries' | 'carbon_dioxide_or_dry_ice' | 'corrosives' | 'cannabidiol_products' | 'cologne_or_perfume' | 'currency_or_gift_cards_or_monetary_instruments' | 'exotic_leather_goods' | 'environmental_waste' | 'explosives_or_ammunition' | 'flammable_liquids' | 'gases' | 'hazardous_or_combustible_materials' | 'infectious_or_biological_substances' | 'knives' | 'matches_or_lighter_or_lighter_refills' | 'nail_polish' | 'oxidizing_materials_or_organic_peroxides' | 'pornography' | 'prohibited_carriage' | 'pesticides_or_toxic_herbicides_or_insecticides_or_poisonous_toxic_substances';
|
|
10768
11099
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
11100
|
+
type ShopifyMarketsQueuedRecordType = 'order_update' | 'card_payment' | 'online_payment' | 'flow_shop' | 'catalog_publication_sync' | 'product_restriction_result';
|
|
10769
11101
|
type ShopifyMarketsTradeSector = 'apparel_and_accessories' | 'beauty_and_cosmetics' | 'electronics' | 'food_or_perishables' | 'jewellery_and_watches' | 'paper_and_art' | 'sports_and_fitness' | 'toys_hobbies_gifts' | 'other';
|
|
10770
11102
|
type ShopifyMonitoringMonitorReviewStatus = 'in_review' | 'reviewed';
|
|
10771
11103
|
type ShopifyMonitoringTrackingField = 'tracking_number' | 'carrier_service' | 'tracking_url';
|
|
@@ -10786,7 +11118,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10786
11118
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
10787
11119
|
type SurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid';
|
|
10788
11120
|
type TariffEligibilityType = 'rex';
|
|
10789
|
-
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | '
|
|
11121
|
+
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults';
|
|
10790
11122
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
10791
11123
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
10792
11124
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
|
|
@@ -10794,7 +11126,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10794
11126
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
10795
11127
|
type TransactionPostingMethod = 'time' | 'proof';
|
|
10796
11128
|
type TransferMethod = 'ach';
|
|
11129
|
+
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak';
|
|
10797
11130
|
type UnclassifiedProductStatus = 'ignored' | 'escalated' | 'requeued' | 'unverified' | 'queued' | 'unconfident';
|
|
11131
|
+
type WashCarrierActualFileStatus = 'pending' | 'processing' | 'processed' | 'failed';
|
|
11132
|
+
type WeightSelection = 'dead' | 'dimensional';
|
|
10798
11133
|
}
|
|
10799
11134
|
declare namespace io.flow.internal.v0.models {
|
|
10800
11135
|
interface Acceptance {
|
|
@@ -11063,6 +11398,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11063
11398
|
readonly authentication: io.flow.internal.v0.models.AdyenAuthenticationForm;
|
|
11064
11399
|
readonly country: string;
|
|
11065
11400
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
11401
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
11066
11402
|
}
|
|
11067
11403
|
interface AdyenAuthentication {
|
|
11068
11404
|
readonly username: string;
|
|
@@ -11205,6 +11541,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11205
11541
|
readonly external_id: string;
|
|
11206
11542
|
readonly country: string;
|
|
11207
11543
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
11544
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
11208
11545
|
}
|
|
11209
11546
|
interface AdyenPaymentDetailsForm {
|
|
11210
11547
|
readonly fingerprint?: string;
|
|
@@ -11256,6 +11593,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11256
11593
|
readonly country: string;
|
|
11257
11594
|
readonly authentication: io.flow.internal.v0.models.AfterpayAuthenticationForm;
|
|
11258
11595
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
11596
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
11259
11597
|
}
|
|
11260
11598
|
interface AfterpayAuthentication {
|
|
11261
11599
|
readonly username: string;
|
|
@@ -11361,6 +11699,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11361
11699
|
readonly queue: string;
|
|
11362
11700
|
readonly count: number;
|
|
11363
11701
|
}
|
|
11702
|
+
interface AlgoliaIndexAssignment {
|
|
11703
|
+
readonly id: string;
|
|
11704
|
+
readonly name: string;
|
|
11705
|
+
readonly application_id: string;
|
|
11706
|
+
}
|
|
11364
11707
|
interface AllItemsExport {
|
|
11365
11708
|
readonly discriminator: 'all_items_export';
|
|
11366
11709
|
readonly event_id: string;
|
|
@@ -11449,6 +11792,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11449
11792
|
readonly price: io.flow.common.v0.models.PriceWithBase;
|
|
11450
11793
|
readonly charge_trigger: io.flow.internal.v0.enums.OrderChargeTrigger;
|
|
11451
11794
|
}
|
|
11795
|
+
interface AutoReviewCriteria {
|
|
11796
|
+
readonly hs_code?: string;
|
|
11797
|
+
readonly keywords?: string[];
|
|
11798
|
+
readonly action?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
11799
|
+
}
|
|
11452
11800
|
interface Backfill {
|
|
11453
11801
|
readonly days_to_backfill: string[];
|
|
11454
11802
|
}
|
|
@@ -11601,7 +11949,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11601
11949
|
}
|
|
11602
11950
|
interface BillingStatementBatch {
|
|
11603
11951
|
readonly id: string;
|
|
11604
|
-
readonly reconciliation: io.flow.internal.v0.models.BillingStatementBatchReconciliation;
|
|
11605
11952
|
}
|
|
11606
11953
|
interface BillingStatementBatchDeleted {
|
|
11607
11954
|
readonly discriminator: 'billing_statement_batch_deleted';
|
|
@@ -11609,9 +11956,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11609
11956
|
readonly timestamp: string;
|
|
11610
11957
|
readonly id: string;
|
|
11611
11958
|
}
|
|
11612
|
-
interface BillingStatementBatchReconciliation {
|
|
11613
|
-
readonly month: string;
|
|
11614
|
-
}
|
|
11615
11959
|
interface BillingStatementBatchReference {
|
|
11616
11960
|
readonly id: string;
|
|
11617
11961
|
}
|
|
@@ -11719,6 +12063,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11719
12063
|
readonly authentication: io.flow.internal.v0.models.BitpayAuthenticationForm;
|
|
11720
12064
|
readonly country: string;
|
|
11721
12065
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
12066
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
11722
12067
|
}
|
|
11723
12068
|
interface BitpayAuthentication {
|
|
11724
12069
|
readonly api_token: string;
|
|
@@ -11942,6 +12287,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11942
12287
|
readonly rate: number;
|
|
11943
12288
|
readonly name: string;
|
|
11944
12289
|
}
|
|
12290
|
+
interface CalculatorDtcePostBody {
|
|
12291
|
+
readonly products: io.flow.internal.v0.models.CalculatorDtceProduct[];
|
|
12292
|
+
readonly countryCodeFrom: string;
|
|
12293
|
+
readonly countryCodeTo: string;
|
|
12294
|
+
readonly classification: string;
|
|
12295
|
+
readonly shippingCost: number;
|
|
12296
|
+
readonly insuranceCost: number;
|
|
12297
|
+
readonly totalShipmentWeight: number;
|
|
12298
|
+
readonly currencyCode: string;
|
|
12299
|
+
readonly outputCurrencyCode: string;
|
|
12300
|
+
readonly explanation: boolean;
|
|
12301
|
+
readonly responseFormat: number;
|
|
12302
|
+
readonly requestId: string;
|
|
12303
|
+
readonly provinceCode?: string;
|
|
12304
|
+
}
|
|
12305
|
+
interface CalculatorDtceProduct {
|
|
12306
|
+
readonly origin: string;
|
|
12307
|
+
readonly hsCode: string;
|
|
12308
|
+
readonly sku: string;
|
|
12309
|
+
readonly value: number;
|
|
12310
|
+
readonly weight: number;
|
|
12311
|
+
readonly quantity: number;
|
|
12312
|
+
readonly reference?: string;
|
|
12313
|
+
}
|
|
11945
12314
|
interface CalculatorOrganizationSettings {
|
|
11946
12315
|
readonly id: string;
|
|
11947
12316
|
readonly default_country_of_origin?: string;
|
|
@@ -11992,6 +12361,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11992
12361
|
readonly organization: string;
|
|
11993
12362
|
readonly carrier_account: io.flow.internal.v0.models.CarrierAccount;
|
|
11994
12363
|
}
|
|
12364
|
+
interface CarrierAccountValidation {
|
|
12365
|
+
readonly organization: string;
|
|
12366
|
+
readonly status: io.flow.internal.v0.enums.CarrierValidationStatus;
|
|
12367
|
+
readonly error_message?: string;
|
|
12368
|
+
}
|
|
11995
12369
|
interface CarrierInvoice {
|
|
11996
12370
|
readonly number: string;
|
|
11997
12371
|
readonly timestamp: string;
|
|
@@ -12036,6 +12410,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12036
12410
|
readonly organization: string;
|
|
12037
12411
|
readonly data: io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesData;
|
|
12038
12412
|
}
|
|
12413
|
+
interface CatalogPublicationSyncValidationError {
|
|
12414
|
+
readonly message: string;
|
|
12415
|
+
readonly reason: string;
|
|
12416
|
+
readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
12417
|
+
}
|
|
12039
12418
|
interface CatalogSettings {
|
|
12040
12419
|
readonly id: string;
|
|
12041
12420
|
readonly mixed_bag_weight: io.flow.internal.v0.enums.MixedBagWeight;
|
|
@@ -12227,6 +12606,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12227
12606
|
readonly payment_request_id?: string;
|
|
12228
12607
|
readonly status: io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
12229
12608
|
readonly reasons: io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
12609
|
+
readonly next_action_from?: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
12230
12610
|
readonly order_created_at?: string;
|
|
12231
12611
|
}
|
|
12232
12612
|
interface ChannelOrderAcceptanceDeleted {
|
|
@@ -14169,6 +14549,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14169
14549
|
readonly customs_description?: string;
|
|
14170
14550
|
readonly hs6_code?: string;
|
|
14171
14551
|
readonly hs6_description?: string;
|
|
14552
|
+
readonly status?: io.flow.internal.v0.enums.ItemHarmonizationStatus;
|
|
14172
14553
|
}
|
|
14173
14554
|
interface ClassificationProductId {
|
|
14174
14555
|
readonly organization_id: string;
|
|
@@ -14222,6 +14603,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14222
14603
|
interface CommercialInvoiceComparison {
|
|
14223
14604
|
readonly urls: string[];
|
|
14224
14605
|
}
|
|
14606
|
+
interface CompanyReference {
|
|
14607
|
+
readonly id: string;
|
|
14608
|
+
}
|
|
14225
14609
|
interface Compliance {
|
|
14226
14610
|
readonly id: string;
|
|
14227
14611
|
readonly destination: string;
|
|
@@ -14332,6 +14716,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14332
14716
|
readonly authentication: io.flow.internal.v0.models.CryptoAuthenticationForm;
|
|
14333
14717
|
readonly country: string;
|
|
14334
14718
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
14719
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
14335
14720
|
}
|
|
14336
14721
|
interface CryptoAuthentication {
|
|
14337
14722
|
readonly public_key: string;
|
|
@@ -14349,7 +14734,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14349
14734
|
readonly base_amount: number;
|
|
14350
14735
|
readonly surcharges: io.flow.internal.v0.models.CsvSurcharges;
|
|
14351
14736
|
readonly total: number;
|
|
14352
|
-
readonly weight_unit: io.flow.
|
|
14737
|
+
readonly weight_unit: io.flow.units.v0.enums.UnitOfWeight;
|
|
14353
14738
|
readonly weight: number;
|
|
14354
14739
|
readonly ratecard: io.flow.internal.v0.models.CsvActualRatecard;
|
|
14355
14740
|
}
|
|
@@ -14357,7 +14742,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14357
14742
|
readonly base_amount?: number;
|
|
14358
14743
|
}
|
|
14359
14744
|
interface CsvDimensions {
|
|
14360
|
-
readonly unit: io.flow.
|
|
14745
|
+
readonly unit: io.flow.units.v0.enums.UnitOfLength;
|
|
14361
14746
|
readonly length: number;
|
|
14362
14747
|
readonly width: number;
|
|
14363
14748
|
readonly depth: number;
|
|
@@ -14391,7 +14776,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14391
14776
|
readonly base_amount: number;
|
|
14392
14777
|
readonly surcharges: io.flow.internal.v0.models.CsvSurcharges;
|
|
14393
14778
|
readonly total: number;
|
|
14394
|
-
readonly weight_unit: io.flow.
|
|
14779
|
+
readonly weight_unit: io.flow.units.v0.enums.UnitOfWeight;
|
|
14395
14780
|
readonly weight: number;
|
|
14396
14781
|
readonly variance: number;
|
|
14397
14782
|
}
|
|
@@ -14448,7 +14833,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14448
14833
|
readonly duties_paid: number;
|
|
14449
14834
|
}
|
|
14450
14835
|
interface CsvWeight {
|
|
14451
|
-
readonly unit: io.flow.
|
|
14836
|
+
readonly unit: io.flow.units.v0.enums.UnitOfWeight;
|
|
14452
14837
|
readonly provided: number;
|
|
14453
14838
|
readonly dimensional: number;
|
|
14454
14839
|
readonly lookup: number;
|
|
@@ -14632,6 +15017,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14632
15017
|
readonly order: io.flow.internal.v0.models.DebugOrder;
|
|
14633
15018
|
readonly debug: io.flow.internal.v0.models.DebugDetails;
|
|
14634
15019
|
readonly transactions: io.flow.billing.v0.models.Transaction[];
|
|
15020
|
+
readonly reporting: io.flow.internal.v0.models.ReportingDetails;
|
|
14635
15021
|
}
|
|
14636
15022
|
interface DebugOrderTransactionForm {
|
|
14637
15023
|
readonly order_id?: string;
|
|
@@ -14642,6 +15028,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14642
15028
|
readonly refund_id?: string;
|
|
14643
15029
|
readonly order_identifier?: io.flow.internal.v0.models.DebugOrderTransactionFormOrderIdentifier;
|
|
14644
15030
|
readonly authorization_id?: string;
|
|
15031
|
+
readonly posting_proof_id?: string;
|
|
15032
|
+
readonly label_tracking_summary_id?: string;
|
|
14645
15033
|
}
|
|
14646
15034
|
interface DebugOrderTransactionFormOrderIdentifier {
|
|
14647
15035
|
readonly key?: string;
|
|
@@ -15060,17 +15448,63 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15060
15448
|
readonly cipher: string;
|
|
15061
15449
|
readonly passphrase_ids: string[];
|
|
15062
15450
|
}
|
|
15451
|
+
interface EntityReference {
|
|
15452
|
+
readonly id: string;
|
|
15453
|
+
}
|
|
15063
15454
|
interface ErpFlowFile {
|
|
15064
15455
|
readonly id: string;
|
|
15065
15456
|
readonly type: io.flow.internal.v0.enums.ErpFileType;
|
|
15066
15457
|
readonly url: string;
|
|
15067
15458
|
readonly created_at: string;
|
|
15068
15459
|
}
|
|
15069
|
-
interface
|
|
15070
|
-
readonly environment: io.flow.common.v0.enums.Environment;
|
|
15460
|
+
interface ErpFlowFileForm {
|
|
15071
15461
|
readonly type: io.flow.internal.v0.enums.ErpFileType;
|
|
15072
15462
|
}
|
|
15463
|
+
interface ErpFlowVendor {
|
|
15464
|
+
readonly company: io.flow.internal.v0.models.CompanyReference;
|
|
15465
|
+
readonly entity: io.flow.internal.v0.models.EntityReference;
|
|
15466
|
+
readonly acc_des: string;
|
|
15467
|
+
readonly country_name: string;
|
|
15468
|
+
readonly acng_code: string;
|
|
15469
|
+
readonly code: string;
|
|
15470
|
+
readonly branch: string;
|
|
15471
|
+
readonly trial_bal_code: string;
|
|
15472
|
+
readonly sec_name: string;
|
|
15473
|
+
readonly branch_des: string;
|
|
15474
|
+
readonly state_a: string;
|
|
15475
|
+
readonly bank_code: string;
|
|
15476
|
+
readonly id: string;
|
|
15477
|
+
readonly tax_code?: string;
|
|
15478
|
+
readonly vat_flag?: string;
|
|
15479
|
+
readonly w_tax_percent?: string;
|
|
15480
|
+
readonly iban?: string;
|
|
15481
|
+
readonly confirmed_date?: string;
|
|
15482
|
+
readonly w_tax_date?: string;
|
|
15483
|
+
readonly w_tax_num_expl?: string;
|
|
15484
|
+
readonly phone?: string;
|
|
15485
|
+
readonly address?: string;
|
|
15486
|
+
readonly address_a?: string;
|
|
15487
|
+
readonly address_2?: string;
|
|
15488
|
+
readonly address_3?: string;
|
|
15489
|
+
readonly state_name?: string;
|
|
15490
|
+
readonly zip?: string;
|
|
15491
|
+
readonly pay_account?: string;
|
|
15492
|
+
readonly comp_num?: string;
|
|
15493
|
+
readonly w_tax_num?: string;
|
|
15494
|
+
readonly vat_num?: string;
|
|
15495
|
+
readonly orig_acc_name?: string;
|
|
15496
|
+
readonly form_1099_code?: string;
|
|
15497
|
+
readonly state?: string;
|
|
15498
|
+
readonly fax?: string;
|
|
15499
|
+
readonly details?: string;
|
|
15500
|
+
readonly state_code?: string;
|
|
15501
|
+
readonly tax_office_code?: string;
|
|
15502
|
+
readonly pay_code?: string;
|
|
15503
|
+
readonly eacc_des?: string;
|
|
15504
|
+
readonly acng_des?: string;
|
|
15505
|
+
}
|
|
15073
15506
|
interface ErpPriorityFile {
|
|
15507
|
+
readonly name: string;
|
|
15074
15508
|
readonly id: string;
|
|
15075
15509
|
readonly type: io.flow.internal.v0.enums.ErpFileType;
|
|
15076
15510
|
readonly url: string;
|
|
@@ -15078,14 +15512,112 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15078
15512
|
}
|
|
15079
15513
|
interface ErpPriorityFileForm {
|
|
15080
15514
|
readonly type: io.flow.internal.v0.enums.ErpFileType;
|
|
15515
|
+
readonly name: string;
|
|
15081
15516
|
readonly url: string;
|
|
15082
15517
|
}
|
|
15518
|
+
interface ErpPriorityVendor {
|
|
15519
|
+
readonly id: string;
|
|
15520
|
+
readonly acc_des?: string;
|
|
15521
|
+
readonly tax_code?: string;
|
|
15522
|
+
readonly vat_flag?: string;
|
|
15523
|
+
readonly country_name?: string;
|
|
15524
|
+
readonly w_tax_percent?: string;
|
|
15525
|
+
readonly iban?: string;
|
|
15526
|
+
readonly confirmed_date?: string;
|
|
15527
|
+
readonly w_tax_date?: string;
|
|
15528
|
+
readonly w_tax_num_expl?: string;
|
|
15529
|
+
readonly acng_code?: string;
|
|
15530
|
+
readonly phone?: string;
|
|
15531
|
+
readonly address?: string;
|
|
15532
|
+
readonly address_a?: string;
|
|
15533
|
+
readonly address_2?: string;
|
|
15534
|
+
readonly address_3?: string;
|
|
15535
|
+
readonly state_name?: string;
|
|
15536
|
+
readonly code?: string;
|
|
15537
|
+
readonly zip?: string;
|
|
15538
|
+
readonly pay_account?: string;
|
|
15539
|
+
readonly comp_num?: string;
|
|
15540
|
+
readonly w_tax_num?: string;
|
|
15541
|
+
readonly vat_num?: string;
|
|
15542
|
+
readonly orig_acc_name?: string;
|
|
15543
|
+
readonly branch?: string;
|
|
15544
|
+
readonly form_1099_code?: string;
|
|
15545
|
+
readonly trial_bal_code?: string;
|
|
15546
|
+
readonly sec_name?: string;
|
|
15547
|
+
readonly state?: string;
|
|
15548
|
+
readonly state_a?: string;
|
|
15549
|
+
readonly fax?: string;
|
|
15550
|
+
readonly details?: string;
|
|
15551
|
+
readonly bank_code?: string;
|
|
15552
|
+
readonly state_code?: string;
|
|
15553
|
+
readonly tax_office_code?: string;
|
|
15554
|
+
readonly pay_code?: string;
|
|
15555
|
+
readonly eacc_des?: string;
|
|
15556
|
+
readonly acng_des?: string;
|
|
15557
|
+
readonly branch_des?: string;
|
|
15558
|
+
}
|
|
15559
|
+
interface ErpPriorityVendorForm {
|
|
15560
|
+
readonly acc_des?: string;
|
|
15561
|
+
readonly tax_code?: string;
|
|
15562
|
+
readonly vat_flag?: string;
|
|
15563
|
+
readonly country_name?: string;
|
|
15564
|
+
readonly w_tax_percent?: string;
|
|
15565
|
+
readonly iban?: string;
|
|
15566
|
+
readonly confirmed_date?: string;
|
|
15567
|
+
readonly w_tax_date?: string;
|
|
15568
|
+
readonly w_tax_num_expl?: string;
|
|
15569
|
+
readonly acng_code?: string;
|
|
15570
|
+
readonly phone?: string;
|
|
15571
|
+
readonly address?: string;
|
|
15572
|
+
readonly address_a?: string;
|
|
15573
|
+
readonly address_2?: string;
|
|
15574
|
+
readonly address_3?: string;
|
|
15575
|
+
readonly state_name?: string;
|
|
15576
|
+
readonly code?: string;
|
|
15577
|
+
readonly zip?: string;
|
|
15578
|
+
readonly pay_account?: string;
|
|
15579
|
+
readonly comp_num?: string;
|
|
15580
|
+
readonly w_tax_num?: string;
|
|
15581
|
+
readonly vat_num?: string;
|
|
15582
|
+
readonly orig_acc_name?: string;
|
|
15583
|
+
readonly branch?: string;
|
|
15584
|
+
readonly form_1099_code?: string;
|
|
15585
|
+
readonly trial_bal_code?: string;
|
|
15586
|
+
readonly sec_name?: string;
|
|
15587
|
+
readonly state?: string;
|
|
15588
|
+
readonly state_a?: string;
|
|
15589
|
+
readonly fax?: string;
|
|
15590
|
+
readonly details?: string;
|
|
15591
|
+
readonly bank_code?: string;
|
|
15592
|
+
readonly state_code?: string;
|
|
15593
|
+
readonly tax_office_code?: string;
|
|
15594
|
+
readonly pay_code?: string;
|
|
15595
|
+
readonly eacc_des?: string;
|
|
15596
|
+
readonly acng_des?: string;
|
|
15597
|
+
readonly branch_des?: string;
|
|
15598
|
+
}
|
|
15083
15599
|
interface ErpVendor {
|
|
15084
15600
|
readonly placeholder?: string;
|
|
15085
15601
|
}
|
|
15086
|
-
interface
|
|
15087
|
-
readonly
|
|
15088
|
-
readonly
|
|
15602
|
+
interface ErpVendorStatus {
|
|
15603
|
+
readonly entities: io.flow.internal.v0.models.ErpVendorStatusEntity[];
|
|
15604
|
+
readonly latest_flow_file?: io.flow.internal.v0.models.ErpVendorStatusFlowFile;
|
|
15605
|
+
readonly latest_priority_file?: io.flow.internal.v0.models.ErpVendorStatusPriorityFile;
|
|
15606
|
+
}
|
|
15607
|
+
interface ErpVendorStatusEntity {
|
|
15608
|
+
readonly entity: io.flow.internal.v0.models.EntityReference;
|
|
15609
|
+
readonly number_differences: number;
|
|
15610
|
+
}
|
|
15611
|
+
interface ErpVendorStatusFlowFile {
|
|
15612
|
+
readonly url: string;
|
|
15613
|
+
readonly created_at: string;
|
|
15614
|
+
}
|
|
15615
|
+
interface ErpVendorStatusPriorityFile {
|
|
15616
|
+
readonly name: string;
|
|
15617
|
+
readonly url: string;
|
|
15618
|
+
readonly created_at: string;
|
|
15619
|
+
readonly errors?: string[];
|
|
15620
|
+
readonly processed_at?: string;
|
|
15089
15621
|
}
|
|
15090
15622
|
interface ExclusionRuleDeleted {
|
|
15091
15623
|
readonly discriminator: 'exclusion_rule_deleted';
|
|
@@ -15357,11 +15889,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15357
15889
|
readonly carrier_id?: string;
|
|
15358
15890
|
readonly service_id?: string;
|
|
15359
15891
|
readonly carrier_tracking_number?: string;
|
|
15892
|
+
readonly fulfilled_via_replacement_order?: boolean;
|
|
15360
15893
|
}
|
|
15361
15894
|
interface ExternalFulfillmentProofTrackingForm {
|
|
15362
15895
|
readonly carrier_id?: string;
|
|
15363
15896
|
readonly service_id?: string;
|
|
15364
15897
|
readonly carrier_tracking_number?: string;
|
|
15898
|
+
readonly fulfilled_via_replacement_order?: boolean;
|
|
15365
15899
|
}
|
|
15366
15900
|
interface FacebookPixel {
|
|
15367
15901
|
readonly discriminator: 'facebook_pixel';
|
|
@@ -15597,6 +16131,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15597
16131
|
readonly authentication: io.flow.internal.v0.models.FiservAuthenticationForm;
|
|
15598
16132
|
readonly country: string;
|
|
15599
16133
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
16134
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
15600
16135
|
}
|
|
15601
16136
|
interface FiservAuthentication {
|
|
15602
16137
|
readonly public_key: string;
|
|
@@ -15641,6 +16176,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15641
16176
|
readonly funding_currency: string;
|
|
15642
16177
|
readonly country: string;
|
|
15643
16178
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
16179
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
15644
16180
|
}
|
|
15645
16181
|
interface FlowAccount {
|
|
15646
16182
|
readonly source: io.flow.internal.v0.models.AccountSource;
|
|
@@ -15681,6 +16217,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15681
16217
|
readonly organization: string;
|
|
15682
16218
|
readonly default_contents: string;
|
|
15683
16219
|
}
|
|
16220
|
+
interface FlowShopValidationError {
|
|
16221
|
+
readonly message: string;
|
|
16222
|
+
readonly reason: string;
|
|
16223
|
+
readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
16224
|
+
}
|
|
15684
16225
|
interface FraudPendingReview {
|
|
15685
16226
|
readonly id: string;
|
|
15686
16227
|
readonly fraud_review_id: string;
|
|
@@ -15759,6 +16300,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15759
16300
|
readonly provider?: io.flow.internal.v0.enums.FraudProvider;
|
|
15760
16301
|
readonly payment_authorization_id?: string;
|
|
15761
16302
|
readonly decline_reason?: io.flow.internal.v0.unions.DeclineReason;
|
|
16303
|
+
readonly created_at?: string;
|
|
15762
16304
|
}
|
|
15763
16305
|
interface FraudReviewDecision {
|
|
15764
16306
|
readonly id: string;
|
|
@@ -15768,6 +16310,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15768
16310
|
readonly status: io.flow.fraud.v0.enums.FraudStatus;
|
|
15769
16311
|
readonly created_at: string;
|
|
15770
16312
|
readonly liability?: io.flow.fraud.v0.enums.FraudLiability;
|
|
16313
|
+
readonly updated_by_user?: io.flow.common.v0.models.UserReference;
|
|
15771
16314
|
}
|
|
15772
16315
|
interface FraudReviewDecisionDeleted {
|
|
15773
16316
|
readonly discriminator: 'fraud_review_decision_deleted';
|
|
@@ -15869,11 +16412,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15869
16412
|
readonly discriminator: 'fuel_surcharge_service_fee_percent_put_form';
|
|
15870
16413
|
readonly percent: number;
|
|
15871
16414
|
}
|
|
16415
|
+
interface Fulfillment {
|
|
16416
|
+
readonly id: string;
|
|
16417
|
+
readonly fulfilled_at: string;
|
|
16418
|
+
readonly currency: string;
|
|
16419
|
+
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
16420
|
+
readonly origin?: io.flow.internal.v0.models.FulfillmentOrigin;
|
|
16421
|
+
readonly lines: io.flow.internal.v0.models.FulfillmentLine[];
|
|
16422
|
+
readonly shipping: io.flow.internal.v0.models.FulfillmentShipping;
|
|
16423
|
+
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
16424
|
+
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
16425
|
+
readonly completes_order: boolean;
|
|
16426
|
+
readonly sequence_number: number;
|
|
16427
|
+
readonly business?: io.flow.internal.v0.models.FulfillmentBusiness;
|
|
16428
|
+
}
|
|
15872
16429
|
interface FulfillmentActionForm {
|
|
15873
16430
|
readonly discriminator: 'fulfillment_action_form';
|
|
15874
16431
|
readonly fulfillment_key: string;
|
|
15875
16432
|
readonly actions: io.flow.internal.v0.models.LineActionQuantities[];
|
|
15876
16433
|
}
|
|
16434
|
+
interface FulfillmentBusiness {
|
|
16435
|
+
readonly vat_registration_number: string;
|
|
16436
|
+
}
|
|
15877
16437
|
interface FulfillmentCancel {
|
|
15878
16438
|
readonly discriminator: 'fulfillment_cancel';
|
|
15879
16439
|
readonly event_id: string;
|
|
@@ -15890,6 +16450,35 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15890
16450
|
readonly id: string;
|
|
15891
16451
|
readonly key: string;
|
|
15892
16452
|
}
|
|
16453
|
+
interface FulfillmentLine {
|
|
16454
|
+
readonly item: io.flow.internal.v0.models.ItemSummary;
|
|
16455
|
+
readonly quantity: number;
|
|
16456
|
+
readonly unit_price: number;
|
|
16457
|
+
readonly price: number;
|
|
16458
|
+
readonly discount: number;
|
|
16459
|
+
readonly tax: number;
|
|
16460
|
+
readonly duty: number;
|
|
16461
|
+
readonly subsidies: io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
|
|
16462
|
+
}
|
|
16463
|
+
interface FulfillmentOrigin {
|
|
16464
|
+
readonly country: string;
|
|
16465
|
+
readonly province_code?: string;
|
|
16466
|
+
}
|
|
16467
|
+
interface FulfillmentProofExternalFulfillmentProofReference {
|
|
16468
|
+
readonly discriminator: 'external_fulfillment';
|
|
16469
|
+
readonly id: string;
|
|
16470
|
+
}
|
|
16471
|
+
interface FulfillmentProofLabelTrackingReference {
|
|
16472
|
+
readonly discriminator: 'label_tracking';
|
|
16473
|
+
readonly id: string;
|
|
16474
|
+
}
|
|
16475
|
+
interface FulfillmentProofShippingNotificationReference {
|
|
16476
|
+
readonly discriminator: 'shipping_notification';
|
|
16477
|
+
readonly id: string;
|
|
16478
|
+
}
|
|
16479
|
+
interface FulfillmentReference {
|
|
16480
|
+
readonly id: string;
|
|
16481
|
+
}
|
|
15893
16482
|
interface FulfillmentShipmentTracking {
|
|
15894
16483
|
readonly fulfillment_key: string;
|
|
15895
16484
|
readonly flow_tracking_number: string;
|
|
@@ -15897,6 +16486,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15897
16486
|
readonly carrier_tracking_url?: string;
|
|
15898
16487
|
readonly items: io.flow.order.management.v0.models.FulfillmentItem[];
|
|
15899
16488
|
}
|
|
16489
|
+
interface FulfillmentShipping {
|
|
16490
|
+
readonly price: number;
|
|
16491
|
+
readonly discount: number;
|
|
16492
|
+
readonly tax: number;
|
|
16493
|
+
readonly duty: number;
|
|
16494
|
+
readonly subsidies: io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
|
|
16495
|
+
}
|
|
15900
16496
|
interface FulfillmentSnapshot {
|
|
15901
16497
|
readonly tracking_source: string;
|
|
15902
16498
|
readonly fulfillment_status?: string;
|
|
@@ -15906,6 +16502,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15906
16502
|
readonly fulfillment_created_at?: string;
|
|
15907
16503
|
readonly fulfillment_updated_at?: string;
|
|
15908
16504
|
}
|
|
16505
|
+
interface FulfillmentSubsidyBreakdown {
|
|
16506
|
+
readonly tax: number;
|
|
16507
|
+
readonly duty: number;
|
|
16508
|
+
}
|
|
15909
16509
|
interface FxFee {
|
|
15910
16510
|
readonly base: io.flow.common.v0.models.Money;
|
|
15911
16511
|
readonly local: io.flow.common.v0.models.Money;
|
|
@@ -15956,6 +16556,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15956
16556
|
readonly organization_id: string;
|
|
15957
16557
|
readonly num_events: number;
|
|
15958
16558
|
}
|
|
16559
|
+
interface GenericValidationError {
|
|
16560
|
+
readonly message: string;
|
|
16561
|
+
readonly reason: string;
|
|
16562
|
+
readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
16563
|
+
}
|
|
15959
16564
|
interface GiftCard {
|
|
15960
16565
|
readonly id: string;
|
|
15961
16566
|
readonly number: string;
|
|
@@ -16075,6 +16680,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16075
16680
|
readonly source_url: string;
|
|
16076
16681
|
readonly filename?: string;
|
|
16077
16682
|
}
|
|
16683
|
+
interface HarmonizationThreshold {
|
|
16684
|
+
readonly id: string;
|
|
16685
|
+
readonly chapter: number;
|
|
16686
|
+
readonly value: number;
|
|
16687
|
+
readonly updated_at: string;
|
|
16688
|
+
}
|
|
16689
|
+
interface HarmonizationThresholdForm {
|
|
16690
|
+
readonly chapter: number;
|
|
16691
|
+
readonly value: number;
|
|
16692
|
+
}
|
|
16078
16693
|
interface HarmonizationUnclassifiedStatistics {
|
|
16079
16694
|
readonly organization: io.flow.common.v0.models.OrganizationSummary;
|
|
16080
16695
|
readonly statistics: io.flow.internal.v0.models.UnclassifiedProductStatistic[];
|
|
@@ -16760,6 +17375,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16760
17375
|
readonly import_id: string;
|
|
16761
17376
|
readonly error: string;
|
|
16762
17377
|
}
|
|
17378
|
+
interface IndexAssignmentDeleted {
|
|
17379
|
+
readonly discriminator: 'index_assignment_deleted';
|
|
17380
|
+
readonly event_id: string;
|
|
17381
|
+
readonly timestamp: string;
|
|
17382
|
+
readonly organization: string;
|
|
17383
|
+
readonly id: string;
|
|
17384
|
+
}
|
|
17385
|
+
interface IndexAssignmentUpserted {
|
|
17386
|
+
readonly discriminator: 'index_assignment_upserted';
|
|
17387
|
+
readonly event_id: string;
|
|
17388
|
+
readonly timestamp: string;
|
|
17389
|
+
readonly organization: string;
|
|
17390
|
+
readonly assignment: io.flow.internal.v0.models.AlgoliaIndexAssignment;
|
|
17391
|
+
}
|
|
16763
17392
|
interface InstallForm {
|
|
16764
17393
|
readonly token: string;
|
|
16765
17394
|
}
|
|
@@ -17031,7 +17660,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17031
17660
|
readonly internal_item_form: io.flow.internal.v0.models.InternalItemForm;
|
|
17032
17661
|
}
|
|
17033
17662
|
interface ItemHarmonization {
|
|
17034
|
-
readonly id
|
|
17663
|
+
readonly id: string;
|
|
17035
17664
|
readonly organization_id: string;
|
|
17036
17665
|
readonly item_number: string;
|
|
17037
17666
|
readonly item_name?: string;
|
|
@@ -17137,6 +17766,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17137
17766
|
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
17138
17767
|
readonly item_sales_margin: io.flow.internal.v0.models.ItemSalesMargin;
|
|
17139
17768
|
}
|
|
17769
|
+
interface ItemSummary {
|
|
17770
|
+
readonly number: string;
|
|
17771
|
+
readonly fulfillment_method: io.flow.catalog.v0.enums.FulfillmentMethodValue;
|
|
17772
|
+
}
|
|
17140
17773
|
interface ItemValuesForm {
|
|
17141
17774
|
readonly values: string[];
|
|
17142
17775
|
}
|
|
@@ -17190,6 +17823,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17190
17823
|
readonly materials: Record<string, string[]>;
|
|
17191
17824
|
readonly constructions: Record<string, string[]>;
|
|
17192
17825
|
}
|
|
17826
|
+
interface LabelBase {
|
|
17827
|
+
readonly amount: number;
|
|
17828
|
+
readonly weight: number;
|
|
17829
|
+
}
|
|
17193
17830
|
interface LabelCancellationError {
|
|
17194
17831
|
readonly code: io.flow.internal.v0.enums.LabelCancellationErrorCode;
|
|
17195
17832
|
readonly messages: string[];
|
|
@@ -17215,6 +17852,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17215
17852
|
readonly shipment_cost?: io.flow.common.v0.models.Money;
|
|
17216
17853
|
readonly reference_id?: string;
|
|
17217
17854
|
}
|
|
17855
|
+
interface LabelDestination {
|
|
17856
|
+
readonly country: string;
|
|
17857
|
+
}
|
|
17218
17858
|
interface LabelGenerationAddressFailureStatusUpdateForm {
|
|
17219
17859
|
readonly status: io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
|
|
17220
17860
|
}
|
|
@@ -17252,6 +17892,61 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17252
17892
|
readonly organization: string;
|
|
17253
17893
|
readonly label_generation_settings: io.flow.internal.v0.models.LabelGenerationSettings;
|
|
17254
17894
|
}
|
|
17895
|
+
interface LabelInvoiceRequest {
|
|
17896
|
+
readonly id: string;
|
|
17897
|
+
readonly label: io.flow.internal.v0.models.TrueUpLabelSummary;
|
|
17898
|
+
readonly units: io.flow.internal.v0.models.LabelUnits;
|
|
17899
|
+
readonly base: io.flow.internal.v0.models.LabelBase;
|
|
17900
|
+
readonly surcharges: io.flow.internal.v0.models.LabelSurcharge[];
|
|
17901
|
+
readonly total: number;
|
|
17902
|
+
readonly destination: io.flow.internal.v0.models.LabelDestination;
|
|
17903
|
+
readonly metadata: io.flow.internal.v0.models.LabelMetadata;
|
|
17904
|
+
}
|
|
17905
|
+
interface LabelInvoiceRequestDeleted {
|
|
17906
|
+
readonly discriminator: 'label_invoice_request_deleted';
|
|
17907
|
+
readonly event_id: string;
|
|
17908
|
+
readonly timestamp: string;
|
|
17909
|
+
readonly organization: string;
|
|
17910
|
+
readonly id: string;
|
|
17911
|
+
}
|
|
17912
|
+
interface LabelInvoiceRequestUpserted {
|
|
17913
|
+
readonly discriminator: 'label_invoice_request_upserted';
|
|
17914
|
+
readonly event_id: string;
|
|
17915
|
+
readonly timestamp: string;
|
|
17916
|
+
readonly organization: string;
|
|
17917
|
+
readonly label_invoice_request: io.flow.internal.v0.models.LabelInvoiceRequest;
|
|
17918
|
+
}
|
|
17919
|
+
interface LabelMetadata {
|
|
17920
|
+
readonly ratecard: io.flow.internal.v0.models.MetadataRatecard;
|
|
17921
|
+
readonly weights: io.flow.internal.v0.models.MetadataWeights;
|
|
17922
|
+
}
|
|
17923
|
+
interface LabelRequestError {
|
|
17924
|
+
readonly id: string;
|
|
17925
|
+
readonly order_number: string;
|
|
17926
|
+
readonly created_at: string;
|
|
17927
|
+
readonly reference_id: string;
|
|
17928
|
+
readonly label_request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
17929
|
+
readonly label_trigger_method?: io.flow.label.v0.enums.LabelTriggerMethod;
|
|
17930
|
+
readonly order_identifier: string[];
|
|
17931
|
+
readonly suggested_responsibility: io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
17932
|
+
readonly carrier_id?: string;
|
|
17933
|
+
readonly service_id?: string;
|
|
17934
|
+
readonly errors: string[];
|
|
17935
|
+
}
|
|
17936
|
+
interface LabelRequestErrorDeleted {
|
|
17937
|
+
readonly discriminator: 'label_request_error_deleted';
|
|
17938
|
+
readonly event_id: string;
|
|
17939
|
+
readonly timestamp: string;
|
|
17940
|
+
readonly organization: string;
|
|
17941
|
+
readonly id: string;
|
|
17942
|
+
}
|
|
17943
|
+
interface LabelRequestErrorUpserted {
|
|
17944
|
+
readonly discriminator: 'label_request_error_upserted';
|
|
17945
|
+
readonly event_id: string;
|
|
17946
|
+
readonly timestamp: string;
|
|
17947
|
+
readonly organization: string;
|
|
17948
|
+
readonly label_request_error: io.flow.internal.v0.models.LabelRequestError;
|
|
17949
|
+
}
|
|
17255
17950
|
interface LabelSummary {
|
|
17256
17951
|
readonly id: string;
|
|
17257
17952
|
readonly commercial_invoice?: string;
|
|
@@ -17265,6 +17960,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17265
17960
|
readonly carrier_tracking_number_url?: string;
|
|
17266
17961
|
readonly service?: io.flow.reference.v0.models.CarrierService;
|
|
17267
17962
|
}
|
|
17963
|
+
interface LabelSurcharge {
|
|
17964
|
+
readonly amount: number;
|
|
17965
|
+
readonly type: io.flow.internal.v0.enums.TrueUpSurchargeType;
|
|
17966
|
+
readonly detail: io.flow.internal.v0.unions.LabelSurchargeDetail;
|
|
17967
|
+
}
|
|
17968
|
+
interface LabelSurchargeDetailFlat {
|
|
17969
|
+
readonly discriminator: 'flat';
|
|
17970
|
+
readonly placeholder?: string;
|
|
17971
|
+
}
|
|
17972
|
+
interface LabelSurchargeDetailPerWeightUnit {
|
|
17973
|
+
readonly discriminator: 'per_weight_unit';
|
|
17974
|
+
readonly fee: number;
|
|
17975
|
+
}
|
|
17976
|
+
interface LabelSurchargeDetailPercentage {
|
|
17977
|
+
readonly discriminator: 'percentage';
|
|
17978
|
+
readonly percentage: number;
|
|
17979
|
+
}
|
|
17268
17980
|
interface LabelTaxonomy {
|
|
17269
17981
|
readonly discriminator: 'item';
|
|
17270
17982
|
readonly item_type: string;
|
|
@@ -17290,8 +18002,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17290
18002
|
interface LabelTransaction {
|
|
17291
18003
|
readonly discriminator: 'label_transaction';
|
|
17292
18004
|
readonly label: io.flow.internal.v0.models.BillingLabelSummary;
|
|
17293
|
-
readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
17294
18005
|
readonly tracking: io.flow.internal.v0.models.BillingLabelTrackingSummaryReference;
|
|
18006
|
+
readonly gross_value: io.flow.common.v0.models.Price;
|
|
18007
|
+
readonly discount: io.flow.internal.v0.models.Discount;
|
|
18008
|
+
readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
17295
18009
|
readonly id: string;
|
|
17296
18010
|
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
17297
18011
|
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
@@ -17313,6 +18027,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17313
18027
|
readonly timestamp: string;
|
|
17314
18028
|
readonly label_transaction: io.flow.internal.v0.models.LabelTransaction;
|
|
17315
18029
|
}
|
|
18030
|
+
interface LabelUnits {
|
|
18031
|
+
readonly currency: string;
|
|
18032
|
+
readonly weight: io.flow.units.v0.enums.UnitOfWeight;
|
|
18033
|
+
readonly length: io.flow.units.v0.enums.UnitOfLength;
|
|
18034
|
+
}
|
|
17316
18035
|
interface LabeledContent {
|
|
17317
18036
|
readonly label: io.flow.internal.v0.models.ContentLabel;
|
|
17318
18037
|
readonly contents: io.flow.internal.v0.unions.ContentItem[];
|
|
@@ -17568,10 +18287,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17568
18287
|
readonly type: io.flow.internal.v0.enums.ContentType;
|
|
17569
18288
|
readonly url: string;
|
|
17570
18289
|
}
|
|
17571
|
-
interface LogisticsCenterCheck {
|
|
17572
|
-
readonly issues?: string[];
|
|
17573
|
-
readonly is_valid: boolean;
|
|
17574
|
-
}
|
|
17575
18290
|
interface Logo {
|
|
17576
18291
|
readonly url: string;
|
|
17577
18292
|
}
|
|
@@ -17914,6 +18629,39 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17914
18629
|
readonly merchant_application: io.flow.merchant.onboarding.v0.unions.MerchantApplication;
|
|
17915
18630
|
readonly organization_reference: io.flow.common.v0.models.Organization;
|
|
17916
18631
|
}
|
|
18632
|
+
interface MerchantCharges {
|
|
18633
|
+
readonly labels: number;
|
|
18634
|
+
readonly total: number;
|
|
18635
|
+
}
|
|
18636
|
+
interface MerchantFees {
|
|
18637
|
+
readonly duty_guarantee: number;
|
|
18638
|
+
readonly mor: number;
|
|
18639
|
+
readonly fraud: number;
|
|
18640
|
+
readonly fx: number;
|
|
18641
|
+
readonly processing: number;
|
|
18642
|
+
readonly rate_lock: number;
|
|
18643
|
+
readonly transfer: number;
|
|
18644
|
+
readonly total: number;
|
|
18645
|
+
}
|
|
18646
|
+
interface MerchantGuidAssignment {
|
|
18647
|
+
readonly id: string;
|
|
18648
|
+
readonly merchant_guid: string;
|
|
18649
|
+
readonly created_at: string;
|
|
18650
|
+
}
|
|
18651
|
+
interface MerchantGuidAssignmentDeleted {
|
|
18652
|
+
readonly discriminator: 'merchant_guid_assignment_deleted';
|
|
18653
|
+
readonly event_id: string;
|
|
18654
|
+
readonly timestamp: string;
|
|
18655
|
+
readonly organization: string;
|
|
18656
|
+
readonly id: string;
|
|
18657
|
+
}
|
|
18658
|
+
interface MerchantGuidAssignmentUpserted {
|
|
18659
|
+
readonly discriminator: 'merchant_guid_assignment_upserted';
|
|
18660
|
+
readonly event_id: string;
|
|
18661
|
+
readonly timestamp: string;
|
|
18662
|
+
readonly organization: string;
|
|
18663
|
+
readonly merchant_guid_assignment: io.flow.internal.v0.models.MerchantGuidAssignment;
|
|
18664
|
+
}
|
|
17917
18665
|
interface MerchantOfRecordEntitySettings {
|
|
17918
18666
|
readonly id: string;
|
|
17919
18667
|
readonly merchant_of_record_entity: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
@@ -17937,6 +18685,38 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17937
18685
|
readonly center?: string;
|
|
17938
18686
|
readonly currency?: string;
|
|
17939
18687
|
}
|
|
18688
|
+
interface MerchantSearchResult {
|
|
18689
|
+
readonly organization_id: string;
|
|
18690
|
+
readonly shop_name?: string;
|
|
18691
|
+
readonly legal_name: string;
|
|
18692
|
+
readonly onboarding_current_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
18693
|
+
}
|
|
18694
|
+
interface MerchantSubsidies {
|
|
18695
|
+
readonly fees: io.flow.internal.v0.models.ShopperFees;
|
|
18696
|
+
readonly shipping: number;
|
|
18697
|
+
readonly tax: number;
|
|
18698
|
+
readonly duty: number;
|
|
18699
|
+
readonly total: number;
|
|
18700
|
+
}
|
|
18701
|
+
interface MerchantSummary {
|
|
18702
|
+
readonly subsidies: io.flow.internal.v0.models.MerchantSubsidies;
|
|
18703
|
+
readonly fees: io.flow.internal.v0.models.MerchantFees;
|
|
18704
|
+
readonly charges: io.flow.internal.v0.models.MerchantCharges;
|
|
18705
|
+
readonly discounts: number;
|
|
18706
|
+
}
|
|
18707
|
+
interface MetadataProposition {
|
|
18708
|
+
readonly shipping_method: io.flow.internal.v0.models.ShippingMethodReference;
|
|
18709
|
+
readonly name: string;
|
|
18710
|
+
}
|
|
18711
|
+
interface MetadataRatecard {
|
|
18712
|
+
readonly id: string;
|
|
18713
|
+
readonly proposition: io.flow.internal.v0.models.MetadataProposition;
|
|
18714
|
+
}
|
|
18715
|
+
interface MetadataWeights {
|
|
18716
|
+
readonly selected: io.flow.internal.v0.enums.WeightSelection;
|
|
18717
|
+
readonly dead?: io.flow.internal.v0.models.WeightsDead;
|
|
18718
|
+
readonly dimensional?: io.flow.internal.v0.models.WeightsDimensional;
|
|
18719
|
+
}
|
|
17940
18720
|
interface NextBillingStatement {
|
|
17941
18721
|
readonly date: string;
|
|
17942
18722
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -17966,6 +18746,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17966
18746
|
readonly description: string;
|
|
17967
18747
|
readonly result: io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
17968
18748
|
readonly messages: io.flow.internal.v0.models.OnboardingAuditMessage[];
|
|
18749
|
+
readonly execution_time_ms?: number;
|
|
17969
18750
|
}
|
|
17970
18751
|
interface OnboardingAuditSnapshot {
|
|
17971
18752
|
readonly id: string;
|
|
@@ -17987,13 +18768,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17987
18768
|
readonly compliance_full_review_required: boolean;
|
|
17988
18769
|
readonly application_received: string;
|
|
17989
18770
|
readonly legal_name: string;
|
|
17990
|
-
readonly shop_name
|
|
18771
|
+
readonly shop_name?: string;
|
|
17991
18772
|
readonly organization_id: string;
|
|
17992
18773
|
readonly onboarding_current_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
17993
18774
|
readonly setup_completed_at?: string;
|
|
17994
18775
|
readonly activated_at?: string;
|
|
17995
18776
|
readonly gmv: number;
|
|
17996
18777
|
readonly health_score: number;
|
|
18778
|
+
readonly audit_result?: io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
17997
18779
|
readonly blocked_since?: string;
|
|
17998
18780
|
}
|
|
17999
18781
|
interface OnboardingStateForm {
|
|
@@ -18226,6 +19008,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18226
19008
|
interface OrderSubmissionForm {
|
|
18227
19009
|
readonly authorization?: io.flow.payment.v0.unions.AuthorizationForm;
|
|
18228
19010
|
}
|
|
19011
|
+
interface OrderSummary {
|
|
19012
|
+
readonly id: string;
|
|
19013
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
19014
|
+
readonly number: string;
|
|
19015
|
+
}
|
|
18229
19016
|
interface OrderTransaction {
|
|
18230
19017
|
readonly discriminator: 'order_transaction';
|
|
18231
19018
|
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -18250,6 +19037,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18250
19037
|
readonly timestamp: string;
|
|
18251
19038
|
readonly order_transaction: io.flow.internal.v0.models.OrderTransaction;
|
|
18252
19039
|
}
|
|
19040
|
+
interface OrderValidationError {
|
|
19041
|
+
readonly message: string;
|
|
19042
|
+
readonly reason: io.flow.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
19043
|
+
readonly action?: io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction;
|
|
19044
|
+
readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
19045
|
+
}
|
|
18253
19046
|
interface OrganizationAccount {
|
|
18254
19047
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
18255
19048
|
readonly id: string;
|
|
@@ -18371,6 +19164,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18371
19164
|
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
18372
19165
|
readonly organization_currency_setting: io.flow.internal.v0.models.OrganizationCurrencySetting;
|
|
18373
19166
|
}
|
|
19167
|
+
interface OrganizationDeactivation {
|
|
19168
|
+
readonly id: string;
|
|
19169
|
+
readonly deactivate_at: string;
|
|
19170
|
+
readonly created_at: string;
|
|
19171
|
+
}
|
|
19172
|
+
interface OrganizationDeactivationDeleted {
|
|
19173
|
+
readonly discriminator: 'organization_deactivation_deleted';
|
|
19174
|
+
readonly event_id: string;
|
|
19175
|
+
readonly timestamp: string;
|
|
19176
|
+
readonly organization: string;
|
|
19177
|
+
readonly id: string;
|
|
19178
|
+
}
|
|
19179
|
+
interface OrganizationDeactivationForm {
|
|
19180
|
+
readonly deactivate_at: string;
|
|
19181
|
+
}
|
|
19182
|
+
interface OrganizationDeactivationUpserted {
|
|
19183
|
+
readonly discriminator: 'organization_deactivation_upserted';
|
|
19184
|
+
readonly event_id: string;
|
|
19185
|
+
readonly timestamp: string;
|
|
19186
|
+
readonly organization: string;
|
|
19187
|
+
readonly organization_deactivation: io.flow.internal.v0.models.OrganizationDeactivation;
|
|
19188
|
+
}
|
|
18374
19189
|
interface OrganizationDebugTransaction {
|
|
18375
19190
|
readonly debug?: io.flow.internal.v0.models.DebugTransactionDetails;
|
|
18376
19191
|
readonly order?: io.flow.internal.v0.models.DebugOrder;
|
|
@@ -18549,6 +19364,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18549
19364
|
readonly organization: string;
|
|
18550
19365
|
readonly organization_status_change: io.flow.internal.v0.models.OrganizationStatusChange;
|
|
18551
19366
|
}
|
|
19367
|
+
interface OrganizationsAuditCheckReport {
|
|
19368
|
+
readonly organization_id: string;
|
|
19369
|
+
readonly organization_status: io.flow.common.v0.enums.OrganizationStatus;
|
|
19370
|
+
readonly onboarding_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
19371
|
+
readonly audit_result: io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
19372
|
+
}
|
|
18552
19373
|
interface Partner {
|
|
18553
19374
|
readonly id: string;
|
|
18554
19375
|
readonly name: string;
|
|
@@ -18706,6 +19527,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18706
19527
|
readonly details?: io.flow.internal.v0.unions.PaymentSummaryDetails;
|
|
18707
19528
|
readonly status?: io.flow.internal.v0.enums.PaymentSummaryStatus;
|
|
18708
19529
|
}
|
|
19530
|
+
interface PayoutStatusCounts {
|
|
19531
|
+
readonly scheduled: number;
|
|
19532
|
+
readonly sent: number;
|
|
19533
|
+
readonly failed: number;
|
|
19534
|
+
}
|
|
18709
19535
|
interface PaypalAccount {
|
|
18710
19536
|
readonly discriminator: 'paypal_account';
|
|
18711
19537
|
readonly id: string;
|
|
@@ -18731,6 +19557,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18731
19557
|
readonly country: string;
|
|
18732
19558
|
readonly authentication: io.flow.internal.v0.models.PaypalAuthenticationForm;
|
|
18733
19559
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
19560
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
18734
19561
|
}
|
|
18735
19562
|
interface PaypalAccountReference {
|
|
18736
19563
|
readonly id: string;
|
|
@@ -18841,6 +19668,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18841
19668
|
readonly external_id: string;
|
|
18842
19669
|
readonly country: string;
|
|
18843
19670
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
19671
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
18844
19672
|
}
|
|
18845
19673
|
interface PaypalPaymentDeleted {
|
|
18846
19674
|
readonly discriminator: 'paypal_payment_deleted';
|
|
@@ -19109,6 +19937,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19109
19937
|
interface ProductListSettingsForm {
|
|
19110
19938
|
readonly column_settings: io.flow.internal.v0.models.HarmonizationColumnSetting[];
|
|
19111
19939
|
}
|
|
19940
|
+
interface ProductRestrictionResultValidationError {
|
|
19941
|
+
readonly message: string;
|
|
19942
|
+
readonly reason: string;
|
|
19943
|
+
readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
19944
|
+
}
|
|
19112
19945
|
interface ProductReviewHistory {
|
|
19113
19946
|
readonly product_id: string;
|
|
19114
19947
|
readonly reviews: io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
|
|
@@ -19129,6 +19962,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19129
19962
|
readonly discriminator: 'shipping_notification';
|
|
19130
19963
|
readonly shipping_notification_id: string;
|
|
19131
19964
|
}
|
|
19965
|
+
interface QueuedRecord {
|
|
19966
|
+
readonly type: string;
|
|
19967
|
+
readonly type_id: string;
|
|
19968
|
+
readonly source_type?: string;
|
|
19969
|
+
readonly source_id?: string;
|
|
19970
|
+
readonly environment?: string;
|
|
19971
|
+
readonly created_at: string;
|
|
19972
|
+
readonly num_attempts: number;
|
|
19973
|
+
readonly next_attempt_at: string;
|
|
19974
|
+
readonly errors?: string[];
|
|
19975
|
+
readonly stacktrace?: string;
|
|
19976
|
+
readonly snooze_id?: string;
|
|
19977
|
+
}
|
|
19132
19978
|
interface QuoteRequest {
|
|
19133
19979
|
readonly id: string;
|
|
19134
19980
|
readonly request_type: io.flow.internal.v0.enums.QuoteRequestType;
|
|
@@ -19223,9 +20069,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19223
20069
|
interface RateLevel {
|
|
19224
20070
|
readonly id: string;
|
|
19225
20071
|
readonly name: string;
|
|
20072
|
+
readonly key: string;
|
|
19226
20073
|
}
|
|
19227
20074
|
interface RateLevelForm {
|
|
19228
20075
|
readonly name: string;
|
|
20076
|
+
readonly key: string;
|
|
19229
20077
|
}
|
|
19230
20078
|
interface RateLevelOrganization {
|
|
19231
20079
|
readonly id: string;
|
|
@@ -19249,6 +20097,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19249
20097
|
readonly id: string;
|
|
19250
20098
|
readonly name: string;
|
|
19251
20099
|
readonly effective_at: string;
|
|
20100
|
+
readonly key: string;
|
|
19252
20101
|
}
|
|
19253
20102
|
interface RateNameSummary {
|
|
19254
20103
|
readonly name: string;
|
|
@@ -19513,6 +20362,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19513
20362
|
readonly discriminator: 'rex';
|
|
19514
20363
|
readonly number: string;
|
|
19515
20364
|
}
|
|
20365
|
+
interface Report {
|
|
20366
|
+
readonly key: string;
|
|
20367
|
+
readonly status: io.flow.internal.v0.enums.ReportStatus;
|
|
20368
|
+
readonly from: string;
|
|
20369
|
+
readonly to: string;
|
|
20370
|
+
readonly organization_id?: string;
|
|
20371
|
+
readonly sales_url?: string;
|
|
20372
|
+
readonly refunds_url?: string;
|
|
20373
|
+
}
|
|
20374
|
+
interface ReportForm {
|
|
20375
|
+
readonly key?: string;
|
|
20376
|
+
readonly from: string;
|
|
20377
|
+
readonly to: string;
|
|
20378
|
+
readonly organization_id?: string;
|
|
20379
|
+
}
|
|
19516
20380
|
interface ReportRuleDecision {
|
|
19517
20381
|
readonly rule_id: string;
|
|
19518
20382
|
readonly rule_name: string;
|
|
@@ -19522,6 +20386,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19522
20386
|
interface ReportSummary {
|
|
19523
20387
|
readonly task_id: string;
|
|
19524
20388
|
}
|
|
20389
|
+
interface ReportingDetails {
|
|
20390
|
+
readonly sales_records?: any[];
|
|
20391
|
+
readonly refund_records?: any[];
|
|
20392
|
+
}
|
|
19525
20393
|
interface RequeueRequestForm {
|
|
19526
20394
|
readonly product_ids?: string[];
|
|
19527
20395
|
readonly hs6_codes?: string[];
|
|
@@ -19665,6 +20533,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19665
20533
|
readonly positive_keywords: string[];
|
|
19666
20534
|
readonly negative_keywords: string[];
|
|
19667
20535
|
readonly value_threshold_usd?: number;
|
|
20536
|
+
readonly auto_review_criteria?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
19668
20537
|
}
|
|
19669
20538
|
interface RestrictionRuleDecisionForm {
|
|
19670
20539
|
readonly rule_id: string;
|
|
@@ -19679,6 +20548,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19679
20548
|
readonly positive_keywords: string[];
|
|
19680
20549
|
readonly negative_keywords: string[];
|
|
19681
20550
|
readonly value_threshold_usd?: number;
|
|
20551
|
+
readonly auto_review_criteria?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
19682
20552
|
}
|
|
19683
20553
|
interface RestrictionRuleMetadata {
|
|
19684
20554
|
readonly rule: io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
@@ -19708,6 +20578,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19708
20578
|
interface ResyncFallbackRates {
|
|
19709
20579
|
readonly destinations: io.flow.reference.v0.models.Country[];
|
|
19710
20580
|
}
|
|
20581
|
+
interface Retracking {
|
|
20582
|
+
readonly carrier: string;
|
|
20583
|
+
readonly tracking_number?: string;
|
|
20584
|
+
}
|
|
20585
|
+
interface RetrackingForm {
|
|
20586
|
+
readonly carrier: string;
|
|
20587
|
+
readonly carrier_tracking_numbers: string[];
|
|
20588
|
+
}
|
|
19711
20589
|
interface ReturnPolicyDeleted {
|
|
19712
20590
|
readonly discriminator: 'return_policy_deleted';
|
|
19713
20591
|
readonly event_id: string;
|
|
@@ -19757,6 +20635,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19757
20635
|
readonly discriminator: 'routing_processor';
|
|
19758
20636
|
readonly processor: io.flow.internal.v0.enums.Processor;
|
|
19759
20637
|
}
|
|
20638
|
+
interface SandboxSetup {
|
|
20639
|
+
readonly requested_by: string;
|
|
20640
|
+
}
|
|
20641
|
+
interface SandboxSetupForm {
|
|
20642
|
+
readonly requested_by: string;
|
|
20643
|
+
}
|
|
19760
20644
|
interface Screen {
|
|
19761
20645
|
readonly id: string;
|
|
19762
20646
|
readonly q: string;
|
|
@@ -19867,6 +20751,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19867
20751
|
readonly origin: string;
|
|
19868
20752
|
readonly destination: string;
|
|
19869
20753
|
}
|
|
20754
|
+
interface ShippingMethodReference {
|
|
20755
|
+
readonly id: string;
|
|
20756
|
+
}
|
|
19870
20757
|
interface Shop {
|
|
19871
20758
|
readonly id: string;
|
|
19872
20759
|
readonly organization?: io.flow.common.v0.models.OrganizationReference;
|
|
@@ -19957,12 +20844,35 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19957
20844
|
interface ShopifyGrantsCheck {
|
|
19958
20845
|
readonly placeholder: string;
|
|
19959
20846
|
}
|
|
20847
|
+
interface ShopifyMarketsDiscrepancy {
|
|
20848
|
+
readonly organization_id: string;
|
|
20849
|
+
readonly count: number;
|
|
20850
|
+
}
|
|
20851
|
+
interface ShopifyMarketsDiscrepancyData {
|
|
20852
|
+
readonly total_count: number;
|
|
20853
|
+
readonly discrepancies: io.flow.internal.v0.models.ShopifyMarketsDiscrepancy[];
|
|
20854
|
+
}
|
|
19960
20855
|
interface ShopifyMarketsIncorporationCountry {
|
|
19961
20856
|
readonly country: string;
|
|
19962
20857
|
readonly state?: string;
|
|
19963
20858
|
readonly province?: string;
|
|
19964
20859
|
readonly jurisdiction?: string;
|
|
19965
20860
|
}
|
|
20861
|
+
interface ShopifyMarketsInternalOrderMetrics {
|
|
20862
|
+
readonly total_order_count: number;
|
|
20863
|
+
}
|
|
20864
|
+
interface ShopifyMarketsMetricsDeleted {
|
|
20865
|
+
readonly discriminator: 'shopify_markets_metrics_deleted';
|
|
20866
|
+
readonly event_id: string;
|
|
20867
|
+
readonly timestamp: string;
|
|
20868
|
+
readonly id: string;
|
|
20869
|
+
}
|
|
20870
|
+
interface ShopifyMarketsMetricsUpserted {
|
|
20871
|
+
readonly discriminator: 'shopify_markets_metrics_upserted';
|
|
20872
|
+
readonly event_id: string;
|
|
20873
|
+
readonly timestamp: string;
|
|
20874
|
+
readonly shopify_markets_metrics: io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics;
|
|
20875
|
+
}
|
|
19966
20876
|
interface ShopifyMarketsOrder {
|
|
19967
20877
|
readonly id: string;
|
|
19968
20878
|
readonly model: io.flow.shopify.markets.v0.models.ShopifyOrder;
|
|
@@ -19981,8 +20891,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19981
20891
|
readonly organization: string;
|
|
19982
20892
|
readonly shopify_markets_order: io.flow.internal.v0.models.ShopifyMarketsOrder;
|
|
19983
20893
|
}
|
|
20894
|
+
interface ShopifyMarketsOrdersMetrics {
|
|
20895
|
+
readonly id: string;
|
|
20896
|
+
readonly range: io.flow.common.v0.models.DatetimeRange;
|
|
20897
|
+
readonly shopify: io.flow.internal.v0.models.ShopifyMarketsShopifyOrderMetrics;
|
|
20898
|
+
readonly internal: io.flow.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
|
|
20899
|
+
readonly discrepancy_data: io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData;
|
|
20900
|
+
}
|
|
19984
20901
|
interface ShopifyMarketsShop {
|
|
19985
20902
|
readonly id: string;
|
|
20903
|
+
readonly shopify_shop_id?: string;
|
|
19986
20904
|
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
19987
20905
|
readonly domain: string;
|
|
19988
20906
|
readonly myshopify_domain: string;
|
|
@@ -20035,6 +20953,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20035
20953
|
readonly organization: string;
|
|
20036
20954
|
readonly shopify_markets_shop: io.flow.internal.v0.models.ShopifyMarketsShop;
|
|
20037
20955
|
}
|
|
20956
|
+
interface ShopifyMarketsShopifyOrderMetrics {
|
|
20957
|
+
readonly total_order_count: number;
|
|
20958
|
+
}
|
|
20038
20959
|
interface ShopifyMarketsSubsidiaryCompany {
|
|
20039
20960
|
readonly legal_name?: string;
|
|
20040
20961
|
readonly incorporation_country?: io.flow.internal.v0.models.ShopifyMarketsIncorporationCountry;
|
|
@@ -20293,6 +21214,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20293
21214
|
readonly timestamp: string;
|
|
20294
21215
|
readonly shop: io.flow.internal.v0.models.Shop;
|
|
20295
21216
|
}
|
|
21217
|
+
interface ShopifyStorePassword {
|
|
21218
|
+
readonly temporary_password: string;
|
|
21219
|
+
readonly expiry: string;
|
|
21220
|
+
}
|
|
20296
21221
|
interface ShopifyWebhook {
|
|
20297
21222
|
readonly id: string;
|
|
20298
21223
|
readonly shop_id: string;
|
|
@@ -20307,6 +21232,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20307
21232
|
readonly address: string;
|
|
20308
21233
|
readonly topic: io.flow.shopify.external.v0.enums.Topic;
|
|
20309
21234
|
}
|
|
21235
|
+
interface ShopperFees {
|
|
21236
|
+
readonly fuel: number;
|
|
21237
|
+
readonly remote_area: number;
|
|
21238
|
+
readonly oversize: number;
|
|
21239
|
+
readonly ccf: number;
|
|
21240
|
+
readonly total: number;
|
|
21241
|
+
}
|
|
21242
|
+
interface ShopperSummary {
|
|
21243
|
+
readonly fees: io.flow.internal.v0.models.ShopperFees;
|
|
21244
|
+
}
|
|
20310
21245
|
interface SimpleAccountReference {
|
|
20311
21246
|
readonly id: string;
|
|
20312
21247
|
}
|
|
@@ -20494,6 +21429,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20494
21429
|
readonly country: string;
|
|
20495
21430
|
readonly authentication: io.flow.internal.v0.models.StripeAuthenticationForm;
|
|
20496
21431
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
21432
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
20497
21433
|
}
|
|
20498
21434
|
interface StripeAuthentication {
|
|
20499
21435
|
readonly public_key: string;
|
|
@@ -20607,6 +21543,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20607
21543
|
readonly account_type: io.flow.stripe.v0.enums.AccountType;
|
|
20608
21544
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
20609
21545
|
readonly country: string;
|
|
21546
|
+
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
20610
21547
|
}
|
|
20611
21548
|
interface StripeRefundDeleted {
|
|
20612
21549
|
readonly discriminator: 'stripe_refund_deleted';
|
|
@@ -21010,6 +21947,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21010
21947
|
interface TransactionReference {
|
|
21011
21948
|
readonly id: string;
|
|
21012
21949
|
}
|
|
21950
|
+
interface TransactionStatement {
|
|
21951
|
+
readonly id: string;
|
|
21952
|
+
readonly statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
21953
|
+
}
|
|
21954
|
+
interface TransactionStatementDeleted {
|
|
21955
|
+
readonly discriminator: 'transaction_statement_deleted';
|
|
21956
|
+
readonly event_id: string;
|
|
21957
|
+
readonly timestamp: string;
|
|
21958
|
+
readonly id: string;
|
|
21959
|
+
}
|
|
21960
|
+
interface TransactionStatementUpserted {
|
|
21961
|
+
readonly discriminator: 'transaction_statement_upserted';
|
|
21962
|
+
readonly event_id: string;
|
|
21963
|
+
readonly timestamp: string;
|
|
21964
|
+
readonly transaction_statement: io.flow.internal.v0.models.TransactionStatement;
|
|
21965
|
+
}
|
|
21013
21966
|
interface TransferTransaction {
|
|
21014
21967
|
readonly discriminator: 'transfer_transaction';
|
|
21015
21968
|
readonly method: io.flow.internal.v0.enums.TransferMethod;
|
|
@@ -21052,6 +22005,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21052
22005
|
readonly id: string;
|
|
21053
22006
|
readonly description: string;
|
|
21054
22007
|
}
|
|
22008
|
+
interface TrueUpLabelSummary {
|
|
22009
|
+
readonly id: string;
|
|
22010
|
+
readonly carrier_service_id: string;
|
|
22011
|
+
readonly carrier_tracking_number: string;
|
|
22012
|
+
readonly flow_tracking_number: string;
|
|
22013
|
+
readonly created_at: string;
|
|
22014
|
+
}
|
|
22015
|
+
interface UnassignedMerchantGuid {
|
|
22016
|
+
readonly id: string;
|
|
22017
|
+
readonly merchant_guid: string;
|
|
22018
|
+
readonly created_at: string;
|
|
22019
|
+
}
|
|
22020
|
+
interface UnassignedMerchantGuidDeleted {
|
|
22021
|
+
readonly discriminator: 'unassigned_merchant_guid_deleted';
|
|
22022
|
+
readonly event_id: string;
|
|
22023
|
+
readonly timestamp: string;
|
|
22024
|
+
readonly id: string;
|
|
22025
|
+
}
|
|
22026
|
+
interface UnassignedMerchantGuidUpserted {
|
|
22027
|
+
readonly discriminator: 'unassigned_merchant_guid_upserted';
|
|
22028
|
+
readonly event_id: string;
|
|
22029
|
+
readonly timestamp: string;
|
|
22030
|
+
readonly unassigned_merchant_guid: io.flow.internal.v0.models.UnassignedMerchantGuid;
|
|
22031
|
+
}
|
|
21055
22032
|
interface UnclassifiedProductStatistic {
|
|
21056
22033
|
readonly status: io.flow.internal.v0.enums.UnclassifiedProductStatus;
|
|
21057
22034
|
readonly number_of_items: number;
|
|
@@ -21243,6 +22220,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21243
22220
|
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
21244
22221
|
readonly created_at: string;
|
|
21245
22222
|
}
|
|
22223
|
+
interface WashCarrierActualFile {
|
|
22224
|
+
readonly id: string;
|
|
22225
|
+
readonly url: string;
|
|
22226
|
+
readonly status: io.flow.internal.v0.enums.WashCarrierActualFileStatus;
|
|
22227
|
+
}
|
|
22228
|
+
interface WashCarrierActualFileForm {
|
|
22229
|
+
readonly url: string;
|
|
22230
|
+
}
|
|
21246
22231
|
interface WashExportRequest {
|
|
21247
22232
|
readonly url: string;
|
|
21248
22233
|
}
|
|
@@ -21259,6 +22244,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21259
22244
|
interface Webhook {
|
|
21260
22245
|
readonly placeholder?: any;
|
|
21261
22246
|
}
|
|
22247
|
+
interface WeightsDead {
|
|
22248
|
+
readonly weight: number;
|
|
22249
|
+
}
|
|
22250
|
+
interface WeightsDimensional {
|
|
22251
|
+
readonly weight: number;
|
|
22252
|
+
readonly length: number;
|
|
22253
|
+
readonly width: number;
|
|
22254
|
+
readonly height: number;
|
|
22255
|
+
}
|
|
21262
22256
|
interface WholeOrderActionForm {
|
|
21263
22257
|
readonly discriminator: 'whole_order_action_form';
|
|
21264
22258
|
readonly action: io.flow.internal.v0.enums.OrderAction;
|
|
@@ -21365,7 +22359,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
21365
22359
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
21366
22360
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
21367
22361
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
21368
|
-
type Event = io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentDeleted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
22362
|
+
type Event = io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentDeleted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
21369
22363
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
21370
22364
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
21371
22365
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -21376,6 +22370,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
21376
22370
|
type FraudProviderConfiguration = io.flow.internal.v0.models.FraudProviderConfigurationRiskified;
|
|
21377
22371
|
type FraudProviderConfigurationForm = io.flow.internal.v0.models.FraudProviderConfigurationFormRiskified;
|
|
21378
22372
|
type FuelSurchargeServiceFeePutForm = io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm | io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm;
|
|
22373
|
+
type FulfillmentProof = io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference | io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference | io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference;
|
|
21379
22374
|
type GenerateLoad = io.flow.internal.v0.models.GenerateLoadSingleOrg | io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
21380
22375
|
type GlobalSearchResult = io.flow.internal.v0.models.SearchExperienceSummary | io.flow.internal.v0.models.SearchExperimentSummary | io.flow.internal.v0.models.SearchOrderSummary | io.flow.internal.v0.models.SearchItemSummary;
|
|
21381
22376
|
type HeapEvent = io.flow.internal.v0.models.HeapAddressPredictionClick | io.flow.internal.v0.models.HeapAfterpayPopupOpened | io.flow.internal.v0.models.HeapAfterpayPopupClosed | io.flow.internal.v0.models.HeapAuthorizationDeclined | io.flow.internal.v0.models.HeapAuthorizationError | io.flow.internal.v0.models.HeapCardError | io.flow.internal.v0.models.HeapCheckoutEvent | io.flow.internal.v0.models.HeapCheckoutProgress | io.flow.internal.v0.models.HeapCheckoutStarted | io.flow.internal.v0.models.HeapContinueClick | io.flow.internal.v0.models.HeapDeliveryFormDataReceived | io.flow.internal.v0.models.HeapDeliveryFormDataTimeout | io.flow.internal.v0.models.HeapDeliveryOptionCount | io.flow.internal.v0.models.HeapDeliveryOptionSelected | io.flow.internal.v0.models.HeapExitCheckout | io.flow.internal.v0.models.HeapFieldBlur | io.flow.internal.v0.models.HeapFieldErrorTooltipShown | io.flow.internal.v0.models.HeapFieldFocus | io.flow.internal.v0.models.HeapFieldValidation | io.flow.internal.v0.models.HeapGiftCardApply | io.flow.internal.v0.models.HeapGiftCardOpen | io.flow.internal.v0.models.HeapGiftCardWithPin | io.flow.internal.v0.models.HeapOptinPromptDeselected | io.flow.internal.v0.models.HeapOptinPromptSelected | io.flow.internal.v0.models.HeapOrderSummaryClose | io.flow.internal.v0.models.HeapOrderSummaryOpen | io.flow.internal.v0.models.HeapPayClick | io.flow.internal.v0.models.HeapPaymentFormDataReceived | io.flow.internal.v0.models.HeapPaymentFormDataTimeout | io.flow.internal.v0.models.HeapPaymentMethodSelected | io.flow.internal.v0.models.HeapPerformance | io.flow.internal.v0.models.HeapPromoCodeApply | io.flow.internal.v0.models.HeapPromoCodeError | io.flow.internal.v0.models.HeapPromoCodeOpen | io.flow.internal.v0.models.HeapPurchase | io.flow.internal.v0.models.HeapRageClick | io.flow.internal.v0.models.HeapScriptError | io.flow.internal.v0.models.HeapSequencedError | io.flow.internal.v0.models.HeapSequencedTiming | io.flow.internal.v0.models.HeapSplitLoaded | io.flow.internal.v0.models.HeapSplitTimeout | io.flow.internal.v0.models.HeapStartCheckout | io.flow.internal.v0.models.HeapStreamError | io.flow.internal.v0.models.HeapSubmitError | io.flow.internal.v0.models.HeapWebsocketClose | io.flow.internal.v0.models.HeapWebsocketConnectionLost | io.flow.internal.v0.models.HeapWebsocketError | io.flow.internal.v0.models.HeapWebsocketGiveUp | io.flow.internal.v0.models.HeapWebsocketOpen | io.flow.internal.v0.models.HeapWebsocketRequest | io.flow.internal.v0.models.HeapWebsocketResponse | io.flow.internal.v0.models.HeapWebsocketRetry;
|
|
@@ -21385,6 +22380,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
21385
22380
|
type InternalHarmonizationStatistic = io.flow.internal.v0.models.TimeToClassify | io.flow.internal.v0.models.TimeToClassifyAggregated | io.flow.internal.v0.models.RateSourceSummary | io.flow.internal.v0.models.RateFreshnessSummary;
|
|
21386
22381
|
type InternalRefundForm = io.flow.internal.v0.models.AdyenRefundForm;
|
|
21387
22382
|
type InternalTransactionDetails = io.flow.internal.v0.models.InternalTransactionDetailsCard;
|
|
22383
|
+
type LabelSurchargeDetail = io.flow.internal.v0.models.LabelSurchargeDetailFlat | io.flow.internal.v0.models.LabelSurchargeDetailPercentage | io.flow.internal.v0.models.LabelSurchargeDetailPerWeightUnit;
|
|
21388
22384
|
type LocalizableContent = io.flow.internal.v0.models.LocalizableContentReference | io.flow.internal.v0.models.Localization;
|
|
21389
22385
|
type MarketingGatewayChannelDetails = io.flow.internal.v0.models.MarketingGatewayGoogleChannelDetails | io.flow.internal.v0.models.MarketingGatewayFacebookChannelDetails | io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails;
|
|
21390
22386
|
type MarketingGatewayDistributionChannel = io.flow.internal.v0.models.MarketingGatewayDistributionChannelGoogle | io.flow.internal.v0.models.MarketingGatewayDistributionChannelFacebook;
|
|
@@ -21513,6 +22509,7 @@ export declare type AlertFailureSummary = io.flow.internal.v0.models.AlertFailur
|
|
|
21513
22509
|
export declare type AlertFailureSummaryDetail = io.flow.internal.v0.models.AlertFailureSummaryDetail;
|
|
21514
22510
|
export declare type AlertImportSummary = io.flow.internal.v0.models.AlertImportSummary;
|
|
21515
22511
|
export declare type AlertRequeueSummary = io.flow.internal.v0.models.AlertRequeueSummary;
|
|
22512
|
+
export declare type AlgoliaIndexAssignment = io.flow.internal.v0.models.AlgoliaIndexAssignment;
|
|
21516
22513
|
export declare type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
|
|
21517
22514
|
export declare type AllOrganizationsMembership = io.flow.internal.v0.models.AllOrganizationsMembership;
|
|
21518
22515
|
export declare type AllocationItemReference = io.flow.internal.v0.models.AllocationItemReference;
|
|
@@ -21535,6 +22532,7 @@ export declare type AuthorizedLineItemCharge = io.flow.internal.v0.models.Author
|
|
|
21535
22532
|
export declare type AuthorizedOrderCharge = io.flow.internal.v0.unions.AuthorizedOrderCharge;
|
|
21536
22533
|
export declare type AuthorizedShippingCharge = io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
21537
22534
|
export declare type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
|
|
22535
|
+
export declare type AutoReviewCriteria = io.flow.internal.v0.models.AutoReviewCriteria;
|
|
21538
22536
|
export declare type Backfill = io.flow.internal.v0.models.Backfill;
|
|
21539
22537
|
export declare type BackfillForm = io.flow.internal.v0.models.BackfillForm;
|
|
21540
22538
|
export declare type BankAccountReference = io.flow.internal.v0.models.BankAccountReference;
|
|
@@ -21566,7 +22564,6 @@ export declare type BillingStatementAttachmentKey = io.flow.internal.v0.enums.Bi
|
|
|
21566
22564
|
export declare type BillingStatementBatch = io.flow.internal.v0.models.BillingStatementBatch;
|
|
21567
22565
|
export declare type BillingStatementBatchDeleted = io.flow.internal.v0.models.BillingStatementBatchDeleted;
|
|
21568
22566
|
export declare type BillingStatementBatchFileKey = io.flow.internal.v0.enums.BillingStatementBatchFileKey;
|
|
21569
|
-
export declare type BillingStatementBatchReconciliation = io.flow.internal.v0.models.BillingStatementBatchReconciliation;
|
|
21570
22567
|
export declare type BillingStatementBatchReference = io.flow.internal.v0.models.BillingStatementBatchReference;
|
|
21571
22568
|
export declare type BillingStatementBatchStatement = io.flow.internal.v0.models.BillingStatementBatchStatement;
|
|
21572
22569
|
export declare type BillingStatementBatchStatementDeleted = io.flow.internal.v0.models.BillingStatementBatchStatementDeleted;
|
|
@@ -21633,6 +22630,8 @@ export declare type BrowserBundlePaymentMethods = io.flow.internal.v0.models.Bro
|
|
|
21633
22630
|
export declare type BulkClassificationAction = io.flow.internal.v0.models.BulkClassificationAction;
|
|
21634
22631
|
export declare type ByRuleSnapshot = io.flow.internal.v0.models.ByRuleSnapshot;
|
|
21635
22632
|
export declare type CalculatedTaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount;
|
|
22633
|
+
export declare type CalculatorDtcePostBody = io.flow.internal.v0.models.CalculatorDtcePostBody;
|
|
22634
|
+
export declare type CalculatorDtceProduct = io.flow.internal.v0.models.CalculatorDtceProduct;
|
|
21636
22635
|
export declare type CalculatorEngine = io.flow.internal.v0.enums.CalculatorEngine;
|
|
21637
22636
|
export declare type CalculatorOrganizationSettings = io.flow.internal.v0.models.CalculatorOrganizationSettings;
|
|
21638
22637
|
export declare type CalculatorOrganizationSettingsDeleted = io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted;
|
|
@@ -21642,9 +22641,11 @@ export declare type CarrierAccount = io.flow.internal.v0.models.CarrierAccount;
|
|
|
21642
22641
|
export declare type CarrierAccountDeleted = io.flow.internal.v0.models.CarrierAccountDeleted;
|
|
21643
22642
|
export declare type CarrierAccountForm = io.flow.internal.v0.models.CarrierAccountForm;
|
|
21644
22643
|
export declare type CarrierAccountUpsertedV2 = io.flow.internal.v0.models.CarrierAccountUpsertedV2;
|
|
22644
|
+
export declare type CarrierAccountValidation = io.flow.internal.v0.models.CarrierAccountValidation;
|
|
21645
22645
|
export declare type CarrierCredentials = io.flow.internal.v0.unions.CarrierCredentials;
|
|
21646
22646
|
export declare type CarrierInvoice = io.flow.internal.v0.models.CarrierInvoice;
|
|
21647
22647
|
export declare type CarrierLabelGenerationMethod = io.flow.internal.v0.enums.CarrierLabelGenerationMethod;
|
|
22648
|
+
export declare type CarrierValidationStatus = io.flow.internal.v0.enums.CarrierValidationStatus;
|
|
21648
22649
|
export declare type CatalogImportRequest = io.flow.internal.v0.models.CatalogImportRequest;
|
|
21649
22650
|
export declare type CatalogImportType = io.flow.internal.v0.enums.CatalogImportType;
|
|
21650
22651
|
export declare type CatalogItemBatchIndexTask = io.flow.internal.v0.models.CatalogItemBatchIndexTask;
|
|
@@ -21653,6 +22654,7 @@ export declare type CatalogItemIndexTask = io.flow.internal.v0.models.CatalogIte
|
|
|
21653
22654
|
export declare type CatalogItemRegionAvailabilities = io.flow.internal.v0.models.CatalogItemRegionAvailabilities;
|
|
21654
22655
|
export declare type CatalogItemRegionAvailabilitiesData = io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesData;
|
|
21655
22656
|
export declare type CatalogItemRegionAvailabilitiesPublished = io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished;
|
|
22657
|
+
export declare type CatalogPublicationSyncValidationError = io.flow.internal.v0.models.CatalogPublicationSyncValidationError;
|
|
21656
22658
|
export declare type CatalogSettings = io.flow.internal.v0.models.CatalogSettings;
|
|
21657
22659
|
export declare type CatalogSettingsDeleted = io.flow.internal.v0.models.CatalogSettingsDeleted;
|
|
21658
22660
|
export declare type CatalogSettingsPutForm = io.flow.internal.v0.models.CatalogSettingsPutForm;
|
|
@@ -21688,6 +22690,7 @@ export declare type ChannelOrderAcceptance = io.flow.internal.v0.models.ChannelO
|
|
|
21688
22690
|
export declare type ChannelOrderAcceptanceDeleted = io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted;
|
|
21689
22691
|
export declare type ChannelOrderAcceptanceErrorAction = io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction;
|
|
21690
22692
|
export declare type ChannelOrderAcceptanceForm = io.flow.internal.v0.models.ChannelOrderAcceptanceForm;
|
|
22693
|
+
export declare type ChannelOrderAcceptanceNextActionFrom = io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
21691
22694
|
export declare type ChannelOrderAcceptanceReason = io.flow.internal.v0.models.ChannelOrderAcceptanceReason;
|
|
21692
22695
|
export declare type ChannelOrderAcceptanceRejectionReason = io.flow.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
21693
22696
|
export declare type ChannelOrderAcceptanceStatus = io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
@@ -22269,6 +23272,7 @@ export declare type ClassificationWrapper = io.flow.internal.v0.models.Classific
|
|
|
22269
23272
|
export declare type ClassifiedProduct = io.flow.internal.v0.models.ClassifiedProduct;
|
|
22270
23273
|
export declare type ClassifiedProductDetail = io.flow.internal.v0.models.ClassifiedProductDetail;
|
|
22271
23274
|
export declare type CommercialInvoiceComparison = io.flow.internal.v0.models.CommercialInvoiceComparison;
|
|
23275
|
+
export declare type CompanyReference = io.flow.internal.v0.models.CompanyReference;
|
|
22272
23276
|
export declare type Compliance = io.flow.internal.v0.models.Compliance;
|
|
22273
23277
|
export declare type ComplianceData = io.flow.internal.v0.unions.ComplianceData;
|
|
22274
23278
|
export declare type ComplianceForm = io.flow.internal.v0.unions.ComplianceForm;
|
|
@@ -22399,6 +23403,7 @@ export declare type DisputeProcessor = io.flow.internal.v0.enums.DisputeProcesso
|
|
|
22399
23403
|
export declare type DisputeStatus = io.flow.internal.v0.enums.DisputeStatus;
|
|
22400
23404
|
export declare type DisputeStatusForm = io.flow.internal.v0.models.DisputeStatusForm;
|
|
22401
23405
|
export declare type DisputeTransaction = io.flow.internal.v0.models.DisputeTransaction;
|
|
23406
|
+
export declare type DisputeTransactionType = io.flow.internal.v0.enums.DisputeTransactionType;
|
|
22402
23407
|
export declare type DisputeType = io.flow.internal.v0.enums.DisputeType;
|
|
22403
23408
|
export declare type DisputeUpserted = io.flow.internal.v0.models.DisputeUpserted;
|
|
22404
23409
|
export declare type DutiedItemsExport = io.flow.internal.v0.models.DutiedItemsExport;
|
|
@@ -22436,13 +23441,20 @@ export declare type EmailModificationForm = io.flow.internal.v0.models.EmailModi
|
|
|
22436
23441
|
export declare type EmptyAttribute = io.flow.internal.v0.enums.EmptyAttribute;
|
|
22437
23442
|
export declare type EmptyClassificationForm = io.flow.internal.v0.models.EmptyClassificationForm;
|
|
22438
23443
|
export declare type Encryption = io.flow.internal.v0.models.Encryption;
|
|
23444
|
+
export declare type EntityReference = io.flow.internal.v0.models.EntityReference;
|
|
22439
23445
|
export declare type ErpFileType = io.flow.internal.v0.enums.ErpFileType;
|
|
22440
23446
|
export declare type ErpFlowFile = io.flow.internal.v0.models.ErpFlowFile;
|
|
22441
|
-
export declare type
|
|
23447
|
+
export declare type ErpFlowFileForm = io.flow.internal.v0.models.ErpFlowFileForm;
|
|
23448
|
+
export declare type ErpFlowVendor = io.flow.internal.v0.models.ErpFlowVendor;
|
|
22442
23449
|
export declare type ErpPriorityFile = io.flow.internal.v0.models.ErpPriorityFile;
|
|
22443
23450
|
export declare type ErpPriorityFileForm = io.flow.internal.v0.models.ErpPriorityFileForm;
|
|
23451
|
+
export declare type ErpPriorityVendor = io.flow.internal.v0.models.ErpPriorityVendor;
|
|
23452
|
+
export declare type ErpPriorityVendorForm = io.flow.internal.v0.models.ErpPriorityVendorForm;
|
|
22444
23453
|
export declare type ErpVendor = io.flow.internal.v0.models.ErpVendor;
|
|
22445
|
-
export declare type
|
|
23454
|
+
export declare type ErpVendorStatus = io.flow.internal.v0.models.ErpVendorStatus;
|
|
23455
|
+
export declare type ErpVendorStatusEntity = io.flow.internal.v0.models.ErpVendorStatusEntity;
|
|
23456
|
+
export declare type ErpVendorStatusFlowFile = io.flow.internal.v0.models.ErpVendorStatusFlowFile;
|
|
23457
|
+
export declare type ErpVendorStatusPriorityFile = io.flow.internal.v0.models.ErpVendorStatusPriorityFile;
|
|
22446
23458
|
export declare type Event = io.flow.internal.v0.unions.Event;
|
|
22447
23459
|
export declare type EventType = io.flow.internal.v0.enums.EventType;
|
|
22448
23460
|
export declare type ExclusionRuleDeleted = io.flow.internal.v0.models.ExclusionRuleDeleted;
|
|
@@ -22555,6 +23567,7 @@ export declare type FlowLabProjectPostForm = io.flow.internal.v0.models.FlowLabP
|
|
|
22555
23567
|
export declare type FlowLabProjectPutForm = io.flow.internal.v0.models.FlowLabProjectPutForm;
|
|
22556
23568
|
export declare type FlowLabelSetting = io.flow.internal.v0.models.FlowLabelSetting;
|
|
22557
23569
|
export declare type FlowLabelSettingForm = io.flow.internal.v0.models.FlowLabelSettingForm;
|
|
23570
|
+
export declare type FlowShopValidationError = io.flow.internal.v0.models.FlowShopValidationError;
|
|
22558
23571
|
export declare type Format = io.flow.internal.v0.enums.Format;
|
|
22559
23572
|
export declare type FraudPendingReview = io.flow.internal.v0.models.FraudPendingReview;
|
|
22560
23573
|
export declare type FraudPendingReviewDeleted = io.flow.internal.v0.models.FraudPendingReviewDeleted;
|
|
@@ -22590,11 +23603,22 @@ export declare type FtpSettingsPaths = io.flow.internal.v0.models.FtpSettingsPat
|
|
|
22590
23603
|
export declare type FuelSurchargeServiceFeeAmountByWeightPutForm = io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm;
|
|
22591
23604
|
export declare type FuelSurchargeServiceFeePercentPutForm = io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm;
|
|
22592
23605
|
export declare type FuelSurchargeServiceFeePutForm = io.flow.internal.v0.unions.FuelSurchargeServiceFeePutForm;
|
|
23606
|
+
export declare type Fulfillment = io.flow.internal.v0.models.Fulfillment;
|
|
22593
23607
|
export declare type FulfillmentActionForm = io.flow.internal.v0.models.FulfillmentActionForm;
|
|
23608
|
+
export declare type FulfillmentBusiness = io.flow.internal.v0.models.FulfillmentBusiness;
|
|
22594
23609
|
export declare type FulfillmentCancel = io.flow.internal.v0.models.FulfillmentCancel;
|
|
22595
23610
|
export declare type FulfillmentInternalExperienceReference = io.flow.internal.v0.models.FulfillmentInternalExperienceReference;
|
|
23611
|
+
export declare type FulfillmentLine = io.flow.internal.v0.models.FulfillmentLine;
|
|
23612
|
+
export declare type FulfillmentOrigin = io.flow.internal.v0.models.FulfillmentOrigin;
|
|
23613
|
+
export declare type FulfillmentProof = io.flow.internal.v0.unions.FulfillmentProof;
|
|
23614
|
+
export declare type FulfillmentProofExternalFulfillmentProofReference = io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference;
|
|
23615
|
+
export declare type FulfillmentProofLabelTrackingReference = io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference;
|
|
23616
|
+
export declare type FulfillmentProofShippingNotificationReference = io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference;
|
|
23617
|
+
export declare type FulfillmentReference = io.flow.internal.v0.models.FulfillmentReference;
|
|
22596
23618
|
export declare type FulfillmentShipmentTracking = io.flow.internal.v0.models.FulfillmentShipmentTracking;
|
|
23619
|
+
export declare type FulfillmentShipping = io.flow.internal.v0.models.FulfillmentShipping;
|
|
22597
23620
|
export declare type FulfillmentSnapshot = io.flow.internal.v0.models.FulfillmentSnapshot;
|
|
23621
|
+
export declare type FulfillmentSubsidyBreakdown = io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
|
|
22598
23622
|
export declare type FxFee = io.flow.internal.v0.models.FxFee;
|
|
22599
23623
|
export declare type FxRevenueRecognition = io.flow.internal.v0.models.FxRevenueRecognition;
|
|
22600
23624
|
export declare type FxRevenueRecognitionAccount = io.flow.internal.v0.models.FxRevenueRecognitionAccount;
|
|
@@ -22606,6 +23630,7 @@ export declare type FxRevenueRecognitionSource = io.flow.internal.v0.models.FxRe
|
|
|
22606
23630
|
export declare type GenerateLoad = io.flow.internal.v0.unions.GenerateLoad;
|
|
22607
23631
|
export declare type GenerateLoadMultipleOrgs = io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
22608
23632
|
export declare type GenerateLoadSingleOrg = io.flow.internal.v0.models.GenerateLoadSingleOrg;
|
|
23633
|
+
export declare type GenericValidationError = io.flow.internal.v0.models.GenericValidationError;
|
|
22609
23634
|
export declare type GiftCard = io.flow.internal.v0.models.GiftCard;
|
|
22610
23635
|
export declare type GiftCardAuthorizationError = io.flow.internal.v0.models.GiftCardAuthorizationError;
|
|
22611
23636
|
export declare type GiftCardForm = io.flow.internal.v0.models.GiftCardForm;
|
|
@@ -22628,6 +23653,8 @@ export declare type HarmonizationItemClassificationUpserted = io.flow.internal.v
|
|
|
22628
23653
|
export declare type HarmonizationItemSummary = io.flow.internal.v0.models.HarmonizationItemSummary;
|
|
22629
23654
|
export declare type HarmonizationMlModelSummary = io.flow.internal.v0.models.HarmonizationMlModelSummary;
|
|
22630
23655
|
export declare type HarmonizationPhraseSuggestionRequestImport = io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport;
|
|
23656
|
+
export declare type HarmonizationThreshold = io.flow.internal.v0.models.HarmonizationThreshold;
|
|
23657
|
+
export declare type HarmonizationThresholdForm = io.flow.internal.v0.models.HarmonizationThresholdForm;
|
|
22631
23658
|
export declare type HarmonizationUnclassifiedStatistics = io.flow.internal.v0.models.HarmonizationUnclassifiedStatistics;
|
|
22632
23659
|
export declare type HarmonizeFullyRequestV2 = io.flow.internal.v0.models.HarmonizeFullyRequestV2;
|
|
22633
23660
|
export declare type HarmonizedItemsHs6Export = io.flow.internal.v0.models.HarmonizedItemsHs6Export;
|
|
@@ -22692,6 +23719,8 @@ export declare type HybrisCatalogItemsImportRequest = io.flow.internal.v0.models
|
|
|
22692
23719
|
export declare type HybrisCatalogItemsImportRequestData = io.flow.internal.v0.models.HybrisCatalogItemsImportRequestData;
|
|
22693
23720
|
export declare type ImportCompleted = io.flow.internal.v0.models.ImportCompleted;
|
|
22694
23721
|
export declare type ImportFailed = io.flow.internal.v0.models.ImportFailed;
|
|
23722
|
+
export declare type IndexAssignmentDeleted = io.flow.internal.v0.models.IndexAssignmentDeleted;
|
|
23723
|
+
export declare type IndexAssignmentUpserted = io.flow.internal.v0.models.IndexAssignmentUpserted;
|
|
22695
23724
|
export declare type IndexTaskType = io.flow.internal.v0.unions.IndexTaskType;
|
|
22696
23725
|
export declare type InitialInputDataSource = io.flow.internal.v0.enums.InitialInputDataSource;
|
|
22697
23726
|
export declare type InlineAuthorizationParameters = io.flow.internal.v0.unions.InlineAuthorizationParameters;
|
|
@@ -22762,6 +23791,7 @@ export declare type ItemSalesMarginPostForm = io.flow.internal.v0.models.ItemSal
|
|
|
22762
23791
|
export declare type ItemSalesMarginPutForm = io.flow.internal.v0.models.ItemSalesMarginPutForm;
|
|
22763
23792
|
export declare type ItemSalesMarginUpserted = io.flow.internal.v0.models.ItemSalesMarginUpserted;
|
|
22764
23793
|
export declare type ItemSalesMarginVersion = io.flow.internal.v0.models.ItemSalesMarginVersion;
|
|
23794
|
+
export declare type ItemSummary = io.flow.internal.v0.models.ItemSummary;
|
|
22765
23795
|
export declare type ItemType = io.flow.internal.v0.enums.ItemType;
|
|
22766
23796
|
export declare type ItemValuesForm = io.flow.internal.v0.models.ItemValuesForm;
|
|
22767
23797
|
export declare type ItemsShipped = io.flow.internal.v0.models.ItemsShipped;
|
|
@@ -22775,6 +23805,7 @@ export declare type LabProjectSettingsForm = io.flow.internal.v0.models.LabProje
|
|
|
22775
23805
|
export declare type LabProjectSettingsFormAcceptance = io.flow.internal.v0.models.LabProjectSettingsFormAcceptance;
|
|
22776
23806
|
export declare type LabelAliases = io.flow.internal.v0.models.LabelAliases;
|
|
22777
23807
|
export declare type LabelAssociation = io.flow.internal.v0.models.LabelAssociation;
|
|
23808
|
+
export declare type LabelBase = io.flow.internal.v0.models.LabelBase;
|
|
22778
23809
|
export declare type LabelBillingStrategy = io.flow.internal.v0.enums.LabelBillingStrategy;
|
|
22779
23810
|
export declare type LabelCancellationError = io.flow.internal.v0.models.LabelCancellationError;
|
|
22780
23811
|
export declare type LabelCancellationErrorCode = io.flow.internal.v0.enums.LabelCancellationErrorCode;
|
|
@@ -22782,6 +23813,7 @@ export declare type LabelCreationJob = io.flow.internal.v0.models.LabelCreationJ
|
|
|
22782
23813
|
export declare type LabelCreationJobSummary = io.flow.internal.v0.models.LabelCreationJobSummary;
|
|
22783
23814
|
export declare type LabelCreationRequestForm = io.flow.internal.v0.models.LabelCreationRequestForm;
|
|
22784
23815
|
export declare type LabelCreationStatus = io.flow.internal.v0.enums.LabelCreationStatus;
|
|
23816
|
+
export declare type LabelDestination = io.flow.internal.v0.models.LabelDestination;
|
|
22785
23817
|
export declare type LabelGenerationAddressFailureStatus = io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus;
|
|
22786
23818
|
export declare type LabelGenerationAddressFailureStatusUpdateForm = io.flow.internal.v0.models.LabelGenerationAddressFailureStatusUpdateForm;
|
|
22787
23819
|
export declare type LabelGenerationAddressFailures = io.flow.internal.v0.models.LabelGenerationAddressFailures;
|
|
@@ -22790,7 +23822,20 @@ export declare type LabelGenerationSettingsDeleted = io.flow.internal.v0.models.
|
|
|
22790
23822
|
export declare type LabelGenerationSettingsForm = io.flow.internal.v0.models.LabelGenerationSettingsForm;
|
|
22791
23823
|
export declare type LabelGenerationSettingsUpserted = io.flow.internal.v0.models.LabelGenerationSettingsUpserted;
|
|
22792
23824
|
export declare type LabelInputSource = io.flow.internal.v0.enums.LabelInputSource;
|
|
23825
|
+
export declare type LabelInvoiceRequest = io.flow.internal.v0.models.LabelInvoiceRequest;
|
|
23826
|
+
export declare type LabelInvoiceRequestDeleted = io.flow.internal.v0.models.LabelInvoiceRequestDeleted;
|
|
23827
|
+
export declare type LabelInvoiceRequestUpserted = io.flow.internal.v0.models.LabelInvoiceRequestUpserted;
|
|
23828
|
+
export declare type LabelMetadata = io.flow.internal.v0.models.LabelMetadata;
|
|
23829
|
+
export declare type LabelRequestError = io.flow.internal.v0.models.LabelRequestError;
|
|
23830
|
+
export declare type LabelRequestErrorDeleted = io.flow.internal.v0.models.LabelRequestErrorDeleted;
|
|
23831
|
+
export declare type LabelRequestErrorHandlingResponsibility = io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
23832
|
+
export declare type LabelRequestErrorUpserted = io.flow.internal.v0.models.LabelRequestErrorUpserted;
|
|
22793
23833
|
export declare type LabelSummary = io.flow.internal.v0.models.LabelSummary;
|
|
23834
|
+
export declare type LabelSurcharge = io.flow.internal.v0.models.LabelSurcharge;
|
|
23835
|
+
export declare type LabelSurchargeDetail = io.flow.internal.v0.unions.LabelSurchargeDetail;
|
|
23836
|
+
export declare type LabelSurchargeDetailFlat = io.flow.internal.v0.models.LabelSurchargeDetailFlat;
|
|
23837
|
+
export declare type LabelSurchargeDetailPerWeightUnit = io.flow.internal.v0.models.LabelSurchargeDetailPerWeightUnit;
|
|
23838
|
+
export declare type LabelSurchargeDetailPercentage = io.flow.internal.v0.models.LabelSurchargeDetailPercentage;
|
|
22794
23839
|
export declare type LabelTaxonomy = io.flow.internal.v0.models.LabelTaxonomy;
|
|
22795
23840
|
export declare type LabelTrackingSummaryDeleted = io.flow.internal.v0.models.LabelTrackingSummaryDeleted;
|
|
22796
23841
|
export declare type LabelTrackingSummaryUpserted = io.flow.internal.v0.models.LabelTrackingSummaryUpserted;
|
|
@@ -22798,6 +23843,7 @@ export declare type LabelTransaction = io.flow.internal.v0.models.LabelTransacti
|
|
|
22798
23843
|
export declare type LabelTransactionDeleted = io.flow.internal.v0.models.LabelTransactionDeleted;
|
|
22799
23844
|
export declare type LabelTransactionType = io.flow.internal.v0.enums.LabelTransactionType;
|
|
22800
23845
|
export declare type LabelTransactionUpserted = io.flow.internal.v0.models.LabelTransactionUpserted;
|
|
23846
|
+
export declare type LabelUnits = io.flow.internal.v0.models.LabelUnits;
|
|
22801
23847
|
export declare type LabeledContent = io.flow.internal.v0.models.LabeledContent;
|
|
22802
23848
|
export declare type LabelsPrediction = io.flow.internal.v0.models.LabelsPrediction;
|
|
22803
23849
|
export declare type LandedCostItem = io.flow.internal.v0.models.LandedCostItem;
|
|
@@ -22837,7 +23883,6 @@ export declare type LocalizedPriceBookItemData = io.flow.internal.v0.models.Loca
|
|
|
22837
23883
|
export declare type LocalizedPriceBookItemDeleted = io.flow.internal.v0.models.LocalizedPriceBookItemDeleted;
|
|
22838
23884
|
export declare type LocalizedPriceBookItemUpserted = io.flow.internal.v0.models.LocalizedPriceBookItemUpserted;
|
|
22839
23885
|
export declare type Location = io.flow.internal.v0.models.Location;
|
|
22840
|
-
export declare type LogisticsCenterCheck = io.flow.internal.v0.models.LogisticsCenterCheck;
|
|
22841
23886
|
export declare type Logo = io.flow.internal.v0.models.Logo;
|
|
22842
23887
|
export declare type LoyaltyProgram = io.flow.internal.v0.models.LoyaltyProgram;
|
|
22843
23888
|
export declare type LoyaltyProgramMessage = io.flow.internal.v0.models.LoyaltyProgramMessage;
|
|
@@ -22914,8 +23959,19 @@ export declare type MarketingGatewaySupportedChannelDetails = io.flow.internal.v
|
|
|
22914
23959
|
export declare type MarketsOrder = io.flow.internal.v0.models.MarketsOrder;
|
|
22915
23960
|
export declare type MerchantApplicationSummaries = io.flow.internal.v0.models.MerchantApplicationSummaries;
|
|
22916
23961
|
export declare type MerchantApplicationSummary = io.flow.internal.v0.models.MerchantApplicationSummary;
|
|
23962
|
+
export declare type MerchantCharges = io.flow.internal.v0.models.MerchantCharges;
|
|
23963
|
+
export declare type MerchantFees = io.flow.internal.v0.models.MerchantFees;
|
|
23964
|
+
export declare type MerchantGuidAssignment = io.flow.internal.v0.models.MerchantGuidAssignment;
|
|
23965
|
+
export declare type MerchantGuidAssignmentDeleted = io.flow.internal.v0.models.MerchantGuidAssignmentDeleted;
|
|
23966
|
+
export declare type MerchantGuidAssignmentUpserted = io.flow.internal.v0.models.MerchantGuidAssignmentUpserted;
|
|
22917
23967
|
export declare type MerchantOfRecordEntitySettings = io.flow.internal.v0.models.MerchantOfRecordEntitySettings;
|
|
22918
23968
|
export declare type MerchantOfRecordEntitySettingsForm = io.flow.internal.v0.models.MerchantOfRecordEntitySettingsForm;
|
|
23969
|
+
export declare type MerchantSearchResult = io.flow.internal.v0.models.MerchantSearchResult;
|
|
23970
|
+
export declare type MerchantSubsidies = io.flow.internal.v0.models.MerchantSubsidies;
|
|
23971
|
+
export declare type MerchantSummary = io.flow.internal.v0.models.MerchantSummary;
|
|
23972
|
+
export declare type MetadataProposition = io.flow.internal.v0.models.MetadataProposition;
|
|
23973
|
+
export declare type MetadataRatecard = io.flow.internal.v0.models.MetadataRatecard;
|
|
23974
|
+
export declare type MetadataWeights = io.flow.internal.v0.models.MetadataWeights;
|
|
22919
23975
|
export declare type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|
|
22920
23976
|
export declare type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
|
|
22921
23977
|
export declare type NextBillingStatement = io.flow.internal.v0.models.NextBillingStatement;
|
|
@@ -22981,10 +24037,12 @@ export declare type OrderRevenueTimelineDataPoint = io.flow.internal.v0.models.O
|
|
|
22981
24037
|
export declare type OrderServiceChangeCsvForm = io.flow.internal.v0.models.OrderServiceChangeCsvForm;
|
|
22982
24038
|
export declare type OrderShipped = io.flow.internal.v0.models.OrderShipped;
|
|
22983
24039
|
export declare type OrderSubmissionForm = io.flow.internal.v0.models.OrderSubmissionForm;
|
|
24040
|
+
export declare type OrderSummary = io.flow.internal.v0.models.OrderSummary;
|
|
22984
24041
|
export declare type OrderTransaction = io.flow.internal.v0.models.OrderTransaction;
|
|
22985
24042
|
export declare type OrderTransactionDeleted = io.flow.internal.v0.models.OrderTransactionDeleted;
|
|
22986
24043
|
export declare type OrderTransactionType = io.flow.internal.v0.enums.OrderTransactionType;
|
|
22987
24044
|
export declare type OrderTransactionUpserted = io.flow.internal.v0.models.OrderTransactionUpserted;
|
|
24045
|
+
export declare type OrderValidationError = io.flow.internal.v0.models.OrderValidationError;
|
|
22988
24046
|
export declare type OrganizationAccount = io.flow.internal.v0.models.OrganizationAccount;
|
|
22989
24047
|
export declare type OrganizationAccountDeleted = io.flow.internal.v0.models.OrganizationAccountDeleted;
|
|
22990
24048
|
export declare type OrganizationAccountUpsertedV2 = io.flow.internal.v0.models.OrganizationAccountUpsertedV2;
|
|
@@ -23003,6 +24061,10 @@ export declare type OrganizationCurrencySettingDeleted = io.flow.internal.v0.mod
|
|
|
23003
24061
|
export declare type OrganizationCurrencySettingForm = io.flow.internal.v0.models.OrganizationCurrencySettingForm;
|
|
23004
24062
|
export declare type OrganizationCurrencySettingUpserted = io.flow.internal.v0.models.OrganizationCurrencySettingUpserted;
|
|
23005
24063
|
export declare type OrganizationCurrencySettingVersion = io.flow.internal.v0.models.OrganizationCurrencySettingVersion;
|
|
24064
|
+
export declare type OrganizationDeactivation = io.flow.internal.v0.models.OrganizationDeactivation;
|
|
24065
|
+
export declare type OrganizationDeactivationDeleted = io.flow.internal.v0.models.OrganizationDeactivationDeleted;
|
|
24066
|
+
export declare type OrganizationDeactivationForm = io.flow.internal.v0.models.OrganizationDeactivationForm;
|
|
24067
|
+
export declare type OrganizationDeactivationUpserted = io.flow.internal.v0.models.OrganizationDeactivationUpserted;
|
|
23006
24068
|
export declare type OrganizationDebugTransaction = io.flow.internal.v0.models.OrganizationDebugTransaction;
|
|
23007
24069
|
export declare type OrganizationInvitationAcceptForm = io.flow.internal.v0.models.OrganizationInvitationAcceptForm;
|
|
23008
24070
|
export declare type OrganizationMembershipCopy = io.flow.internal.v0.models.OrganizationMembershipCopy;
|
|
@@ -23035,6 +24097,7 @@ export declare type OrganizationSettingsForm = io.flow.internal.v0.models.Organi
|
|
|
23035
24097
|
export declare type OrganizationStatusChange = io.flow.internal.v0.models.OrganizationStatusChange;
|
|
23036
24098
|
export declare type OrganizationStatusChangeDeleted = io.flow.internal.v0.models.OrganizationStatusChangeDeleted;
|
|
23037
24099
|
export declare type OrganizationStatusChangeUpserted = io.flow.internal.v0.models.OrganizationStatusChangeUpserted;
|
|
24100
|
+
export declare type OrganizationsAuditCheckReport = io.flow.internal.v0.models.OrganizationsAuditCheckReport;
|
|
23038
24101
|
export declare type OutputStyle = io.flow.internal.v0.enums.OutputStyle;
|
|
23039
24102
|
export declare type Owner = io.flow.internal.v0.enums.Owner;
|
|
23040
24103
|
export declare type Partner = io.flow.internal.v0.models.Partner;
|
|
@@ -23069,6 +24132,7 @@ export declare type PaymentSummaryStatus = io.flow.internal.v0.enums.PaymentSumm
|
|
|
23069
24132
|
export declare type PaymentSummaryType = io.flow.internal.v0.enums.PaymentSummaryType;
|
|
23070
24133
|
export declare type PaymentSummaryV2 = io.flow.internal.v0.models.PaymentSummaryV2;
|
|
23071
24134
|
export declare type PaymentTerm = io.flow.internal.v0.enums.PaymentTerm;
|
|
24135
|
+
export declare type PayoutStatusCounts = io.flow.internal.v0.models.PayoutStatusCounts;
|
|
23072
24136
|
export declare type PaypalAccount = io.flow.internal.v0.models.PaypalAccount;
|
|
23073
24137
|
export declare type PaypalAccountModificationForm = io.flow.internal.v0.models.PaypalAccountModificationForm;
|
|
23074
24138
|
export declare type PaypalAccountPutForm = io.flow.internal.v0.models.PaypalAccountPutForm;
|
|
@@ -23139,6 +24203,7 @@ export declare type ProductHarmonization = io.flow.internal.v0.models.ProductHar
|
|
|
23139
24203
|
export declare type ProductHarmonizationForm = io.flow.internal.v0.models.ProductHarmonizationForm;
|
|
23140
24204
|
export declare type ProductLabels = io.flow.internal.v0.models.ProductLabels;
|
|
23141
24205
|
export declare type ProductListSettingsForm = io.flow.internal.v0.models.ProductListSettingsForm;
|
|
24206
|
+
export declare type ProductRestrictionResultValidationError = io.flow.internal.v0.models.ProductRestrictionResultValidationError;
|
|
23142
24207
|
export declare type ProductReviewHistory = io.flow.internal.v0.models.ProductReviewHistory;
|
|
23143
24208
|
export declare type ProductStatus = io.flow.internal.v0.enums.ProductStatus;
|
|
23144
24209
|
export declare type PromptAction = io.flow.internal.v0.enums.PromptAction;
|
|
@@ -23150,6 +24215,7 @@ export declare type ProofOfPostingExternallyFulfilled = io.flow.internal.v0.mode
|
|
|
23150
24215
|
export declare type ProofOfPostingFulfilled = io.flow.internal.v0.models.ProofOfPostingFulfilled;
|
|
23151
24216
|
export declare type ProofOfPostingOrderCancellation = io.flow.internal.v0.models.ProofOfPostingOrderCancellation;
|
|
23152
24217
|
export declare type ProofOfPostingShippingNotification = io.flow.internal.v0.models.ProofOfPostingShippingNotification;
|
|
24218
|
+
export declare type QueuedRecord = io.flow.internal.v0.models.QueuedRecord;
|
|
23153
24219
|
export declare type QueuedRecordType = io.flow.internal.v0.enums.QueuedRecordType;
|
|
23154
24220
|
export declare type QuoteRequest = io.flow.internal.v0.models.QuoteRequest;
|
|
23155
24221
|
export declare type QuoteRequestType = io.flow.internal.v0.enums.QuoteRequestType;
|
|
@@ -23167,6 +24233,7 @@ export declare type RateFreshnessSummaryDeleted = io.flow.internal.v0.models.Rat
|
|
|
23167
24233
|
export declare type RateFreshnessSummaryUpserted = io.flow.internal.v0.models.RateFreshnessSummaryUpserted;
|
|
23168
24234
|
export declare type RateLevel = io.flow.internal.v0.models.RateLevel;
|
|
23169
24235
|
export declare type RateLevelForm = io.flow.internal.v0.models.RateLevelForm;
|
|
24236
|
+
export declare type RateLevelKey = io.flow.internal.v0.enums.RateLevelKey;
|
|
23170
24237
|
export declare type RateLevelOrganization = io.flow.internal.v0.models.RateLevelOrganization;
|
|
23171
24238
|
export declare type RateLevelOrganizationForm = io.flow.internal.v0.models.RateLevelOrganizationForm;
|
|
23172
24239
|
export declare type RateLevelRatecard = io.flow.internal.v0.models.RateLevelRatecard;
|
|
@@ -23216,9 +24283,13 @@ export declare type RedirectReason = io.flow.internal.v0.enums.RedirectReason;
|
|
|
23216
24283
|
export declare type RegisteredExporterTariffEligibilityData = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData;
|
|
23217
24284
|
export declare type RegisteredExporterTariffEligibilityForm = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
|
|
23218
24285
|
export declare type RejectionReason = io.flow.internal.v0.enums.RejectionReason;
|
|
24286
|
+
export declare type Report = io.flow.internal.v0.models.Report;
|
|
24287
|
+
export declare type ReportForm = io.flow.internal.v0.models.ReportForm;
|
|
23219
24288
|
export declare type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
|
|
23220
24289
|
export declare type ReportRuleDecision = io.flow.internal.v0.models.ReportRuleDecision;
|
|
24290
|
+
export declare type ReportStatus = io.flow.internal.v0.enums.ReportStatus;
|
|
23221
24291
|
export declare type ReportSummary = io.flow.internal.v0.models.ReportSummary;
|
|
24292
|
+
export declare type ReportingDetails = io.flow.internal.v0.models.ReportingDetails;
|
|
23222
24293
|
export declare type ReportingScheme = io.flow.internal.v0.enums.ReportingScheme;
|
|
23223
24294
|
export declare type RequeueRequestForm = io.flow.internal.v0.models.RequeueRequestForm;
|
|
23224
24295
|
export declare type ResponsibleParty = io.flow.internal.v0.enums.ResponsibleParty;
|
|
@@ -23251,6 +24322,8 @@ export declare type ResyncByDestinations = io.flow.internal.v0.models.ResyncByDe
|
|
|
23251
24322
|
export declare type ResyncByHs6Destinations = io.flow.internal.v0.models.ResyncByHs6Destinations;
|
|
23252
24323
|
export declare type ResyncByHs6Origin = io.flow.internal.v0.models.ResyncByHs6Origin;
|
|
23253
24324
|
export declare type ResyncFallbackRates = io.flow.internal.v0.models.ResyncFallbackRates;
|
|
24325
|
+
export declare type Retracking = io.flow.internal.v0.models.Retracking;
|
|
24326
|
+
export declare type RetrackingForm = io.flow.internal.v0.models.RetrackingForm;
|
|
23254
24327
|
export declare type ReturnPolicyDeleted = io.flow.internal.v0.models.ReturnPolicyDeleted;
|
|
23255
24328
|
export declare type ReturnPolicyItemResultDeleted = io.flow.internal.v0.models.ReturnPolicyItemResultDeleted;
|
|
23256
24329
|
export declare type ReturnPolicyItemResultUpserted = io.flow.internal.v0.models.ReturnPolicyItemResultUpserted;
|
|
@@ -23262,6 +24335,8 @@ export declare type RoutingAccount = io.flow.internal.v0.models.RoutingAccount;
|
|
|
23262
24335
|
export declare type RoutingEntity = io.flow.internal.v0.unions.RoutingEntity;
|
|
23263
24336
|
export declare type RoutingMerchant = io.flow.internal.v0.models.RoutingMerchant;
|
|
23264
24337
|
export declare type RoutingProcessor = io.flow.internal.v0.models.RoutingProcessor;
|
|
24338
|
+
export declare type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
|
|
24339
|
+
export declare type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
|
|
23265
24340
|
export declare type Scope = io.flow.internal.v0.enums.Scope;
|
|
23266
24341
|
export declare type Screen = io.flow.internal.v0.models.Screen;
|
|
23267
24342
|
export declare type ScreenForm = io.flow.internal.v0.models.ScreenForm;
|
|
@@ -23287,6 +24362,7 @@ export declare type SfExpress = io.flow.internal.v0.models.SfExpress;
|
|
|
23287
24362
|
export declare type ShippedItemValue = io.flow.internal.v0.models.ShippedItemValue;
|
|
23288
24363
|
export declare type ShipperAccountInfoForm = io.flow.internal.v0.models.ShipperAccountInfoForm;
|
|
23289
24364
|
export declare type ShippingLane = io.flow.internal.v0.models.ShippingLane;
|
|
24365
|
+
export declare type ShippingMethodReference = io.flow.internal.v0.models.ShippingMethodReference;
|
|
23290
24366
|
export declare type Shop = io.flow.internal.v0.models.Shop;
|
|
23291
24367
|
export declare type ShopForm = io.flow.internal.v0.models.ShopForm;
|
|
23292
24368
|
export declare type ShopVersion = io.flow.internal.v0.models.ShopVersion;
|
|
@@ -23308,11 +24384,18 @@ export declare type ShopifyGiftCardReversalForm = io.flow.internal.v0.models.Sho
|
|
|
23308
24384
|
export declare type ShopifyGrantStatus = io.flow.internal.v0.enums.ShopifyGrantStatus;
|
|
23309
24385
|
export declare type ShopifyGrantsCheck = io.flow.internal.v0.models.ShopifyGrantsCheck;
|
|
23310
24386
|
export declare type ShopifyMarketsDangerousGoods = io.flow.internal.v0.enums.ShopifyMarketsDangerousGoods;
|
|
24387
|
+
export declare type ShopifyMarketsDiscrepancy = io.flow.internal.v0.models.ShopifyMarketsDiscrepancy;
|
|
24388
|
+
export declare type ShopifyMarketsDiscrepancyData = io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData;
|
|
23311
24389
|
export declare type ShopifyMarketsHtsNumberAvailable = io.flow.internal.v0.enums.ShopifyMarketsHtsNumberAvailable;
|
|
23312
24390
|
export declare type ShopifyMarketsIncorporationCountry = io.flow.internal.v0.models.ShopifyMarketsIncorporationCountry;
|
|
24391
|
+
export declare type ShopifyMarketsInternalOrderMetrics = io.flow.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
|
|
24392
|
+
export declare type ShopifyMarketsMetricsDeleted = io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted;
|
|
24393
|
+
export declare type ShopifyMarketsMetricsUpserted = io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted;
|
|
23313
24394
|
export declare type ShopifyMarketsOrder = io.flow.internal.v0.models.ShopifyMarketsOrder;
|
|
23314
24395
|
export declare type ShopifyMarketsOrderDeleted = io.flow.internal.v0.models.ShopifyMarketsOrderDeleted;
|
|
23315
24396
|
export declare type ShopifyMarketsOrderUpserted = io.flow.internal.v0.models.ShopifyMarketsOrderUpserted;
|
|
24397
|
+
export declare type ShopifyMarketsOrdersMetrics = io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics;
|
|
24398
|
+
export declare type ShopifyMarketsQueuedRecordType = io.flow.internal.v0.enums.ShopifyMarketsQueuedRecordType;
|
|
23316
24399
|
export declare type ShopifyMarketsShop = io.flow.internal.v0.models.ShopifyMarketsShop;
|
|
23317
24400
|
export declare type ShopifyMarketsShopDeleted = io.flow.internal.v0.models.ShopifyMarketsShopDeleted;
|
|
23318
24401
|
export declare type ShopifyMarketsShopForm = io.flow.internal.v0.models.ShopifyMarketsShopForm;
|
|
@@ -23320,6 +24403,7 @@ export declare type ShopifyMarketsShopStatisticsDeleted = io.flow.internal.v0.mo
|
|
|
23320
24403
|
export declare type ShopifyMarketsShopStatisticsUpserted = io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted;
|
|
23321
24404
|
export declare type ShopifyMarketsShopSummary = io.flow.internal.v0.models.ShopifyMarketsShopSummary;
|
|
23322
24405
|
export declare type ShopifyMarketsShopUpserted = io.flow.internal.v0.models.ShopifyMarketsShopUpserted;
|
|
24406
|
+
export declare type ShopifyMarketsShopifyOrderMetrics = io.flow.internal.v0.models.ShopifyMarketsShopifyOrderMetrics;
|
|
23323
24407
|
export declare type ShopifyMarketsSubsidiaryCompany = io.flow.internal.v0.models.ShopifyMarketsSubsidiaryCompany;
|
|
23324
24408
|
export declare type ShopifyMarketsSync = io.flow.internal.v0.models.ShopifyMarketsSync;
|
|
23325
24409
|
export declare type ShopifyMarketsTradeSector = io.flow.internal.v0.enums.ShopifyMarketsTradeSector;
|
|
@@ -23381,9 +24465,12 @@ export declare type ShopifyService = io.flow.internal.v0.enums.ShopifyService;
|
|
|
23381
24465
|
export declare type ShopifyShopDeleted = io.flow.internal.v0.models.ShopifyShopDeleted;
|
|
23382
24466
|
export declare type ShopifyShopStatistics = io.flow.internal.v0.models.ShopifyShopStatistics;
|
|
23383
24467
|
export declare type ShopifyShopUpserted = io.flow.internal.v0.models.ShopifyShopUpserted;
|
|
24468
|
+
export declare type ShopifyStorePassword = io.flow.internal.v0.models.ShopifyStorePassword;
|
|
23384
24469
|
export declare type ShopifyWebhook = io.flow.internal.v0.models.ShopifyWebhook;
|
|
23385
24470
|
export declare type ShopifyWebhookEvent = io.flow.internal.v0.models.ShopifyWebhookEvent;
|
|
23386
24471
|
export declare type ShopifyWebhookForm = io.flow.internal.v0.models.ShopifyWebhookForm;
|
|
24472
|
+
export declare type ShopperFees = io.flow.internal.v0.models.ShopperFees;
|
|
24473
|
+
export declare type ShopperSummary = io.flow.internal.v0.models.ShopperSummary;
|
|
23387
24474
|
export declare type SignificanceAction = io.flow.internal.v0.enums.SignificanceAction;
|
|
23388
24475
|
export declare type SimpleAccountReference = io.flow.internal.v0.models.SimpleAccountReference;
|
|
23389
24476
|
export declare type SimpleRoundingStrategy = io.flow.internal.v0.enums.SimpleRoundingStrategy;
|
|
@@ -23516,6 +24603,9 @@ export declare type TransactionAdjustment = io.flow.internal.v0.models.Transacti
|
|
|
23516
24603
|
export declare type TransactionAdjustmentForm = io.flow.internal.v0.models.TransactionAdjustmentForm;
|
|
23517
24604
|
export declare type TransactionPostingMethod = io.flow.internal.v0.enums.TransactionPostingMethod;
|
|
23518
24605
|
export declare type TransactionReference = io.flow.internal.v0.models.TransactionReference;
|
|
24606
|
+
export declare type TransactionStatement = io.flow.internal.v0.models.TransactionStatement;
|
|
24607
|
+
export declare type TransactionStatementDeleted = io.flow.internal.v0.models.TransactionStatementDeleted;
|
|
24608
|
+
export declare type TransactionStatementUpserted = io.flow.internal.v0.models.TransactionStatementUpserted;
|
|
23519
24609
|
export declare type TransactionSummary = io.flow.internal.v0.unions.TransactionSummary;
|
|
23520
24610
|
export declare type TransferMethod = io.flow.internal.v0.enums.TransferMethod;
|
|
23521
24611
|
export declare type TransferTransaction = io.flow.internal.v0.models.TransferTransaction;
|
|
@@ -23524,6 +24614,11 @@ export declare type TransferTransactionDeletedV2 = io.flow.internal.v0.models.Tr
|
|
|
23524
24614
|
export declare type TransferTransactionUpserted = io.flow.internal.v0.models.TransferTransactionUpserted;
|
|
23525
24615
|
export declare type TransferTransactionUpsertedV2 = io.flow.internal.v0.models.TransferTransactionUpsertedV2;
|
|
23526
24616
|
export declare type Tribe = io.flow.internal.v0.models.Tribe;
|
|
24617
|
+
export declare type TrueUpLabelSummary = io.flow.internal.v0.models.TrueUpLabelSummary;
|
|
24618
|
+
export declare type TrueUpSurchargeType = io.flow.internal.v0.enums.TrueUpSurchargeType;
|
|
24619
|
+
export declare type UnassignedMerchantGuid = io.flow.internal.v0.models.UnassignedMerchantGuid;
|
|
24620
|
+
export declare type UnassignedMerchantGuidDeleted = io.flow.internal.v0.models.UnassignedMerchantGuidDeleted;
|
|
24621
|
+
export declare type UnassignedMerchantGuidUpserted = io.flow.internal.v0.models.UnassignedMerchantGuidUpserted;
|
|
23527
24622
|
export declare type UnclassifiedProductStatistic = io.flow.internal.v0.models.UnclassifiedProductStatistic;
|
|
23528
24623
|
export declare type UnclassifiedProductStatus = io.flow.internal.v0.enums.UnclassifiedProductStatus;
|
|
23529
24624
|
export declare type UnclassifiedProductsPurgeRequest = io.flow.internal.v0.models.UnclassifiedProductsPurgeRequest;
|
|
@@ -23558,9 +24653,15 @@ export declare type VirtualCardProvider = io.flow.internal.v0.models.VirtualCard
|
|
|
23558
24653
|
export declare type VirtualCardProviderDeleted = io.flow.internal.v0.models.VirtualCardProviderDeleted;
|
|
23559
24654
|
export declare type VirtualCardProviderUpserted = io.flow.internal.v0.models.VirtualCardProviderUpserted;
|
|
23560
24655
|
export declare type VirtualCardTransaction = io.flow.internal.v0.models.VirtualCardTransaction;
|
|
24656
|
+
export declare type WashCarrierActualFile = io.flow.internal.v0.models.WashCarrierActualFile;
|
|
24657
|
+
export declare type WashCarrierActualFileForm = io.flow.internal.v0.models.WashCarrierActualFileForm;
|
|
24658
|
+
export declare type WashCarrierActualFileStatus = io.flow.internal.v0.enums.WashCarrierActualFileStatus;
|
|
23561
24659
|
export declare type WashExportRequest = io.flow.internal.v0.models.WashExportRequest;
|
|
23562
24660
|
export declare type WasteElectricalAndElectronicEquipmentComplianceData = io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceData;
|
|
23563
24661
|
export declare type WasteElectricalAndElectronicEquipmentComplianceForm = io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceForm;
|
|
23564
24662
|
export declare type Webhook = io.flow.internal.v0.models.Webhook;
|
|
24663
|
+
export declare type WeightSelection = io.flow.internal.v0.enums.WeightSelection;
|
|
24664
|
+
export declare type WeightsDead = io.flow.internal.v0.models.WeightsDead;
|
|
24665
|
+
export declare type WeightsDimensional = io.flow.internal.v0.models.WeightsDimensional;
|
|
23565
24666
|
export declare type WholeOrderActionForm = io.flow.internal.v0.models.WholeOrderActionForm;
|
|
23566
24667
|
export {};
|