@flowio/types 11.24.54 → 11.24.56

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.
@@ -226,1071 +226,687 @@ declare namespace io.flow.order.price.v0.models {
226
226
  readonly name?: string;
227
227
  }
228
228
  }
229
- declare namespace io.flow.common.v0.enums {
230
- type AttributeDataType = 'boolean' | 'integer' | 'decimal' | 'string' | 'json_array';
231
- type AvailabilityStatus = 'enabled' | 'disabled';
232
- type Calendar = 'weekdays' | 'everyday';
233
- type Capability = 'crossdock';
234
- type ChangeType = 'insert' | 'update' | 'delete';
235
- type CurrencyLabelFormatter = 'strip_trailing_zeros' | 'symbol_prefix' | 'symbol_suffix';
236
- type CurrencySymbolFormat = 'narrow' | 'primary';
237
- type DayOfWeek = 'sunday' | 'monday' | 'tuesday' | 'wednesday' | 'thursday' | 'friday' | 'saturday';
238
- type DeliveredDuty = 'paid' | 'unpaid';
239
- type DiscountTarget = 'item' | 'shipping';
240
- type EntityIdentifierType = 'ioss' | 'voec';
241
- type Environment = 'sandbox' | 'production';
242
- type ExceptionType = 'open' | 'closed';
243
- type GoodsSupply = 'export' | 'intra_community' | 'local';
244
- type HolidayCalendar = 'us_bank_holidays' | 'jewish_holidays';
245
- type IncludedLevyKey = 'duty' | 'vat' | 'vat_and_duty' | 'none';
246
- type Incoterm = 'EXW' | 'FCA' | 'CPT' | 'CIP' | 'DAT' | 'DAP' | 'DDP' | 'FAS' | 'FOB' | 'CFR' | 'CIF' | 'DAF' | 'DES' | 'DEQ' | 'DDU';
247
- type InputSpecificationType = 'text' | 'number';
248
- type MarginType = 'fixed' | 'percent';
249
- type MeasurementSystem = 'imperial' | 'metric';
250
- type MerchantOfRecord = 'flow' | 'organization';
251
- type OrderMerchantOfRecord = 'flow' | 'organization' | 'mixed';
252
- type OrganizationStatus = 'active' | 'inactive' | 'deactivated' | 'provisioned';
253
- type OrganizationType = 'standalone' | 'channel';
254
- type PriceBookStatus = 'draft' | 'published' | 'archived';
255
- type Role = 'admin' | 'member';
256
- type RoundingMethod = 'up' | 'down' | 'nearest';
257
- type RoundingType = 'pattern' | 'multiple';
258
- type ScheduleExceptionStatus = 'Open' | 'Closed';
259
- type SortDirection = 'ascending' | 'descending';
260
- type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
261
- type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
262
- type UserStatus = 'pending' | 'active' | 'inactive';
263
- type ValueAddedService = 'Hazardous Material';
264
- type Visibility = 'public' | 'private';
229
+ declare namespace io.flow.error.v0.enums {
230
+ type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
265
231
  }
266
- declare namespace io.flow.common.v0.models {
267
- interface Address {
268
- readonly text?: string;
269
- readonly streets?: string[];
270
- readonly street_number?: string;
271
- readonly city?: string;
272
- readonly province?: string;
273
- readonly postal?: string;
274
- readonly country?: string;
275
- readonly latitude?: string;
276
- readonly longitude?: string;
232
+ declare namespace io.flow.error.v0.models {
233
+ interface GenericError {
234
+ readonly code: io.flow.error.v0.enums.GenericErrorCode;
235
+ readonly messages: string[];
277
236
  }
278
- interface BillingAddress {
279
- readonly name?: io.flow.common.v0.models.Name;
280
- readonly streets?: string[];
281
- readonly city?: string;
282
- readonly province?: string;
283
- readonly postal?: string;
284
- readonly country?: string;
285
- readonly company?: string;
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[];
286
250
  }
287
- interface CatalogItemReference {
288
- readonly id: string;
289
- readonly number: string;
251
+ interface DeminimisPerItem {
252
+ readonly discriminator: 'deminimis_per_item';
253
+ readonly currency: string;
254
+ readonly minimum?: number;
255
+ readonly maximum?: number;
290
256
  }
291
- interface CatalogItemSummary {
292
- readonly number: string;
293
- readonly name: string;
294
- readonly attributes: Record<string, string>;
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;
295
263
  }
296
- interface ChannelReference {
297
- readonly id: string;
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;
298
269
  }
299
- interface CheckoutReference {
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 {
300
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;
301
283
  }
302
- interface Contact {
303
- readonly name: io.flow.common.v0.models.Name;
304
- readonly company?: string;
305
- readonly email?: string;
306
- readonly phone?: string;
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;
307
289
  }
308
- interface CustomerInvoice {
309
- readonly address?: io.flow.common.v0.models.BillingAddress;
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>;
310
298
  }
311
- interface CustomerReference {
312
- readonly number: string;
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>;
313
305
  }
314
- interface DatetimeRange {
315
- readonly from: string;
316
- readonly to: string;
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>;
317
312
  }
318
- interface Dimension {
319
- readonly depth?: io.flow.common.v0.models.Measurement;
320
- readonly diameter?: io.flow.common.v0.models.Measurement;
321
- readonly length?: io.flow.common.v0.models.Measurement;
322
- readonly weight?: io.flow.common.v0.models.Measurement;
323
- readonly width?: io.flow.common.v0.models.Measurement;
313
+ interface PriceBookItemSchedule {
314
+ readonly starts_at: string;
315
+ readonly ends_at?: string;
324
316
  }
325
- interface Dimensions {
326
- readonly product?: io.flow.common.v0.models.Dimension;
327
- readonly packaging?: io.flow.common.v0.models.Dimension;
317
+ interface PriceBookReference {
318
+ readonly id: string;
319
+ readonly key: string;
328
320
  }
329
- interface DiscountForm {
330
- readonly offer: io.flow.common.v0.unions.DiscountOffer;
331
- readonly target?: io.flow.common.v0.enums.DiscountTarget;
332
- readonly label?: string;
321
+ interface PriceCheck {
322
+ readonly display: io.flow.price.v0.models.LocalPriceDetails;
323
+ readonly final: io.flow.price.v0.models.LocalPriceDetails;
333
324
  }
334
- interface DiscountOfferFixed {
335
- readonly discriminator: 'discount_offer_fixed';
336
- readonly money: io.flow.common.v0.models.Money;
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;
337
332
  }
338
- interface DiscountOfferPercent {
339
- readonly discriminator: 'discount_offer_percent';
340
- readonly percent: number;
333
+ interface PriceDetailComponent {
334
+ readonly key: io.flow.price.v0.enums.PriceDetailComponentKey;
335
+ readonly amount: number;
336
+ readonly label: string;
337
+ readonly name?: string;
341
338
  }
342
- interface DiscountsForm {
343
- readonly discounts: io.flow.common.v0.models.DiscountForm[];
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;
344
349
  }
345
- interface Duration {
346
- readonly unit: io.flow.common.v0.enums.UnitOfTime;
347
- readonly value: number;
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;
348
363
  }
349
- interface EntityIdentifier {
350
- readonly name: io.flow.common.v0.enums.EntityIdentifierType;
351
- readonly number: string;
352
- readonly issuing_country?: string;
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;
353
368
  }
354
- interface Exception {
355
- readonly type: io.flow.common.v0.enums.ExceptionType;
356
- readonly datetime_range: io.flow.common.v0.models.DatetimeRange;
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;
357
374
  }
358
- interface ExperienceSummary {
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
+ declare namespace io.flow.channel.v0.enums {
380
+ type ChannelCurrencyCapability = 'payment_authorizations' | 'settlement_currency';
381
+ }
382
+ declare namespace io.flow.channel.v0.models {
383
+ interface Channel {
359
384
  readonly id: string;
360
- readonly key: string;
361
385
  readonly name: string;
362
- readonly country?: string;
363
- readonly currency?: string;
364
- readonly language?: string;
386
+ readonly environment: io.flow.common.v0.enums.Environment;
387
+ readonly organization_id_prefix?: string;
365
388
  }
366
- interface IncludedLevies {
367
- readonly key: io.flow.common.v0.enums.IncludedLevyKey;
368
- readonly label: string;
389
+ interface ChannelAuthorization {
390
+ readonly placeholder?: string;
369
391
  }
370
- interface InputForm {
371
- readonly values?: Record<string, string>;
392
+ interface ChannelAuthorizationForm {
393
+ readonly channel_id: string;
372
394
  }
373
- interface InputFormSpecification {
374
- readonly inputs?: io.flow.common.v0.models.InputSpecification[];
375
- readonly limitations?: io.flow.common.v0.models.InputSpecificationLimitations;
395
+ interface ChannelCurrency {
396
+ readonly id: string;
397
+ readonly currency: string;
398
+ readonly channel: io.flow.common.v0.models.ChannelReference;
399
+ readonly capabilities: io.flow.channel.v0.enums.ChannelCurrencyCapability[];
376
400
  }
377
- interface InputSpecification {
378
- readonly type: io.flow.common.v0.enums.InputSpecificationType;
401
+ interface ChannelOrganization {
402
+ readonly id: string;
403
+ readonly organization: io.flow.common.v0.models.OrganizationReference;
404
+ readonly key: string;
405
+ readonly channel: io.flow.common.v0.models.ChannelReference;
379
406
  readonly name: string;
380
- readonly display_text?: string;
381
- }
382
- interface InputSpecificationLimitationMax {
383
- readonly discriminator: 'input_specification_limitation_max';
384
- readonly max: number;
385
- }
386
- interface InputSpecificationLimitations {
387
- readonly limitations?: io.flow.common.v0.unions.InputSpecificationLimitation[];
388
- }
389
- interface ItemReference {
390
- readonly number: string;
391
- }
392
- interface LineItem {
393
- readonly number: string;
394
- readonly quantity: number;
395
- readonly price: io.flow.common.v0.models.Money;
396
- readonly attributes: Record<string, string>;
397
- readonly center?: string;
398
- readonly discount?: io.flow.common.v0.models.Money;
399
- }
400
- interface LineItemAttributesForm {
401
- readonly attributes: Record<string, string>;
402
- }
403
- interface LineItemForm {
404
- readonly number: string;
405
- readonly quantity: number;
406
- readonly shipment_estimate?: io.flow.common.v0.models.DatetimeRange;
407
- readonly price?: io.flow.common.v0.models.Money;
407
+ readonly slug?: string;
408
+ readonly defaults: io.flow.common.v0.models.OrganizationDefaults;
408
409
  readonly attributes?: Record<string, string>;
409
- readonly center?: string;
410
- readonly discount?: io.flow.common.v0.models.Money;
411
- readonly discounts?: io.flow.common.v0.models.DiscountsForm;
412
- }
413
- interface LineItemQuantityForm {
414
- readonly quantity: number;
415
- }
416
- interface LogoImageSetStatic {
417
- readonly discriminator: 'static';
418
- readonly small?: io.flow.common.v0.models.LogoImageStatic;
419
- readonly medium: io.flow.common.v0.models.LogoImageStatic;
420
- readonly large?: io.flow.common.v0.models.LogoImageStatic;
421
410
  }
422
- interface LogoImageStatic {
423
- readonly url: string;
424
- readonly width: number;
425
- readonly height: number;
411
+ interface ChannelOrganizationAuthorization {
412
+ readonly placeholder?: string;
426
413
  }
427
- interface LogoImageSvg {
428
- readonly discriminator: 'svg';
429
- readonly url: string;
414
+ interface ChannelOrganizationAuthorizationForm {
415
+ readonly channel_id: string;
416
+ readonly organization_id: string;
430
417
  }
431
- interface Margin {
432
- readonly type: io.flow.common.v0.enums.MarginType;
433
- readonly value: number;
418
+ interface ChannelOrganizationForm {
419
+ readonly key: string;
420
+ readonly name?: string;
421
+ readonly slug?: string;
422
+ readonly defaults: io.flow.common.v0.models.OrganizationDefaults;
423
+ readonly attributes?: Record<string, string>;
434
424
  }
435
- interface Measurement {
436
- readonly value: string;
437
- readonly units: io.flow.common.v0.enums.UnitOfMeasurement;
425
+ interface ChannelOrganizationPutForm {
426
+ readonly name?: string;
427
+ readonly slug?: string;
428
+ readonly defaults: io.flow.common.v0.models.OrganizationDefaults;
429
+ readonly attributes?: Record<string, string>;
438
430
  }
439
- interface MerchantOfRecordEntity {
440
- readonly organization: io.flow.common.v0.models.OrganizationReference;
431
+ }
432
+ declare namespace io.flow.reference.v0.enums {
433
+ type PaymentMethodCapability = 'credit' | 'debit';
434
+ type PaymentMethodType = 'card' | 'online' | 'offline';
435
+ type PostalType = 'eircode' | 'pin' | 'postal' | 'zip';
436
+ type ProvinceType = 'area' | 'city' | 'county' | 'department' | 'dependency' | 'district' | 'do_si' | 'emirate' | 'entity' | 'island' | 'municipality' | 'oblast' | 'outlying_area' | 'parish' | 'prefecture' | 'province' | 'state' | 'territory' | 'other';
437
+ }
438
+ declare namespace io.flow.reference.v0.models {
439
+ interface Carrier {
440
+ readonly id: string;
441
441
  readonly name: string;
442
- readonly vat?: io.flow.common.v0.models.MerchantOfRecordEntityRegistration;
443
- readonly identifiers?: io.flow.common.v0.models.EntityIdentifier[];
444
- readonly streets: string[];
445
- readonly city: string;
446
- readonly province?: string;
447
- readonly postal?: string;
448
- readonly country: string;
449
- readonly phone?: string;
450
- readonly email?: string;
451
- }
452
- interface MerchantOfRecordEntityRegistration {
453
- readonly number: string;
454
- readonly country: string;
455
- }
456
- interface Money {
457
- readonly amount: number;
458
- readonly currency: string;
442
+ readonly tracking_url: string;
459
443
  }
460
- interface MoneyWithBase {
461
- readonly currency: string;
462
- readonly amount: number;
463
- readonly base: io.flow.common.v0.models.Money;
444
+ interface CarrierService {
445
+ readonly id: string;
446
+ readonly carrier: io.flow.reference.v0.models.Carrier;
447
+ readonly name: string;
464
448
  }
465
- interface MoneyWithOptionalBase {
466
- readonly currency: string;
467
- readonly amount: number;
468
- readonly base?: io.flow.common.v0.models.Money;
449
+ interface Country {
450
+ readonly name: string;
451
+ readonly iso_3166_2: string;
452
+ readonly iso_3166_3: string;
453
+ readonly languages: string[];
454
+ readonly measurement_system: string;
455
+ readonly default_currency?: string;
456
+ readonly default_language?: string;
457
+ readonly timezones: string[];
458
+ readonly default_delivered_duty?: string;
469
459
  }
470
- interface Name {
471
- readonly first?: string;
472
- readonly last?: string;
460
+ interface Currency {
461
+ readonly name: string;
462
+ readonly iso_4217_3: string;
463
+ readonly number_decimals: number;
464
+ readonly symbols?: io.flow.reference.v0.models.CurrencySymbols;
465
+ readonly default_locale?: string;
473
466
  }
474
- interface OrderCustomer {
475
- readonly name: io.flow.common.v0.models.Name;
476
- readonly number?: string;
477
- readonly phone?: string;
478
- readonly email?: string;
479
- readonly address?: io.flow.common.v0.models.BillingAddress;
480
- readonly invoice?: io.flow.common.v0.models.CustomerInvoice;
467
+ interface CurrencySymbols {
468
+ readonly primary: string;
469
+ readonly narrow?: string;
481
470
  }
482
- interface OrderCustomerForm {
483
- readonly name?: io.flow.common.v0.models.Name;
484
- readonly number?: string;
485
- readonly phone?: string;
486
- readonly email?: string;
487
- readonly address?: io.flow.common.v0.models.BillingAddress;
488
- readonly invoice?: io.flow.common.v0.models.CustomerInvoice;
471
+ interface Language {
472
+ readonly name: string;
473
+ readonly iso_639_2: string;
489
474
  }
490
- interface Organization {
491
- readonly discriminator: 'organization';
475
+ interface Locale {
492
476
  readonly id: string;
493
477
  readonly name: string;
494
- readonly environment: io.flow.common.v0.enums.Environment;
495
- readonly parent?: io.flow.common.v0.models.OrganizationReference;
496
- readonly defaults?: io.flow.common.v0.models.OrganizationDefaults;
497
- readonly created_at?: string;
498
- readonly status?: io.flow.common.v0.enums.OrganizationStatus;
499
- readonly type?: io.flow.common.v0.enums.OrganizationType;
500
- }
501
- interface OrganizationDefaults {
502
478
  readonly country: string;
503
- readonly base_currency: string;
504
479
  readonly language: string;
505
- readonly locale: string;
506
- readonly timezone: string;
480
+ readonly numbers: io.flow.reference.v0.models.LocaleNumbers;
507
481
  }
508
- interface OrganizationReference {
509
- readonly discriminator: 'organization_reference';
510
- readonly id: string;
482
+ interface LocaleNumbers {
483
+ readonly decimal: string;
484
+ readonly group: string;
511
485
  }
512
- interface OrganizationSummary {
513
- readonly id: string;
486
+ interface LocalizedTranslation {
487
+ readonly locale: io.flow.reference.v0.models.Locale;
514
488
  readonly name: string;
515
- readonly environment: io.flow.common.v0.enums.Environment;
516
489
  }
517
- interface PartnerReference {
490
+ interface PaymentMethod {
518
491
  readonly id: string;
492
+ readonly type: io.flow.reference.v0.enums.PaymentMethodType;
493
+ readonly name: string;
494
+ readonly images: io.flow.reference.v0.models.PaymentMethodImages;
495
+ readonly regions: string[];
496
+ readonly capabilities?: io.flow.reference.v0.enums.PaymentMethodCapability[];
519
497
  }
520
- interface Price {
521
- readonly amount: number;
522
- readonly currency: string;
523
- readonly label: string;
524
- }
525
- interface PriceForm {
526
- readonly amount: number;
527
- readonly currency: string;
528
- }
529
- interface PriceSourceCatalog {
530
- readonly discriminator: 'catalog';
531
- readonly price: io.flow.common.v0.models.Money;
498
+ interface PaymentMethodImage {
499
+ readonly url: string;
500
+ readonly width: number;
501
+ readonly height: number;
532
502
  }
533
- interface PriceSourcePriceBook {
534
- readonly discriminator: 'price_book';
535
- readonly price: io.flow.common.v0.models.Money;
536
- readonly includes: io.flow.common.v0.models.IncludedLevies;
537
- readonly price_book_reference: io.flow.common.v0.models.PriceSourcePriceBookReference;
503
+ interface PaymentMethodImages {
504
+ readonly small: io.flow.reference.v0.models.PaymentMethodImage;
505
+ readonly medium: io.flow.reference.v0.models.PaymentMethodImage;
506
+ readonly large: io.flow.reference.v0.models.PaymentMethodImage;
538
507
  }
539
- interface PriceSourcePriceBookReference {
508
+ interface Province {
540
509
  readonly id: string;
541
- readonly key: string;
510
+ readonly iso_3166_2: string;
511
+ readonly name: string;
512
+ readonly country: string;
513
+ readonly province_type: io.flow.reference.v0.enums.ProvinceType;
514
+ readonly translations?: io.flow.reference.v0.models.LocalizedTranslation[];
542
515
  }
543
- interface PriceSourceProvided {
544
- readonly discriminator: 'provided';
545
- readonly price: io.flow.common.v0.models.Money;
516
+ interface Region {
517
+ readonly id: string;
518
+ readonly name: string;
519
+ readonly countries: string[];
520
+ readonly currencies: string[];
521
+ readonly languages: string[];
522
+ readonly measurement_systems: string[];
523
+ readonly timezones: string[];
546
524
  }
547
- interface PriceWithBase {
548
- readonly currency: string;
549
- readonly amount: number;
550
- readonly label: string;
551
- readonly base?: io.flow.common.v0.models.Price;
552
- }
553
- interface RepeatDaily {
554
- readonly discriminator: 'repeat_daily';
555
- readonly interval: number;
556
- }
557
- interface RepeatHourly {
558
- readonly discriminator: 'repeat_hourly';
559
- readonly interval: number;
560
- }
561
- interface RepeatMonthly {
562
- readonly discriminator: 'repeat_monthly';
563
- readonly interval: number;
564
- readonly days: number[];
565
- }
566
- interface RepeatWeekly {
567
- readonly discriminator: 'repeat_weekly';
568
- readonly interval: number;
569
- readonly days_of_week: io.flow.common.v0.enums.DayOfWeek[];
570
- }
571
- interface Rounding {
572
- readonly type: io.flow.common.v0.enums.RoundingType;
573
- readonly method: io.flow.common.v0.enums.RoundingMethod;
574
- readonly value: number;
575
- }
576
- interface Schedule {
577
- readonly calendar?: io.flow.common.v0.enums.Calendar;
578
- readonly holiday: io.flow.common.v0.enums.HolidayCalendar;
579
- readonly exception: io.flow.common.v0.models.Exception[];
580
- readonly cutoff?: string;
581
- readonly min_lead_time?: number;
582
- readonly max_lead_time?: number;
583
- }
584
- interface SessionReference {
585
- readonly id: string;
586
- }
587
- interface User {
588
- readonly discriminator: 'user';
589
- readonly id: string;
590
- readonly email?: string;
591
- readonly name: io.flow.common.v0.models.Name;
592
- readonly status: io.flow.common.v0.enums.UserStatus;
593
- }
594
- interface UserReference {
595
- readonly discriminator: 'user_reference';
596
- readonly id: string;
597
- }
598
- interface Zone {
599
- readonly postals?: string[];
600
- readonly provinces?: string[];
601
- readonly country: string;
602
- }
603
- }
604
- declare namespace io.flow.common.v0.unions {
605
- type DiscountOffer = io.flow.common.v0.models.DiscountOfferFixed | io.flow.common.v0.models.DiscountOfferPercent;
606
- type ExpandableOrganization = io.flow.common.v0.models.Organization | io.flow.common.v0.models.OrganizationReference;
607
- type ExpandableUser = io.flow.common.v0.models.User | io.flow.common.v0.models.UserReference;
608
- type InputSpecificationLimitation = io.flow.common.v0.models.InputSpecificationLimitationMax;
609
- type LogoImage = io.flow.common.v0.models.LogoImageSvg | io.flow.common.v0.models.LogoImageSetStatic;
610
- type PriceSource = io.flow.common.v0.models.PriceSourcePriceBook | io.flow.common.v0.models.PriceSourceCatalog | io.flow.common.v0.models.PriceSourceProvided;
611
- type RepeatSchedule = io.flow.common.v0.models.RepeatHourly | io.flow.common.v0.models.RepeatDaily | io.flow.common.v0.models.RepeatWeekly | io.flow.common.v0.models.RepeatMonthly;
612
- }
613
- declare namespace io.flow.error.v0.enums {
614
- type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
615
- }
616
- declare namespace io.flow.error.v0.models {
617
- interface GenericError {
618
- readonly code: io.flow.error.v0.enums.GenericErrorCode;
619
- readonly messages: string[];
525
+ interface Timezone {
526
+ readonly name: string;
527
+ readonly description: string;
528
+ readonly offset: number;
620
529
  }
621
530
  }
622
- declare namespace io.flow.price.v0.enums {
623
- type LevyComponent = 'goods' | 'duty' | 'insurance' | 'freight' | 'vat';
624
- type LevyStrategy = 'minimum' | 'average' | 'maximum';
625
- type PriceAccuracy = 'calculated' | 'estimated_from_partial_destination';
626
- 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';
627
- type PriceDetailKey = 'item_price' | 'margins' | 'vat' | 'duty' | 'rounding' | 'adjustment';
628
- type PricingLevySetting = 'included' | 'displayed' | 'ignored';
531
+ declare namespace io.flow.RESERVED_WORD_export.v0.enums {
532
+ type ExportStatus = 'created' | 'processing' | 'completed' | 'failed';
533
+ type ItemIdentifier = 'item_number' | 'sku';
629
534
  }
630
- declare namespace io.flow.price.v0.models {
631
- interface CurrencyFormat {
632
- readonly symbol: io.flow.common.v0.enums.CurrencySymbolFormat;
633
- readonly label_formatters: io.flow.common.v0.enums.CurrencyLabelFormatter[];
634
- }
635
- interface DeminimisPerItem {
636
- readonly discriminator: 'deminimis_per_item';
637
- readonly currency: string;
638
- readonly minimum?: number;
639
- readonly maximum?: number;
640
- }
641
- interface DeminimisSimple {
642
- readonly discriminator: 'deminimis_simple';
643
- readonly value?: number;
644
- readonly currency: string;
645
- readonly components: io.flow.price.v0.enums.LevyComponent[];
646
- readonly minimum?: number;
647
- }
648
- interface Duty {
649
- readonly rate: number;
650
- readonly components: io.flow.price.v0.enums.LevyComponent[];
651
- readonly deminimis?: io.flow.price.v0.unions.Deminimis;
652
- readonly name?: string;
535
+ declare namespace io.flow.RESERVED_WORD_export.v0.models {
536
+ interface AccountOrdersExportType {
537
+ readonly discriminator: 'account_orders_export_type';
538
+ readonly statement_id?: string;
539
+ readonly transaction_summary_id?: string;
540
+ readonly transaction_created_from?: string;
541
+ readonly transaction_created_to?: string;
542
+ readonly transaction_created_on_or_after?: string;
543
+ readonly transaction_created_after?: string;
544
+ readonly transaction_created_on_or_before?: string;
545
+ readonly transaction_created_before?: string;
546
+ readonly transaction_posted_from?: string;
547
+ readonly transaction_posted_to?: string;
548
+ readonly transaction_posted_on_or_after?: string;
549
+ readonly transaction_posted_after?: string;
550
+ readonly transaction_posted_on_or_before?: string;
551
+ readonly transaction_posted_before?: string;
653
552
  }
654
- interface LocalPriceDetails {
655
- readonly base: io.flow.price.v0.models.PriceDetails;
656
- readonly local: io.flow.price.v0.models.PriceDetails;
657
- readonly discount?: io.flow.price.v0.models.PriceDetail;
658
- readonly local_before_discount?: io.flow.price.v0.models.PriceDetail;
553
+ interface AccountTransactionsExportType {
554
+ readonly discriminator: 'account_transactions_export_type';
555
+ readonly statement_id?: string;
556
+ readonly transaction_summary_id?: string;
557
+ readonly created_from?: string;
558
+ readonly created_to?: string;
559
+ readonly created_on_or_after?: string;
560
+ readonly created_after?: string;
561
+ readonly created_on_or_before?: string;
562
+ readonly created_before?: string;
563
+ readonly posted_from?: string;
564
+ readonly posted_to?: string;
565
+ readonly posted_on_or_after?: string;
566
+ readonly posted_after?: string;
567
+ readonly posted_on_or_before?: string;
568
+ readonly posted_before?: string;
659
569
  }
660
- interface PriceBook {
661
- readonly id: string;
662
- readonly key: string;
663
- readonly currency: string;
664
- readonly name: string;
665
- readonly includes: io.flow.common.v0.models.IncludedLevies;
666
- readonly status: io.flow.common.v0.enums.PriceBookStatus;
570
+ interface AnalyticsExportType {
571
+ readonly discriminator: 'analytics_export_type';
572
+ readonly from?: string;
573
+ readonly to?: string;
574
+ readonly region?: string;
575
+ readonly interval?: io.flow.common.v0.enums.UnitOfTime;
667
576
  }
668
- interface PriceBookForm {
669
- readonly currency: string;
670
- readonly name: string;
671
- readonly includes: io.flow.common.v0.enums.IncludedLevyKey;
672
- readonly status?: io.flow.common.v0.enums.PriceBookStatus;
577
+ interface CatalogItemExportType {
578
+ readonly discriminator: 'catalog_item_export_type';
579
+ readonly numbers?: string[];
580
+ readonly q?: string;
581
+ readonly sort?: string;
673
582
  }
674
- interface PriceBookItem {
675
- readonly id: string;
676
- readonly key: string;
677
- readonly price_book: io.flow.price.v0.models.PriceBookReference;
678
- readonly price: io.flow.common.v0.models.Price;
583
+ interface CsvPriceBookItemExportRowByItemNumber {
679
584
  readonly item_number: string;
680
- readonly schedule: io.flow.price.v0.models.PriceBookItemSchedule;
681
- readonly item_attributes?: Record<string, string>;
682
- }
683
- interface PriceBookItemForm {
684
585
  readonly price_book_key: string;
685
- readonly item_number: string;
586
+ readonly price_book_item_key: string;
587
+ readonly item_name: string;
686
588
  readonly amount: number;
687
- readonly schedule?: io.flow.price.v0.models.PriceBookItemSchedule;
688
589
  readonly item_attributes?: Record<string, string>;
590
+ readonly schedule: io.flow.price.v0.models.PriceBookItemSchedule;
689
591
  }
690
- interface PriceBookItemQueryForm {
592
+ interface CsvPriceBookItemExportRowBySku {
593
+ readonly sku: string;
691
594
  readonly price_book_key: string;
692
- readonly item_query: string;
595
+ readonly price_book_item_key: string;
596
+ readonly item_name: string;
693
597
  readonly amount: number;
694
- readonly schedule?: io.flow.price.v0.models.PriceBookItemSchedule;
695
598
  readonly item_attributes?: Record<string, string>;
599
+ readonly schedule: io.flow.price.v0.models.PriceBookItemSchedule;
696
600
  }
697
- interface PriceBookItemSchedule {
698
- readonly starts_at: string;
699
- readonly ends_at?: string;
601
+ interface ExclusionRulesExportType {
602
+ readonly discriminator: 'exclusion_rules_export_type';
603
+ readonly states?: io.flow.catalog.exclusion.v0.enums.ExclusionRuleState[];
604
+ readonly sort?: string;
700
605
  }
701
- interface PriceBookReference {
606
+ interface ExperienceExportType {
607
+ readonly discriminator: 'experience_export_type';
608
+ readonly organization_id: string;
609
+ readonly ids?: string[];
610
+ readonly keys?: string[];
611
+ }
612
+ interface Export {
702
613
  readonly id: string;
703
- readonly key: string;
614
+ readonly type: io.flow.RESERVED_WORD_export.v0.unions.ExportType;
615
+ readonly status: io.flow.RESERVED_WORD_export.v0.enums.ExportStatus;
616
+ readonly organization_q: string;
617
+ readonly created_at: string;
618
+ readonly started_at?: string;
619
+ readonly completed_at?: string;
620
+ readonly url?: string;
621
+ readonly deliveries: io.flow.RESERVED_WORD_export.v0.unions.ExportDelivery[];
704
622
  }
705
- interface PriceCheck {
706
- readonly display: io.flow.price.v0.models.LocalPriceDetails;
707
- readonly final: io.flow.price.v0.models.LocalPriceDetails;
623
+ interface ExportDeliveryEmail {
624
+ readonly discriminator: 'export_delivery_email';
625
+ readonly email: string;
708
626
  }
709
- interface PriceDetail {
710
- readonly key: io.flow.price.v0.enums.PriceDetailKey;
711
- readonly components: io.flow.price.v0.models.PriceDetailComponent[];
712
- readonly amount: number;
713
- readonly label: string;
714
- readonly name?: string;
715
- readonly basis?: number;
627
+ interface ExportForm {
628
+ readonly type: io.flow.RESERVED_WORD_export.v0.unions.ExportType;
629
+ readonly emails?: string[];
630
+ readonly organization_q?: string;
716
631
  }
717
- interface PriceDetailComponent {
718
- readonly key: io.flow.price.v0.enums.PriceDetailComponentKey;
719
- readonly amount: number;
720
- readonly label: string;
721
- readonly name?: string;
632
+ interface ExportLocalizedItemPrices {
633
+ readonly organization: io.flow.common.v0.models.OrganizationReference;
634
+ readonly experience: io.flow.common.v0.models.ExperienceSummary;
635
+ readonly item: io.flow.common.v0.models.CatalogItemReference;
636
+ readonly prices: io.flow.RESERVED_WORD_export.v0.models.ExportLocalizedItemPricesDetail;
637
+ readonly status?: io.flow.catalog.v0.enums.SubcatalogItemStatus;
638
+ readonly rates?: io.flow.currency.v0.models.Rate[];
722
639
  }
723
- interface PriceDetails {
724
- readonly currency: string;
725
- readonly item_price: io.flow.price.v0.models.PriceDetail;
726
- readonly margins: io.flow.price.v0.models.PriceDetail;
727
- readonly vat: io.flow.price.v0.models.PriceDetail;
728
- readonly duty: io.flow.price.v0.models.PriceDetail;
729
- readonly rounding: io.flow.price.v0.models.PriceDetail;
730
- readonly price: io.flow.common.v0.models.Price;
731
- readonly total: io.flow.common.v0.models.Price;
732
- readonly adjustment?: io.flow.price.v0.models.PriceDetail;
640
+ interface ExportLocalizedItemPricesDetail {
641
+ readonly item: io.flow.catalog.v0.models.LocalizedItemPrice;
642
+ readonly vat?: io.flow.catalog.v0.models.LocalizedItemVat;
643
+ readonly duty?: io.flow.catalog.v0.models.LocalizedItemDuty;
644
+ readonly shipping_price?: io.flow.common.v0.models.Price;
645
+ readonly price_attributes: Record<string, io.flow.common.v0.models.PriceWithBase>;
733
646
  }
734
- interface PriceEquation {
735
- readonly contracted_rate: number;
736
- readonly rate: number;
737
- readonly pricing: io.flow.price.v0.models.Pricing;
738
- readonly base_price: number;
739
- readonly discount: number;
740
- readonly fixed_margin: number;
741
- readonly percent_margin: number;
742
- readonly insurance: number;
743
- readonly freight: number;
744
- readonly duty?: io.flow.price.v0.models.Duty;
745
- readonly tax?: io.flow.price.v0.models.Tax;
746
- readonly percent_sales_margin: number;
647
+ interface ExportVersion {
648
+ readonly id: string;
649
+ readonly timestamp: string;
650
+ readonly type: io.flow.common.v0.enums.ChangeType;
651
+ readonly export: io.flow.RESERVED_WORD_export.v0.models.Export;
747
652
  }
748
- interface Pricing {
749
- readonly vat: io.flow.price.v0.enums.PricingLevySetting;
750
- readonly duty: io.flow.price.v0.enums.PricingLevySetting;
751
- readonly rounding?: io.flow.common.v0.models.Rounding;
653
+ interface HarmonizationHs10ExportType {
654
+ readonly discriminator: 'harmonization_hs10_export_type';
655
+ readonly origin?: string;
656
+ readonly destination?: string;
657
+ readonly numbers?: string[];
658
+ readonly has_codes?: boolean;
659
+ readonly has_origins?: boolean;
660
+ readonly sort?: string;
752
661
  }
753
- interface Tax {
754
- readonly name: string;
755
- readonly rate: number;
756
- readonly components: io.flow.price.v0.enums.LevyComponent[];
757
- readonly deminimis?: io.flow.price.v0.unions.Deminimis;
662
+ interface HarmonizationHs6ExportType {
663
+ readonly discriminator: 'harmonization_hs6_export_type';
664
+ readonly numbers?: string[];
665
+ readonly has_codes?: boolean;
666
+ readonly sort?: string;
758
667
  }
759
- }
760
- declare namespace io.flow.price.v0.unions {
761
- type Deminimis = io.flow.price.v0.models.DeminimisSimple | io.flow.price.v0.models.DeminimisPerItem;
762
- }
763
- declare namespace io.flow.channel.v0.enums {
764
- type ChannelCurrencyCapability = 'payment_authorizations' | 'settlement_currency';
765
- }
766
- declare namespace io.flow.channel.v0.models {
767
- interface Channel {
768
- readonly id: string;
769
- readonly name: string;
770
- readonly environment: io.flow.common.v0.enums.Environment;
771
- readonly organization_id_prefix?: string;
668
+ interface HarmonizationOverviewExportType {
669
+ readonly discriminator: 'harmonization_overview_export_type';
670
+ readonly origin?: string;
671
+ readonly destination?: string;
672
+ readonly sort?: string;
772
673
  }
773
- interface ChannelAuthorization {
774
- readonly placeholder?: string;
674
+ interface HarmonizationTariffCodesExportType {
675
+ readonly discriminator: 'harmonization_tariff_codes_export_type';
676
+ readonly sort?: string;
775
677
  }
776
- interface ChannelAuthorizationForm {
777
- readonly channel_id: string;
678
+ interface LandedCostItem {
679
+ readonly number: string;
680
+ readonly origin: string;
681
+ readonly destination: string;
778
682
  }
779
- interface ChannelCurrency {
780
- readonly id: string;
781
- readonly currency: string;
782
- readonly channel: io.flow.common.v0.models.ChannelReference;
783
- readonly capabilities: io.flow.channel.v0.enums.ChannelCurrencyCapability[];
683
+ interface LocalizedItemPricesExportType {
684
+ readonly discriminator: 'localized_item_prices_export_type';
685
+ readonly since?: string;
784
686
  }
785
- interface ChannelOrganization {
786
- readonly id: string;
687
+ interface MarketingFeedsExportType {
688
+ readonly discriminator: 'marketing_feeds_export_type';
787
689
  readonly organization: io.flow.common.v0.models.OrganizationReference;
788
- readonly key: string;
789
- readonly channel: io.flow.common.v0.models.ChannelReference;
790
- readonly name: string;
791
- readonly slug?: string;
792
- readonly defaults: io.flow.common.v0.models.OrganizationDefaults;
793
- readonly attributes?: Record<string, string>;
794
- }
795
- interface ChannelOrganizationAuthorization {
796
- readonly placeholder?: string;
797
- }
798
- interface ChannelOrganizationAuthorizationForm {
799
- readonly channel_id: string;
800
- readonly organization_id: string;
690
+ readonly feed_ids: string[];
801
691
  }
802
- interface ChannelOrganizationForm {
803
- readonly key: string;
804
- readonly name?: string;
805
- readonly slug?: string;
806
- readonly defaults: io.flow.common.v0.models.OrganizationDefaults;
807
- readonly attributes?: Record<string, string>;
692
+ interface OrderExportType {
693
+ readonly discriminator: 'order_export_type';
694
+ readonly numbers?: string[];
695
+ readonly min_hours_since_submitted_at?: number;
696
+ readonly submitted_on_or_before?: string;
697
+ readonly submitted_on_or_after?: string;
698
+ readonly status?: io.flow.experience.v0.enums.OrderStatus;
699
+ readonly has_tracking_label?: boolean;
700
+ readonly sort?: string;
808
701
  }
809
- interface ChannelOrganizationPutForm {
810
- readonly name?: string;
811
- readonly slug?: string;
812
- readonly defaults: io.flow.common.v0.models.OrganizationDefaults;
813
- readonly attributes?: Record<string, string>;
702
+ interface PriceBookItemExportType {
703
+ readonly discriminator: 'price_book_item_export_type';
704
+ readonly price_book_key?: string;
705
+ readonly item_numbers?: string[];
706
+ readonly start_date?: string;
707
+ readonly end_date?: string;
708
+ readonly item_identifier?: io.flow.RESERVED_WORD_export.v0.enums.ItemIdentifier;
814
709
  }
815
- }
816
- declare namespace io.flow.reference.v0.enums {
817
- type PaymentMethodCapability = 'credit' | 'debit';
818
- type PaymentMethodType = 'card' | 'online' | 'offline';
819
- type PostalType = 'eircode' | 'pin' | 'postal' | 'zip';
820
- type ProvinceType = 'area' | 'city' | 'county' | 'department' | 'dependency' | 'district' | 'do_si' | 'emirate' | 'entity' | 'island' | 'municipality' | 'oblast' | 'outlying_area' | 'parish' | 'prefecture' | 'province' | 'state' | 'territory' | 'other';
821
- }
822
- declare namespace io.flow.reference.v0.models {
823
- interface Carrier {
710
+ interface ScheduledExport {
824
711
  readonly id: string;
825
- readonly name: string;
826
- readonly tracking_url: string;
712
+ readonly user: io.flow.common.v0.models.UserReference;
713
+ readonly organization_q: string;
714
+ readonly hour: number;
715
+ readonly minute: number;
716
+ readonly timezone: string;
717
+ readonly types: io.flow.RESERVED_WORD_export.v0.unions.ExportType[];
718
+ readonly last_sent_at?: string;
827
719
  }
828
- interface CarrierService {
829
- readonly id: string;
830
- readonly carrier: io.flow.reference.v0.models.Carrier;
831
- readonly name: string;
720
+ interface ScheduledExportForm {
721
+ readonly user_id: string;
722
+ readonly organization_q: string;
723
+ readonly hour: number;
724
+ readonly minute: number;
725
+ readonly timezone: string;
726
+ readonly types: io.flow.RESERVED_WORD_export.v0.unions.ExportType[];
832
727
  }
833
- interface Country {
834
- readonly name: string;
835
- readonly iso_3166_2: string;
836
- readonly iso_3166_3: string;
837
- readonly languages: string[];
838
- readonly measurement_system: string;
839
- readonly default_currency?: string;
840
- readonly default_language?: string;
841
- readonly timezones: string[];
842
- readonly default_delivered_duty?: string;
728
+ interface SolidusProductExportType {
729
+ readonly discriminator: 'solidus_product_export_type';
730
+ readonly numbers?: string[];
731
+ readonly sort?: string;
843
732
  }
844
- interface Currency {
845
- readonly name: string;
846
- readonly iso_4217_3: string;
847
- readonly number_decimals: number;
848
- readonly symbols?: io.flow.reference.v0.models.CurrencySymbols;
849
- readonly default_locale?: string;
733
+ interface SolidusVariantExportType {
734
+ readonly discriminator: 'solidus_variant_export_type';
735
+ readonly numbers?: string[];
736
+ readonly sort?: string;
850
737
  }
851
- interface CurrencySymbols {
852
- readonly primary: string;
853
- readonly narrow?: string;
738
+ interface UnharmonizedItemExportType {
739
+ readonly discriminator: 'unharmonized_item_export_type';
740
+ readonly sort?: string;
854
741
  }
855
- interface Language {
856
- readonly name: string;
857
- readonly iso_639_2: string;
742
+ }
743
+ declare namespace io.flow.RESERVED_WORD_export.v0.unions {
744
+ type ExportDelivery = io.flow.RESERVED_WORD_export.v0.models.ExportDeliveryEmail;
745
+ type ExportType = io.flow.RESERVED_WORD_export.v0.models.AccountTransactionsExportType | io.flow.RESERVED_WORD_export.v0.models.AccountOrdersExportType | io.flow.RESERVED_WORD_export.v0.models.AnalyticsExportType | io.flow.RESERVED_WORD_export.v0.models.CatalogItemExportType | io.flow.RESERVED_WORD_export.v0.models.ExperienceExportType | io.flow.RESERVED_WORD_export.v0.models.HarmonizationOverviewExportType | io.flow.RESERVED_WORD_export.v0.models.HarmonizationHs6ExportType | io.flow.RESERVED_WORD_export.v0.models.HarmonizationHs10ExportType | io.flow.RESERVED_WORD_export.v0.models.HarmonizationTariffCodesExportType | io.flow.RESERVED_WORD_export.v0.models.UnharmonizedItemExportType | io.flow.RESERVED_WORD_export.v0.models.OrderExportType | io.flow.RESERVED_WORD_export.v0.models.PriceBookItemExportType | io.flow.RESERVED_WORD_export.v0.models.SolidusProductExportType | io.flow.RESERVED_WORD_export.v0.models.SolidusVariantExportType | io.flow.RESERVED_WORD_export.v0.models.LocalizedItemPricesExportType | io.flow.RESERVED_WORD_export.v0.models.MarketingFeedsExportType | io.flow.RESERVED_WORD_export.v0.models.ExclusionRulesExportType;
746
+ }
747
+ declare namespace io.flow.flexe.v0.enums {
748
+ type FlexeAttachmentType = 'shipping_label' | 'packing_slip' | 'packing_slip_letter';
749
+ type FlexeNotification = 'receipt' | 'shipment';
750
+ type FlexeShipmentType = 'fulfillment_order' | 'retail_fulfillment_order' | 'carton_pick_delivery' | 'delivery' | 'container_delivery';
751
+ type FlexeStatus = 'in_transit' | 'completed';
752
+ }
753
+ declare namespace io.flow.flexe.v0.models {
754
+ interface BillOfLading {
755
+ readonly type: string;
756
+ readonly gs1us?: io.flow.flexe.v0.models.Gs1Us;
858
757
  }
859
- interface Locale {
860
- readonly id: string;
758
+ interface BillTo {
861
759
  readonly name: string;
760
+ readonly address_1: string;
761
+ readonly locality: string;
762
+ readonly region: string;
763
+ readonly postal_code: string;
862
764
  readonly country: string;
863
- readonly language: string;
864
- readonly numbers: io.flow.reference.v0.models.LocaleNumbers;
765
+ readonly address_2?: string;
766
+ readonly address_3?: string;
865
767
  }
866
- interface LocaleNumbers {
867
- readonly decimal: string;
868
- readonly group: string;
768
+ interface CartonPickDeliveryDetails {
769
+ readonly shipment_uuid?: string;
770
+ readonly carrier?: string;
771
+ readonly carrier_id?: string;
869
772
  }
870
- interface LocalizedTranslation {
871
- readonly locale: io.flow.reference.v0.models.Locale;
872
- readonly name: string;
773
+ interface ContainerDeliveryDetails {
774
+ readonly purchase_order: string;
775
+ readonly container_number?: string;
776
+ readonly seal_number?: string;
777
+ readonly vendor?: string;
778
+ readonly expected_inventory: io.flow.flexe.v0.models.InventoryDetails[];
779
+ readonly received_inventory: io.flow.flexe.v0.models.InventoryDetails[];
780
+ readonly damaged_inventory: io.flow.flexe.v0.models.InventoryDetails[];
781
+ readonly quantities_by_inventory: Record<string, io.flow.flexe.v0.models.QuantityByInventory>;
873
782
  }
874
- interface PaymentMethod {
875
- readonly id: string;
876
- readonly type: io.flow.reference.v0.enums.PaymentMethodType;
877
- readonly name: string;
878
- readonly images: io.flow.reference.v0.models.PaymentMethodImages;
879
- readonly regions: string[];
880
- readonly capabilities?: io.flow.reference.v0.enums.PaymentMethodCapability[];
783
+ interface DeliveryDetails {
784
+ readonly shipment_uuid?: string;
785
+ readonly trailer_number?: string;
786
+ readonly pallets: io.flow.flexe.v0.models.Pallet[];
787
+ readonly quantities_by_inventory: Record<string, io.flow.flexe.v0.models.QuantityByInventory>;
881
788
  }
882
- interface PaymentMethodImage {
789
+ interface Error {
883
790
  readonly url: string;
884
- readonly width: number;
885
- readonly height: number;
791
+ readonly client_request_id: string;
792
+ readonly generated_at: string;
793
+ readonly error: string;
886
794
  }
887
- interface PaymentMethodImages {
888
- readonly small: io.flow.reference.v0.models.PaymentMethodImage;
889
- readonly medium: io.flow.reference.v0.models.PaymentMethodImage;
890
- readonly large: io.flow.reference.v0.models.PaymentMethodImage;
795
+ interface FlexeAttachment {
796
+ readonly type: io.flow.flexe.v0.enums.FlexeAttachmentType;
797
+ readonly display_name: string;
798
+ readonly url: string;
891
799
  }
892
- interface Province {
893
- readonly id: string;
894
- readonly iso_3166_2: string;
895
- readonly name: string;
896
- readonly country: string;
897
- readonly province_type: io.flow.reference.v0.enums.ProvinceType;
898
- readonly translations?: io.flow.reference.v0.models.LocalizedTranslation[];
899
- }
900
- interface Region {
901
- readonly id: string;
902
- readonly name: string;
903
- readonly countries: string[];
904
- readonly currencies: string[];
905
- readonly languages: string[];
906
- readonly measurement_systems: string[];
907
- readonly timezones: string[];
908
- }
909
- interface Timezone {
910
- readonly name: string;
911
- readonly description: string;
912
- readonly offset: number;
913
- }
914
- }
915
- declare namespace io.flow.RESERVED_WORD_export.v0.enums {
916
- type ExportStatus = 'created' | 'processing' | 'completed' | 'failed';
917
- type ItemIdentifier = 'item_number' | 'sku';
918
- }
919
- declare namespace io.flow.RESERVED_WORD_export.v0.models {
920
- interface AccountOrdersExportType {
921
- readonly discriminator: 'account_orders_export_type';
922
- readonly statement_id?: string;
923
- readonly transaction_summary_id?: string;
924
- readonly transaction_created_from?: string;
925
- readonly transaction_created_to?: string;
926
- readonly transaction_created_on_or_after?: string;
927
- readonly transaction_created_after?: string;
928
- readonly transaction_created_on_or_before?: string;
929
- readonly transaction_created_before?: string;
930
- readonly transaction_posted_from?: string;
931
- readonly transaction_posted_to?: string;
932
- readonly transaction_posted_on_or_after?: string;
933
- readonly transaction_posted_after?: string;
934
- readonly transaction_posted_on_or_before?: string;
935
- readonly transaction_posted_before?: string;
936
- }
937
- interface AccountTransactionsExportType {
938
- readonly discriminator: 'account_transactions_export_type';
939
- readonly statement_id?: string;
940
- readonly transaction_summary_id?: string;
941
- readonly created_from?: string;
942
- readonly created_to?: string;
943
- readonly created_on_or_after?: string;
944
- readonly created_after?: string;
945
- readonly created_on_or_before?: string;
946
- readonly created_before?: string;
947
- readonly posted_from?: string;
948
- readonly posted_to?: string;
949
- readonly posted_on_or_after?: string;
950
- readonly posted_after?: string;
951
- readonly posted_on_or_before?: string;
952
- readonly posted_before?: string;
800
+ interface FlexeEcommerceFulfillment {
801
+ readonly url: string;
802
+ readonly client_request_id: string;
803
+ readonly generated_at: string;
804
+ readonly data: io.flow.flexe.v0.models.FlexeEcommerceFulfillmentData;
805
+ readonly errors: io.flow.flexe.v0.models.FlexeEcommerceFulfillmentErrors[];
953
806
  }
954
- interface AnalyticsExportType {
955
- readonly discriminator: 'analytics_export_type';
956
- readonly from?: string;
957
- readonly to?: string;
958
- readonly region?: string;
959
- readonly interval?: io.flow.common.v0.enums.UnitOfTime;
807
+ interface FlexeEcommerceFulfillmentData {
808
+ readonly import_id: string;
809
+ readonly succeeded_uuids: string[];
810
+ readonly failed_uuids: string[];
811
+ readonly errors: string[];
960
812
  }
961
- interface CatalogItemExportType {
962
- readonly discriminator: 'catalog_item_export_type';
963
- readonly numbers?: string[];
964
- readonly q?: string;
965
- readonly sort?: string;
813
+ interface FlexeEcommerceFulfillmentErrors {
814
+ readonly status: string;
815
+ readonly title: string;
816
+ readonly detail: string;
817
+ readonly source?: string;
966
818
  }
967
- interface CsvPriceBookItemExportRowByItemNumber {
968
- readonly item_number: string;
969
- readonly price_book_key: string;
970
- readonly price_book_item_key: string;
971
- readonly item_name: string;
972
- readonly amount: number;
973
- readonly item_attributes?: Record<string, string>;
974
- readonly schedule: io.flow.price.v0.models.PriceBookItemSchedule;
819
+ interface FlexeEcommerceFulfillmentForm {
820
+ readonly reservation_id: number;
821
+ readonly client_request_id: string;
822
+ readonly request: io.flow.flexe.v0.models.Orders;
975
823
  }
976
- interface CsvPriceBookItemExportRowBySku {
824
+ interface FlexeInventoryData {
977
825
  readonly sku: string;
978
- readonly price_book_key: string;
979
- readonly price_book_item_key: string;
980
- readonly item_name: string;
981
- readonly amount: number;
982
- readonly item_attributes?: Record<string, string>;
983
- readonly schedule: io.flow.price.v0.models.PriceBookItemSchedule;
826
+ readonly quantity: string;
827
+ readonly unit: string;
984
828
  }
985
- interface ExclusionRulesExportType {
986
- readonly discriminator: 'exclusion_rules_export_type';
987
- readonly states?: io.flow.catalog.exclusion.v0.enums.ExclusionRuleState[];
988
- readonly sort?: string;
829
+ interface FlexeRetailAttachment {
830
+ readonly display_name: string;
831
+ readonly url: string;
989
832
  }
990
- interface ExperienceExportType {
991
- readonly discriminator: 'experience_export_type';
992
- readonly organization_id: string;
993
- readonly ids?: string[];
994
- readonly keys?: string[];
833
+ interface FlexeRetailFulfillment {
834
+ readonly url: string;
835
+ readonly client_request_id: string;
836
+ readonly generated_at: string;
837
+ readonly data: io.flow.flexe.v0.models.FlexeRetailFulfillmentData;
838
+ readonly errors?: io.flow.flexe.v0.models.FlexeRetailFulfillmentErrors[];
995
839
  }
996
- interface Export {
840
+ interface FlexeRetailFulfillmentData {
997
841
  readonly id: string;
998
- readonly type: io.flow.RESERVED_WORD_export.v0.unions.ExportType;
999
- readonly status: io.flow.RESERVED_WORD_export.v0.enums.ExportStatus;
1000
- readonly organization_q: string;
1001
- readonly created_at: string;
1002
- readonly started_at?: string;
1003
- readonly completed_at?: string;
1004
- readonly url?: string;
1005
- readonly deliveries: io.flow.RESERVED_WORD_export.v0.unions.ExportDelivery[];
842
+ readonly purchase_order_uuid: string;
843
+ readonly status: string;
1006
844
  }
1007
- interface ExportDeliveryEmail {
1008
- readonly discriminator: 'export_delivery_email';
1009
- readonly email: string;
845
+ interface FlexeRetailFulfillmentErrors {
846
+ readonly type: string;
847
+ readonly message: string;
1010
848
  }
1011
- interface ExportForm {
1012
- readonly type: io.flow.RESERVED_WORD_export.v0.unions.ExportType;
1013
- readonly emails?: string[];
1014
- readonly organization_q?: string;
849
+ interface FlexeRetailFulfillmentForm {
850
+ readonly reservation_id: number;
851
+ readonly client_request_id?: string;
852
+ readonly request: io.flow.flexe.v0.models.RetailOrder;
1015
853
  }
1016
- interface ExportLocalizedItemPrices {
1017
- readonly organization: io.flow.common.v0.models.OrganizationReference;
1018
- readonly experience: io.flow.common.v0.models.ExperienceSummary;
1019
- readonly item: io.flow.common.v0.models.CatalogItemReference;
1020
- readonly prices: io.flow.RESERVED_WORD_export.v0.models.ExportLocalizedItemPricesDetail;
1021
- readonly status?: io.flow.catalog.v0.enums.SubcatalogItemStatus;
1022
- readonly rates?: io.flow.currency.v0.models.Rate[];
854
+ interface FulfillmentOrderDetails {
855
+ readonly shipment_uuid: string;
856
+ readonly carrier?: string;
857
+ readonly carrier_id?: string;
1023
858
  }
1024
- interface ExportLocalizedItemPricesDetail {
1025
- readonly item: io.flow.catalog.v0.models.LocalizedItemPrice;
1026
- readonly vat?: io.flow.catalog.v0.models.LocalizedItemVat;
1027
- readonly duty?: io.flow.catalog.v0.models.LocalizedItemDuty;
1028
- readonly shipping_price?: io.flow.common.v0.models.Price;
1029
- readonly price_attributes: Record<string, io.flow.common.v0.models.PriceWithBase>;
859
+ interface Gs1Us {
860
+ readonly number: string;
861
+ readonly ship_to?: io.flow.flexe.v0.models.Gs1UsShipTo;
862
+ readonly bill_to?: io.flow.flexe.v0.models.BillTo;
1030
863
  }
1031
- interface ExportVersion {
1032
- readonly id: string;
1033
- readonly timestamp: string;
1034
- readonly type: io.flow.common.v0.enums.ChangeType;
1035
- readonly export: io.flow.RESERVED_WORD_export.v0.models.Export;
864
+ interface Gs1UsShipTo {
865
+ readonly cid_number?: string;
866
+ readonly location_number?: string;
867
+ readonly free_on_board?: boolean;
1036
868
  }
1037
- interface HarmonizationHs10ExportType {
1038
- readonly discriminator: 'harmonization_hs10_export_type';
1039
- readonly origin?: string;
1040
- readonly destination?: string;
1041
- readonly numbers?: string[];
1042
- readonly has_codes?: boolean;
1043
- readonly has_origins?: boolean;
1044
- readonly sort?: string;
869
+ interface Inventory {
870
+ readonly url: string;
871
+ readonly client_request_id: string;
872
+ readonly generated_at: string;
873
+ readonly data: Record<string, io.flow.flexe.v0.models.InventoryDetails>;
1045
874
  }
1046
- interface HarmonizationHs6ExportType {
1047
- readonly discriminator: 'harmonization_hs6_export_type';
1048
- readonly numbers?: string[];
1049
- readonly has_codes?: boolean;
1050
- readonly sort?: string;
875
+ interface InventoryCount {
876
+ readonly amount: number;
877
+ readonly unit: string;
1051
878
  }
1052
- interface HarmonizationOverviewExportType {
1053
- readonly discriminator: 'harmonization_overview_export_type';
1054
- readonly origin?: string;
1055
- readonly destination?: string;
1056
- readonly sort?: string;
879
+ interface InventoryData {
880
+ readonly pallet: io.flow.flexe.v0.models.InventoryCount;
881
+ readonly carton?: io.flow.flexe.v0.models.InventoryCount;
882
+ readonly each?: io.flow.flexe.v0.models.InventoryCount;
1057
883
  }
1058
- interface HarmonizationTariffCodesExportType {
1059
- readonly discriminator: 'harmonization_tariff_codes_export_type';
1060
- readonly sort?: string;
884
+ interface InventoryDetails {
885
+ readonly key: Record<string, io.flow.flexe.v0.models.Sku>;
1061
886
  }
1062
- interface LandedCostItem {
1063
- readonly number: string;
1064
- readonly origin: string;
1065
- readonly destination: string;
887
+ interface LadingQuantity {
888
+ readonly num_pallets: number;
1066
889
  }
1067
- interface LocalizedItemPricesExportType {
1068
- readonly discriminator: 'localized_item_prices_export_type';
1069
- readonly since?: string;
890
+ interface Order {
891
+ readonly shipment_uuid: string;
892
+ readonly purchase_order: string;
893
+ readonly carrier: string;
894
+ readonly service_type: string;
895
+ readonly carrier_assigned_id: string;
896
+ readonly name: string;
897
+ readonly address_1: string;
898
+ readonly address_2?: string;
899
+ readonly address_3?: string;
900
+ readonly city: string;
901
+ readonly state: string;
902
+ readonly postal_code: string;
903
+ readonly phone?: string;
904
+ readonly instructions?: string;
905
+ readonly inventory_data: io.flow.flexe.v0.models.FlexeInventoryData[];
906
+ readonly attachments: io.flow.flexe.v0.models.FlexeAttachment[];
1070
907
  }
1071
- interface MarketingFeedsExportType {
1072
- readonly discriminator: 'marketing_feeds_export_type';
1073
- readonly organization: io.flow.common.v0.models.OrganizationReference;
1074
- readonly feed_ids: string[];
1075
- }
1076
- interface OrderExportType {
1077
- readonly discriminator: 'order_export_type';
1078
- readonly numbers?: string[];
1079
- readonly min_hours_since_submitted_at?: number;
1080
- readonly submitted_on_or_before?: string;
1081
- readonly submitted_on_or_after?: string;
1082
- readonly status?: io.flow.experience.v0.enums.OrderStatus;
1083
- readonly has_tracking_label?: boolean;
1084
- readonly sort?: string;
1085
- }
1086
- interface PriceBookItemExportType {
1087
- readonly discriminator: 'price_book_item_export_type';
1088
- readonly price_book_key?: string;
1089
- readonly item_numbers?: string[];
1090
- readonly start_date?: string;
1091
- readonly end_date?: string;
1092
- readonly item_identifier?: io.flow.RESERVED_WORD_export.v0.enums.ItemIdentifier;
1093
- }
1094
- interface ScheduledExport {
1095
- readonly id: string;
1096
- readonly user: io.flow.common.v0.models.UserReference;
1097
- readonly organization_q: string;
1098
- readonly hour: number;
1099
- readonly minute: number;
1100
- readonly timezone: string;
1101
- readonly types: io.flow.RESERVED_WORD_export.v0.unions.ExportType[];
1102
- readonly last_sent_at?: string;
1103
- }
1104
- interface ScheduledExportForm {
1105
- readonly user_id: string;
1106
- readonly organization_q: string;
1107
- readonly hour: number;
1108
- readonly minute: number;
1109
- readonly timezone: string;
1110
- readonly types: io.flow.RESERVED_WORD_export.v0.unions.ExportType[];
1111
- }
1112
- interface SolidusProductExportType {
1113
- readonly discriminator: 'solidus_product_export_type';
1114
- readonly numbers?: string[];
1115
- readonly sort?: string;
1116
- }
1117
- interface SolidusVariantExportType {
1118
- readonly discriminator: 'solidus_variant_export_type';
1119
- readonly numbers?: string[];
1120
- readonly sort?: string;
1121
- }
1122
- interface UnharmonizedItemExportType {
1123
- readonly discriminator: 'unharmonized_item_export_type';
1124
- readonly sort?: string;
1125
- }
1126
- }
1127
- declare namespace io.flow.RESERVED_WORD_export.v0.unions {
1128
- type ExportDelivery = io.flow.RESERVED_WORD_export.v0.models.ExportDeliveryEmail;
1129
- type ExportType = io.flow.RESERVED_WORD_export.v0.models.AccountTransactionsExportType | io.flow.RESERVED_WORD_export.v0.models.AccountOrdersExportType | io.flow.RESERVED_WORD_export.v0.models.AnalyticsExportType | io.flow.RESERVED_WORD_export.v0.models.CatalogItemExportType | io.flow.RESERVED_WORD_export.v0.models.ExperienceExportType | io.flow.RESERVED_WORD_export.v0.models.HarmonizationOverviewExportType | io.flow.RESERVED_WORD_export.v0.models.HarmonizationHs6ExportType | io.flow.RESERVED_WORD_export.v0.models.HarmonizationHs10ExportType | io.flow.RESERVED_WORD_export.v0.models.HarmonizationTariffCodesExportType | io.flow.RESERVED_WORD_export.v0.models.UnharmonizedItemExportType | io.flow.RESERVED_WORD_export.v0.models.OrderExportType | io.flow.RESERVED_WORD_export.v0.models.PriceBookItemExportType | io.flow.RESERVED_WORD_export.v0.models.SolidusProductExportType | io.flow.RESERVED_WORD_export.v0.models.SolidusVariantExportType | io.flow.RESERVED_WORD_export.v0.models.LocalizedItemPricesExportType | io.flow.RESERVED_WORD_export.v0.models.MarketingFeedsExportType | io.flow.RESERVED_WORD_export.v0.models.ExclusionRulesExportType;
1130
- }
1131
- declare namespace io.flow.flexe.v0.enums {
1132
- type FlexeAttachmentType = 'shipping_label' | 'packing_slip' | 'packing_slip_letter';
1133
- type FlexeNotification = 'receipt' | 'shipment';
1134
- type FlexeShipmentType = 'fulfillment_order' | 'retail_fulfillment_order' | 'carton_pick_delivery' | 'delivery' | 'container_delivery';
1135
- type FlexeStatus = 'in_transit' | 'completed';
1136
- }
1137
- declare namespace io.flow.flexe.v0.models {
1138
- interface BillOfLading {
1139
- readonly type: string;
1140
- readonly gs1us?: io.flow.flexe.v0.models.Gs1Us;
1141
- }
1142
- interface BillTo {
1143
- readonly name: string;
1144
- readonly address_1: string;
1145
- readonly locality: string;
1146
- readonly region: string;
1147
- readonly postal_code: string;
1148
- readonly country: string;
1149
- readonly address_2?: string;
1150
- readonly address_3?: string;
1151
- }
1152
- interface CartonPickDeliveryDetails {
1153
- readonly shipment_uuid?: string;
1154
- readonly carrier?: string;
1155
- readonly carrier_id?: string;
1156
- }
1157
- interface ContainerDeliveryDetails {
1158
- readonly purchase_order: string;
1159
- readonly container_number?: string;
1160
- readonly seal_number?: string;
1161
- readonly vendor?: string;
1162
- readonly expected_inventory: io.flow.flexe.v0.models.InventoryDetails[];
1163
- readonly received_inventory: io.flow.flexe.v0.models.InventoryDetails[];
1164
- readonly damaged_inventory: io.flow.flexe.v0.models.InventoryDetails[];
1165
- readonly quantities_by_inventory: Record<string, io.flow.flexe.v0.models.QuantityByInventory>;
1166
- }
1167
- interface DeliveryDetails {
1168
- readonly shipment_uuid?: string;
1169
- readonly trailer_number?: string;
1170
- readonly pallets: io.flow.flexe.v0.models.Pallet[];
1171
- readonly quantities_by_inventory: Record<string, io.flow.flexe.v0.models.QuantityByInventory>;
1172
- }
1173
- interface Error {
1174
- readonly url: string;
1175
- readonly client_request_id: string;
1176
- readonly generated_at: string;
1177
- readonly error: string;
1178
- }
1179
- interface FlexeAttachment {
1180
- readonly type: io.flow.flexe.v0.enums.FlexeAttachmentType;
1181
- readonly display_name: string;
1182
- readonly url: string;
1183
- }
1184
- interface FlexeEcommerceFulfillment {
1185
- readonly url: string;
1186
- readonly client_request_id: string;
1187
- readonly generated_at: string;
1188
- readonly data: io.flow.flexe.v0.models.FlexeEcommerceFulfillmentData;
1189
- readonly errors: io.flow.flexe.v0.models.FlexeEcommerceFulfillmentErrors[];
1190
- }
1191
- interface FlexeEcommerceFulfillmentData {
1192
- readonly import_id: string;
1193
- readonly succeeded_uuids: string[];
1194
- readonly failed_uuids: string[];
1195
- readonly errors: string[];
1196
- }
1197
- interface FlexeEcommerceFulfillmentErrors {
1198
- readonly status: string;
1199
- readonly title: string;
1200
- readonly detail: string;
1201
- readonly source?: string;
1202
- }
1203
- interface FlexeEcommerceFulfillmentForm {
1204
- readonly reservation_id: number;
1205
- readonly client_request_id: string;
1206
- readonly request: io.flow.flexe.v0.models.Orders;
1207
- }
1208
- interface FlexeInventoryData {
1209
- readonly sku: string;
1210
- readonly quantity: string;
1211
- readonly unit: string;
1212
- }
1213
- interface FlexeRetailAttachment {
1214
- readonly display_name: string;
1215
- readonly url: string;
1216
- }
1217
- interface FlexeRetailFulfillment {
1218
- readonly url: string;
1219
- readonly client_request_id: string;
1220
- readonly generated_at: string;
1221
- readonly data: io.flow.flexe.v0.models.FlexeRetailFulfillmentData;
1222
- readonly errors?: io.flow.flexe.v0.models.FlexeRetailFulfillmentErrors[];
1223
- }
1224
- interface FlexeRetailFulfillmentData {
1225
- readonly id: string;
1226
- readonly purchase_order_uuid: string;
1227
- readonly status: string;
1228
- }
1229
- interface FlexeRetailFulfillmentErrors {
1230
- readonly type: string;
1231
- readonly message: string;
1232
- }
1233
- interface FlexeRetailFulfillmentForm {
1234
- readonly reservation_id: number;
1235
- readonly client_request_id?: string;
1236
- readonly request: io.flow.flexe.v0.models.RetailOrder;
1237
- }
1238
- interface FulfillmentOrderDetails {
1239
- readonly shipment_uuid: string;
1240
- readonly carrier?: string;
1241
- readonly carrier_id?: string;
1242
- }
1243
- interface Gs1Us {
1244
- readonly number: string;
1245
- readonly ship_to?: io.flow.flexe.v0.models.Gs1UsShipTo;
1246
- readonly bill_to?: io.flow.flexe.v0.models.BillTo;
1247
- }
1248
- interface Gs1UsShipTo {
1249
- readonly cid_number?: string;
1250
- readonly location_number?: string;
1251
- readonly free_on_board?: boolean;
1252
- }
1253
- interface Inventory {
1254
- readonly url: string;
1255
- readonly client_request_id: string;
1256
- readonly generated_at: string;
1257
- readonly data: Record<string, io.flow.flexe.v0.models.InventoryDetails>;
1258
- }
1259
- interface InventoryCount {
1260
- readonly amount: number;
1261
- readonly unit: string;
1262
- }
1263
- interface InventoryData {
1264
- readonly pallet: io.flow.flexe.v0.models.InventoryCount;
1265
- readonly carton?: io.flow.flexe.v0.models.InventoryCount;
1266
- readonly each?: io.flow.flexe.v0.models.InventoryCount;
1267
- }
1268
- interface InventoryDetails {
1269
- readonly key: Record<string, io.flow.flexe.v0.models.Sku>;
1270
- }
1271
- interface LadingQuantity {
1272
- readonly num_pallets: number;
1273
- }
1274
- interface Order {
1275
- readonly shipment_uuid: string;
1276
- readonly purchase_order: string;
1277
- readonly carrier: string;
1278
- readonly service_type: string;
1279
- readonly carrier_assigned_id: string;
1280
- readonly name: string;
1281
- readonly address_1: string;
1282
- readonly address_2?: string;
1283
- readonly address_3?: string;
1284
- readonly city: string;
1285
- readonly state: string;
1286
- readonly postal_code: string;
1287
- readonly phone?: string;
1288
- readonly instructions?: string;
1289
- readonly inventory_data: io.flow.flexe.v0.models.FlexeInventoryData[];
1290
- readonly attachments: io.flow.flexe.v0.models.FlexeAttachment[];
1291
- }
1292
- interface Orders {
1293
- readonly orders: io.flow.flexe.v0.models.Order[];
908
+ interface Orders {
909
+ readonly orders: io.flow.flexe.v0.models.Order[];
1294
910
  }
1295
911
  interface Pallet {
1296
912
  readonly pallet_id: string;
@@ -1445,6 +1061,15 @@ declare namespace io.flow.payment.v0.models {
1445
1061
  readonly validation_url: string;
1446
1062
  readonly display_name?: string;
1447
1063
  }
1064
+ interface ApplepaySdkCreateResultActionDetails {
1065
+ readonly discriminator: 'applepay_sdk_create_result_action_details';
1066
+ readonly merchant_identifier: string;
1067
+ readonly payment_data_request: any;
1068
+ }
1069
+ interface ApplepaySdkValidateResultActionDetails {
1070
+ readonly discriminator: 'applepay_sdk_validate_result_action_details';
1071
+ readonly payment_session: any;
1072
+ }
1448
1073
  interface AuthorizationCode {
1449
1074
  readonly result_code: string;
1450
1075
  readonly code: string;
@@ -2173,7 +1798,7 @@ declare namespace io.flow.payment.v0.unions {
2173
1798
  type AuthorizationForm = io.flow.payment.v0.models.AuthorizationCopyForm | io.flow.payment.v0.models.DirectAuthorizationForm | io.flow.payment.v0.models.MerchantOfRecordAuthorizationForm | io.flow.payment.v0.models.PaypalAuthorizationForm | io.flow.payment.v0.models.RedirectAuthorizationForm | io.flow.payment.v0.models.InlineAuthorizationForm | io.flow.payment.v0.models.AchAuthorizationForm | io.flow.payment.v0.models.CardPaymentSourceAuthorizationForm | io.flow.payment.v0.models.OnlinePaymentAuthorizationForm;
2174
1799
  type AuthorizationPayloadParameters = io.flow.payment.v0.models.GooglePayAuthorizationPayload | io.flow.payment.v0.models.ApplePayMerchantValidationPayload;
2175
1800
  type AuthorizationResultAction = io.flow.payment.v0.models.AuthorizationResultActionGet | io.flow.payment.v0.models.AuthorizationResultActionPost | io.flow.payment.v0.models.AuthorizationResultActionWait | io.flow.payment.v0.models.AuthorizationResultActionNative;
2176
- type AuthorizationResultActionDetails = io.flow.payment.v0.models.AdyenNativeActionDetails | io.flow.payment.v0.models.StripeAuthorizationResultActionDetails | io.flow.payment.v0.models.ThreedsIdentifyActionDetails | io.flow.payment.v0.models.ThreedsChallengeActionDetails | io.flow.payment.v0.models.KlarnaSdkAuthorizationResultActionDetails | io.flow.payment.v0.models.SelectIssuerOptionActionDetails;
1801
+ type AuthorizationResultActionDetails = io.flow.payment.v0.models.AdyenNativeActionDetails | io.flow.payment.v0.models.StripeAuthorizationResultActionDetails | io.flow.payment.v0.models.ThreedsIdentifyActionDetails | io.flow.payment.v0.models.ThreedsChallengeActionDetails | io.flow.payment.v0.models.ApplepaySdkCreateResultActionDetails | io.flow.payment.v0.models.ApplepaySdkValidateResultActionDetails | io.flow.payment.v0.models.KlarnaSdkAuthorizationResultActionDetails | io.flow.payment.v0.models.SelectIssuerOptionActionDetails;
2177
1802
  type BrowserActionConfiguration = io.flow.payment.v0.models.CardBrowserActionConfiguration;
2178
1803
  type ConfirmationDetails = io.flow.payment.v0.models.DirectDebit;
2179
1804
  type ExpandableCard = io.flow.payment.v0.models.Card | io.flow.payment.v0.models.CardReference | io.flow.payment.v0.models.CardSummary;
@@ -3039,6 +2664,7 @@ declare namespace io.flow.label.v0.models {
3039
2664
  }
3040
2665
  interface ShippingLabelDocument {
3041
2666
  readonly zpl?: string;
2667
+ readonly zpl_url?: string;
3042
2668
  readonly pdf?: string;
3043
2669
  readonly pdf_data?: string;
3044
2670
  readonly png?: string;
@@ -3268,7 +2894,7 @@ declare namespace io.flow.external.paypal.v1.models {
3268
2894
  readonly communication_details?: io.flow.external.paypal.v1.models.CommunicationDetails;
3269
2895
  readonly supporting_info?: io.flow.external.paypal.v1.models.SupportingInfo;
3270
2896
  readonly allowed_response_options?: io.flow.external.paypal.v1.models.AllowedResponseOptions;
3271
- readonly links: io.flow.external.paypal.v1.models.Link[];
2897
+ readonly links?: io.flow.external.paypal.v1.models.Link[];
3272
2898
  }
3273
2899
  interface DisputeExtension {
3274
2900
  readonly merchant_contacted?: boolean;
@@ -3345,7 +2971,7 @@ declare namespace io.flow.external.paypal.v1.models {
3345
2971
  readonly currency: string;
3346
2972
  }
3347
2973
  interface ItemInfo {
3348
- readonly item_id: string;
2974
+ readonly item_id?: string;
3349
2975
  readonly item_description?: string;
3350
2976
  readonly item_quantity?: string;
3351
2977
  readonly partner_transaction_id?: string;
@@ -3559,7 +3185,7 @@ declare namespace io.flow.external.paypal.v1.models {
3559
3185
  readonly insurance: string;
3560
3186
  }
3561
3187
  interface TransactionInfo {
3562
- readonly buyer_transaction_id: string;
3188
+ readonly buyer_transaction_id?: string;
3563
3189
  readonly seller_transaction_id?: string;
3564
3190
  readonly reference_id?: string;
3565
3191
  readonly create_time?: string;
@@ -3839,9 +3465,9 @@ declare namespace io.flow.adyen.v0.enums {
3839
3465
  type Contract = 'RECURRING';
3840
3466
  type DeviceChannel = 'app' | 'browser';
3841
3467
  type EventCode = 'AUTHORISATION' | 'CANCELLATION' | 'REFUND' | 'CANCEL_OR_REFUND' | 'CAPTURE' | 'CAPTURE_FAILED' | 'REFUND_FAILED' | 'REFUNDED_REVERSED' | 'PAIDOUT_REVERSED' | 'REQUEST_FOR_INFORMATION' | 'CHARGEBACK' | 'CHARGEBACK_REVERSED' | 'NOTIFICATION_OF_CHARGEBACK' | 'NOTIFICATION_OF_FRAUD' | 'MANUAL_REVIEW_ACCEPT' | 'MANUAL_REVIEW_REJECT' | 'RECURRING_CONTRACT' | 'PAYOUT_EXPIRE' | 'PAYOUT_DECLINE' | 'PAYOUT_THIRDPARTY' | 'REFUND_WITH_DATA' | 'AUTHORISE_REFERRAL' | 'EXPIRE' | 'FRAUD_ONLY' | 'FUND_TRANSFER' | 'HANDLED_EXTERNALLY' | 'OFFER_CLOSED' | 'ORDER_OPENED' | 'ORDER_CLOSED' | 'PENDING' | 'PROCESS_RETRY' | 'REPORT_AVAILABLE' | 'SECOND_CHARGEBACK' | 'PREARBITRATION_WON' | 'PREARBITRATION_LOST';
3842
- type HttpRedirectMethod = 'GET' | 'POST';
3468
+ type Method = 'GET' | 'POST';
3843
3469
  type Operation = 'cancel' | 'capture' | 'refund';
3844
- type PaymentMethod = 'ach' | 'alipay' | 'alipay_hk' | 'alipay_wap' | 'amex' | 'bankTransfer_IBAN' | 'bcmc' | 'bcmc_mobile' | 'blik' | 'cartebancaire' | 'cup' | 'diners' | 'directEbanking' | 'discover' | 'dotpay' | 'dragonpay_ebanking' | 'dragonpay_gcash' | 'dragonpay_otc_banking' | 'ebanking_FI' | 'gcash' | 'giropay' | 'ideal' | 'interac' | 'jcb' | 'kakaopay' | 'kcp_banktransfer' | 'kcp_creditcard' | 'kcp_payco' | 'maestro' | 'mbway' | 'mc' | 'mobilepay' | 'molpay_points' | 'multibanco' | 'onlineBanking_PL' | 'qiwiwallet' | 'sepadirectdebit' | 'trustly' | 'trustpay' | 'twint' | 'unionpay' | 'visa' | 'wechatpay' | 'unknowncard';
3470
+ type PaymentMethod = 'ach' | 'alipay' | 'alipay_wap' | 'amex' | 'bankTransfer_IBAN' | 'bcmc' | 'cartebancaire' | 'cup' | 'diners' | 'directEbanking' | 'discover' | 'dotpay' | 'dragonpay_ebanking' | 'dragonpay_gcash' | 'dragonpay_otc_banking' | 'ebanking_FI' | 'giropay' | 'ideal' | 'interac' | 'jcb' | 'kcp_banktransfer' | 'kcp_creditcard' | 'kcp_payco' | 'maestro' | 'mc' | 'molpay_points' | 'multibanco' | 'qiwiwallet' | 'sepadirectdebit' | 'trustly' | 'trustpay' | 'unionpay' | 'visa' | 'wechatpay' | 'unknowncard';
3845
3471
  type RecurringProcessingModel = 'Subscription' | 'CardOnFile' | 'UnscheduledCardOnFile';
3846
3472
  type ResultCode = 'Authorised' | 'Cancelled' | 'Error' | 'Refused' | 'Received' | 'RedirectShopper' | 'Pending' | 'ChallengeShopper' | 'IdentifyShopper';
3847
3473
  type ShopperInteraction = 'Ecommerce' | 'ContAuth' | 'POS' | 'Moto';
@@ -3860,10 +3486,6 @@ declare namespace io.flow.adyen.v0.models {
3860
3486
  readonly value: number;
3861
3487
  readonly currency: string;
3862
3488
  }
3863
- interface Applepay {
3864
- readonly type: 'applepay';
3865
- readonly applePayToken: string;
3866
- }
3867
3489
  interface Authentication {
3868
3490
  readonly 'threeds2.fingerprintToken'?: string;
3869
3491
  readonly 'threeds2.challengeToken'?: string;
@@ -3890,8 +3512,6 @@ declare namespace io.flow.adyen.v0.models {
3890
3512
  readonly browserInfo?: io.flow.adyen.v0.unions.BrowserInfo;
3891
3513
  readonly threeDS2RequestData?: io.flow.adyen.v0.models.Threeds2RequestData;
3892
3514
  readonly recurringProcessingModel?: io.flow.adyen.v0.enums.RecurringProcessingModel;
3893
- readonly mcc?: string;
3894
- readonly metadata?: any;
3895
3515
  }
3896
3516
  interface AuthorizeRequest3D {
3897
3517
  readonly merchantAccount: string;
@@ -4025,12 +3645,6 @@ declare namespace io.flow.adyen.v0.models {
4025
3645
  readonly details: any;
4026
3646
  readonly paymentData?: string;
4027
3647
  }
4028
- interface PaymentDetailsV663Ds2Challenge {
4029
- readonly 'threeds2.challengeResult': string;
4030
- }
4031
- interface PaymentDetailsV663Ds2Fingerprint {
4032
- readonly 'threeds2.fingerprint': string;
4033
- }
4034
3648
  interface PaymentRequest {
4035
3649
  readonly reference: string;
4036
3650
  readonly merchantAccount: string;
@@ -4052,12 +3666,7 @@ declare namespace io.flow.adyen.v0.models {
4052
3666
  readonly browserInfo?: io.flow.adyen.v0.unions.BrowserInfo;
4053
3667
  readonly origin?: string;
4054
3668
  readonly channel?: io.flow.adyen.v0.enums.Channel;
4055
- readonly returnUrl?: string;
4056
- readonly mcc?: string;
4057
- readonly metadata?: any;
4058
- readonly redirectToIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
4059
- readonly redirectFromIssuerMethod?: io.flow.adyen.v0.enums.HttpRedirectMethod;
4060
- readonly storePaymentMethod?: boolean;
3669
+ readonly returnURL?: string;
4061
3670
  }
4062
3671
  interface PaymentResponse {
4063
3672
  readonly resultCode: io.flow.adyen.v0.enums.ResultCode;
@@ -4072,57 +3681,19 @@ declare namespace io.flow.adyen.v0.models {
4072
3681
  interface PaymentResponseAdditionalData {
4073
3682
  readonly authCode?: string;
4074
3683
  readonly avsResultRaw?: string;
4075
- readonly avsResult?: string;
4076
3684
  readonly cvcResultRaw?: string;
4077
- readonly cvcResult?: string;
4078
- readonly refusalReasonRaw?: string;
4079
3685
  readonly liabilityShift?: string;
4080
3686
  readonly threeDAuthenticated?: string;
4081
3687
  readonly threeDAuthenticatedResponse?: string;
4082
3688
  readonly threeDOffered?: string;
4083
3689
  readonly threeDOfferedResponse?: string;
4084
- readonly threeDSVersion?: string;
4085
- readonly eci?: string;
4086
- readonly scaExemptionRequested?: string;
4087
- readonly paymentMethod?: string;
4088
- readonly paymentMethodVariant?: string;
4089
- readonly tokenTxVariant?: string;
4090
- readonly acquirerCode?: string;
4091
- readonly acquirerAccountCode?: string;
4092
- readonly cardPaymentMethod?: string;
4093
- readonly coBrandedWith?: string;
4094
- readonly cardIssuingCountry?: string;
4095
- readonly cardIssuingCurrency?: string;
4096
- readonly cardIssuingBank?: string;
4097
- readonly cardBin?: string;
4098
- readonly issuerBin?: string;
4099
- readonly cardSummary?: string;
4100
- readonly untokenisedCardSummary?: string;
4101
- readonly ownerName?: string;
4102
- readonly bankName?: string;
4103
- readonly issuerCountry?: string;
4104
- readonly iban?: string;
4105
- readonly bic?: string;
4106
- readonly iDealConsumerAccountNumber?: string;
4107
- readonly iDealConsumerBIC?: string;
4108
- readonly iDealConsumerCity?: string;
4109
- readonly iDealConsumerIBAN?: string;
4110
- readonly iDealConsumerName?: string;
4111
- readonly iDealTransactionId?: string;
4112
- readonly 'recurring.recurringDetailReference'?: string;
4113
- readonly 'recurring.shopperReference'?: string;
4114
- readonly networkTxReference?: string;
4115
- readonly PaymentAccountReference?: string;
4116
- readonly 'networkToken.available'?: string;
4117
- readonly 'networkToken.bin'?: string;
4118
- readonly 'networkToken.tokenSummary'?: string;
4119
3690
  }
4120
3691
  interface Recurring {
4121
3692
  readonly contract: io.flow.adyen.v0.enums.Contract;
4122
3693
  }
4123
3694
  interface Redirect {
4124
3695
  readonly data?: io.flow.adyen.v0.models.RedirectData;
4125
- readonly method?: io.flow.adyen.v0.enums.HttpRedirectMethod;
3696
+ readonly method?: io.flow.adyen.v0.enums.Method;
4126
3697
  readonly url?: string;
4127
3698
  }
4128
3699
  interface RedirectData {
@@ -4142,15 +3713,6 @@ declare namespace io.flow.adyen.v0.models {
4142
3713
  readonly holderName: string;
4143
3714
  readonly number: string;
4144
3715
  readonly cvc?: string;
4145
- readonly storedPaymentMethodId?: string;
4146
- readonly networkPaymentReference?: string;
4147
- }
4148
- interface SdkV3OnCompleteData {
4149
- readonly details: any;
4150
- readonly payment_data?: string;
4151
- }
4152
- interface SdkV3OnCompleteResult {
4153
- readonly data: io.flow.adyen.v0.models.SdkV3OnCompleteData;
4154
3716
  }
4155
3717
  interface ThreeDSecureData {
4156
3718
  readonly authenticationResponse?: string;
@@ -4177,7 +3739,7 @@ declare namespace io.flow.adyen.v0.models {
4177
3739
  }
4178
3740
  declare namespace io.flow.adyen.v0.unions {
4179
3741
  type BrowserInfo = io.flow.adyen.v0.models.BrowserInfo3Ds1 | io.flow.adyen.v0.models.BrowserInfo3Ds2;
4180
- type PaymentMethodData = io.flow.adyen.v0.models.Scheme | io.flow.adyen.v0.models.Applepay;
3742
+ type PaymentMethodData = io.flow.adyen.v0.models.Scheme;
4181
3743
  }
4182
3744
  declare namespace io.flow.order.management.v0.enums {
4183
3745
  type CancelReason = 'out_of_stock' | 'consumer_requested' | 'flow_cancel';
@@ -5317,7 +4879,7 @@ declare namespace io.flow.shopify.markets.v0.models {
5317
4879
  }
5318
4880
  interface ShopifyOrderAttribute {
5319
4881
  readonly name: string;
5320
- readonly value: string;
4882
+ readonly value: any;
5321
4883
  }
5322
4884
  interface ShopifyOrderCancellationForm {
5323
4885
  readonly refund: io.flow.shopify.markets.v0.models.ShopifyRefund;
@@ -5841,6 +5403,9 @@ declare namespace io.flow.payment.gateway.v0.enums {
5841
5403
  type PaymentActionType = 'redirect' | 'redirect_get' | 'redirect_post' | 'select_payment_option' | 'use_sdk_klarna_v1' | 'use_sdk_applepay_js' | 'use_sdk_googlepay' | 'use_sdk_paypal' | 'use_sdk_stripe_v3' | 'use_sdk_adyen_v3' | 'use_sdk_adyen_v4' | 'execute_script' | 'display_inline_window';
5842
5404
  type PaymentFailureCode = 'action_expired' | 'action_cancelled' | 'action_failed' | 'authorization_declined' | 'not_supported' | 'fraudulent' | 'error' | 'payment_checks_declined';
5843
5405
  type PaymentMethodDataOptionType = 'ideal_issuer_option';
5406
+ type PaymentRequestReviewCheckStatus = 'passed' | 'failed';
5407
+ type PaymentRequestReviewCheckType = 'restricted_party_screening' | 'fraud_suspicious_behavior' | 'fraud_suspicious_past_activity' | 'fraud_risky_velocity' | 'fraud_previous_chargebacks' | 'order_restricted_goods' | 'order_unsupported_destination' | 'order_missing_information' | 'order_domestic';
5408
+ type PaymentRequestReviewStatus = 'pending' | 'approved' | 'rejected';
5844
5409
  type PaymentStatus = 'requires_payment_method' | 'requires_action' | 'processing' | 'cancelled' | 'expired' | 'authorized' | 'reversed' | 'captured' | 'refunded' | 'in_dispute' | 'charged_back';
5845
5410
  type PaymentType = 'card' | 'klarna' | 'googlepay' | 'paypal' | 'applepay' | 'ideal' | 'sofort' | 'afterpay' | 'bancontact';
5846
5411
  }
@@ -5920,441 +5485,948 @@ declare namespace io.flow.payment.gateway.v0.models {
5920
5485
  readonly type: 'wait';
5921
5486
  readonly expires_at?: string;
5922
5487
  }
5923
- interface AdyenV3ChallengeToken {
5924
- readonly type: 'token';
5925
- readonly challenge_token: string;
5488
+ interface AdyenV3ChallengeToken {
5489
+ readonly type: 'token';
5490
+ readonly challenge_token: string;
5491
+ }
5492
+ interface AdyenV3FingerprintToken {
5493
+ readonly type: 'fingerprint';
5494
+ readonly fingerprint_token: string;
5495
+ }
5496
+ interface AuthorizationActionResultAdyenV3 {
5497
+ readonly type: 'adyen_v3';
5498
+ readonly result: any;
5499
+ }
5500
+ interface AuthorizationActionResultAdyenV4 {
5501
+ readonly type: 'adyen_v4';
5502
+ readonly result: any;
5503
+ }
5504
+ interface DeviceDetailsBrowser {
5505
+ readonly type: 'browser';
5506
+ readonly user_agent: string;
5507
+ readonly origin: string;
5508
+ readonly accept_language?: string;
5509
+ readonly ip?: string;
5510
+ readonly time_zone_offset?: number;
5511
+ readonly date_string?: string;
5512
+ readonly navigator_language?: string;
5513
+ readonly navigator_hardware_concurrency?: number;
5514
+ readonly cookie_created_at?: number;
5515
+ readonly session_duration?: number;
5516
+ readonly fingerprint?: string;
5517
+ }
5518
+ interface DeviceFingerprintDetailsBrowser {
5519
+ readonly type: 'browser';
5520
+ readonly accept?: string;
5521
+ readonly java_enabled: boolean;
5522
+ readonly color_depth: number;
5523
+ readonly screen_height: number;
5524
+ readonly screen_width: number;
5525
+ readonly time_zone_offset: number;
5526
+ }
5527
+ interface KlarnaPaymentCategory {
5528
+ readonly id: string;
5529
+ readonly name: string;
5530
+ readonly standard_asset_url?: string;
5531
+ readonly descriptive_asset_url?: string;
5532
+ }
5533
+ interface OrderDetails {
5534
+ readonly line_items: io.flow.payment.gateway.v0.models.PaymentOrderDetailsLineItem[];
5535
+ readonly shipping?: io.flow.payment.gateway.v0.models.Shipping;
5536
+ readonly discounts?: io.flow.payment.gateway.v0.models.PaymentDiscount[];
5537
+ readonly tax?: io.flow.payment.gateway.v0.models.PaymentTax;
5538
+ readonly duty?: io.flow.payment.gateway.v0.models.PaymentDuty;
5539
+ readonly reference?: string;
5540
+ }
5541
+ interface OrderInformationDetails {
5542
+ readonly type: 'details';
5543
+ readonly order_details: io.flow.payment.gateway.v0.models.OrderDetails;
5544
+ readonly billing_address?: io.flow.payment.gateway.v0.models.PaymentAddressBilling;
5545
+ readonly shipping_address?: io.flow.payment.gateway.v0.models.PaymentAddressShipping;
5546
+ }
5547
+ interface OrderInformationFlow {
5548
+ readonly type: 'flow';
5549
+ readonly order_number: string;
5550
+ readonly billing_address?: io.flow.payment.gateway.v0.models.PaymentAddressBilling;
5551
+ }
5552
+ interface PaymentAddress {
5553
+ readonly streets: string[];
5554
+ readonly city: string;
5555
+ readonly province?: string;
5556
+ readonly postal?: string;
5557
+ readonly country: string;
5558
+ }
5559
+ interface PaymentAddressBilling {
5560
+ readonly contact: io.flow.payment.gateway.v0.models.PaymentContactBilling;
5561
+ readonly location: io.flow.payment.gateway.v0.models.PaymentAddress;
5562
+ }
5563
+ interface PaymentAddressShipping {
5564
+ readonly contact: io.flow.payment.gateway.v0.models.PaymentContactShipping;
5565
+ readonly location: io.flow.payment.gateway.v0.models.PaymentAddress;
5566
+ }
5567
+ interface PaymentAuthorization {
5568
+ readonly id: string;
5569
+ readonly payment_method_summary: io.flow.payment.gateway.v0.unions.PaymentMethodSummary;
5570
+ readonly captures: io.flow.payment.gateway.v0.models.PaymentCapture[];
5571
+ readonly refunds: io.flow.payment.gateway.v0.models.PaymentRefund[];
5572
+ readonly reversals: io.flow.payment.gateway.v0.models.PaymentReversal[];
5573
+ readonly created_at: string;
5574
+ readonly updated_at: string;
5575
+ readonly status: io.flow.payment.gateway.v0.models.PaymentAuthorizationStatus;
5576
+ readonly amount: number;
5577
+ readonly currency: string;
5578
+ }
5579
+ interface PaymentAuthorizationStatus {
5580
+ readonly status: io.flow.payment.v0.enums.AuthorizationStatus;
5581
+ readonly reason?: io.flow.payment.v0.enums.AuthorizationDeclineCode;
5582
+ }
5583
+ interface PaymentCapture {
5584
+ readonly id: string;
5585
+ readonly amount: number;
5586
+ readonly currency: string;
5587
+ readonly created_at: string;
5588
+ readonly updated_at: string;
5589
+ readonly status: io.flow.payment.gateway.v0.models.PaymentCaptureStatus;
5590
+ }
5591
+ interface PaymentCaptureForm {
5592
+ readonly amount?: number;
5593
+ readonly currency?: string;
5594
+ readonly attributes?: Record<string, string>;
5595
+ }
5596
+ interface PaymentCaptureOptionAutomaticImmediate {
5597
+ readonly type: 'automatic_immediate';
5598
+ readonly placeholder?: string;
5599
+ }
5600
+ interface PaymentCaptureOptionManual {
5601
+ readonly type: 'manual';
5602
+ readonly placeholder?: string;
5603
+ }
5604
+ interface PaymentCaptureStatus {
5605
+ readonly status: io.flow.payment.v0.enums.CaptureStatus;
5606
+ readonly reason?: io.flow.payment.v0.enums.CaptureDeclineCode;
5607
+ }
5608
+ interface PaymentContactBilling {
5609
+ readonly first_name?: string;
5610
+ readonly last_name: string;
5611
+ readonly company?: string;
5612
+ readonly email?: string;
5613
+ readonly phone?: string;
5614
+ }
5615
+ interface PaymentContactShipping {
5616
+ readonly first_name?: string;
5617
+ readonly last_name: string;
5618
+ readonly email: string;
5619
+ readonly phone?: string;
5620
+ }
5621
+ interface PaymentDiscount {
5622
+ readonly amount: number;
5623
+ readonly name?: string;
5624
+ readonly code?: string;
5625
+ }
5626
+ interface PaymentDuty {
5627
+ readonly amount: number;
5628
+ readonly name?: string;
5629
+ }
5630
+ interface PaymentFailure {
5631
+ readonly authorization_id?: string;
5632
+ readonly failure_code: io.flow.payment.gateway.v0.enums.PaymentFailureCode;
5633
+ readonly failure_message: string;
5634
+ }
5635
+ interface PaymentInformation {
5636
+ readonly amount_refundable?: number;
5637
+ readonly amount_refunded?: number;
5638
+ readonly refundable_before?: string;
5639
+ readonly amount_capturable?: number;
5640
+ readonly amount_captured?: number;
5641
+ readonly capturable_before?: string;
5642
+ readonly authorizations: io.flow.payment.gateway.v0.models.PaymentAuthorization[];
5643
+ }
5644
+ interface PaymentMethodBrand {
5645
+ readonly id: string;
5646
+ readonly name: string;
5647
+ readonly images: io.flow.reference.v0.models.PaymentMethodImages;
5648
+ }
5649
+ interface PaymentMethodCardNumberCipher {
5650
+ readonly type: 'cipher';
5651
+ readonly cipher: string;
5652
+ }
5653
+ interface PaymentMethodCardNumberCleartext {
5654
+ readonly type: 'cleartext';
5655
+ readonly number: string;
5656
+ }
5657
+ interface PaymentMethodCardPciDetails {
5658
+ readonly type: 'card_pci_details';
5659
+ readonly card_number: io.flow.payment.gateway.v0.unions.CardNumber;
5660
+ readonly expiration_month: number;
5661
+ readonly expiration_year: number;
5662
+ readonly name: string;
5663
+ }
5664
+ interface PaymentMethodCardToken {
5665
+ readonly type: 'token';
5666
+ readonly token: string;
5667
+ }
5668
+ interface PaymentMethodDataAuthorizeApplepay {
5669
+ readonly type: 'authorize_applepay';
5670
+ readonly result: io.flow.payment.gateway.v0.unions.PaymentMethodDataAuthorizeApplepayResult;
5671
+ }
5672
+ interface PaymentMethodDataAuthorizeApplepayResultFailure {
5673
+ readonly type: 'failure';
5674
+ readonly message: string;
5675
+ }
5676
+ interface PaymentMethodDataAuthorizeApplepayResultSuccess {
5677
+ readonly type: 'success';
5678
+ readonly token: string;
5679
+ }
5680
+ interface PaymentMethodDataAuthorizeCard {
5681
+ readonly type: 'authorize_card';
5682
+ readonly card_data: io.flow.payment.gateway.v0.unions.PaymentMethodCard;
5683
+ readonly device_fingerprint_details: io.flow.payment.gateway.v0.unions.DeviceFingerprintDetails;
5684
+ readonly cvv?: string;
5685
+ readonly stored_details_card?: io.flow.payment.gateway.v0.unions.PaymentMethodStoredDetailsCard;
5686
+ }
5687
+ interface PaymentMethodDataAuthorizeGooglepay {
5688
+ readonly type: 'authorize_googlepay';
5689
+ readonly payment_data: any;
5690
+ }
5691
+ interface PaymentMethodDataAuthorizeKlarna {
5692
+ readonly type: 'authorize_klarna';
5693
+ readonly result: io.flow.payment.gateway.v0.unions.PaymentMethodDataAuthorizeKlarnaResult;
5694
+ }
5695
+ interface PaymentMethodDataAuthorizeKlarnaResultFailure {
5696
+ readonly type: 'failure';
5697
+ readonly placeholder?: string;
5698
+ }
5699
+ interface PaymentMethodDataAuthorizeKlarnaResultSuccess {
5700
+ readonly type: 'success';
5701
+ readonly authorization_token: string;
5702
+ }
5703
+ interface PaymentMethodDataAuthorizePaypal {
5704
+ readonly type: 'authorize_paypal';
5705
+ readonly payment_id: string;
5706
+ readonly payer_id: string;
5707
+ }
5708
+ interface PaymentMethodDataCompleteAuthorizationCard {
5709
+ readonly type: 'complete_authorization_card';
5710
+ readonly action_result: io.flow.payment.gateway.v0.unions.CardAuthorizationActionResult;
5711
+ }
5712
+ interface PaymentMethodDataInitAfterpay {
5713
+ readonly type: 'init_afterpay';
5714
+ readonly placeholder?: string;
5715
+ }
5716
+ interface PaymentMethodDataInitApplepay {
5717
+ readonly type: 'init_applepay';
5718
+ readonly placeholder?: string;
5719
+ }
5720
+ interface PaymentMethodDataInitBancontact {
5721
+ readonly type: 'init_bancontact';
5722
+ readonly placeholder?: string;
5723
+ }
5724
+ interface PaymentMethodDataInitGooglepay {
5725
+ readonly type: 'init_googlepay';
5726
+ readonly placeholder?: string;
5727
+ }
5728
+ interface PaymentMethodDataInitIdeal {
5729
+ readonly type: 'init_ideal';
5730
+ readonly issuer?: string;
5731
+ }
5732
+ interface PaymentMethodDataInitKlarna {
5733
+ readonly type: 'init_klarna';
5734
+ readonly placeholder?: string;
5735
+ }
5736
+ interface PaymentMethodDataInitPaypal {
5737
+ readonly type: 'init_paypal';
5738
+ readonly placeholder?: string;
5739
+ }
5740
+ interface PaymentMethodDataInitSofort {
5741
+ readonly type: 'init_sofort';
5742
+ readonly placeholder?: string;
5743
+ }
5744
+ interface PaymentMethodDataOptionLogoSvg {
5745
+ readonly type: 'svg';
5746
+ readonly url: string;
5747
+ }
5748
+ interface PaymentMethodDataPaymentOption {
5749
+ readonly id: string;
5750
+ readonly name: string;
5751
+ readonly logo?: io.flow.payment.gateway.v0.unions.PaymentMethodDataOptionLogo[];
5752
+ }
5753
+ interface PaymentMethodDataSelectedPaymentOption {
5754
+ readonly type: 'select_option';
5755
+ readonly option_id: string;
5756
+ }
5757
+ interface PaymentMethodDataValidateApplepay {
5758
+ readonly type: 'validate_applepay';
5759
+ readonly validation_url: string;
5760
+ }
5761
+ interface PaymentMethodStoredDetailsCardInitial {
5762
+ readonly type: 'initial';
5763
+ readonly reference?: string;
5764
+ }
5765
+ interface PaymentMethodStoredDetailsCardSubsequent {
5766
+ readonly type: 'subsequent';
5767
+ readonly reference?: string;
5768
+ readonly previous_transaction_details?: io.flow.payment.v0.models.TransactionNetworkDetailsCard;
5769
+ }
5770
+ interface PaymentMethodSummaryAfterpay {
5771
+ readonly type: 'afterpay';
5772
+ readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
5773
+ }
5774
+ interface PaymentMethodSummaryApplepay {
5775
+ readonly type: 'applepay';
5776
+ readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
5777
+ }
5778
+ interface PaymentMethodSummaryBancontact {
5779
+ readonly type: 'bancontact';
5780
+ readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
5781
+ }
5782
+ interface PaymentMethodSummaryCard {
5783
+ readonly type: 'card';
5784
+ readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
5785
+ readonly last_four: string;
5786
+ readonly card_type: io.flow.payment.v0.enums.CardType;
5787
+ readonly id: string;
5788
+ readonly reference?: string;
5789
+ readonly transaction_details?: io.flow.payment.v0.models.TransactionDetailsCard;
5790
+ }
5791
+ interface PaymentMethodSummaryGooglepay {
5792
+ readonly type: 'googlepay';
5793
+ readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
5794
+ }
5795
+ interface PaymentMethodSummaryIdeal {
5796
+ readonly type: 'ideal';
5797
+ readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
5798
+ readonly issuer?: string;
5799
+ }
5800
+ interface PaymentMethodSummaryKlarna {
5801
+ readonly type: 'klarna';
5802
+ readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
5803
+ }
5804
+ interface PaymentMethodSummaryPaypal {
5805
+ readonly type: 'paypal';
5806
+ readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
5807
+ }
5808
+ interface PaymentMethodSummarySofort {
5809
+ readonly type: 'sofort';
5810
+ readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
5811
+ }
5812
+ interface PaymentOrderDetailsLineItem {
5813
+ readonly id: string;
5814
+ readonly description: string;
5815
+ readonly quantity: number;
5816
+ readonly amount: number;
5817
+ readonly tax?: io.flow.payment.gateway.v0.models.PaymentTax;
5818
+ readonly duty?: io.flow.payment.gateway.v0.models.PaymentDuty;
5819
+ readonly product_url?: string;
5820
+ readonly image_url?: string;
5821
+ readonly category?: string;
5822
+ readonly discounts?: io.flow.payment.gateway.v0.models.PaymentDiscount[];
5823
+ }
5824
+ interface PaymentPaymentMethod {
5825
+ readonly id: string;
5826
+ readonly name: string;
5827
+ readonly type: io.flow.payment.gateway.v0.enums.PaymentType;
5828
+ readonly brands: io.flow.payment.gateway.v0.models.PaymentMethodBrand[];
5829
+ readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
5830
+ readonly images: io.flow.reference.v0.models.PaymentMethodImages;
5831
+ readonly possible_actions: io.flow.payment.gateway.v0.enums.PaymentActionType[];
5832
+ }
5833
+ interface PaymentRefund {
5834
+ readonly id: string;
5835
+ readonly amount: number;
5836
+ readonly currency: string;
5837
+ readonly created_at: string;
5838
+ readonly updated_at: string;
5839
+ readonly status: io.flow.payment.gateway.v0.models.PaymentRefundStatus;
5840
+ }
5841
+ interface PaymentRefundForm {
5842
+ readonly amount?: number;
5843
+ readonly currency?: string;
5844
+ }
5845
+ interface PaymentRefundStatus {
5846
+ readonly status: io.flow.payment.v0.enums.RefundStatus;
5847
+ readonly reason?: io.flow.payment.v0.enums.RefundDeclineCode;
5848
+ }
5849
+ interface PaymentRequest {
5850
+ readonly id: string;
5851
+ readonly status: io.flow.payment.gateway.v0.enums.PaymentStatus;
5852
+ readonly created_at: string;
5853
+ readonly updated_at: string;
5854
+ readonly available_payment_methods: io.flow.payment.gateway.v0.models.PaymentPaymentMethod[];
5855
+ readonly last_payment_failure?: io.flow.payment.gateway.v0.models.PaymentFailure;
5856
+ readonly next_action?: io.flow.payment.gateway.v0.unions.Action;
5857
+ readonly amount: number;
5858
+ readonly currency: string;
5859
+ readonly order_information: io.flow.payment.gateway.v0.unions.OrderInformation;
5860
+ readonly device_details: io.flow.payment.gateway.v0.unions.DeviceDetails;
5861
+ readonly locale?: string;
5862
+ readonly return_url: string;
5863
+ readonly attributes?: Record<string, string>;
5864
+ readonly reference?: string;
5865
+ readonly payment_information: io.flow.payment.gateway.v0.models.PaymentInformation;
5866
+ readonly supported_actions: io.flow.payment.gateway.v0.enums.PaymentActionType[];
5867
+ readonly payment_capture_option?: io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
5868
+ readonly review?: io.flow.payment.gateway.v0.models.PaymentRequestReview;
5869
+ }
5870
+ interface PaymentRequestForm {
5871
+ readonly amount: number;
5872
+ readonly currency: string;
5873
+ readonly order_information: io.flow.payment.gateway.v0.unions.OrderInformation;
5874
+ readonly device_details: io.flow.payment.gateway.v0.unions.DeviceDetails;
5875
+ readonly locale?: string;
5876
+ readonly return_url: string;
5877
+ readonly attributes?: Record<string, string>;
5878
+ readonly reference?: string;
5879
+ readonly payment_method_data?: io.flow.payment.gateway.v0.unions.PaymentMethodData;
5880
+ readonly supported_actions?: io.flow.payment.gateway.v0.enums.PaymentActionType[];
5881
+ readonly payment_capture_option?: io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
5882
+ }
5883
+ interface PaymentRequestReference {
5884
+ readonly id: string;
5885
+ readonly reference?: string;
5886
+ }
5887
+ interface PaymentRequestReview {
5888
+ readonly status: io.flow.payment.gateway.v0.enums.PaymentRequestReviewStatus;
5889
+ readonly checks: io.flow.payment.gateway.v0.models.PaymentRequestReviewCheck[];
5890
+ }
5891
+ interface PaymentRequestReviewCheck {
5892
+ readonly type: io.flow.payment.gateway.v0.enums.PaymentRequestReviewCheckType;
5893
+ readonly status: io.flow.payment.gateway.v0.enums.PaymentRequestReviewCheckStatus;
5894
+ }
5895
+ interface PaymentReversal {
5896
+ readonly id: string;
5897
+ readonly amount: number;
5898
+ readonly currency: string;
5899
+ readonly created_at: string;
5900
+ readonly updated_at: string;
5901
+ readonly status: io.flow.payment.gateway.v0.models.PaymentReversalStatus;
5902
+ }
5903
+ interface PaymentReversalForm {
5904
+ readonly amount?: number;
5905
+ readonly currency?: string;
5906
+ }
5907
+ interface PaymentReversalStatus {
5908
+ readonly status: io.flow.payment.v0.enums.ReversalStatus;
5909
+ readonly reason?: io.flow.payment.v0.enums.ReversalErrorCode;
5910
+ }
5911
+ interface PaymentTax {
5912
+ readonly amount: number;
5913
+ readonly name?: string;
5914
+ }
5915
+ interface Shipping {
5916
+ readonly description: string;
5917
+ readonly amount: number;
5918
+ readonly tax?: io.flow.payment.gateway.v0.models.PaymentTax;
5919
+ readonly duty?: io.flow.payment.gateway.v0.models.PaymentDuty;
5920
+ readonly discounts?: io.flow.payment.gateway.v0.models.PaymentDiscount[];
5921
+ }
5922
+ }
5923
+ declare namespace io.flow.payment.gateway.v0.unions {
5924
+ type Action = io.flow.payment.gateway.v0.models.ActionRedirect | io.flow.payment.gateway.v0.models.ActionUseSdkKlarnaV1 | io.flow.payment.gateway.v0.models.ActionUseSdkApplepayJsCreateSession | io.flow.payment.gateway.v0.models.ActionUseSdkApplepayJsCompleteValidation | io.flow.payment.gateway.v0.models.ActionUseSdkGooglepay | io.flow.payment.gateway.v0.models.ActionUseSdkPaypal | io.flow.payment.gateway.v0.models.ActionUseSdkStripeV3 | io.flow.payment.gateway.v0.models.ActionUseSdkAdyenV3 | io.flow.payment.gateway.v0.models.ActionUseSdkAdyenV4 | io.flow.payment.gateway.v0.models.ActionSelectPaymentOption | io.flow.payment.gateway.v0.models.ActionExecuteScript | io.flow.payment.gateway.v0.models.ActionDisplayInlineWindow | io.flow.payment.gateway.v0.models.ActionWait;
5925
+ type CardAuthorizationActionResult = io.flow.payment.gateway.v0.models.AuthorizationActionResultAdyenV3 | io.flow.payment.gateway.v0.models.AuthorizationActionResultAdyenV4;
5926
+ type CardNumber = io.flow.payment.gateway.v0.models.PaymentMethodCardNumberCleartext | io.flow.payment.gateway.v0.models.PaymentMethodCardNumberCipher;
5927
+ type DeviceDetails = io.flow.payment.gateway.v0.models.DeviceDetailsBrowser;
5928
+ type DeviceFingerprintDetails = io.flow.payment.gateway.v0.models.DeviceFingerprintDetailsBrowser;
5929
+ type OrderInformation = io.flow.payment.gateway.v0.models.OrderInformationFlow | io.flow.payment.gateway.v0.models.OrderInformationDetails;
5930
+ type PaymentCaptureOption = io.flow.payment.gateway.v0.models.PaymentCaptureOptionAutomaticImmediate | io.flow.payment.gateway.v0.models.PaymentCaptureOptionManual;
5931
+ type PaymentMethodCard = io.flow.payment.gateway.v0.models.PaymentMethodCardPciDetails | io.flow.payment.gateway.v0.models.PaymentMethodCardToken;
5932
+ type PaymentMethodData = io.flow.payment.gateway.v0.models.PaymentMethodDataInitKlarna | io.flow.payment.gateway.v0.models.PaymentMethodDataInitAfterpay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitPaypal | io.flow.payment.gateway.v0.models.PaymentMethodDataInitIdeal | io.flow.payment.gateway.v0.models.PaymentMethodDataInitSofort | io.flow.payment.gateway.v0.models.PaymentMethodDataInitBancontact | io.flow.payment.gateway.v0.models.PaymentMethodDataValidateApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeCard | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizePaypal | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarna | io.flow.payment.gateway.v0.models.PaymentMethodDataSelectedPaymentOption | io.flow.payment.gateway.v0.models.PaymentMethodDataCompleteAuthorizationCard;
5933
+ type PaymentMethodDataAuthorizeApplepayResult = io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepayResultSuccess | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepayResultFailure;
5934
+ type PaymentMethodDataAuthorizeKlarnaResult = io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarnaResultSuccess | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarnaResultFailure;
5935
+ type PaymentMethodDataOptionLogo = io.flow.payment.gateway.v0.models.PaymentMethodDataOptionLogoSvg;
5936
+ type PaymentMethodStoredDetailsCard = io.flow.payment.gateway.v0.models.PaymentMethodStoredDetailsCardInitial | io.flow.payment.gateway.v0.models.PaymentMethodStoredDetailsCardSubsequent;
5937
+ type PaymentMethodSummary = io.flow.payment.gateway.v0.models.PaymentMethodSummaryCard | io.flow.payment.gateway.v0.models.PaymentMethodSummaryKlarna | io.flow.payment.gateway.v0.models.PaymentMethodSummaryAfterpay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryApplepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryPaypal | io.flow.payment.gateway.v0.models.PaymentMethodSummaryIdeal | io.flow.payment.gateway.v0.models.PaymentMethodSummarySofort | io.flow.payment.gateway.v0.models.PaymentMethodSummaryBancontact;
5938
+ type SdkAdyenV3AuthenticationToken = io.flow.payment.gateway.v0.models.AdyenV3FingerprintToken | io.flow.payment.gateway.v0.models.AdyenV3ChallengeToken;
5939
+ }
5940
+ declare namespace io.flow.partner.v0.enums {
5941
+ type LabelFormat = 'pdf' | 'zpl' | 'all';
5942
+ }
5943
+ declare namespace io.flow.partner.v0.models {
5944
+ interface DetailedLabelForm {
5945
+ readonly discriminator: 'detailed_label_form';
5946
+ readonly organization: string;
5947
+ readonly destination: io.flow.fulfillment.v0.models.ShippingAddress;
5948
+ readonly order_number: string;
5949
+ readonly origin: io.flow.fulfillment.v0.models.ShippingAddress;
5950
+ readonly package: io.flow.label.v0.models.ShippingLabelPackage;
5951
+ readonly service?: string;
5952
+ readonly references?: string[];
5953
+ }
5954
+ interface Label {
5955
+ readonly id: string;
5956
+ readonly organization: io.flow.partner.v0.models.PartnerOrganizationReference;
5957
+ readonly order_number: string;
5958
+ readonly package: io.flow.label.v0.models.ShippingLabelPackage;
5959
+ readonly carrier_tracking_number: string;
5960
+ readonly carrier_tracking_number_url: string;
5961
+ readonly destination: io.flow.fulfillment.v0.models.ShippingAddress;
5962
+ readonly flow_tracking_number: string;
5963
+ readonly flow_tracking_number_url: string;
5964
+ readonly origin: io.flow.fulfillment.v0.models.ShippingAddress;
5965
+ readonly service: io.flow.fulfillment.v0.models.ServiceSummary;
5966
+ readonly window: io.flow.common.v0.models.DatetimeRange;
5967
+ readonly zpl?: string;
5968
+ readonly pdf?: string;
5969
+ readonly png?: string;
5970
+ readonly commercial_invoice?: string;
5971
+ readonly references?: string[];
5972
+ readonly label?: io.flow.label.v0.models.ShippingLabelDocument;
5973
+ readonly invoice?: io.flow.label.v0.models.ShippingLabelDocument;
5974
+ readonly cost?: io.flow.common.v0.models.Price;
5975
+ readonly shipment_recipient?: io.flow.label.v0.enums.ShipmentRecipient;
5976
+ }
5977
+ interface PartnerBridgeManifest {
5978
+ readonly id: string;
5979
+ readonly organization: io.flow.partner.v0.models.PartnerOrganizationReference;
5980
+ readonly service: io.flow.fulfillment.v0.models.ServiceSummary;
5981
+ readonly pdf: string;
5982
+ readonly data: string;
5983
+ }
5984
+ interface PartnerBridgeManifestForm {
5985
+ readonly order_numbers: string[];
5986
+ }
5987
+ interface PartnerFulfillment {
5988
+ readonly organization: string;
5989
+ readonly key: string;
5990
+ readonly number: string;
5991
+ readonly items: io.flow.order.management.v0.models.FulfillmentItem[];
5992
+ readonly center?: io.flow.fulfillment.v0.models.CenterSummary[];
5993
+ }
5994
+ interface PartnerFulfillmentCancellationForm {
5995
+ readonly change_source: io.flow.order.management.v0.enums.OrderChangeSource;
5996
+ readonly reason: io.flow.order.management.v0.enums.CancelReason;
5997
+ readonly lines: io.flow.order.management.v0.models.FulfillmentLineCancelForm[];
5926
5998
  }
5927
- interface AdyenV3FingerprintToken {
5928
- readonly type: 'fingerprint';
5929
- readonly fingerprint_token: string;
5999
+ interface PartnerFulfillmentCompleteCancellationForm {
6000
+ readonly change_source: io.flow.order.management.v0.enums.OrderChangeSource;
6001
+ readonly reason: io.flow.order.management.v0.enums.CancelReason;
5930
6002
  }
5931
- interface AuthorizationActionResultAdyenV3 {
5932
- readonly type: 'adyen_v3';
5933
- readonly result: any;
6003
+ interface PartnerManifest {
6004
+ readonly id: string;
6005
+ readonly organization: io.flow.partner.v0.models.PartnerOrganizationReference;
6006
+ readonly service?: io.flow.fulfillment.v0.models.ServiceSummary;
6007
+ readonly timestamp: string;
6008
+ readonly shipping_labels: io.flow.label.v0.models.ShippingLabelSummary[];
6009
+ readonly pdf?: string;
5934
6010
  }
5935
- interface AuthorizationActionResultAdyenV4 {
5936
- readonly type: 'adyen_v4';
5937
- readonly result: any;
6011
+ interface PartnerManifestForm {
6012
+ readonly tracking_numbers: string[];
6013
+ readonly service?: string;
5938
6014
  }
5939
- interface DeviceDetailsBrowser {
5940
- readonly type: 'browser';
5941
- readonly user_agent: string;
5942
- readonly origin: string;
5943
- readonly accept_language: string;
5944
- readonly ip?: string;
6015
+ interface PartnerOrderIdentifier {
6016
+ readonly id: string;
6017
+ readonly organization: io.flow.partner.v0.models.PartnerOrganizationReference;
6018
+ readonly order: io.flow.partner.v0.models.PartnerOrderReference;
6019
+ readonly number: string;
5945
6020
  }
5946
- interface DeviceFingerprintDetailsBrowser {
5947
- readonly type: 'browser';
5948
- readonly accept?: string;
5949
- readonly java_enabled: boolean;
5950
- readonly color_depth: number;
5951
- readonly screen_height: number;
5952
- readonly screen_width: number;
5953
- readonly time_zone_offset: number;
6021
+ interface PartnerOrderIdentifierForm {
6022
+ readonly number: string;
6023
+ readonly order_number: string;
5954
6024
  }
5955
- interface KlarnaPaymentCategory {
5956
- readonly id: string;
5957
- readonly name: string;
5958
- readonly standard_asset_url?: string;
5959
- readonly descriptive_asset_url?: string;
6025
+ interface PartnerOrderIdentifierPutForm {
6026
+ readonly order_number: string;
5960
6027
  }
5961
- interface OrderDetails {
5962
- readonly line_items: io.flow.payment.gateway.v0.models.PaymentOrderDetailsLineItem[];
5963
- readonly shipping?: io.flow.payment.gateway.v0.models.Shipping;
5964
- readonly discounts?: io.flow.payment.gateway.v0.models.PaymentDiscount[];
5965
- readonly tax?: io.flow.payment.gateway.v0.models.PaymentTax;
5966
- readonly duty?: io.flow.payment.gateway.v0.models.PaymentDuty;
5967
- readonly reference?: string;
6028
+ interface PartnerOrderReference {
6029
+ readonly id: string;
6030
+ readonly number: string;
5968
6031
  }
5969
- interface OrderInformationDetails {
5970
- readonly type: 'details';
5971
- readonly order_details: io.flow.payment.gateway.v0.models.OrderDetails;
5972
- readonly billing_address?: io.flow.payment.gateway.v0.models.PaymentAddressBilling;
5973
- readonly shipping_address?: io.flow.payment.gateway.v0.models.PaymentAddressShipping;
6032
+ interface PartnerOrganizationReference {
6033
+ readonly id: string;
5974
6034
  }
5975
- interface OrderInformationFlow {
5976
- readonly type: 'flow';
6035
+ interface SummaryLabelForm {
6036
+ readonly discriminator: 'summary_label_form';
6037
+ readonly organization: string;
5977
6038
  readonly order_number: string;
5978
- readonly billing_address?: io.flow.payment.gateway.v0.models.PaymentAddressBilling;
6039
+ readonly items?: io.flow.common.v0.models.LineItemForm[];
6040
+ readonly package?: io.flow.label.v0.models.ShippingLabelPackage;
6041
+ readonly center_key?: string;
5979
6042
  }
5980
- interface PaymentAddress {
5981
- readonly streets: string[];
5982
- readonly city: string;
6043
+ }
6044
+ declare namespace io.flow.partner.v0.unions {
6045
+ type LabelForm = io.flow.partner.v0.models.DetailedLabelForm | io.flow.partner.v0.models.SummaryLabelForm;
6046
+ }
6047
+ declare namespace io.flow.common.v0.enums {
6048
+ type AttributeDataType = 'boolean' | 'integer' | 'decimal' | 'string' | 'json_array';
6049
+ type AvailabilityStatus = 'enabled' | 'disabled';
6050
+ type Calendar = 'weekdays' | 'everyday';
6051
+ type Capability = 'crossdock';
6052
+ type ChangeType = 'insert' | 'update' | 'delete';
6053
+ type CurrencyLabelFormatter = 'strip_trailing_zeros' | 'symbol_prefix' | 'symbol_suffix';
6054
+ type CurrencySymbolFormat = 'narrow' | 'primary';
6055
+ type DayOfWeek = 'sunday' | 'monday' | 'tuesday' | 'wednesday' | 'thursday' | 'friday' | 'saturday';
6056
+ type DeliveredDuty = 'paid' | 'unpaid';
6057
+ type DiscountTarget = 'item' | 'shipping';
6058
+ type EntityIdentifierType = 'ioss' | 'voec';
6059
+ type Environment = 'sandbox' | 'production';
6060
+ type ExceptionType = 'open' | 'closed';
6061
+ type GoodsSupply = 'export' | 'intra_community' | 'local';
6062
+ type HolidayCalendar = 'us_bank_holidays' | 'jewish_holidays';
6063
+ type IncludedLevyKey = 'duty' | 'vat' | 'vat_and_duty' | 'none';
6064
+ type Incoterm = 'EXW' | 'FCA' | 'CPT' | 'CIP' | 'DAT' | 'DAP' | 'DDP' | 'FAS' | 'FOB' | 'CFR' | 'CIF' | 'DAF' | 'DES' | 'DEQ' | 'DDU';
6065
+ type InputSpecificationType = 'text' | 'number';
6066
+ type MarginType = 'fixed' | 'percent';
6067
+ type MeasurementSystem = 'imperial' | 'metric';
6068
+ type MerchantOfRecord = 'flow' | 'organization';
6069
+ type OrderMerchantOfRecord = 'flow' | 'organization' | 'mixed';
6070
+ type OrganizationStatus = 'active' | 'inactive' | 'deactivated' | 'provisioned';
6071
+ type OrganizationType = 'standalone' | 'channel';
6072
+ type PriceBookStatus = 'draft' | 'published' | 'archived';
6073
+ type Role = 'admin' | 'member';
6074
+ type RoundingMethod = 'up' | 'down' | 'nearest';
6075
+ type RoundingType = 'pattern' | 'multiple';
6076
+ type ScheduleExceptionStatus = 'Open' | 'Closed';
6077
+ type SortDirection = 'ascending' | 'descending';
6078
+ type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
6079
+ type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
6080
+ type UserStatus = 'pending' | 'active' | 'inactive';
6081
+ type ValueAddedService = 'Hazardous Material';
6082
+ type Visibility = 'public' | 'private';
6083
+ }
6084
+ declare namespace io.flow.common.v0.models {
6085
+ interface Address {
6086
+ readonly text?: string;
6087
+ readonly streets?: string[];
6088
+ readonly street_number?: string;
6089
+ readonly city?: string;
5983
6090
  readonly province?: string;
5984
6091
  readonly postal?: string;
5985
- readonly country: string;
5986
- }
5987
- interface PaymentAddressBilling {
5988
- readonly contact: io.flow.payment.gateway.v0.models.PaymentContactBilling;
5989
- readonly location: io.flow.payment.gateway.v0.models.PaymentAddress;
6092
+ readonly country?: string;
6093
+ readonly latitude?: string;
6094
+ readonly longitude?: string;
5990
6095
  }
5991
- interface PaymentAddressShipping {
5992
- readonly contact: io.flow.payment.gateway.v0.models.PaymentContactShipping;
5993
- readonly location: io.flow.payment.gateway.v0.models.PaymentAddress;
6096
+ interface BillingAddress {
6097
+ readonly name?: io.flow.common.v0.models.Name;
6098
+ readonly streets?: string[];
6099
+ readonly city?: string;
6100
+ readonly province?: string;
6101
+ readonly postal?: string;
6102
+ readonly country?: string;
6103
+ readonly company?: string;
5994
6104
  }
5995
- interface PaymentAuthorization {
6105
+ interface CatalogItemReference {
5996
6106
  readonly id: string;
5997
- readonly payment_method_summary: io.flow.payment.gateway.v0.unions.PaymentMethodSummary;
5998
- readonly captures: io.flow.payment.gateway.v0.models.PaymentCapture[];
5999
- readonly refunds: io.flow.payment.gateway.v0.models.PaymentRefund[];
6000
- readonly reversals: io.flow.payment.gateway.v0.models.PaymentReversal[];
6001
- readonly created_at: string;
6002
- readonly updated_at: string;
6003
- readonly status: io.flow.payment.gateway.v0.models.PaymentAuthorizationStatus;
6004
- readonly amount: number;
6005
- readonly currency: string;
6107
+ readonly number: string;
6006
6108
  }
6007
- interface PaymentAuthorizationStatus {
6008
- readonly status: io.flow.payment.v0.enums.AuthorizationStatus;
6009
- readonly reason?: io.flow.payment.v0.enums.AuthorizationDeclineCode;
6109
+ interface CatalogItemSummary {
6110
+ readonly number: string;
6111
+ readonly name: string;
6112
+ readonly attributes: Record<string, string>;
6010
6113
  }
6011
- interface PaymentCapture {
6114
+ interface ChannelReference {
6012
6115
  readonly id: string;
6013
- readonly amount: number;
6014
- readonly currency: string;
6015
- readonly created_at: string;
6016
- readonly updated_at: string;
6017
- readonly status: io.flow.payment.gateway.v0.models.PaymentCaptureStatus;
6018
- }
6019
- interface PaymentCaptureForm {
6020
- readonly amount?: number;
6021
- readonly currency?: string;
6022
- readonly attributes?: Record<string, string>;
6023
- }
6024
- interface PaymentCaptureOptionAutomaticImmediate {
6025
- readonly type: 'automatic_immediate';
6026
- readonly placeholder?: string;
6027
- }
6028
- interface PaymentCaptureOptionManual {
6029
- readonly type: 'manual';
6030
- readonly placeholder?: string;
6031
6116
  }
6032
- interface PaymentCaptureStatus {
6033
- readonly status: io.flow.payment.v0.enums.CaptureStatus;
6034
- readonly reason?: io.flow.payment.v0.enums.CaptureDeclineCode;
6117
+ interface CheckoutReference {
6118
+ readonly id: string;
6035
6119
  }
6036
- interface PaymentContactBilling {
6037
- readonly first_name?: string;
6038
- readonly last_name: string;
6120
+ interface Contact {
6121
+ readonly name: io.flow.common.v0.models.Name;
6039
6122
  readonly company?: string;
6040
6123
  readonly email?: string;
6041
6124
  readonly phone?: string;
6042
6125
  }
6043
- interface PaymentContactShipping {
6044
- readonly first_name?: string;
6045
- readonly last_name: string;
6046
- readonly email: string;
6047
- readonly phone?: string;
6048
- }
6049
- interface PaymentDiscount {
6050
- readonly amount: number;
6051
- readonly name?: string;
6052
- readonly code?: string;
6053
- }
6054
- interface PaymentDuty {
6055
- readonly amount: number;
6056
- readonly name?: string;
6057
- }
6058
- interface PaymentFailure {
6059
- readonly authorization_id?: string;
6060
- readonly failure_code: io.flow.payment.gateway.v0.enums.PaymentFailureCode;
6061
- readonly failure_message: string;
6062
- }
6063
- interface PaymentInformation {
6064
- readonly amount_refundable?: number;
6065
- readonly amount_refunded?: number;
6066
- readonly refundable_before?: string;
6067
- readonly amount_capturable?: number;
6068
- readonly amount_captured?: number;
6069
- readonly capturable_before?: string;
6070
- readonly authorizations: io.flow.payment.gateway.v0.models.PaymentAuthorization[];
6071
- }
6072
- interface PaymentMethodBrand {
6073
- readonly id: string;
6074
- readonly name: string;
6075
- readonly images: io.flow.reference.v0.models.PaymentMethodImages;
6076
- }
6077
- interface PaymentMethodCardNumberCipher {
6078
- readonly type: 'cipher';
6079
- readonly cipher: string;
6126
+ interface CustomerInvoice {
6127
+ readonly address?: io.flow.common.v0.models.BillingAddress;
6080
6128
  }
6081
- interface PaymentMethodCardNumberCleartext {
6082
- readonly type: 'cleartext';
6129
+ interface CustomerReference {
6083
6130
  readonly number: string;
6084
6131
  }
6085
- interface PaymentMethodCardPciDetails {
6086
- readonly type: 'card_pci_details';
6087
- readonly card_number: io.flow.payment.gateway.v0.unions.CardNumber;
6088
- readonly expiration_month: number;
6089
- readonly expiration_year: number;
6090
- readonly name: string;
6132
+ interface DatetimeRange {
6133
+ readonly from: string;
6134
+ readonly to: string;
6091
6135
  }
6092
- interface PaymentMethodCardToken {
6093
- readonly type: 'token';
6094
- readonly token: string;
6136
+ interface Dimension {
6137
+ readonly depth?: io.flow.common.v0.models.Measurement;
6138
+ readonly diameter?: io.flow.common.v0.models.Measurement;
6139
+ readonly length?: io.flow.common.v0.models.Measurement;
6140
+ readonly weight?: io.flow.common.v0.models.Measurement;
6141
+ readonly width?: io.flow.common.v0.models.Measurement;
6095
6142
  }
6096
- interface PaymentMethodDataAuthorizeApplepay {
6097
- readonly type: 'authorize_applepay';
6098
- readonly result: io.flow.payment.gateway.v0.unions.PaymentMethodDataAuthorizeApplepayResult;
6143
+ interface Dimensions {
6144
+ readonly product?: io.flow.common.v0.models.Dimension;
6145
+ readonly packaging?: io.flow.common.v0.models.Dimension;
6099
6146
  }
6100
- interface PaymentMethodDataAuthorizeApplepayResultFailure {
6101
- readonly type: 'failure';
6102
- readonly placeholder?: string;
6147
+ interface DiscountForm {
6148
+ readonly offer: io.flow.common.v0.unions.DiscountOffer;
6149
+ readonly target?: io.flow.common.v0.enums.DiscountTarget;
6150
+ readonly label?: string;
6103
6151
  }
6104
- interface PaymentMethodDataAuthorizeApplepayResultSuccess {
6105
- readonly type: 'success';
6106
- readonly token: string;
6152
+ interface DiscountOfferFixed {
6153
+ readonly discriminator: 'discount_offer_fixed';
6154
+ readonly money: io.flow.common.v0.models.Money;
6107
6155
  }
6108
- interface PaymentMethodDataAuthorizeCard {
6109
- readonly type: 'authorize_card';
6110
- readonly card_data: io.flow.payment.gateway.v0.unions.PaymentMethodCard;
6111
- readonly device_fingerprint_details: io.flow.payment.gateway.v0.unions.DeviceFingerprintDetails;
6112
- readonly cvv?: string;
6113
- readonly stored_details_card?: io.flow.payment.gateway.v0.unions.PaymentMethodStoredDetailsCard;
6156
+ interface DiscountOfferPercent {
6157
+ readonly discriminator: 'discount_offer_percent';
6158
+ readonly percent: number;
6114
6159
  }
6115
- interface PaymentMethodDataAuthorizeGooglepay {
6116
- readonly type: 'authorize_googlepay';
6117
- readonly payment_data: any;
6160
+ interface DiscountsForm {
6161
+ readonly discounts: io.flow.common.v0.models.DiscountForm[];
6118
6162
  }
6119
- interface PaymentMethodDataAuthorizeKlarna {
6120
- readonly type: 'authorize_klarna';
6121
- readonly result: io.flow.payment.gateway.v0.unions.PaymentMethodDataAuthorizeKlarnaResult;
6163
+ interface Duration {
6164
+ readonly unit: io.flow.common.v0.enums.UnitOfTime;
6165
+ readonly value: number;
6122
6166
  }
6123
- interface PaymentMethodDataAuthorizeKlarnaResultFailure {
6124
- readonly type: 'failure';
6125
- readonly placeholder?: string;
6167
+ interface EntityIdentifier {
6168
+ readonly name: io.flow.common.v0.enums.EntityIdentifierType;
6169
+ readonly number: string;
6170
+ readonly issuing_country?: string;
6126
6171
  }
6127
- interface PaymentMethodDataAuthorizeKlarnaResultSuccess {
6128
- readonly type: 'success';
6129
- readonly authorization_token: string;
6172
+ interface Exception {
6173
+ readonly type: io.flow.common.v0.enums.ExceptionType;
6174
+ readonly datetime_range: io.flow.common.v0.models.DatetimeRange;
6130
6175
  }
6131
- interface PaymentMethodDataAuthorizePaypal {
6132
- readonly type: 'authorize_paypal';
6133
- readonly payment_id: string;
6134
- readonly payer_id: string;
6176
+ interface ExperienceSummary {
6177
+ readonly id: string;
6178
+ readonly key: string;
6179
+ readonly name: string;
6180
+ readonly country?: string;
6181
+ readonly currency?: string;
6182
+ readonly language?: string;
6135
6183
  }
6136
- interface PaymentMethodDataCompleteAuthorizationCard {
6137
- readonly type: 'complete_authorization_card';
6138
- readonly action_result: io.flow.payment.gateway.v0.unions.CardAuthorizationActionResult;
6184
+ interface IncludedLevies {
6185
+ readonly key: io.flow.common.v0.enums.IncludedLevyKey;
6186
+ readonly label: string;
6139
6187
  }
6140
- interface PaymentMethodDataInitAfterpay {
6141
- readonly type: 'init_afterpay';
6142
- readonly placeholder?: string;
6188
+ interface InputForm {
6189
+ readonly values?: Record<string, string>;
6143
6190
  }
6144
- interface PaymentMethodDataInitApplepay {
6145
- readonly type: 'init_applepay';
6146
- readonly placeholder?: string;
6191
+ interface InputFormSpecification {
6192
+ readonly inputs?: io.flow.common.v0.models.InputSpecification[];
6193
+ readonly limitations?: io.flow.common.v0.models.InputSpecificationLimitations;
6147
6194
  }
6148
- interface PaymentMethodDataInitBancontact {
6149
- readonly type: 'init_bancontact';
6150
- readonly placeholder?: string;
6195
+ interface InputSpecification {
6196
+ readonly type: io.flow.common.v0.enums.InputSpecificationType;
6197
+ readonly name: string;
6198
+ readonly display_text?: string;
6151
6199
  }
6152
- interface PaymentMethodDataInitGooglepay {
6153
- readonly type: 'init_googlepay';
6154
- readonly placeholder?: string;
6200
+ interface InputSpecificationLimitationMax {
6201
+ readonly discriminator: 'input_specification_limitation_max';
6202
+ readonly max: number;
6155
6203
  }
6156
- interface PaymentMethodDataInitIdeal {
6157
- readonly type: 'init_ideal';
6158
- readonly issuer?: string;
6204
+ interface InputSpecificationLimitations {
6205
+ readonly limitations?: io.flow.common.v0.unions.InputSpecificationLimitation[];
6159
6206
  }
6160
- interface PaymentMethodDataInitKlarna {
6161
- readonly type: 'init_klarna';
6162
- readonly placeholder?: string;
6207
+ interface ItemReference {
6208
+ readonly number: string;
6163
6209
  }
6164
- interface PaymentMethodDataInitPaypal {
6165
- readonly type: 'init_paypal';
6166
- readonly placeholder?: string;
6210
+ interface LineItem {
6211
+ readonly number: string;
6212
+ readonly quantity: number;
6213
+ readonly price: io.flow.common.v0.models.Money;
6214
+ readonly attributes: Record<string, string>;
6215
+ readonly center?: string;
6216
+ readonly discount?: io.flow.common.v0.models.Money;
6167
6217
  }
6168
- interface PaymentMethodDataInitSofort {
6169
- readonly type: 'init_sofort';
6170
- readonly placeholder?: string;
6218
+ interface LineItemAttributesForm {
6219
+ readonly attributes: Record<string, string>;
6171
6220
  }
6172
- interface PaymentMethodDataOptionLogoSvg {
6173
- readonly type: 'svg';
6174
- readonly url: string;
6221
+ interface LineItemForm {
6222
+ readonly number: string;
6223
+ readonly quantity: number;
6224
+ readonly shipment_estimate?: io.flow.common.v0.models.DatetimeRange;
6225
+ readonly price?: io.flow.common.v0.models.Money;
6226
+ readonly attributes?: Record<string, string>;
6227
+ readonly center?: string;
6228
+ readonly discount?: io.flow.common.v0.models.Money;
6229
+ readonly discounts?: io.flow.common.v0.models.DiscountsForm;
6175
6230
  }
6176
- interface PaymentMethodDataPaymentOption {
6177
- readonly id: string;
6178
- readonly name: string;
6179
- readonly logo?: io.flow.payment.gateway.v0.unions.PaymentMethodDataOptionLogo[];
6231
+ interface LineItemQuantityForm {
6232
+ readonly quantity: number;
6180
6233
  }
6181
- interface PaymentMethodDataSelectedPaymentOption {
6182
- readonly type: 'select_option';
6183
- readonly option_id: string;
6234
+ interface LogoImageSetStatic {
6235
+ readonly discriminator: 'static';
6236
+ readonly small?: io.flow.common.v0.models.LogoImageStatic;
6237
+ readonly medium: io.flow.common.v0.models.LogoImageStatic;
6238
+ readonly large?: io.flow.common.v0.models.LogoImageStatic;
6184
6239
  }
6185
- interface PaymentMethodDataValidateApplepay {
6186
- readonly type: 'validate_applepay';
6187
- readonly validation_url: string;
6240
+ interface LogoImageStatic {
6241
+ readonly url: string;
6242
+ readonly width: number;
6243
+ readonly height: number;
6188
6244
  }
6189
- interface PaymentMethodStoredDetailsCardInitial {
6190
- readonly type: 'initial';
6191
- readonly reference?: string;
6245
+ interface LogoImageSvg {
6246
+ readonly discriminator: 'svg';
6247
+ readonly url: string;
6192
6248
  }
6193
- interface PaymentMethodStoredDetailsCardSubsequent {
6194
- readonly type: 'subsequent';
6195
- readonly reference?: string;
6196
- readonly previous_transaction_details?: io.flow.payment.v0.models.TransactionNetworkDetailsCard;
6249
+ interface Margin {
6250
+ readonly type: io.flow.common.v0.enums.MarginType;
6251
+ readonly value: number;
6197
6252
  }
6198
- interface PaymentMethodSummaryAfterpay {
6199
- readonly type: 'afterpay';
6200
- readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
6253
+ interface Measurement {
6254
+ readonly value: string;
6255
+ readonly units: io.flow.common.v0.enums.UnitOfMeasurement;
6201
6256
  }
6202
- interface PaymentMethodSummaryApplepay {
6203
- readonly type: 'applepay';
6204
- readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
6257
+ interface MerchantOfRecordEntity {
6258
+ readonly organization: io.flow.common.v0.models.OrganizationReference;
6259
+ readonly name: string;
6260
+ readonly vat?: io.flow.common.v0.models.MerchantOfRecordEntityRegistration;
6261
+ readonly identifiers?: io.flow.common.v0.models.EntityIdentifier[];
6262
+ readonly streets: string[];
6263
+ readonly city: string;
6264
+ readonly province?: string;
6265
+ readonly postal?: string;
6266
+ readonly country: string;
6267
+ readonly phone?: string;
6268
+ readonly email?: string;
6205
6269
  }
6206
- interface PaymentMethodSummaryBancontact {
6207
- readonly type: 'bancontact';
6208
- readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
6270
+ interface MerchantOfRecordEntityRegistration {
6271
+ readonly number: string;
6272
+ readonly country: string;
6209
6273
  }
6210
- interface PaymentMethodSummaryCard {
6211
- readonly type: 'card';
6212
- readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
6213
- readonly last_four: string;
6214
- readonly card_type: io.flow.payment.v0.enums.CardType;
6215
- readonly id: string;
6216
- readonly reference?: string;
6217
- readonly transaction_details?: io.flow.payment.v0.models.TransactionDetailsCard;
6274
+ interface Money {
6275
+ readonly amount: number;
6276
+ readonly currency: string;
6218
6277
  }
6219
- interface PaymentMethodSummaryGooglepay {
6220
- readonly type: 'googlepay';
6221
- readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
6278
+ interface MoneyWithBase {
6279
+ readonly currency: string;
6280
+ readonly amount: number;
6281
+ readonly base: io.flow.common.v0.models.Money;
6222
6282
  }
6223
- interface PaymentMethodSummaryIdeal {
6224
- readonly type: 'ideal';
6225
- readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
6226
- readonly issuer?: string;
6283
+ interface MoneyWithOptionalBase {
6284
+ readonly currency: string;
6285
+ readonly amount: number;
6286
+ readonly base?: io.flow.common.v0.models.Money;
6227
6287
  }
6228
- interface PaymentMethodSummaryKlarna {
6229
- readonly type: 'klarna';
6230
- readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
6288
+ interface Name {
6289
+ readonly first?: string;
6290
+ readonly last?: string;
6231
6291
  }
6232
- interface PaymentMethodSummaryPaypal {
6233
- readonly type: 'paypal';
6234
- readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
6292
+ interface OrderCustomer {
6293
+ readonly name: io.flow.common.v0.models.Name;
6294
+ readonly number?: string;
6295
+ readonly phone?: string;
6296
+ readonly email?: string;
6297
+ readonly address?: io.flow.common.v0.models.BillingAddress;
6298
+ readonly invoice?: io.flow.common.v0.models.CustomerInvoice;
6235
6299
  }
6236
- interface PaymentMethodSummarySofort {
6237
- readonly type: 'sofort';
6238
- readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
6300
+ interface OrderCustomerForm {
6301
+ readonly name?: io.flow.common.v0.models.Name;
6302
+ readonly number?: string;
6303
+ readonly phone?: string;
6304
+ readonly email?: string;
6305
+ readonly address?: io.flow.common.v0.models.BillingAddress;
6306
+ readonly invoice?: io.flow.common.v0.models.CustomerInvoice;
6239
6307
  }
6240
- interface PaymentOrderDetailsLineItem {
6308
+ interface Organization {
6309
+ readonly discriminator: 'organization';
6241
6310
  readonly id: string;
6242
- readonly description: string;
6243
- readonly quantity: number;
6244
- readonly amount: number;
6245
- readonly tax?: io.flow.payment.gateway.v0.models.PaymentTax;
6246
- readonly duty?: io.flow.payment.gateway.v0.models.PaymentDuty;
6247
- readonly product_url?: string;
6248
- readonly image_url?: string;
6249
- readonly category?: string;
6250
- readonly discounts?: io.flow.payment.gateway.v0.models.PaymentDiscount[];
6311
+ readonly name: string;
6312
+ readonly environment: io.flow.common.v0.enums.Environment;
6313
+ readonly parent?: io.flow.common.v0.models.OrganizationReference;
6314
+ readonly defaults?: io.flow.common.v0.models.OrganizationDefaults;
6315
+ readonly created_at?: string;
6316
+ readonly status?: io.flow.common.v0.enums.OrganizationStatus;
6317
+ readonly type?: io.flow.common.v0.enums.OrganizationType;
6318
+ }
6319
+ interface OrganizationDefaults {
6320
+ readonly country: string;
6321
+ readonly base_currency: string;
6322
+ readonly language: string;
6323
+ readonly locale: string;
6324
+ readonly timezone: string;
6251
6325
  }
6252
- interface PaymentPaymentMethod {
6326
+ interface OrganizationReference {
6327
+ readonly discriminator: 'organization_reference';
6253
6328
  readonly id: string;
6254
- readonly name: string;
6255
- readonly type: io.flow.payment.gateway.v0.enums.PaymentType;
6256
- readonly brands: io.flow.payment.gateway.v0.models.PaymentMethodBrand[];
6257
- readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
6258
- readonly images: io.flow.reference.v0.models.PaymentMethodImages;
6259
- readonly possible_actions: io.flow.payment.gateway.v0.enums.PaymentActionType[];
6260
6329
  }
6261
- interface PaymentRefund {
6330
+ interface OrganizationSummary {
6262
6331
  readonly id: string;
6263
- readonly amount: number;
6264
- readonly currency: string;
6265
- readonly created_at: string;
6266
- readonly updated_at: string;
6267
- readonly status: io.flow.payment.gateway.v0.models.PaymentRefundStatus;
6268
- }
6269
- interface PaymentRefundForm {
6270
- readonly amount?: number;
6271
- readonly currency?: string;
6272
- }
6273
- interface PaymentRefundStatus {
6274
- readonly status: io.flow.payment.v0.enums.RefundStatus;
6275
- readonly reason?: io.flow.payment.v0.enums.RefundDeclineCode;
6332
+ readonly name: string;
6333
+ readonly environment: io.flow.common.v0.enums.Environment;
6276
6334
  }
6277
- interface PaymentRequest {
6335
+ interface PartnerReference {
6278
6336
  readonly id: string;
6279
- readonly status: io.flow.payment.gateway.v0.enums.PaymentStatus;
6280
- readonly created_at: string;
6281
- readonly updated_at: string;
6282
- readonly available_payment_methods: io.flow.payment.gateway.v0.models.PaymentPaymentMethod[];
6283
- readonly last_payment_failure?: io.flow.payment.gateway.v0.models.PaymentFailure;
6284
- readonly next_action?: io.flow.payment.gateway.v0.unions.Action;
6337
+ }
6338
+ interface Price {
6285
6339
  readonly amount: number;
6286
6340
  readonly currency: string;
6287
- readonly order_information: io.flow.payment.gateway.v0.unions.OrderInformation;
6288
- readonly device_details: io.flow.payment.gateway.v0.unions.DeviceDetails;
6289
- readonly locale?: string;
6290
- readonly return_url: string;
6291
- readonly attributes?: Record<string, string>;
6292
- readonly reference?: string;
6293
- readonly payment_information: io.flow.payment.gateway.v0.models.PaymentInformation;
6294
- readonly supported_actions: io.flow.payment.gateway.v0.enums.PaymentActionType[];
6295
- readonly payment_capture_option?: io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
6341
+ readonly label: string;
6296
6342
  }
6297
- interface PaymentRequestForm {
6343
+ interface PriceForm {
6298
6344
  readonly amount: number;
6299
6345
  readonly currency: string;
6300
- readonly order_information: io.flow.payment.gateway.v0.unions.OrderInformation;
6301
- readonly device_details: io.flow.payment.gateway.v0.unions.DeviceDetails;
6302
- readonly locale?: string;
6303
- readonly return_url: string;
6304
- readonly attributes?: Record<string, string>;
6305
- readonly reference?: string;
6306
- readonly payment_method_data?: io.flow.payment.gateway.v0.unions.PaymentMethodData;
6307
- readonly supported_actions?: io.flow.payment.gateway.v0.enums.PaymentActionType[];
6308
- readonly payment_capture_option?: io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
6309
6346
  }
6310
- interface PaymentRequestReference {
6311
- readonly id: string;
6312
- readonly reference?: string;
6347
+ interface PriceSourceCatalog {
6348
+ readonly discriminator: 'catalog';
6349
+ readonly price: io.flow.common.v0.models.Money;
6313
6350
  }
6314
- interface PaymentReversal {
6351
+ interface PriceSourcePriceBook {
6352
+ readonly discriminator: 'price_book';
6353
+ readonly price: io.flow.common.v0.models.Money;
6354
+ readonly includes: io.flow.common.v0.models.IncludedLevies;
6355
+ readonly price_book_reference: io.flow.common.v0.models.PriceSourcePriceBookReference;
6356
+ }
6357
+ interface PriceSourcePriceBookReference {
6315
6358
  readonly id: string;
6316
- readonly amount: number;
6359
+ readonly key: string;
6360
+ }
6361
+ interface PriceSourceProvided {
6362
+ readonly discriminator: 'provided';
6363
+ readonly price: io.flow.common.v0.models.Money;
6364
+ }
6365
+ interface PriceWithBase {
6317
6366
  readonly currency: string;
6318
- readonly created_at: string;
6319
- readonly updated_at: string;
6320
- readonly status: io.flow.payment.gateway.v0.models.PaymentReversalStatus;
6367
+ readonly amount: number;
6368
+ readonly label: string;
6369
+ readonly base?: io.flow.common.v0.models.Price;
6321
6370
  }
6322
- interface PaymentReversalForm {
6323
- readonly amount?: number;
6324
- readonly currency?: string;
6371
+ interface RepeatDaily {
6372
+ readonly discriminator: 'repeat_daily';
6373
+ readonly interval: number;
6325
6374
  }
6326
- interface PaymentReversalStatus {
6327
- readonly status: io.flow.payment.v0.enums.ReversalStatus;
6328
- readonly reason?: io.flow.payment.v0.enums.ReversalErrorCode;
6375
+ interface RepeatHourly {
6376
+ readonly discriminator: 'repeat_hourly';
6377
+ readonly interval: number;
6329
6378
  }
6330
- interface PaymentTax {
6331
- readonly amount: number;
6332
- readonly name?: string;
6379
+ interface RepeatMonthly {
6380
+ readonly discriminator: 'repeat_monthly';
6381
+ readonly interval: number;
6382
+ readonly days: number[];
6333
6383
  }
6334
- interface Shipping {
6335
- readonly description: string;
6336
- readonly amount: number;
6337
- readonly tax?: io.flow.payment.gateway.v0.models.PaymentTax;
6338
- readonly duty?: io.flow.payment.gateway.v0.models.PaymentDuty;
6339
- readonly discounts?: io.flow.payment.gateway.v0.models.PaymentDiscount[];
6384
+ interface RepeatWeekly {
6385
+ readonly discriminator: 'repeat_weekly';
6386
+ readonly interval: number;
6387
+ readonly days_of_week: io.flow.common.v0.enums.DayOfWeek[];
6388
+ }
6389
+ interface Rounding {
6390
+ readonly type: io.flow.common.v0.enums.RoundingType;
6391
+ readonly method: io.flow.common.v0.enums.RoundingMethod;
6392
+ readonly value: number;
6393
+ }
6394
+ interface Schedule {
6395
+ readonly calendar?: io.flow.common.v0.enums.Calendar;
6396
+ readonly holiday: io.flow.common.v0.enums.HolidayCalendar;
6397
+ readonly exception: io.flow.common.v0.models.Exception[];
6398
+ readonly cutoff?: string;
6399
+ readonly min_lead_time?: number;
6400
+ readonly max_lead_time?: number;
6401
+ }
6402
+ interface SessionReference {
6403
+ readonly id: string;
6404
+ }
6405
+ interface User {
6406
+ readonly discriminator: 'user';
6407
+ readonly id: string;
6408
+ readonly email?: string;
6409
+ readonly name: io.flow.common.v0.models.Name;
6410
+ readonly status: io.flow.common.v0.enums.UserStatus;
6411
+ }
6412
+ interface UserReference {
6413
+ readonly discriminator: 'user_reference';
6414
+ readonly id: string;
6415
+ }
6416
+ interface Zone {
6417
+ readonly postals?: string[];
6418
+ readonly provinces?: string[];
6419
+ readonly country: string;
6340
6420
  }
6341
6421
  }
6342
- declare namespace io.flow.payment.gateway.v0.unions {
6343
- type Action = io.flow.payment.gateway.v0.models.ActionRedirect | io.flow.payment.gateway.v0.models.ActionUseSdkKlarnaV1 | io.flow.payment.gateway.v0.models.ActionUseSdkApplepayJsCreateSession | io.flow.payment.gateway.v0.models.ActionUseSdkApplepayJsCompleteValidation | io.flow.payment.gateway.v0.models.ActionUseSdkGooglepay | io.flow.payment.gateway.v0.models.ActionUseSdkPaypal | io.flow.payment.gateway.v0.models.ActionUseSdkStripeV3 | io.flow.payment.gateway.v0.models.ActionUseSdkAdyenV3 | io.flow.payment.gateway.v0.models.ActionUseSdkAdyenV4 | io.flow.payment.gateway.v0.models.ActionSelectPaymentOption | io.flow.payment.gateway.v0.models.ActionExecuteScript | io.flow.payment.gateway.v0.models.ActionDisplayInlineWindow | io.flow.payment.gateway.v0.models.ActionWait;
6344
- type CardAuthorizationActionResult = io.flow.payment.gateway.v0.models.AuthorizationActionResultAdyenV3 | io.flow.payment.gateway.v0.models.AuthorizationActionResultAdyenV4;
6345
- type CardNumber = io.flow.payment.gateway.v0.models.PaymentMethodCardNumberCleartext | io.flow.payment.gateway.v0.models.PaymentMethodCardNumberCipher;
6346
- type DeviceDetails = io.flow.payment.gateway.v0.models.DeviceDetailsBrowser;
6347
- type DeviceFingerprintDetails = io.flow.payment.gateway.v0.models.DeviceFingerprintDetailsBrowser;
6348
- type OrderInformation = io.flow.payment.gateway.v0.models.OrderInformationFlow | io.flow.payment.gateway.v0.models.OrderInformationDetails;
6349
- type PaymentCaptureOption = io.flow.payment.gateway.v0.models.PaymentCaptureOptionAutomaticImmediate | io.flow.payment.gateway.v0.models.PaymentCaptureOptionManual;
6350
- type PaymentMethodCard = io.flow.payment.gateway.v0.models.PaymentMethodCardPciDetails | io.flow.payment.gateway.v0.models.PaymentMethodCardToken;
6351
- type PaymentMethodData = io.flow.payment.gateway.v0.models.PaymentMethodDataInitKlarna | io.flow.payment.gateway.v0.models.PaymentMethodDataInitAfterpay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitPaypal | io.flow.payment.gateway.v0.models.PaymentMethodDataInitIdeal | io.flow.payment.gateway.v0.models.PaymentMethodDataInitSofort | io.flow.payment.gateway.v0.models.PaymentMethodDataInitBancontact | io.flow.payment.gateway.v0.models.PaymentMethodDataValidateApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeCard | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizePaypal | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarna | io.flow.payment.gateway.v0.models.PaymentMethodDataSelectedPaymentOption | io.flow.payment.gateway.v0.models.PaymentMethodDataCompleteAuthorizationCard;
6352
- type PaymentMethodDataAuthorizeApplepayResult = io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepayResultSuccess | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepayResultFailure;
6353
- type PaymentMethodDataAuthorizeKlarnaResult = io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarnaResultSuccess | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarnaResultFailure;
6354
- type PaymentMethodDataOptionLogo = io.flow.payment.gateway.v0.models.PaymentMethodDataOptionLogoSvg;
6355
- type PaymentMethodStoredDetailsCard = io.flow.payment.gateway.v0.models.PaymentMethodStoredDetailsCardInitial | io.flow.payment.gateway.v0.models.PaymentMethodStoredDetailsCardSubsequent;
6356
- type PaymentMethodSummary = io.flow.payment.gateway.v0.models.PaymentMethodSummaryCard | io.flow.payment.gateway.v0.models.PaymentMethodSummaryKlarna | io.flow.payment.gateway.v0.models.PaymentMethodSummaryAfterpay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryApplepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryPaypal | io.flow.payment.gateway.v0.models.PaymentMethodSummaryIdeal | io.flow.payment.gateway.v0.models.PaymentMethodSummarySofort | io.flow.payment.gateway.v0.models.PaymentMethodSummaryBancontact;
6357
- type SdkAdyenV3AuthenticationToken = io.flow.payment.gateway.v0.models.AdyenV3FingerprintToken | io.flow.payment.gateway.v0.models.AdyenV3ChallengeToken;
6422
+ declare namespace io.flow.common.v0.unions {
6423
+ type DiscountOffer = io.flow.common.v0.models.DiscountOfferFixed | io.flow.common.v0.models.DiscountOfferPercent;
6424
+ type ExpandableOrganization = io.flow.common.v0.models.Organization | io.flow.common.v0.models.OrganizationReference;
6425
+ type ExpandableUser = io.flow.common.v0.models.User | io.flow.common.v0.models.UserReference;
6426
+ type InputSpecificationLimitation = io.flow.common.v0.models.InputSpecificationLimitationMax;
6427
+ type LogoImage = io.flow.common.v0.models.LogoImageSvg | io.flow.common.v0.models.LogoImageSetStatic;
6428
+ type PriceSource = io.flow.common.v0.models.PriceSourcePriceBook | io.flow.common.v0.models.PriceSourceCatalog | io.flow.common.v0.models.PriceSourceProvided;
6429
+ type RepeatSchedule = io.flow.common.v0.models.RepeatHourly | io.flow.common.v0.models.RepeatDaily | io.flow.common.v0.models.RepeatWeekly | io.flow.common.v0.models.RepeatMonthly;
6358
6430
  }
6359
6431
  declare namespace io.flow.order.management.event.v0.models {
6360
6432
  interface FulfillmentItemAllocationDetails {
@@ -8759,12 +8831,14 @@ declare namespace io.flow.billing.v0.models {
8759
8831
  readonly url: string;
8760
8832
  }
8761
8833
  interface BankAccountForm {
8762
- readonly last4: string;
8763
8834
  readonly info: io.flow.billing.bank.account.v0.unions.BankAccountInfo;
8764
8835
  }
8765
8836
  interface BankAccountReference {
8766
8837
  readonly id: string;
8767
8838
  }
8839
+ interface BankAccountSummary {
8840
+ readonly last4: string;
8841
+ }
8768
8842
  interface BillingChannelOrderSummary {
8769
8843
  readonly organization: io.flow.billing.v0.models.BillingChannelOrganizationSummary;
8770
8844
  readonly number: string;
@@ -8784,10 +8858,20 @@ declare namespace io.flow.billing.v0.models {
8784
8858
  readonly amount: number;
8785
8859
  readonly description?: string;
8786
8860
  }
8861
+ interface ChannelBankAccount {
8862
+ readonly id: string;
8863
+ readonly key: string;
8864
+ readonly last4: string;
8865
+ }
8866
+ interface ChannelDefaultBankAccount {
8867
+ readonly id: string;
8868
+ readonly bank_account: io.flow.billing.v0.models.BankAccountReference;
8869
+ }
8787
8870
  interface ChannelPayout {
8788
8871
  readonly id: string;
8789
8872
  readonly account: io.flow.billing.v0.models.AccountReference;
8790
8873
  readonly status: io.flow.billing.v0.unions.PayoutStatus;
8874
+ readonly bank_account?: io.flow.billing.v0.models.BankAccountSummary;
8791
8875
  readonly amount: number;
8792
8876
  readonly attachments: io.flow.billing.v0.models.PayoutAttachment[];
8793
8877
  readonly created_at: string;
@@ -8828,6 +8912,7 @@ declare namespace io.flow.billing.v0.models {
8828
8912
  }
8829
8913
  interface OrganizationBankAccount {
8830
8914
  readonly id: string;
8915
+ readonly key: string;
8831
8916
  readonly last4: string;
8832
8917
  }
8833
8918
  interface OrganizationDefaultBankAccount {
@@ -8838,6 +8923,7 @@ declare namespace io.flow.billing.v0.models {
8838
8923
  readonly id: string;
8839
8924
  readonly account: io.flow.billing.v0.models.AccountReference;
8840
8925
  readonly status: io.flow.billing.v0.unions.PayoutStatus;
8926
+ readonly bank_account?: io.flow.billing.v0.models.BankAccountSummary;
8841
8927
  readonly amount: number;
8842
8928
  readonly attachments: io.flow.billing.v0.models.PayoutAttachment[];
8843
8929
  readonly created_at: string;
@@ -9284,6 +9370,7 @@ declare namespace io.flow.fulfillment.v0.enums {
9284
9370
  type DeliveryOptionCostDetailSource = 'center' | 'ratecard';
9285
9371
  type DeliveryWindowComponentSource = 'flow' | 'organization' | 'carrier' | 'center' | 'mixed';
9286
9372
  type DeliveryWindowLocation = 'center' | 'crossdock' | 'customer';
9373
+ type FulfillmentRouting = 'fulfilled_from_center' | 'fulfillment_service';
9287
9374
  type ItemAvailabilityStatus = 'available' | 'low' | 'out_of_stock';
9288
9375
  type LaneDirection = 'outbound' | 'return';
9289
9376
  type LanePreselectPreference = 'lowest_cost' | 'default_tier';
@@ -9545,6 +9632,8 @@ declare namespace io.flow.fulfillment.v0.models {
9545
9632
  readonly id: string;
9546
9633
  readonly key?: string;
9547
9634
  readonly center?: io.flow.fulfillment.v0.models.CenterSummary;
9635
+ readonly fulfillment_routing?: io.flow.fulfillment.v0.enums.FulfillmentRouting;
9636
+ readonly ship_from_country?: string;
9548
9637
  readonly items: io.flow.fulfillment.v0.models.DeliveryItem[];
9549
9638
  readonly options: io.flow.fulfillment.v0.models.DeliveryOption[];
9550
9639
  readonly special_services?: io.flow.fulfillment.v0.enums.PhysicalDeliverySpecialSerivce[];
@@ -9862,7 +9951,7 @@ declare namespace io.flow.catalog.RESERVED_WORD_return.v0.models {
9862
9951
  }
9863
9952
  }
9864
9953
  declare namespace io.flow.apple.pay.v0.enums {
9865
- type ApplePayContactField = 'email' | 'name' | 'phone' | 'postalAddress' | 'phoneticName';
9954
+ type ApplePayContactField = 'email' | 'name' | 'phone' | 'postal_address' | 'phonetic_name';
9866
9955
  type ApplePayLineItemType = 'final' | 'pending';
9867
9956
  type ApplePayMerchantCapability = 'supports3DS' | 'supportsCredit' | 'supportsDebit' | 'supportsEMV';
9868
9957
  type ApplePayShippingType = 'shipping' | 'delivery' | 'store_pickup' | 'service_pickup';
@@ -9872,7 +9961,7 @@ declare namespace io.flow.apple.pay.v0.models {
9872
9961
  interface ApplePayLineItem {
9873
9962
  readonly label: string;
9874
9963
  readonly type: io.flow.apple.pay.v0.enums.ApplePayLineItemType;
9875
- readonly amount: string;
9964
+ readonly amount: number;
9876
9965
  }
9877
9966
  interface ApplePayPaymentContact {
9878
9967
  readonly email_address?: string;
@@ -9919,7 +10008,7 @@ declare namespace io.flow.apple.pay.v0.models {
9919
10008
  interface ApplePayShippingMethod {
9920
10009
  readonly label: string;
9921
10010
  readonly detail: string;
9922
- readonly amount: string;
10011
+ readonly amount: number;
9923
10012
  readonly identifier: string;
9924
10013
  }
9925
10014
  }
@@ -10004,7 +10093,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
10004
10093
  }
10005
10094
  interface SetupCompleted {
10006
10095
  readonly discriminator: 'setup_completed';
10007
- readonly third_party_logistics_guid: string;
10096
+ readonly third_party_logistics_guid?: string;
10008
10097
  }
10009
10098
  interface SetupInProgress {
10010
10099
  readonly discriminator: 'setup_in_progress';
@@ -10300,11 +10389,10 @@ declare namespace io.flow.internal.v0.enums {
10300
10389
  type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
10301
10390
  type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
10302
10391
  type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
10303
- type BankPaymentStatusCode = 'sent' | 'failed';
10392
+ type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
10304
10393
  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';
10305
10394
  type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'all';
10306
10395
  type BillingStatementBatchFileKey = 'archive' | 'summary';
10307
- type BillingStatementReviewStatus = 'approved' | 'pending';
10308
10396
  type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
10309
10397
  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';
10310
10398
  type BlazeCheckoutEvent = 'begin_checkout' | 'select_promotion' | 'add_shipping_info' | 'add_payment_info' | 'purchase';
@@ -10315,7 +10403,7 @@ declare namespace io.flow.internal.v0.enums {
10315
10403
  type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
10316
10404
  type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
10317
10405
  type ChannelOrderAcceptanceErrorAction = 'auto_reject';
10318
- 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';
10406
+ 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';
10319
10407
  type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
10320
10408
  type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
10321
10409
  type ChargebackPaymentStatus = 'captured' | 'refunded';
@@ -10421,7 +10509,7 @@ declare namespace io.flow.internal.v0.enums {
10421
10509
  type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
10422
10510
  type EmptyAttribute = 'irrelevant';
10423
10511
  type ErpFileType = 'vendor';
10424
- 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' | 'test_upserted' | 'test_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' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_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' | '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' | 'platform_fee_change_upserted' | 'platform_fee_change_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' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | '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' | '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_restriction_approval_upserted' | 'organization_restriction_approval_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' | '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_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_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';
10512
+ 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' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_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' | 'platform_fee_change_upserted' | 'platform_fee_change_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' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | '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' | 'organization_restriction_approval_upserted' | 'organization_restriction_approval_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' | '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_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_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';
10425
10513
  type ExperienceImportType = 'experience_with_settings';
10426
10514
  type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
10427
10515
  type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
@@ -10543,7 +10631,7 @@ declare namespace io.flow.internal.v0.enums {
10543
10631
  type SubscriptionFrequency = 'yearly' | 'monthly';
10544
10632
  type SuggestionAction = 'accept' | 'validate' | 'review';
10545
10633
  type TariffEligibilityType = 'rex';
10546
- type TaskProcessorKey = 'billing_account' | 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'label_generation_settings' | 'ratecard';
10634
+ type TaskProcessorKey = 'billing_account' | 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'label_generation_settings' | 'ratecard' | 'logistics_center' | 'center_defaults';
10547
10635
  type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
10548
10636
  type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
10549
10637
  type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
@@ -10707,6 +10795,11 @@ declare namespace io.flow.internal.v0.models {
10707
10795
  readonly balance: io.flow.common.v0.models.Price;
10708
10796
  readonly pending: io.flow.common.v0.models.Price;
10709
10797
  }
10798
+ interface AccountSummary {
10799
+ readonly id: string;
10800
+ readonly currency: string;
10801
+ readonly source: io.flow.internal.v0.models.AccountSource;
10802
+ }
10710
10803
  interface AccountTransactionsExportRequest {
10711
10804
  readonly discriminator: 'account_transactions_export_request';
10712
10805
  readonly event_id: string;
@@ -11214,9 +11307,9 @@ declare namespace io.flow.internal.v0.models {
11214
11307
  readonly key: string;
11215
11308
  readonly account: io.flow.billing.v0.models.AccountReference;
11216
11309
  readonly reference?: string;
11217
- readonly sent_on: string;
11310
+ readonly sent_on?: string;
11218
11311
  readonly status: io.flow.billing.v0.unions.PayoutStatus;
11219
- readonly expected_delivery_by: string;
11312
+ readonly expected_delivery_by?: string;
11220
11313
  readonly total: io.flow.common.v0.models.Price;
11221
11314
  }
11222
11315
  interface BankPaymentDeleted {
@@ -11235,8 +11328,8 @@ declare namespace io.flow.internal.v0.models {
11235
11328
  interface BankPaymentForm {
11236
11329
  readonly account_id: string;
11237
11330
  readonly reference?: string;
11238
- readonly sent_on: string;
11239
- readonly expected_delivery_by: string;
11331
+ readonly sent_on?: string;
11332
+ readonly expected_delivery_by?: string;
11240
11333
  readonly amount: number;
11241
11334
  readonly currency: string;
11242
11335
  readonly transfer_transaction_ids: string[];
@@ -11393,23 +11486,9 @@ declare namespace io.flow.internal.v0.models {
11393
11486
  readonly timestamp: string;
11394
11487
  readonly id: string;
11395
11488
  }
11396
- interface BillingStatementPendingReview {
11397
- readonly source: io.flow.internal.v0.models.AccountSource;
11398
- readonly statement: io.flow.internal.v0.models.BillingStatementSummary;
11399
- }
11400
11489
  interface BillingStatementReference {
11401
11490
  readonly id: string;
11402
11491
  }
11403
- interface BillingStatementReview {
11404
- readonly id: string;
11405
- readonly billing_statement: io.flow.internal.v0.models.BillingStatementReference;
11406
- readonly reviewed_by: io.flow.common.v0.models.UserReference;
11407
- readonly reviewed_at: string;
11408
- }
11409
- interface BillingStatementReviewForm {
11410
- readonly reviewed_by_id: string;
11411
- readonly reviewed_at: string;
11412
- }
11413
11492
  interface BillingStatementSummary {
11414
11493
  readonly id: string;
11415
11494
  readonly account: io.flow.billing.v0.models.AccountReference;
@@ -11798,11 +11877,26 @@ declare namespace io.flow.internal.v0.models {
11798
11877
  readonly data: io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesData;
11799
11878
  }
11800
11879
  interface CatalogSettings {
11880
+ readonly id: string;
11801
11881
  readonly mixed_bag_weight: io.flow.internal.v0.enums.MixedBagWeight;
11802
11882
  }
11883
+ interface CatalogSettingsDeleted {
11884
+ readonly discriminator: 'catalog_settings_deleted';
11885
+ readonly event_id: string;
11886
+ readonly timestamp: string;
11887
+ readonly organization: string;
11888
+ readonly id: string;
11889
+ }
11803
11890
  interface CatalogSettingsPutForm {
11804
11891
  readonly mixed_bag_weight: io.flow.internal.v0.enums.MixedBagWeight;
11805
11892
  }
11893
+ interface CatalogSettingsUpserted {
11894
+ readonly discriminator: 'catalog_settings_upserted';
11895
+ readonly event_id: string;
11896
+ readonly timestamp: string;
11897
+ readonly organization: string;
11898
+ readonly catalog_settings: io.flow.internal.v0.models.CatalogSettings;
11899
+ }
11806
11900
  interface CenterDefaults {
11807
11901
  readonly packaging: io.flow.fulfillment.v0.models.Packaging[];
11808
11902
  readonly shipping_address_contact: io.flow.common.v0.models.Contact;
@@ -12006,7 +12100,7 @@ declare namespace io.flow.internal.v0.models {
12006
12100
  readonly spot_rate: number;
12007
12101
  readonly flow_margin: number;
12008
12102
  readonly flow_rate: number;
12009
- readonly journal_id: string;
12103
+ readonly journal_id?: string;
12010
12104
  readonly effective_at: string;
12011
12105
  readonly timestamp?: string;
12012
12106
  }
@@ -15120,6 +15214,23 @@ declare namespace io.flow.internal.v0.models {
15120
15214
  readonly transactions: number;
15121
15215
  readonly statements: number;
15122
15216
  }
15217
+ interface FinanceBankAccount {
15218
+ readonly id: string;
15219
+ readonly account: io.flow.internal.v0.models.AccountSummary;
15220
+ readonly last4: string;
15221
+ readonly info: io.flow.billing.bank.account.v0.unions.BankAccountInfo;
15222
+ readonly owner?: io.flow.internal.v0.models.FinanceBankAccountOwner;
15223
+ }
15224
+ interface FinanceBankAccountOwner {
15225
+ readonly name: string;
15226
+ }
15227
+ interface FinanceBankPayment {
15228
+ readonly id: string;
15229
+ readonly account: io.flow.internal.v0.models.AccountSummary;
15230
+ readonly last4?: string;
15231
+ readonly info?: io.flow.billing.bank.account.v0.unions.BankAccountInfo;
15232
+ readonly owner?: io.flow.internal.v0.models.FinanceBankAccountOwner;
15233
+ }
15123
15234
  interface FinancialMerchantCategory {
15124
15235
  readonly id: string;
15125
15236
  readonly iso_18245_4: string;
@@ -15476,6 +15587,15 @@ declare namespace io.flow.internal.v0.models {
15476
15587
  readonly carrier_tracking_url?: string;
15477
15588
  readonly items: io.flow.order.management.v0.models.FulfillmentItem[];
15478
15589
  }
15590
+ interface FulfillmentSnapshot {
15591
+ readonly tracking_source: string;
15592
+ readonly fulfillment_status?: string;
15593
+ readonly is_fulfillment_fulfilled?: boolean;
15594
+ readonly in_transit_created_at?: string;
15595
+ readonly has_shipping_notification: boolean;
15596
+ readonly fulfillment_created_at?: string;
15597
+ readonly fulfillment_updated_at?: string;
15598
+ }
15479
15599
  interface FxFee {
15480
15600
  readonly base: io.flow.common.v0.models.Money;
15481
15601
  readonly local: io.flow.common.v0.models.Money;
@@ -15516,7 +15636,13 @@ declare namespace io.flow.internal.v0.models {
15516
15636
  readonly local: io.flow.common.v0.models.Money;
15517
15637
  readonly transaction_created_at: string;
15518
15638
  }
15519
- interface GenerateLoad {
15639
+ interface GenerateLoadMultipleOrgs {
15640
+ readonly discriminator: 'generate_load_multiple_orgs';
15641
+ readonly organization_ids: string[];
15642
+ readonly num_events: number;
15643
+ }
15644
+ interface GenerateLoadSingleOrg {
15645
+ readonly discriminator: 'generate_load_single_org';
15520
15646
  readonly organization_id: string;
15521
15647
  readonly num_events: number;
15522
15648
  }
@@ -15570,6 +15696,16 @@ declare namespace io.flow.internal.v0.models {
15570
15696
  readonly discriminator: 'google_tag_manager';
15571
15697
  readonly tracker_id: string;
15572
15698
  }
15699
+ interface HarmonizationClassificationStatisticsData {
15700
+ readonly statistics: io.flow.internal.v0.models.ClassificationStatistics;
15701
+ }
15702
+ interface HarmonizationClassificationStatisticsPublished {
15703
+ readonly discriminator: 'harmonization_classification_statistics_published';
15704
+ readonly event_id: string;
15705
+ readonly timestamp: string;
15706
+ readonly organization: string;
15707
+ readonly data: io.flow.internal.v0.models.HarmonizationClassificationStatisticsData;
15708
+ }
15573
15709
  interface HarmonizationCodesImport {
15574
15710
  readonly discriminator: 'harmonization_codes_import';
15575
15711
  readonly event_id: string;
@@ -17093,6 +17229,10 @@ declare namespace io.flow.internal.v0.models {
17093
17229
  readonly type: io.flow.internal.v0.enums.ContentType;
17094
17230
  readonly url: string;
17095
17231
  }
17232
+ interface LogisticsCenterCheck {
17233
+ readonly issues?: string[];
17234
+ readonly is_valid: boolean;
17235
+ }
17096
17236
  interface Logo {
17097
17237
  readonly url: string;
17098
17238
  }
@@ -17125,7 +17265,6 @@ declare namespace io.flow.internal.v0.models {
17125
17265
  readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
17126
17266
  readonly created_at: string;
17127
17267
  readonly original_at?: string;
17128
- readonly disposition?: io.flow.internal.v0.enums.BillingStatementReviewStatus;
17129
17268
  }
17130
17269
  interface MainTransactionDeleted {
17131
17270
  readonly discriminator: 'main_transaction_deleted';
@@ -17499,6 +17638,7 @@ declare namespace io.flow.internal.v0.models {
17499
17638
  readonly onboarding_current_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
17500
17639
  readonly setup_completed_at?: string;
17501
17640
  readonly gmv: number;
17641
+ readonly health_score: number;
17502
17642
  }
17503
17643
  interface OneTimeTokenRedemptionForm {
17504
17644
  readonly token: string;
@@ -18000,6 +18140,25 @@ declare namespace io.flow.internal.v0.models {
18000
18140
  readonly respect_item_sales_margins_on_override: boolean;
18001
18141
  readonly respect_session_currency: boolean;
18002
18142
  }
18143
+ interface OrganizationStatusChange {
18144
+ readonly id: string;
18145
+ readonly organization: string;
18146
+ readonly previous_status?: io.flow.common.v0.enums.OrganizationStatus;
18147
+ readonly status: io.flow.common.v0.enums.OrganizationStatus;
18148
+ readonly status_set_at: string;
18149
+ }
18150
+ interface OrganizationStatusChangeDeleted {
18151
+ readonly discriminator: 'organization_status_change_deleted';
18152
+ readonly event_id: string;
18153
+ readonly timestamp: string;
18154
+ readonly id: string;
18155
+ }
18156
+ interface OrganizationStatusChangeUpserted {
18157
+ readonly discriminator: 'organization_status_change_upserted';
18158
+ readonly event_id: string;
18159
+ readonly timestamp: string;
18160
+ readonly organization_status_change: io.flow.internal.v0.models.OrganizationStatusChange;
18161
+ }
18003
18162
  interface Partner {
18004
18163
  readonly id: string;
18005
18164
  readonly name: string;
@@ -18051,10 +18210,12 @@ declare namespace io.flow.internal.v0.models {
18051
18210
  readonly partner: string;
18052
18211
  }
18053
18212
  interface PartnerOrganizationSettings {
18213
+ readonly label_format: io.flow.partner.v0.enums.LabelFormat;
18054
18214
  readonly glbe_merchant_guid: string;
18055
18215
  }
18056
18216
  interface PartnerOrganizationSettingsForm {
18057
- readonly glbe_merchant_guid: string;
18217
+ readonly label_format: io.flow.partner.v0.enums.LabelFormat;
18218
+ readonly glbe_merchant_guid?: string;
18058
18219
  }
18059
18220
  interface Passphrase {
18060
18221
  readonly id: string;
@@ -18301,9 +18462,8 @@ declare namespace io.flow.internal.v0.models {
18301
18462
  readonly refund: io.flow.internal.v0.models.PaypalInternalRefund;
18302
18463
  }
18303
18464
  interface PendingBankPayment {
18304
- readonly source: io.flow.internal.v0.models.AccountSource;
18305
- readonly account: io.flow.billing.v0.models.AccountReference;
18306
- readonly recommended_reference: string;
18465
+ readonly id: string;
18466
+ readonly account: io.flow.internal.v0.models.AccountSummary;
18307
18467
  readonly total: io.flow.common.v0.models.Price;
18308
18468
  readonly details: io.flow.internal.v0.models.PendingBankPaymentDetail[];
18309
18469
  }
@@ -18441,7 +18601,6 @@ declare namespace io.flow.internal.v0.models {
18441
18601
  readonly flow_rate: number;
18442
18602
  readonly flow_margin: number;
18443
18603
  readonly revenue_share?: io.flow.common.v0.models.Price;
18444
- readonly disposition?: io.flow.internal.v0.enums.BillingStatementReviewStatus;
18445
18604
  readonly id: string;
18446
18605
  readonly type: io.flow.internal.v0.enums.BillingTransactionType;
18447
18606
  readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
@@ -19041,6 +19200,7 @@ declare namespace io.flow.internal.v0.models {
19041
19200
  readonly full_review_start_date?: string;
19042
19201
  readonly full_review_end_date?: string;
19043
19202
  readonly reason?: string;
19203
+ readonly updated_at: string;
19044
19204
  }
19045
19205
  interface RestrictionOrganizationStatusDeleted {
19046
19206
  readonly discriminator: 'restriction_organization_status_deleted';
@@ -19529,6 +19689,15 @@ declare namespace io.flow.internal.v0.models {
19529
19689
  readonly description: string;
19530
19690
  readonly code?: string;
19531
19691
  }
19692
+ interface ShopifyOrderFulfillmentsSnapshot {
19693
+ readonly id: string;
19694
+ readonly organization_id: string;
19695
+ readonly order_number: number;
19696
+ readonly order_created_at: string;
19697
+ readonly is_order_fulfilled: boolean;
19698
+ readonly should_be_fulfilled: boolean;
19699
+ readonly fulfillment_snapshots: io.flow.internal.v0.models.FulfillmentSnapshot[];
19700
+ }
19532
19701
  interface ShopifyOrderInventoryCheck {
19533
19702
  readonly item_number: string;
19534
19703
  readonly quantity: number;
@@ -19757,7 +19926,7 @@ declare namespace io.flow.internal.v0.models {
19757
19926
  readonly base: string;
19758
19927
  readonly target: string;
19759
19928
  readonly value: number;
19760
- readonly journal_id: string;
19929
+ readonly journal_id?: string;
19761
19930
  readonly effective_at: string;
19762
19931
  readonly timestamp?: string;
19763
19932
  }
@@ -20191,23 +20360,9 @@ declare namespace io.flow.internal.v0.models {
20191
20360
  readonly id: string;
20192
20361
  readonly name: string;
20193
20362
  }
20194
- interface TestDeleted {
20195
- readonly discriminator: 'test_deleted';
20196
- readonly event_id: string;
20197
- readonly timestamp: string;
20198
- readonly organization: string;
20199
- readonly id: string;
20200
- }
20201
20363
  interface TestForm {
20202
20364
  readonly name: string;
20203
20365
  }
20204
- interface TestUpserted {
20205
- readonly discriminator: 'test_upserted';
20206
- readonly event_id: string;
20207
- readonly timestamp: string;
20208
- readonly organization: string;
20209
- readonly test: io.flow.internal.v0.models.Test;
20210
- }
20211
20366
  interface ThirdPartyLogisticsPartner {
20212
20367
  readonly warehouse_address: io.flow.common.v0.models.BillingAddress;
20213
20368
  readonly warehouse_url?: string;
@@ -20717,7 +20872,7 @@ declare namespace io.flow.internal.v0.unions {
20717
20872
  type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
20718
20873
  type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
20719
20874
  type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
20720
- 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.TestUpserted | io.flow.internal.v0.models.TestDeleted | 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.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | 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.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.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | 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.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | 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.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.OrganizationRestrictionApprovalUpserted | io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted | 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.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.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | 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;
20875
+ 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.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | 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.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | 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.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | 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.OrganizationRestrictionApprovalUpserted | io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted | 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.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.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | 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;
20721
20876
  type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
20722
20877
  type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
20723
20878
  type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
@@ -20728,6 +20883,7 @@ declare namespace io.flow.internal.v0.unions {
20728
20883
  type FraudProviderConfiguration = io.flow.internal.v0.models.FraudProviderConfigurationRiskified;
20729
20884
  type FraudProviderConfigurationForm = io.flow.internal.v0.models.FraudProviderConfigurationFormRiskified;
20730
20885
  type FuelSurchargeServiceFeePutForm = io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm | io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm;
20886
+ type GenerateLoad = io.flow.internal.v0.models.GenerateLoadSingleOrg | io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
20731
20887
  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;
20732
20888
  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;
20733
20889
  type IndexTaskType = io.flow.internal.v0.models.CatalogItemIndexTask | io.flow.internal.v0.models.CatalogItemBatchIndexTask | io.flow.internal.v0.models.CatalogItemDeleteIndexTask | io.flow.internal.v0.models.ChangeSettingsIndexTask | io.flow.internal.v0.models.DeleteIndexTask;
@@ -20797,6 +20953,7 @@ export declare type AccountSettingsDeleted = io.flow.internal.v0.models.AccountS
20797
20953
  export declare type AccountSettingsUpserted = io.flow.internal.v0.models.AccountSettingsUpserted;
20798
20954
  export declare type AccountSource = io.flow.internal.v0.models.AccountSource;
20799
20955
  export declare type AccountStatistics = io.flow.internal.v0.models.AccountStatistics;
20956
+ export declare type AccountSummary = io.flow.internal.v0.models.AccountSummary;
20800
20957
  export declare type AccountTransactionsExportRequest = io.flow.internal.v0.models.AccountTransactionsExportRequest;
20801
20958
  export declare type AccountType = io.flow.internal.v0.enums.AccountType;
20802
20959
  export declare type AccountUpserted = io.flow.internal.v0.models.AccountUpserted;
@@ -20920,11 +21077,7 @@ export declare type BillingStatementBatchStatementDeleted = io.flow.internal.v0.
20920
21077
  export declare type BillingStatementBatchStatementUpserted = io.flow.internal.v0.models.BillingStatementBatchStatementUpserted;
20921
21078
  export declare type BillingStatementBatchUpserted = io.flow.internal.v0.models.BillingStatementBatchUpserted;
20922
21079
  export declare type BillingStatementDeleted = io.flow.internal.v0.models.BillingStatementDeleted;
20923
- export declare type BillingStatementPendingReview = io.flow.internal.v0.models.BillingStatementPendingReview;
20924
21080
  export declare type BillingStatementReference = io.flow.internal.v0.models.BillingStatementReference;
20925
- export declare type BillingStatementReview = io.flow.internal.v0.models.BillingStatementReview;
20926
- export declare type BillingStatementReviewForm = io.flow.internal.v0.models.BillingStatementReviewForm;
20927
- export declare type BillingStatementReviewStatus = io.flow.internal.v0.enums.BillingStatementReviewStatus;
20928
21081
  export declare type BillingStatementSummary = io.flow.internal.v0.models.BillingStatementSummary;
20929
21082
  export declare type BillingStatementTotals = io.flow.internal.v0.models.BillingStatementTotals;
20930
21083
  export declare type BillingStatementUpserted = io.flow.internal.v0.models.BillingStatementUpserted;
@@ -21005,7 +21158,9 @@ export declare type CatalogItemRegionAvailabilities = io.flow.internal.v0.models
21005
21158
  export declare type CatalogItemRegionAvailabilitiesData = io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesData;
21006
21159
  export declare type CatalogItemRegionAvailabilitiesPublished = io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished;
21007
21160
  export declare type CatalogSettings = io.flow.internal.v0.models.CatalogSettings;
21161
+ export declare type CatalogSettingsDeleted = io.flow.internal.v0.models.CatalogSettingsDeleted;
21008
21162
  export declare type CatalogSettingsPutForm = io.flow.internal.v0.models.CatalogSettingsPutForm;
21163
+ export declare type CatalogSettingsUpserted = io.flow.internal.v0.models.CatalogSettingsUpserted;
21009
21164
  export declare type CenterDefaults = io.flow.internal.v0.models.CenterDefaults;
21010
21165
  export declare type CenterDefaultsForm = io.flow.internal.v0.models.CenterDefaultsForm;
21011
21166
  export declare type CenterQueryBuilder = io.flow.internal.v0.models.CenterQueryBuilder;
@@ -21858,6 +22013,9 @@ export declare type FileConfirmation = io.flow.internal.v0.models.FileConfirmati
21858
22013
  export declare type FileConfirmationForm = io.flow.internal.v0.models.FileConfirmationForm;
21859
22014
  export declare type FileMetadata = io.flow.internal.v0.models.FileMetadata;
21860
22015
  export declare type FileMetadataCounts = io.flow.internal.v0.models.FileMetadataCounts;
22016
+ export declare type FinanceBankAccount = io.flow.internal.v0.models.FinanceBankAccount;
22017
+ export declare type FinanceBankAccountOwner = io.flow.internal.v0.models.FinanceBankAccountOwner;
22018
+ export declare type FinanceBankPayment = io.flow.internal.v0.models.FinanceBankPayment;
21861
22019
  export declare type FinancialMerchantCategory = io.flow.internal.v0.models.FinancialMerchantCategory;
21862
22020
  export declare type FinancialReportingResponsibleParty = io.flow.internal.v0.enums.FinancialReportingResponsibleParty;
21863
22021
  export declare type FinancialReportingStatement = io.flow.internal.v0.models.FinancialReportingStatement;
@@ -21918,6 +22076,7 @@ export declare type FulfillmentActionForm = io.flow.internal.v0.models.Fulfillme
21918
22076
  export declare type FulfillmentCancel = io.flow.internal.v0.models.FulfillmentCancel;
21919
22077
  export declare type FulfillmentInternalExperienceReference = io.flow.internal.v0.models.FulfillmentInternalExperienceReference;
21920
22078
  export declare type FulfillmentShipmentTracking = io.flow.internal.v0.models.FulfillmentShipmentTracking;
22079
+ export declare type FulfillmentSnapshot = io.flow.internal.v0.models.FulfillmentSnapshot;
21921
22080
  export declare type FxFee = io.flow.internal.v0.models.FxFee;
21922
22081
  export declare type FxRevenueRecognition = io.flow.internal.v0.models.FxRevenueRecognition;
21923
22082
  export declare type FxRevenueRecognitionAccount = io.flow.internal.v0.models.FxRevenueRecognitionAccount;
@@ -21926,7 +22085,9 @@ export declare type FxRevenueRecognitionOrder = io.flow.internal.v0.models.FxRev
21926
22085
  export declare type FxRevenueRecognitionOrganization = io.flow.internal.v0.models.FxRevenueRecognitionOrganization;
21927
22086
  export declare type FxRevenueRecognitionRate = io.flow.internal.v0.models.FxRevenueRecognitionRate;
21928
22087
  export declare type FxRevenueRecognitionSource = io.flow.internal.v0.models.FxRevenueRecognitionSource;
21929
- export declare type GenerateLoad = io.flow.internal.v0.models.GenerateLoad;
22088
+ export declare type GenerateLoad = io.flow.internal.v0.unions.GenerateLoad;
22089
+ export declare type GenerateLoadMultipleOrgs = io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
22090
+ export declare type GenerateLoadSingleOrg = io.flow.internal.v0.models.GenerateLoadSingleOrg;
21930
22091
  export declare type GiftCard = io.flow.internal.v0.models.GiftCard;
21931
22092
  export declare type GiftCardAuthorizationError = io.flow.internal.v0.models.GiftCardAuthorizationError;
21932
22093
  export declare type GiftCardForm = io.flow.internal.v0.models.GiftCardForm;
@@ -21939,6 +22100,8 @@ export declare type GoogleLinker = io.flow.internal.v0.models.GoogleLinker;
21939
22100
  export declare type GoogleShoppingAccountParameters = io.flow.internal.v0.models.GoogleShoppingAccountParameters;
21940
22101
  export declare type GoogleShoppingSetting = io.flow.internal.v0.models.GoogleShoppingSetting;
21941
22102
  export declare type GoogleTagManager = io.flow.internal.v0.models.GoogleTagManager;
22103
+ export declare type HarmonizationClassificationStatisticsData = io.flow.internal.v0.models.HarmonizationClassificationStatisticsData;
22104
+ export declare type HarmonizationClassificationStatisticsPublished = io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished;
21942
22105
  export declare type HarmonizationCodesImport = io.flow.internal.v0.models.HarmonizationCodesImport;
21943
22106
  export declare type HarmonizationColumnSetting = io.flow.internal.v0.models.HarmonizationColumnSetting;
21944
22107
  export declare type HarmonizationItemClassification = io.flow.internal.v0.models.HarmonizationItemClassification;
@@ -22149,6 +22312,7 @@ export declare type LocalizedPriceBookItemData = io.flow.internal.v0.models.Loca
22149
22312
  export declare type LocalizedPriceBookItemDeleted = io.flow.internal.v0.models.LocalizedPriceBookItemDeleted;
22150
22313
  export declare type LocalizedPriceBookItemUpserted = io.flow.internal.v0.models.LocalizedPriceBookItemUpserted;
22151
22314
  export declare type Location = io.flow.internal.v0.models.Location;
22315
+ export declare type LogisticsCenterCheck = io.flow.internal.v0.models.LogisticsCenterCheck;
22152
22316
  export declare type Logo = io.flow.internal.v0.models.Logo;
22153
22317
  export declare type LoyaltyProgram = io.flow.internal.v0.models.LoyaltyProgram;
22154
22318
  export declare type LoyaltyProgramMessage = io.flow.internal.v0.models.LoyaltyProgramMessage;
@@ -22332,6 +22496,9 @@ export declare type OrganizationRestrictionStatus = io.flow.internal.v0.models.O
22332
22496
  export declare type OrganizationRestrictionStatusNote = io.flow.internal.v0.models.OrganizationRestrictionStatusNote;
22333
22497
  export declare type OrganizationSettings = io.flow.internal.v0.models.OrganizationSettings;
22334
22498
  export declare type OrganizationSettingsForm = io.flow.internal.v0.models.OrganizationSettingsForm;
22499
+ export declare type OrganizationStatusChange = io.flow.internal.v0.models.OrganizationStatusChange;
22500
+ export declare type OrganizationStatusChangeDeleted = io.flow.internal.v0.models.OrganizationStatusChangeDeleted;
22501
+ export declare type OrganizationStatusChangeUpserted = io.flow.internal.v0.models.OrganizationStatusChangeUpserted;
22335
22502
  export declare type OutputStyle = io.flow.internal.v0.enums.OutputStyle;
22336
22503
  export declare type Owner = io.flow.internal.v0.enums.Owner;
22337
22504
  export declare type Partner = io.flow.internal.v0.models.Partner;
@@ -22631,6 +22798,7 @@ export declare type ShopifyOrderContent = io.flow.internal.v0.models.ShopifyOrde
22631
22798
  export declare type ShopifyOrderDestinationForm = io.flow.internal.v0.models.ShopifyOrderDestinationForm;
22632
22799
  export declare type ShopifyOrderDetail = io.flow.internal.v0.models.ShopifyOrderDetail;
22633
22800
  export declare type ShopifyOrderDiscountContent = io.flow.internal.v0.models.ShopifyOrderDiscountContent;
22801
+ export declare type ShopifyOrderFulfillmentsSnapshot = io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshot;
22634
22802
  export declare type ShopifyOrderInventoryCheck = io.flow.internal.v0.models.ShopifyOrderInventoryCheck;
22635
22803
  export declare type ShopifyOrderLineAttribute = io.flow.internal.v0.models.ShopifyOrderLineAttribute;
22636
22804
  export declare type ShopifyOrderLineContent = io.flow.internal.v0.models.ShopifyOrderLineContent;
@@ -22763,9 +22931,7 @@ export declare type TaxTransactionUpserted = io.flow.internal.v0.models.TaxTrans
22763
22931
  export declare type TaxonomyCategory = io.flow.internal.v0.models.TaxonomyCategory;
22764
22932
  export declare type TaxonomyNode = io.flow.internal.v0.models.TaxonomyNode;
22765
22933
  export declare type Test = io.flow.internal.v0.models.Test;
22766
- export declare type TestDeleted = io.flow.internal.v0.models.TestDeleted;
22767
22934
  export declare type TestForm = io.flow.internal.v0.models.TestForm;
22768
- export declare type TestUpserted = io.flow.internal.v0.models.TestUpserted;
22769
22935
  export declare type ThirdPartyLogisticsPartner = io.flow.internal.v0.models.ThirdPartyLogisticsPartner;
22770
22936
  export declare type ThirdPartyLogisticsPickUpTimeWindow = io.flow.internal.v0.models.ThirdPartyLogisticsPickUpTimeWindow;
22771
22937
  export declare type TieredFee = io.flow.internal.v0.models.TieredFee;