@flowio/api-prop-types 10.16.86 → 10.16.88
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api.d.ts +2289 -340
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +2289 -340
- package/src/api.js +2512 -300
package/src/api.d.ts
CHANGED
|
@@ -170,6 +170,8 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
170
170
|
type DisputePaymentMethodDetailsType = 'card' | 'klarna' | 'paypal';
|
|
171
171
|
type DisputeReason = 'bank_cannot_process' | 'check_returned' | 'credit_not_processed' | 'customer_initiated' | 'debit_not_authorized' | 'duplicate' | 'fraudulent' | 'general' | 'incorrect_account_details' | 'insufficient_funds' | 'product_not_received' | 'product_unacceptable' | 'subscription_canceled' | 'unrecognized';
|
|
172
172
|
type DisputeStatus = 'warning_needs_response' | 'warning_under_review' | 'warning_closed' | 'needs_response' | 'under_review' | 'won' | 'lost';
|
|
173
|
+
type EarlyFraudWarningEventType = 'radar.early_fraud_warning';
|
|
174
|
+
type EarlyFraudWarningType = 'card_never_received' | 'fraudulent_card_application' | 'made_with_counterfeit_card' | 'made_with_lost_card' | 'made_with_stolen_card' | 'unauthorized_use_of_card' | 'misc';
|
|
173
175
|
type ErrorCode = 'invalid_number' | 'invalid_expiry_month' | 'invalid_expiry_year' | 'invalid_cvc' | 'invalid_swipe_data' | 'country_code_invalid' | 'email_invalid' | 'postal_code_invalid' | 'invalid_characters' | 'url_invalid' | 'invalid_charge_amount' | 'incorrect_number' | 'incorrect_address' | 'incorrect_cvc' | 'incorrect_zip' | 'card_declined' | 'expired_card' | 'missing' | 'processing_error' | 'account_closed' | 'amount_too_small' | 'amount_too_large' | 'api_key_expired' | 'authentication_required' | 'capture_charge_authorization_expired' | 'capture_unauthorized_payment' | 'card_decline_rate_limit_exceeded' | 'charge_already_captured' | 'charge_already_refunded' | 'charge_disputed' | 'charge_exceeds_source_limit' | 'charge_expired_for_capture' | 'charge_invalid_parameter' | 'charge_not_refundable' | 'insufficient_funds' | 'intent_invalid_state' | 'livemode_mismatch' | 'parameter_invalid_empty' | 'parameter_invalid_integer' | 'parameter_invalid_string_blank' | 'parameter_invalid_string_empty' | 'parameter_missing' | 'parameter_unknown' | 'parameters_exclusive' | 'payment_intent_action_required' | 'payment_intent_authentication_failure' | 'payment_intent_incompatible_payment_method' | 'payment_intent_payment_attempt_expired' | 'payment_intent_payment_attempt_failed' | 'payment_intent_unexpected_state' | 'payment_intent_invalid_parameter' | 'payment_method_billing_details_address_missing' | 'payment_method_customer_decline' | 'payment_method_currency_mismatch' | 'payment_method_invalid_parameter' | 'payment_method_invalid_parameter_testmode' | 'payment_method_not_available' | 'payment_method_provider_decline' | 'payment_method_provider_timeout' | 'payment_method_unactivated' | 'payment_method_unexpected_state' | 'payment_method_unsupported_type' | 'platform_api_key_expired' | 'refund_disputed_payment' | 'testmode_charges_only' | 'tls_version_unsupported' | 'setup_attempt_failed' | 'setup_intent_authentication_failure' | 'setup_intent_invalid_parameter' | 'setup_intent_setup_attempt_expired' | 'setup_intent_unexpected_state';
|
|
174
176
|
type ErrorType = 'api_connection_error' | 'api_error' | 'authentication_error' | 'card_error' | 'idempotency_error' | 'invalid_request_error' | 'rate_limit_error' | 'validation_error';
|
|
175
177
|
type EventType = 'charge.captured' | 'charge.failed' | 'charge.pending' | 'charge.refunded' | 'charge.expired' | 'charge.succeeded' | 'charge.updated' | 'charge.refund.updated' | 'charge.dispute.closed' | 'charge.dispute.created' | 'charge.dispute.funds_reinstated' | 'charge.dispute.funds_withdrawn' | 'charge.dispute.updated' | 'payment_intent.created' | 'payment_intent.amount_capturable_updated' | 'payment_intent.payment_failed' | 'payment_intent.succeeded' | 'payment_intent.requires_action' | 'payment_intent.canceled' | 'payment_intent.processing' | 'source.canceled' | 'source.chargeable' | 'source.failed';
|
|
@@ -1228,6 +1230,17 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
1228
1230
|
readonly 'previous_attributes'?: any/*object*/;
|
|
1229
1231
|
}
|
|
1230
1232
|
|
|
1233
|
+
interface StripeEarlyFraudWarningEvent {
|
|
1234
|
+
readonly 'id': string;
|
|
1235
|
+
readonly 'object': io.flow.stripe.v0.enums.EarlyFraudWarningEventType;
|
|
1236
|
+
readonly 'actionable': boolean;
|
|
1237
|
+
readonly 'charge': string;
|
|
1238
|
+
readonly 'created': number;
|
|
1239
|
+
readonly 'fraud_type': io.flow.stripe.v0.enums.EarlyFraudWarningType;
|
|
1240
|
+
readonly 'livemode': boolean;
|
|
1241
|
+
readonly 'payment_intent'?: string;
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1231
1244
|
interface StripeError {
|
|
1232
1245
|
readonly 'type': io.flow.stripe.v0.enums.ErrorType;
|
|
1233
1246
|
readonly 'charge'?: string;
|
|
@@ -2324,123 +2337,2295 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
2324
2337
|
}
|
|
2325
2338
|
}
|
|
2326
2339
|
|
|
2327
|
-
declare namespace io.flow.
|
|
2328
|
-
type
|
|
2340
|
+
declare namespace io.flow.order.price.v0.enums {
|
|
2341
|
+
type OrderPriceDetailComponentKey = 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge' | 'tip';
|
|
2342
|
+
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
2329
2343
|
}
|
|
2330
2344
|
|
|
2331
|
-
declare namespace io.flow.
|
|
2332
|
-
interface
|
|
2333
|
-
readonly '
|
|
2334
|
-
readonly '
|
|
2345
|
+
declare namespace io.flow.order.price.v0.models {
|
|
2346
|
+
interface OrderPriceDetail {
|
|
2347
|
+
readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailKey;
|
|
2348
|
+
readonly 'currency': string;
|
|
2349
|
+
readonly 'amount': number;
|
|
2350
|
+
readonly 'label': string;
|
|
2351
|
+
readonly 'base': io.flow.common.v0.models.Price;
|
|
2352
|
+
readonly 'components': io.flow.order.price.v0.models.OrderPriceDetailComponent[];
|
|
2353
|
+
readonly 'name'?: string;
|
|
2354
|
+
readonly 'rate'?: number;
|
|
2355
|
+
readonly 'accuracy'?: io.flow.price.v0.enums.PriceAccuracy;
|
|
2356
|
+
readonly 'rate_label'?: string;
|
|
2357
|
+
}
|
|
2358
|
+
|
|
2359
|
+
interface OrderPriceDetailComponent {
|
|
2360
|
+
readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailComponentKey;
|
|
2361
|
+
readonly 'currency': string;
|
|
2362
|
+
readonly 'amount': number;
|
|
2363
|
+
readonly 'label': string;
|
|
2364
|
+
readonly 'base': io.flow.common.v0.models.Price;
|
|
2365
|
+
readonly 'name'?: string;
|
|
2335
2366
|
}
|
|
2336
2367
|
}
|
|
2337
2368
|
|
|
2338
|
-
declare namespace io.flow.
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2369
|
+
declare namespace io.flow.common.v0.enums {
|
|
2370
|
+
type AttributeDataType = 'boolean' | 'integer' | 'decimal' | 'string' | 'json_array';
|
|
2371
|
+
type AvailabilityStatus = 'enabled' | 'disabled';
|
|
2372
|
+
type Calendar = 'weekdays' | 'everyday';
|
|
2373
|
+
type Capability = 'crossdock';
|
|
2374
|
+
type ChangeType = 'insert' | 'update' | 'delete';
|
|
2375
|
+
type CurrencyLabelFormatter = 'strip_trailing_zeros' | 'symbol_prefix' | 'symbol_suffix';
|
|
2376
|
+
type CurrencySymbolFormat = 'narrow' | 'primary';
|
|
2377
|
+
type DayOfWeek = 'sunday' | 'monday' | 'tuesday' | 'wednesday' | 'thursday' | 'friday' | 'saturday';
|
|
2378
|
+
type DeliveredDuty = 'paid' | 'unpaid';
|
|
2379
|
+
type DiscountTarget = 'item' | 'shipping';
|
|
2380
|
+
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
2381
|
+
type Environment = 'sandbox' | 'production';
|
|
2382
|
+
type ExceptionType = 'open' | 'closed';
|
|
2383
|
+
type GoodsSupply = 'export' | 'intra_community' | 'local';
|
|
2384
|
+
type HolidayCalendar = 'us_bank_holidays' | 'jewish_holidays';
|
|
2385
|
+
type IncludedLevyKey = 'duty' | 'vat' | 'vat_and_duty' | 'none';
|
|
2386
|
+
type Incoterm = 'EXW' | 'FCA' | 'CPT' | 'CIP' | 'DAT' | 'DAP' | 'DDP' | 'FAS' | 'FOB' | 'CFR' | 'CIF' | 'DAF' | 'DES' | 'DEQ' | 'DDU';
|
|
2387
|
+
type InputSpecificationType = 'text' | 'number';
|
|
2388
|
+
type MarginType = 'fixed' | 'percent';
|
|
2389
|
+
type MeasurementSystem = 'imperial' | 'metric';
|
|
2390
|
+
type MerchantOfRecord = 'flow' | 'organization';
|
|
2391
|
+
type OrderMerchantOfRecord = 'flow' | 'organization' | 'mixed';
|
|
2392
|
+
type OrganizationStatus = 'active' | 'inactive' | 'deactivated' | 'provisioned';
|
|
2393
|
+
type OrganizationType = 'standalone' | 'channel';
|
|
2394
|
+
type PriceBookStatus = 'draft' | 'published' | 'archived';
|
|
2395
|
+
type Role = 'admin' | 'member';
|
|
2396
|
+
type RoundingMethod = 'up' | 'down' | 'nearest';
|
|
2397
|
+
type RoundingType = 'pattern' | 'multiple';
|
|
2398
|
+
type ScheduleExceptionStatus = 'Open' | 'Closed';
|
|
2399
|
+
type SortDirection = 'ascending' | 'descending';
|
|
2400
|
+
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
2401
|
+
type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
|
|
2402
|
+
type UserStatus = 'pending' | 'active' | 'inactive';
|
|
2403
|
+
type ValueAddedService = 'Hazardous Material';
|
|
2404
|
+
type Visibility = 'public' | 'private';
|
|
2405
|
+
}
|
|
2406
|
+
|
|
2407
|
+
declare namespace io.flow.common.v0.models {
|
|
2408
|
+
interface Address {
|
|
2409
|
+
readonly 'text'?: string;
|
|
2410
|
+
readonly 'streets'?: string[];
|
|
2411
|
+
readonly 'street_number'?: string;
|
|
2412
|
+
readonly 'city'?: string;
|
|
2413
|
+
readonly 'province'?: string;
|
|
2414
|
+
readonly 'postal'?: string;
|
|
2415
|
+
readonly 'country'?: string;
|
|
2416
|
+
readonly 'latitude'?: string;
|
|
2417
|
+
readonly 'longitude'?: string;
|
|
2343
2418
|
}
|
|
2344
2419
|
|
|
2345
|
-
interface
|
|
2346
|
-
readonly '
|
|
2347
|
-
readonly '
|
|
2348
|
-
readonly '
|
|
2420
|
+
interface BillingAddress {
|
|
2421
|
+
readonly 'name'?: io.flow.common.v0.models.Name;
|
|
2422
|
+
readonly 'streets'?: string[];
|
|
2423
|
+
readonly 'city'?: string;
|
|
2424
|
+
readonly 'province'?: string;
|
|
2425
|
+
readonly 'postal'?: string;
|
|
2426
|
+
readonly 'country'?: string;
|
|
2427
|
+
readonly 'company'?: string;
|
|
2428
|
+
}
|
|
2429
|
+
|
|
2430
|
+
interface CatalogItemReference {
|
|
2431
|
+
readonly 'id': string;
|
|
2432
|
+
readonly 'number': string;
|
|
2349
2433
|
}
|
|
2350
2434
|
|
|
2351
|
-
interface
|
|
2435
|
+
interface CatalogItemSummary {
|
|
2436
|
+
readonly 'number': string;
|
|
2352
2437
|
readonly 'name': string;
|
|
2438
|
+
readonly 'attributes': Record<string, string>;
|
|
2353
2439
|
}
|
|
2354
2440
|
|
|
2355
|
-
interface
|
|
2441
|
+
interface ChannelReference {
|
|
2442
|
+
readonly 'id': string;
|
|
2443
|
+
}
|
|
2444
|
+
|
|
2445
|
+
interface CheckoutReference {
|
|
2446
|
+
readonly 'id': string;
|
|
2447
|
+
}
|
|
2448
|
+
|
|
2449
|
+
interface Contact {
|
|
2450
|
+
readonly 'name': io.flow.common.v0.models.Name;
|
|
2451
|
+
readonly 'company'?: string;
|
|
2452
|
+
readonly 'email'?: string;
|
|
2453
|
+
readonly 'phone'?: string;
|
|
2454
|
+
}
|
|
2455
|
+
|
|
2456
|
+
interface CustomerInvoice {
|
|
2457
|
+
readonly 'address'?: io.flow.common.v0.models.BillingAddress;
|
|
2458
|
+
}
|
|
2459
|
+
|
|
2460
|
+
interface CustomerReference {
|
|
2461
|
+
readonly 'number': string;
|
|
2462
|
+
}
|
|
2463
|
+
|
|
2464
|
+
interface DatetimeRange {
|
|
2465
|
+
readonly 'from': string;
|
|
2466
|
+
readonly 'to': string;
|
|
2467
|
+
}
|
|
2468
|
+
|
|
2469
|
+
interface Dimension {
|
|
2470
|
+
readonly 'depth'?: io.flow.common.v0.models.Measurement;
|
|
2471
|
+
readonly 'diameter'?: io.flow.common.v0.models.Measurement;
|
|
2472
|
+
readonly 'length'?: io.flow.common.v0.models.Measurement;
|
|
2473
|
+
readonly 'weight'?: io.flow.common.v0.models.Measurement;
|
|
2474
|
+
readonly 'width'?: io.flow.common.v0.models.Measurement;
|
|
2475
|
+
}
|
|
2476
|
+
|
|
2477
|
+
interface Dimensions {
|
|
2478
|
+
readonly 'product'?: io.flow.common.v0.models.Dimension;
|
|
2479
|
+
readonly 'packaging'?: io.flow.common.v0.models.Dimension;
|
|
2480
|
+
}
|
|
2481
|
+
|
|
2482
|
+
interface DiscountForm {
|
|
2483
|
+
readonly 'offer': io.flow.common.v0.unions.DiscountOffer;
|
|
2484
|
+
readonly 'target'?: io.flow.common.v0.enums.DiscountTarget;
|
|
2485
|
+
readonly 'label'?: string;
|
|
2486
|
+
}
|
|
2487
|
+
|
|
2488
|
+
interface DiscountOfferFixed {
|
|
2489
|
+
readonly 'discriminator': 'discount_offer_fixed';
|
|
2490
|
+
readonly 'money': io.flow.common.v0.models.Money;
|
|
2491
|
+
}
|
|
2492
|
+
|
|
2493
|
+
interface DiscountOfferPercent {
|
|
2494
|
+
readonly 'discriminator': 'discount_offer_percent';
|
|
2495
|
+
readonly 'percent': number;
|
|
2496
|
+
}
|
|
2497
|
+
|
|
2498
|
+
interface DiscountsForm {
|
|
2499
|
+
readonly 'discounts': io.flow.common.v0.models.DiscountForm[];
|
|
2500
|
+
}
|
|
2501
|
+
|
|
2502
|
+
interface Duration {
|
|
2503
|
+
readonly 'unit': io.flow.common.v0.enums.UnitOfTime;
|
|
2504
|
+
readonly 'value': number;
|
|
2505
|
+
}
|
|
2506
|
+
|
|
2507
|
+
interface EntityIdentifier {
|
|
2508
|
+
readonly 'name': io.flow.common.v0.enums.EntityIdentifierType;
|
|
2509
|
+
readonly 'number': string;
|
|
2510
|
+
readonly 'issuing_country'?: string;
|
|
2511
|
+
}
|
|
2512
|
+
|
|
2513
|
+
interface Exception {
|
|
2514
|
+
readonly 'type': io.flow.common.v0.enums.ExceptionType;
|
|
2515
|
+
readonly 'datetime_range': io.flow.common.v0.models.DatetimeRange;
|
|
2516
|
+
}
|
|
2517
|
+
|
|
2518
|
+
interface ExperienceSummary {
|
|
2356
2519
|
readonly 'id': string;
|
|
2520
|
+
readonly 'key': string;
|
|
2357
2521
|
readonly 'name': string;
|
|
2522
|
+
readonly 'country'?: string;
|
|
2523
|
+
readonly 'currency'?: string;
|
|
2524
|
+
readonly 'language'?: string;
|
|
2358
2525
|
}
|
|
2359
2526
|
|
|
2360
|
-
interface
|
|
2527
|
+
interface IncludedLevies {
|
|
2528
|
+
readonly 'key': io.flow.common.v0.enums.IncludedLevyKey;
|
|
2529
|
+
readonly 'label': string;
|
|
2530
|
+
}
|
|
2531
|
+
|
|
2532
|
+
interface InputForm {
|
|
2533
|
+
readonly 'values'?: Record<string, string>;
|
|
2534
|
+
}
|
|
2535
|
+
|
|
2536
|
+
interface InputFormSpecification {
|
|
2537
|
+
readonly 'inputs'?: io.flow.common.v0.models.InputSpecification[];
|
|
2538
|
+
readonly 'limitations'?: io.flow.common.v0.models.InputSpecificationLimitations;
|
|
2539
|
+
}
|
|
2540
|
+
|
|
2541
|
+
interface InputSpecification {
|
|
2542
|
+
readonly 'type': io.flow.common.v0.enums.InputSpecificationType;
|
|
2361
2543
|
readonly 'name': string;
|
|
2544
|
+
readonly 'display_text'?: string;
|
|
2362
2545
|
}
|
|
2363
|
-
}
|
|
2364
2546
|
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2547
|
+
interface InputSpecificationLimitationMax {
|
|
2548
|
+
readonly 'discriminator': 'input_specification_limitation_max';
|
|
2549
|
+
readonly 'max': number;
|
|
2550
|
+
}
|
|
2368
2551
|
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
type ApplePayMerchantCapability = 'supports3DS' | 'supportsCredit' | 'supportsDebit' | 'supportsEMV';
|
|
2373
|
-
type ApplePayShippingType = 'shipping' | 'delivery' | 'storePickup' | 'servicePickup';
|
|
2374
|
-
type ApplePaySupportedNetworks = 'amex' | 'chinaUnionPay' | 'discover' | 'jcb' | 'masterCard' | 'privateLabel' | 'visa';
|
|
2375
|
-
}
|
|
2552
|
+
interface InputSpecificationLimitations {
|
|
2553
|
+
readonly 'limitations'?: io.flow.common.v0.unions.InputSpecificationLimitation[];
|
|
2554
|
+
}
|
|
2376
2555
|
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
2556
|
+
interface ItemReference {
|
|
2557
|
+
readonly 'number': string;
|
|
2558
|
+
}
|
|
2559
|
+
|
|
2560
|
+
interface LineItem {
|
|
2561
|
+
readonly 'number': string;
|
|
2562
|
+
readonly 'quantity': number;
|
|
2563
|
+
readonly 'price': io.flow.common.v0.models.Money;
|
|
2564
|
+
readonly 'attributes': Record<string, string>;
|
|
2565
|
+
readonly 'center'?: string;
|
|
2566
|
+
readonly 'discount'?: io.flow.common.v0.models.Money;
|
|
2567
|
+
}
|
|
2568
|
+
|
|
2569
|
+
interface LineItemAttributesForm {
|
|
2570
|
+
readonly 'attributes': Record<string, string>;
|
|
2571
|
+
}
|
|
2572
|
+
|
|
2573
|
+
interface LineItemForm {
|
|
2574
|
+
readonly 'number': string;
|
|
2575
|
+
readonly 'quantity': number;
|
|
2576
|
+
readonly 'shipment_estimate'?: io.flow.common.v0.models.DatetimeRange;
|
|
2577
|
+
readonly 'price'?: io.flow.common.v0.models.Money;
|
|
2578
|
+
readonly 'attributes'?: Record<string, string>;
|
|
2579
|
+
readonly 'center'?: string;
|
|
2580
|
+
readonly 'discount'?: io.flow.common.v0.models.Money;
|
|
2581
|
+
readonly 'discounts'?: io.flow.common.v0.models.DiscountsForm;
|
|
2582
|
+
}
|
|
2583
|
+
|
|
2584
|
+
interface LineItemQuantityForm {
|
|
2585
|
+
readonly 'quantity': number;
|
|
2586
|
+
}
|
|
2587
|
+
|
|
2588
|
+
interface LogoImageSetStatic {
|
|
2589
|
+
readonly 'discriminator': 'static';
|
|
2590
|
+
readonly 'small'?: io.flow.common.v0.models.LogoImageStatic;
|
|
2591
|
+
readonly 'medium': io.flow.common.v0.models.LogoImageStatic;
|
|
2592
|
+
readonly 'large'?: io.flow.common.v0.models.LogoImageStatic;
|
|
2593
|
+
}
|
|
2594
|
+
|
|
2595
|
+
interface LogoImageStatic {
|
|
2596
|
+
readonly 'url': string;
|
|
2597
|
+
readonly 'width': number;
|
|
2598
|
+
readonly 'height': number;
|
|
2599
|
+
}
|
|
2600
|
+
|
|
2601
|
+
interface LogoImageSvg {
|
|
2602
|
+
readonly 'discriminator': 'svg';
|
|
2603
|
+
readonly 'url': string;
|
|
2604
|
+
}
|
|
2605
|
+
|
|
2606
|
+
interface Margin {
|
|
2607
|
+
readonly 'type': io.flow.common.v0.enums.MarginType;
|
|
2608
|
+
readonly 'value': number;
|
|
2609
|
+
}
|
|
2610
|
+
|
|
2611
|
+
interface Measurement {
|
|
2612
|
+
readonly 'value': string;
|
|
2613
|
+
readonly 'units': io.flow.common.v0.enums.UnitOfMeasurement;
|
|
2614
|
+
}
|
|
2615
|
+
|
|
2616
|
+
interface MerchantOfRecordEntity {
|
|
2617
|
+
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
2618
|
+
readonly 'name': string;
|
|
2619
|
+
readonly 'vat'?: io.flow.common.v0.models.MerchantOfRecordEntityRegistration;
|
|
2620
|
+
readonly 'identifiers'?: io.flow.common.v0.models.EntityIdentifier[];
|
|
2621
|
+
readonly 'streets': string[];
|
|
2622
|
+
readonly 'city': string;
|
|
2623
|
+
readonly 'province'?: string;
|
|
2624
|
+
readonly 'postal'?: string;
|
|
2625
|
+
readonly 'country': string;
|
|
2626
|
+
readonly 'phone'?: string;
|
|
2627
|
+
readonly 'email'?: string;
|
|
2628
|
+
}
|
|
2629
|
+
|
|
2630
|
+
interface MerchantOfRecordEntityRegistration {
|
|
2631
|
+
readonly 'number': string;
|
|
2632
|
+
readonly 'country': string;
|
|
2633
|
+
}
|
|
2634
|
+
|
|
2635
|
+
interface Money {
|
|
2636
|
+
readonly 'amount': number;
|
|
2637
|
+
readonly 'currency': string;
|
|
2638
|
+
}
|
|
2639
|
+
|
|
2640
|
+
interface MoneyWithBase {
|
|
2641
|
+
readonly 'currency': string;
|
|
2642
|
+
readonly 'amount': number;
|
|
2643
|
+
readonly 'base': io.flow.common.v0.models.Money;
|
|
2644
|
+
}
|
|
2645
|
+
|
|
2646
|
+
interface MoneyWithOptionalBase {
|
|
2647
|
+
readonly 'currency': string;
|
|
2648
|
+
readonly 'amount': number;
|
|
2649
|
+
readonly 'base'?: io.flow.common.v0.models.Money;
|
|
2650
|
+
}
|
|
2651
|
+
|
|
2652
|
+
interface Name {
|
|
2653
|
+
readonly 'first'?: string;
|
|
2654
|
+
readonly 'last'?: string;
|
|
2655
|
+
}
|
|
2656
|
+
|
|
2657
|
+
interface OrderCustomer {
|
|
2658
|
+
readonly 'name': io.flow.common.v0.models.Name;
|
|
2659
|
+
readonly 'number'?: string;
|
|
2660
|
+
readonly 'phone'?: string;
|
|
2661
|
+
readonly 'email'?: string;
|
|
2662
|
+
readonly 'address'?: io.flow.common.v0.models.BillingAddress;
|
|
2663
|
+
readonly 'invoice'?: io.flow.common.v0.models.CustomerInvoice;
|
|
2664
|
+
}
|
|
2665
|
+
|
|
2666
|
+
interface OrderCustomerForm {
|
|
2667
|
+
readonly 'name'?: io.flow.common.v0.models.Name;
|
|
2668
|
+
readonly 'number'?: string;
|
|
2669
|
+
readonly 'phone'?: string;
|
|
2670
|
+
readonly 'email'?: string;
|
|
2671
|
+
readonly 'address'?: io.flow.common.v0.models.BillingAddress;
|
|
2672
|
+
readonly 'invoice'?: io.flow.common.v0.models.CustomerInvoice;
|
|
2673
|
+
}
|
|
2674
|
+
|
|
2675
|
+
interface Organization {
|
|
2676
|
+
readonly 'discriminator': 'organization';
|
|
2677
|
+
readonly 'id': string;
|
|
2678
|
+
readonly 'name': string;
|
|
2679
|
+
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
2680
|
+
readonly 'parent'?: io.flow.common.v0.models.OrganizationReference;
|
|
2681
|
+
readonly 'defaults'?: io.flow.common.v0.models.OrganizationDefaults;
|
|
2682
|
+
readonly 'created_at'?: string;
|
|
2683
|
+
readonly 'status'?: io.flow.common.v0.enums.OrganizationStatus;
|
|
2684
|
+
readonly 'type'?: io.flow.common.v0.enums.OrganizationType;
|
|
2685
|
+
}
|
|
2686
|
+
|
|
2687
|
+
interface OrganizationDefaults {
|
|
2688
|
+
readonly 'country': string;
|
|
2689
|
+
readonly 'base_currency': string;
|
|
2690
|
+
readonly 'language': string;
|
|
2691
|
+
readonly 'locale': string;
|
|
2692
|
+
readonly 'timezone': string;
|
|
2693
|
+
}
|
|
2694
|
+
|
|
2695
|
+
interface OrganizationReference {
|
|
2696
|
+
readonly 'discriminator': 'organization_reference';
|
|
2697
|
+
readonly 'id': string;
|
|
2698
|
+
}
|
|
2699
|
+
|
|
2700
|
+
interface OrganizationSummary {
|
|
2701
|
+
readonly 'id': string;
|
|
2702
|
+
readonly 'name': string;
|
|
2703
|
+
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
2704
|
+
}
|
|
2705
|
+
|
|
2706
|
+
interface PartnerReference {
|
|
2707
|
+
readonly 'id': string;
|
|
2708
|
+
}
|
|
2709
|
+
|
|
2710
|
+
interface Price {
|
|
2711
|
+
readonly 'amount': number;
|
|
2712
|
+
readonly 'currency': string;
|
|
2713
|
+
readonly 'label': string;
|
|
2714
|
+
}
|
|
2715
|
+
|
|
2716
|
+
interface PriceForm {
|
|
2717
|
+
readonly 'amount': number;
|
|
2718
|
+
readonly 'currency': string;
|
|
2719
|
+
}
|
|
2720
|
+
|
|
2721
|
+
interface PriceSourceCatalog {
|
|
2722
|
+
readonly 'discriminator': 'catalog';
|
|
2723
|
+
readonly 'price': io.flow.common.v0.models.Money;
|
|
2724
|
+
}
|
|
2725
|
+
|
|
2726
|
+
interface PriceSourcePriceBook {
|
|
2727
|
+
readonly 'discriminator': 'price_book';
|
|
2728
|
+
readonly 'price': io.flow.common.v0.models.Money;
|
|
2729
|
+
readonly 'includes': io.flow.common.v0.models.IncludedLevies;
|
|
2730
|
+
readonly 'price_book_reference': io.flow.common.v0.models.PriceSourcePriceBookReference;
|
|
2731
|
+
}
|
|
2732
|
+
|
|
2733
|
+
interface PriceSourcePriceBookReference {
|
|
2734
|
+
readonly 'id': string;
|
|
2735
|
+
readonly 'key': string;
|
|
2736
|
+
}
|
|
2737
|
+
|
|
2738
|
+
interface PriceSourceProvided {
|
|
2739
|
+
readonly 'discriminator': 'provided';
|
|
2740
|
+
readonly 'price': io.flow.common.v0.models.Money;
|
|
2741
|
+
}
|
|
2742
|
+
|
|
2743
|
+
interface PriceWithBase {
|
|
2744
|
+
readonly 'currency': string;
|
|
2745
|
+
readonly 'amount': number;
|
|
2746
|
+
readonly 'label': string;
|
|
2747
|
+
readonly 'base'?: io.flow.common.v0.models.Price;
|
|
2748
|
+
}
|
|
2749
|
+
|
|
2750
|
+
interface RepeatDaily {
|
|
2751
|
+
readonly 'discriminator': 'repeat_daily';
|
|
2752
|
+
readonly 'interval': number;
|
|
2753
|
+
}
|
|
2754
|
+
|
|
2755
|
+
interface RepeatHourly {
|
|
2756
|
+
readonly 'discriminator': 'repeat_hourly';
|
|
2757
|
+
readonly 'interval': number;
|
|
2758
|
+
}
|
|
2759
|
+
|
|
2760
|
+
interface RepeatMonthly {
|
|
2761
|
+
readonly 'discriminator': 'repeat_monthly';
|
|
2762
|
+
readonly 'interval': number;
|
|
2763
|
+
readonly 'days': number[];
|
|
2764
|
+
}
|
|
2765
|
+
|
|
2766
|
+
interface RepeatWeekly {
|
|
2767
|
+
readonly 'discriminator': 'repeat_weekly';
|
|
2768
|
+
readonly 'interval': number;
|
|
2769
|
+
readonly 'days_of_week': io.flow.common.v0.enums.DayOfWeek[];
|
|
2770
|
+
}
|
|
2771
|
+
|
|
2772
|
+
interface Rounding {
|
|
2773
|
+
readonly 'type': io.flow.common.v0.enums.RoundingType;
|
|
2774
|
+
readonly 'method': io.flow.common.v0.enums.RoundingMethod;
|
|
2775
|
+
readonly 'value': number;
|
|
2776
|
+
}
|
|
2777
|
+
|
|
2778
|
+
interface Schedule {
|
|
2779
|
+
readonly 'calendar'?: io.flow.common.v0.enums.Calendar;
|
|
2780
|
+
readonly 'holiday': io.flow.common.v0.enums.HolidayCalendar;
|
|
2781
|
+
readonly 'exception': io.flow.common.v0.models.Exception[];
|
|
2782
|
+
readonly 'cutoff'?: string;
|
|
2783
|
+
readonly 'min_lead_time'?: number;
|
|
2784
|
+
readonly 'max_lead_time'?: number;
|
|
2785
|
+
}
|
|
2786
|
+
|
|
2787
|
+
interface SessionReference {
|
|
2788
|
+
readonly 'id': string;
|
|
2789
|
+
}
|
|
2790
|
+
|
|
2791
|
+
interface User {
|
|
2792
|
+
readonly 'discriminator': 'user';
|
|
2793
|
+
readonly 'id': string;
|
|
2794
|
+
readonly 'email'?: string;
|
|
2795
|
+
readonly 'name': io.flow.common.v0.models.Name;
|
|
2796
|
+
readonly 'status': io.flow.common.v0.enums.UserStatus;
|
|
2797
|
+
}
|
|
2798
|
+
|
|
2799
|
+
interface UserReference {
|
|
2800
|
+
readonly 'discriminator': 'user_reference';
|
|
2801
|
+
readonly 'id': string;
|
|
2802
|
+
}
|
|
2803
|
+
|
|
2804
|
+
interface Zone {
|
|
2805
|
+
readonly 'postals'?: string[];
|
|
2806
|
+
readonly 'provinces'?: string[];
|
|
2807
|
+
readonly 'country': string;
|
|
2808
|
+
}
|
|
2809
|
+
}
|
|
2810
|
+
|
|
2811
|
+
declare namespace io.flow.common.v0.unions {
|
|
2812
|
+
type DiscountOffer = (io.flow.common.v0.models.DiscountOfferFixed | io.flow.common.v0.models.DiscountOfferPercent);
|
|
2813
|
+
type ExpandableOrganization = (io.flow.common.v0.models.Organization | io.flow.common.v0.models.OrganizationReference);
|
|
2814
|
+
type ExpandableUser = (io.flow.common.v0.models.User | io.flow.common.v0.models.UserReference);
|
|
2815
|
+
type InputSpecificationLimitation = (io.flow.common.v0.models.InputSpecificationLimitationMax);
|
|
2816
|
+
type LogoImage = (io.flow.common.v0.models.LogoImageSvg | io.flow.common.v0.models.LogoImageSetStatic);
|
|
2817
|
+
type PriceSource = (io.flow.common.v0.models.PriceSourcePriceBook | io.flow.common.v0.models.PriceSourceCatalog | io.flow.common.v0.models.PriceSourceProvided);
|
|
2818
|
+
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);
|
|
2819
|
+
}
|
|
2820
|
+
|
|
2821
|
+
declare namespace io.flow.error.v0.enums {
|
|
2822
|
+
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
2823
|
+
}
|
|
2824
|
+
|
|
2825
|
+
declare namespace io.flow.error.v0.models {
|
|
2826
|
+
interface GenericError {
|
|
2827
|
+
readonly 'code': io.flow.error.v0.enums.GenericErrorCode;
|
|
2828
|
+
readonly 'messages': string[];
|
|
2829
|
+
}
|
|
2830
|
+
}
|
|
2831
|
+
|
|
2832
|
+
declare namespace io.flow.price.v0.enums {
|
|
2833
|
+
type LevyComponent = 'goods' | 'duty' | 'insurance' | 'freight' | 'vat';
|
|
2834
|
+
type LevyStrategy = 'minimum' | 'average' | 'maximum';
|
|
2835
|
+
type PriceAccuracy = 'calculated' | 'estimated_from_partial_destination';
|
|
2836
|
+
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';
|
|
2837
|
+
type PriceDetailKey = 'item_price' | 'margins' | 'vat' | 'duty' | 'rounding' | 'adjustment';
|
|
2838
|
+
type PricingLevySetting = 'included' | 'displayed' | 'ignored';
|
|
2839
|
+
}
|
|
2840
|
+
|
|
2841
|
+
declare namespace io.flow.price.v0.models {
|
|
2842
|
+
interface CurrencyFormat {
|
|
2843
|
+
readonly 'symbol': io.flow.common.v0.enums.CurrencySymbolFormat;
|
|
2844
|
+
readonly 'label_formatters': io.flow.common.v0.enums.CurrencyLabelFormatter[];
|
|
2845
|
+
}
|
|
2846
|
+
|
|
2847
|
+
interface DeminimisPerItem {
|
|
2848
|
+
readonly 'discriminator': 'deminimis_per_item';
|
|
2849
|
+
readonly 'currency': string;
|
|
2850
|
+
readonly 'minimum'?: number;
|
|
2851
|
+
readonly 'maximum'?: number;
|
|
2852
|
+
}
|
|
2853
|
+
|
|
2854
|
+
interface DeminimisSimple {
|
|
2855
|
+
readonly 'discriminator': 'deminimis_simple';
|
|
2856
|
+
readonly 'value'?: number;
|
|
2857
|
+
readonly 'currency': string;
|
|
2858
|
+
readonly 'components': io.flow.price.v0.enums.LevyComponent[];
|
|
2859
|
+
readonly 'minimum'?: number;
|
|
2860
|
+
}
|
|
2861
|
+
|
|
2862
|
+
interface Duty {
|
|
2863
|
+
readonly 'rate': number;
|
|
2864
|
+
readonly 'components': io.flow.price.v0.enums.LevyComponent[];
|
|
2865
|
+
readonly 'deminimis'?: io.flow.price.v0.unions.Deminimis;
|
|
2866
|
+
readonly 'name'?: string;
|
|
2867
|
+
}
|
|
2868
|
+
|
|
2869
|
+
interface LocalPriceDetails {
|
|
2870
|
+
readonly 'base': io.flow.price.v0.models.PriceDetails;
|
|
2871
|
+
readonly 'local': io.flow.price.v0.models.PriceDetails;
|
|
2872
|
+
readonly 'discount'?: io.flow.price.v0.models.PriceDetail;
|
|
2873
|
+
readonly 'local_before_discount'?: io.flow.price.v0.models.PriceDetail;
|
|
2874
|
+
}
|
|
2875
|
+
|
|
2876
|
+
interface PriceBook {
|
|
2877
|
+
readonly 'id': string;
|
|
2878
|
+
readonly 'key': string;
|
|
2879
|
+
readonly 'currency': string;
|
|
2880
|
+
readonly 'name': string;
|
|
2881
|
+
readonly 'includes': io.flow.common.v0.models.IncludedLevies;
|
|
2882
|
+
readonly 'status': io.flow.common.v0.enums.PriceBookStatus;
|
|
2883
|
+
}
|
|
2884
|
+
|
|
2885
|
+
interface PriceBookForm {
|
|
2886
|
+
readonly 'currency': string;
|
|
2887
|
+
readonly 'name': string;
|
|
2888
|
+
readonly 'includes': io.flow.common.v0.enums.IncludedLevyKey;
|
|
2889
|
+
readonly 'status'?: io.flow.common.v0.enums.PriceBookStatus;
|
|
2890
|
+
}
|
|
2891
|
+
|
|
2892
|
+
interface PriceBookItem {
|
|
2893
|
+
readonly 'id': string;
|
|
2894
|
+
readonly 'key': string;
|
|
2895
|
+
readonly 'price_book': io.flow.price.v0.models.PriceBookReference;
|
|
2896
|
+
readonly 'price': io.flow.common.v0.models.Price;
|
|
2897
|
+
readonly 'item_number': string;
|
|
2898
|
+
readonly 'schedule': io.flow.price.v0.models.PriceBookItemSchedule;
|
|
2899
|
+
readonly 'item_attributes'?: Record<string, string>;
|
|
2900
|
+
}
|
|
2901
|
+
|
|
2902
|
+
interface PriceBookItemForm {
|
|
2903
|
+
readonly 'price_book_key': string;
|
|
2904
|
+
readonly 'item_number': string;
|
|
2905
|
+
readonly 'amount': number;
|
|
2906
|
+
readonly 'schedule'?: io.flow.price.v0.models.PriceBookItemSchedule;
|
|
2907
|
+
readonly 'item_attributes'?: Record<string, string>;
|
|
2908
|
+
}
|
|
2909
|
+
|
|
2910
|
+
interface PriceBookItemQueryForm {
|
|
2911
|
+
readonly 'price_book_key': string;
|
|
2912
|
+
readonly 'item_query': string;
|
|
2913
|
+
readonly 'amount': number;
|
|
2914
|
+
readonly 'schedule'?: io.flow.price.v0.models.PriceBookItemSchedule;
|
|
2915
|
+
readonly 'item_attributes'?: Record<string, string>;
|
|
2916
|
+
}
|
|
2917
|
+
|
|
2918
|
+
interface PriceBookItemSchedule {
|
|
2919
|
+
readonly 'starts_at': string;
|
|
2920
|
+
readonly 'ends_at'?: string;
|
|
2921
|
+
}
|
|
2922
|
+
|
|
2923
|
+
interface PriceBookReference {
|
|
2924
|
+
readonly 'id': string;
|
|
2925
|
+
readonly 'key': string;
|
|
2926
|
+
}
|
|
2927
|
+
|
|
2928
|
+
interface PriceCheck {
|
|
2929
|
+
readonly 'display': io.flow.price.v0.models.LocalPriceDetails;
|
|
2930
|
+
readonly 'final': io.flow.price.v0.models.LocalPriceDetails;
|
|
2931
|
+
}
|
|
2932
|
+
|
|
2933
|
+
interface PriceDetail {
|
|
2934
|
+
readonly 'key': io.flow.price.v0.enums.PriceDetailKey;
|
|
2935
|
+
readonly 'components': io.flow.price.v0.models.PriceDetailComponent[];
|
|
2936
|
+
readonly 'amount': number;
|
|
2937
|
+
readonly 'label': string;
|
|
2938
|
+
readonly 'name'?: string;
|
|
2939
|
+
readonly 'basis'?: number;
|
|
2940
|
+
}
|
|
2941
|
+
|
|
2942
|
+
interface PriceDetailComponent {
|
|
2943
|
+
readonly 'key': io.flow.price.v0.enums.PriceDetailComponentKey;
|
|
2944
|
+
readonly 'amount': number;
|
|
2945
|
+
readonly 'label': string;
|
|
2946
|
+
readonly 'name'?: string;
|
|
2947
|
+
}
|
|
2948
|
+
|
|
2949
|
+
interface PriceDetails {
|
|
2950
|
+
readonly 'currency': string;
|
|
2951
|
+
readonly 'item_price': io.flow.price.v0.models.PriceDetail;
|
|
2952
|
+
readonly 'margins': io.flow.price.v0.models.PriceDetail;
|
|
2953
|
+
readonly 'vat': io.flow.price.v0.models.PriceDetail;
|
|
2954
|
+
readonly 'duty': io.flow.price.v0.models.PriceDetail;
|
|
2955
|
+
readonly 'rounding': io.flow.price.v0.models.PriceDetail;
|
|
2956
|
+
readonly 'price': io.flow.common.v0.models.Price;
|
|
2957
|
+
readonly 'total': io.flow.common.v0.models.Price;
|
|
2958
|
+
readonly 'adjustment'?: io.flow.price.v0.models.PriceDetail;
|
|
2959
|
+
}
|
|
2960
|
+
|
|
2961
|
+
interface PriceEquation {
|
|
2962
|
+
readonly 'contracted_rate': number;
|
|
2963
|
+
readonly 'rate': number;
|
|
2964
|
+
readonly 'pricing': io.flow.price.v0.models.Pricing;
|
|
2965
|
+
readonly 'base_price': number;
|
|
2966
|
+
readonly 'discount': number;
|
|
2967
|
+
readonly 'fixed_margin': number;
|
|
2968
|
+
readonly 'percent_margin': number;
|
|
2969
|
+
readonly 'insurance': number;
|
|
2970
|
+
readonly 'freight': number;
|
|
2971
|
+
readonly 'duty'?: io.flow.price.v0.models.Duty;
|
|
2972
|
+
readonly 'tax'?: io.flow.price.v0.models.Tax;
|
|
2973
|
+
readonly 'percent_sales_margin': number;
|
|
2974
|
+
}
|
|
2975
|
+
|
|
2976
|
+
interface Pricing {
|
|
2977
|
+
readonly 'vat': io.flow.price.v0.enums.PricingLevySetting;
|
|
2978
|
+
readonly 'duty': io.flow.price.v0.enums.PricingLevySetting;
|
|
2979
|
+
readonly 'rounding'?: io.flow.common.v0.models.Rounding;
|
|
2980
|
+
}
|
|
2981
|
+
|
|
2982
|
+
interface Tax {
|
|
2983
|
+
readonly 'name': string;
|
|
2984
|
+
readonly 'rate': number;
|
|
2985
|
+
readonly 'components': io.flow.price.v0.enums.LevyComponent[];
|
|
2986
|
+
readonly 'deminimis'?: io.flow.price.v0.unions.Deminimis;
|
|
2987
|
+
}
|
|
2988
|
+
}
|
|
2989
|
+
|
|
2990
|
+
declare namespace io.flow.price.v0.unions {
|
|
2991
|
+
type Deminimis = (io.flow.price.v0.models.DeminimisSimple | io.flow.price.v0.models.DeminimisPerItem);
|
|
2992
|
+
}
|
|
2993
|
+
|
|
2994
|
+
declare namespace io.flow.reference.v0.enums {
|
|
2995
|
+
type PaymentMethodCapability = 'credit' | 'debit';
|
|
2996
|
+
type PaymentMethodType = 'card' | 'online' | 'offline';
|
|
2997
|
+
type PostalType = 'eircode' | 'pin' | 'postal' | 'zip';
|
|
2998
|
+
type ProvinceType = 'area' | 'city' | 'county' | 'department' | 'dependency' | 'district' | 'do_si' | 'emirate' | 'entity' | 'island' | 'municipality' | 'oblast' | 'outlying_area' | 'parish' | 'prefecture' | 'province' | 'state' | 'territory' | 'other';
|
|
2999
|
+
}
|
|
3000
|
+
|
|
3001
|
+
declare namespace io.flow.reference.v0.models {
|
|
3002
|
+
interface Carrier {
|
|
3003
|
+
readonly 'id': string;
|
|
3004
|
+
readonly 'name': string;
|
|
3005
|
+
readonly 'tracking_url': string;
|
|
3006
|
+
}
|
|
3007
|
+
|
|
3008
|
+
interface CarrierService {
|
|
3009
|
+
readonly 'id': string;
|
|
3010
|
+
readonly 'carrier': io.flow.reference.v0.models.Carrier;
|
|
3011
|
+
readonly 'name': string;
|
|
3012
|
+
}
|
|
3013
|
+
|
|
3014
|
+
interface Country {
|
|
3015
|
+
readonly 'name': string;
|
|
3016
|
+
readonly 'iso_3166_2': string;
|
|
3017
|
+
readonly 'iso_3166_3': string;
|
|
3018
|
+
readonly 'languages': string[];
|
|
3019
|
+
readonly 'measurement_system': string;
|
|
3020
|
+
readonly 'default_currency'?: string;
|
|
3021
|
+
readonly 'default_language'?: string;
|
|
3022
|
+
readonly 'timezones': string[];
|
|
3023
|
+
readonly 'default_delivered_duty'?: string;
|
|
3024
|
+
}
|
|
3025
|
+
|
|
3026
|
+
interface Currency {
|
|
3027
|
+
readonly 'name': string;
|
|
3028
|
+
readonly 'iso_4217_3': string;
|
|
3029
|
+
readonly 'number_decimals': number;
|
|
3030
|
+
readonly 'symbols'?: io.flow.reference.v0.models.CurrencySymbols;
|
|
3031
|
+
readonly 'default_locale'?: string;
|
|
3032
|
+
}
|
|
3033
|
+
|
|
3034
|
+
interface CurrencySymbols {
|
|
3035
|
+
readonly 'primary': string;
|
|
3036
|
+
readonly 'narrow'?: string;
|
|
3037
|
+
}
|
|
3038
|
+
|
|
3039
|
+
interface Language {
|
|
3040
|
+
readonly 'name': string;
|
|
3041
|
+
readonly 'iso_639_2': string;
|
|
3042
|
+
}
|
|
3043
|
+
|
|
3044
|
+
interface Locale {
|
|
3045
|
+
readonly 'id': string;
|
|
3046
|
+
readonly 'name': string;
|
|
3047
|
+
readonly 'country': string;
|
|
3048
|
+
readonly 'language': string;
|
|
3049
|
+
readonly 'numbers': io.flow.reference.v0.models.LocaleNumbers;
|
|
3050
|
+
}
|
|
3051
|
+
|
|
3052
|
+
interface LocaleNumbers {
|
|
3053
|
+
readonly 'decimal': string;
|
|
3054
|
+
readonly 'group': string;
|
|
3055
|
+
}
|
|
3056
|
+
|
|
3057
|
+
interface LocalizedTranslation {
|
|
3058
|
+
readonly 'locale': io.flow.reference.v0.models.Locale;
|
|
3059
|
+
readonly 'name': string;
|
|
3060
|
+
}
|
|
3061
|
+
|
|
3062
|
+
interface PaymentMethod {
|
|
3063
|
+
readonly 'id': string;
|
|
3064
|
+
readonly 'type': io.flow.reference.v0.enums.PaymentMethodType;
|
|
3065
|
+
readonly 'name': string;
|
|
3066
|
+
readonly 'images': io.flow.reference.v0.models.PaymentMethodImages;
|
|
3067
|
+
readonly 'regions': string[];
|
|
3068
|
+
readonly 'capabilities'?: io.flow.reference.v0.enums.PaymentMethodCapability[];
|
|
3069
|
+
}
|
|
3070
|
+
|
|
3071
|
+
interface PaymentMethodImage {
|
|
3072
|
+
readonly 'url': string;
|
|
3073
|
+
readonly 'width': number;
|
|
3074
|
+
readonly 'height': number;
|
|
3075
|
+
}
|
|
3076
|
+
|
|
3077
|
+
interface PaymentMethodImages {
|
|
3078
|
+
readonly 'small': io.flow.reference.v0.models.PaymentMethodImage;
|
|
3079
|
+
readonly 'medium': io.flow.reference.v0.models.PaymentMethodImage;
|
|
3080
|
+
readonly 'large': io.flow.reference.v0.models.PaymentMethodImage;
|
|
3081
|
+
}
|
|
3082
|
+
|
|
3083
|
+
interface Province {
|
|
3084
|
+
readonly 'id': string;
|
|
3085
|
+
readonly 'iso_3166_2': string;
|
|
3086
|
+
readonly 'name': string;
|
|
3087
|
+
readonly 'country': string;
|
|
3088
|
+
readonly 'province_type': io.flow.reference.v0.enums.ProvinceType;
|
|
3089
|
+
readonly 'translations'?: io.flow.reference.v0.models.LocalizedTranslation[];
|
|
3090
|
+
}
|
|
3091
|
+
|
|
3092
|
+
interface Region {
|
|
3093
|
+
readonly 'id': string;
|
|
3094
|
+
readonly 'name': string;
|
|
3095
|
+
readonly 'countries': string[];
|
|
3096
|
+
readonly 'currencies': string[];
|
|
3097
|
+
readonly 'languages': string[];
|
|
3098
|
+
readonly 'measurement_systems': string[];
|
|
3099
|
+
readonly 'timezones': string[];
|
|
3100
|
+
}
|
|
3101
|
+
|
|
3102
|
+
interface Timezone {
|
|
3103
|
+
readonly 'name': string;
|
|
3104
|
+
readonly 'description': string;
|
|
3105
|
+
readonly 'offset': number;
|
|
3106
|
+
}
|
|
3107
|
+
}
|
|
3108
|
+
|
|
3109
|
+
declare namespace io.flow.ben.test.internal.v0.models {
|
|
3110
|
+
interface GenerateLoadMultipleOrgs {
|
|
3111
|
+
readonly 'discriminator': 'generate_load_multiple_orgs';
|
|
3112
|
+
readonly 'organization_ids': string[];
|
|
3113
|
+
readonly 'num_events': number;
|
|
3114
|
+
}
|
|
3115
|
+
|
|
3116
|
+
interface GenerateLoadSingleOrg {
|
|
3117
|
+
readonly 'discriminator': 'generate_load_single_org';
|
|
3118
|
+
readonly 'organization_id': string;
|
|
3119
|
+
readonly 'num_events': number;
|
|
3120
|
+
}
|
|
3121
|
+
|
|
3122
|
+
interface Test {
|
|
3123
|
+
readonly 'id': string;
|
|
3124
|
+
readonly 'name': string;
|
|
3125
|
+
}
|
|
3126
|
+
|
|
3127
|
+
interface TestForm {
|
|
3128
|
+
readonly 'name': string;
|
|
3129
|
+
}
|
|
3130
|
+
}
|
|
3131
|
+
|
|
3132
|
+
declare namespace io.flow.ben.test.internal.v0.unions {
|
|
3133
|
+
type GenerateLoad = (io.flow.ben.test.internal.v0.models.GenerateLoadSingleOrg | io.flow.ben.test.internal.v0.models.GenerateLoadMultipleOrgs);
|
|
3134
|
+
}
|
|
3135
|
+
|
|
3136
|
+
declare namespace io.flow.fulfillment.v0.enums {
|
|
3137
|
+
type CenterCapability = 'international' | 'domestic' | 'crossdock' | 'commercial_invoice';
|
|
3138
|
+
type DeliveryOptionCostDetailComponentKey = 'ratecard_base_cost' | 'ratecard_ddp_fee' | 'ratecard_fuel_surcharge' | 'ratecard_oversized_shipment_fee' | 'ratecard_rural_shipment_fee' | 'ratecard_emergency_situation_surcharge_fee' | 'ratecard_peak_surcharge_fee' | 'ratecard_duties_taxes_paid_surcharge_fee' | 'center_commercial_invoice_fee' | 'center_inbound_carton_fee' | 'center_outbound_carton_fee';
|
|
3139
|
+
type DeliveryOptionCostDetailSource = 'center' | 'ratecard';
|
|
3140
|
+
type DeliveryWindowComponentSource = 'flow' | 'organization' | 'carrier' | 'center' | 'mixed';
|
|
3141
|
+
type DeliveryWindowLocation = 'center' | 'crossdock' | 'customer';
|
|
3142
|
+
type FulfillmentRouting = 'fulfilled_from_center' | 'fulfillment_service';
|
|
3143
|
+
type ItemAvailabilityStatus = 'available' | 'low' | 'out_of_stock';
|
|
3144
|
+
type LaneDirection = 'outbound' | 'return';
|
|
3145
|
+
type LanePreselectPreference = 'lowest_cost' | 'default_tier';
|
|
3146
|
+
type LaneStrategy = 'oldest' | 'fastest' | 'lowest_cost' | 'highest_priority';
|
|
3147
|
+
type PhysicalDeliverySpecialSerivce = 'cold_storage' | 'hazardous' | 'perishable';
|
|
3148
|
+
type PreferredServiceSelectionStrategy = 'calculated_rate' | 'flat_rate' | 'custom_rate';
|
|
3149
|
+
type QuoteErrorCode = 'generic_error' | 'items_not_available' | 'shipping_unavailable';
|
|
3150
|
+
type RatecardOwner = 'flow' | 'organization';
|
|
3151
|
+
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
3152
|
+
type ShippingConfigurationType = 'default' | 'variant';
|
|
3153
|
+
type Strategy = 'range' | 'from' | 'to';
|
|
3154
|
+
type SurchargeResponsibleParty = 'organization' | 'customer';
|
|
3155
|
+
type TierAvailability = 'always' | 'backup';
|
|
3156
|
+
type TierEstimateType = 'calculated' | 'custom';
|
|
3157
|
+
type TierStrategy = 'fastest' | 'lowest_cost';
|
|
3158
|
+
type ZeroAmountIndicator = 'zero' | 'free';
|
|
3159
|
+
}
|
|
3160
|
+
|
|
3161
|
+
declare namespace io.flow.fulfillment.v0.models {
|
|
3162
|
+
interface AmountMargin {
|
|
3163
|
+
readonly 'discriminator': 'amount_margin';
|
|
3164
|
+
readonly 'margin': io.flow.common.v0.models.Price;
|
|
3165
|
+
}
|
|
3166
|
+
|
|
3167
|
+
interface AmountMarginForm {
|
|
3168
|
+
readonly 'discriminator': 'amount_margin_form';
|
|
3169
|
+
readonly 'margin': io.flow.common.v0.models.Money;
|
|
3170
|
+
}
|
|
3171
|
+
|
|
3172
|
+
interface AtCost {
|
|
3173
|
+
readonly 'discriminator': 'at_cost';
|
|
3174
|
+
readonly 'ignore'?: string;
|
|
3175
|
+
}
|
|
3176
|
+
|
|
3177
|
+
interface AvailableService {
|
|
3178
|
+
readonly 'service': string;
|
|
3179
|
+
readonly 'scheduled_pickups'?: io.flow.fulfillment.v0.models.ScheduledPickup[];
|
|
3180
|
+
readonly 'lead_days'?: io.flow.fulfillment.v0.models.NumberRange;
|
|
3181
|
+
}
|
|
3182
|
+
|
|
3183
|
+
interface CarrierReference {
|
|
3184
|
+
readonly 'id': string;
|
|
3185
|
+
}
|
|
3186
|
+
|
|
3187
|
+
interface Center {
|
|
3188
|
+
readonly 'discriminator': 'center';
|
|
3189
|
+
readonly 'id': string;
|
|
3190
|
+
readonly 'key': string;
|
|
3191
|
+
readonly 'address': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3192
|
+
readonly 'packaging': io.flow.fulfillment.v0.models.Packaging[];
|
|
3193
|
+
readonly 'name': string;
|
|
3194
|
+
readonly 'services': io.flow.fulfillment.v0.models.AvailableService[];
|
|
3195
|
+
readonly 'schedule': io.flow.common.v0.models.Schedule;
|
|
3196
|
+
readonly 'timezone': string;
|
|
3197
|
+
readonly 'capabilities'?: io.flow.fulfillment.v0.enums.CenterCapability[];
|
|
3198
|
+
readonly 'partner_center'?: io.flow.fulfillment.v0.models.PartnerCenter;
|
|
3199
|
+
}
|
|
3200
|
+
|
|
3201
|
+
interface CenterForm {
|
|
3202
|
+
readonly 'address': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3203
|
+
readonly 'packaging': io.flow.fulfillment.v0.models.Packaging[];
|
|
3204
|
+
readonly 'name': string;
|
|
3205
|
+
readonly 'services': io.flow.fulfillment.v0.models.AvailableService[];
|
|
3206
|
+
readonly 'schedule': io.flow.common.v0.models.Schedule;
|
|
3207
|
+
readonly 'timezone'?: string;
|
|
3208
|
+
readonly 'key'?: string;
|
|
3209
|
+
readonly 'capabilities'?: io.flow.fulfillment.v0.enums.CenterCapability[];
|
|
3210
|
+
readonly 'partner_center_form'?: io.flow.fulfillment.v0.models.PartnerCenterForm;
|
|
3211
|
+
}
|
|
3212
|
+
|
|
3213
|
+
interface CenterQuery {
|
|
3214
|
+
readonly 'q': string;
|
|
3215
|
+
}
|
|
3216
|
+
|
|
3217
|
+
interface CenterReference {
|
|
3218
|
+
readonly 'discriminator': 'center_reference';
|
|
3219
|
+
readonly 'organization_id': string;
|
|
3220
|
+
readonly 'center_key': string;
|
|
3221
|
+
}
|
|
3222
|
+
|
|
3223
|
+
interface CenterSummary {
|
|
3224
|
+
readonly 'id': string;
|
|
3225
|
+
readonly 'key': string;
|
|
3226
|
+
readonly 'address'?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3227
|
+
}
|
|
3228
|
+
|
|
3229
|
+
interface CenterVersion {
|
|
3230
|
+
readonly 'id': string;
|
|
3231
|
+
readonly 'timestamp': string;
|
|
3232
|
+
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
3233
|
+
readonly 'center': io.flow.fulfillment.v0.models.Center;
|
|
3234
|
+
}
|
|
3235
|
+
|
|
3236
|
+
interface CommercialInvoiceFee {
|
|
3237
|
+
readonly 'discriminator': 'commercial_invoice_fee';
|
|
3238
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
3239
|
+
}
|
|
3240
|
+
|
|
3241
|
+
interface CountryAvailability {
|
|
3242
|
+
readonly 'status': io.flow.fulfillment.v0.enums.ItemAvailabilityStatus;
|
|
3243
|
+
readonly 'countries': string[];
|
|
3244
|
+
}
|
|
3245
|
+
|
|
3246
|
+
interface CountryShippingPricing {
|
|
3247
|
+
readonly 'pricing': io.flow.fulfillment.v0.models.ItemShippingPricing;
|
|
3248
|
+
readonly 'countries': string[];
|
|
3249
|
+
}
|
|
3250
|
+
|
|
3251
|
+
interface DeliveryItem {
|
|
3252
|
+
readonly 'id'?: string;
|
|
3253
|
+
readonly 'number': string;
|
|
3254
|
+
readonly 'quantity': number;
|
|
3255
|
+
readonly 'shipment_estimate'?: io.flow.common.v0.models.DatetimeRange;
|
|
3256
|
+
readonly 'price'?: io.flow.common.v0.models.MoneyWithOptionalBase;
|
|
3257
|
+
readonly 'attributes'?: Record<string, string>;
|
|
3258
|
+
readonly 'center'?: string;
|
|
3259
|
+
readonly 'line_number'?: number;
|
|
3260
|
+
}
|
|
3261
|
+
|
|
3262
|
+
interface DeliveryOption {
|
|
3263
|
+
readonly 'id': string;
|
|
3264
|
+
readonly 'cost': io.flow.fulfillment.v0.models.PriceWithBaseAndDetails;
|
|
3265
|
+
readonly 'delivered_duty': io.flow.common.v0.enums.DeliveredDuty;
|
|
3266
|
+
readonly 'price': io.flow.fulfillment.v0.models.PriceWithBaseAndDetails;
|
|
3267
|
+
readonly 'service': io.flow.fulfillment.v0.models.ServiceSummary;
|
|
3268
|
+
readonly 'tier': io.flow.fulfillment.v0.models.TierSummary;
|
|
3269
|
+
readonly 'window': io.flow.fulfillment.v0.models.DeliveryWindow;
|
|
3270
|
+
readonly 'rule_outcome'?: io.flow.fulfillment.v0.unions.TierRuleOutcome;
|
|
3271
|
+
readonly 'weight'?: io.flow.fulfillment.v0.models.OptionWeightEstimates;
|
|
3272
|
+
readonly 'send_to'?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3273
|
+
readonly 'surcharge'?: io.flow.fulfillment.v0.models.PriceWithBaseAndDetails;
|
|
3274
|
+
readonly 'ratecard_owner'?: io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
3275
|
+
}
|
|
3276
|
+
|
|
3277
|
+
interface DeliveryOptionCostComponent {
|
|
3278
|
+
readonly 'key': io.flow.fulfillment.v0.enums.DeliveryOptionCostDetailComponentKey;
|
|
3279
|
+
readonly 'currency': string;
|
|
3280
|
+
readonly 'amount': number;
|
|
3281
|
+
readonly 'label': string;
|
|
3282
|
+
readonly 'base'?: io.flow.common.v0.models.Price;
|
|
3283
|
+
}
|
|
3284
|
+
|
|
3285
|
+
interface DeliveryOptionCostDetail {
|
|
3286
|
+
readonly 'source': io.flow.fulfillment.v0.enums.DeliveryOptionCostDetailSource;
|
|
3287
|
+
readonly 'ratecard_id'?: string;
|
|
3288
|
+
readonly 'currency': string;
|
|
3289
|
+
readonly 'amount': number;
|
|
3290
|
+
readonly 'label': string;
|
|
3291
|
+
readonly 'base'?: io.flow.common.v0.models.Price;
|
|
3292
|
+
readonly 'components': io.flow.fulfillment.v0.models.DeliveryOptionCostComponent[];
|
|
3293
|
+
}
|
|
3294
|
+
|
|
3295
|
+
interface DeliveryOptionForm {
|
|
3296
|
+
readonly 'delivery': string;
|
|
3297
|
+
readonly 'items': io.flow.fulfillment.v0.models.QuoteLineItemForm[];
|
|
3298
|
+
readonly 'destination': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3299
|
+
}
|
|
3300
|
+
|
|
3301
|
+
interface DeliveryOptionReference {
|
|
3302
|
+
readonly 'id': string;
|
|
3303
|
+
}
|
|
3304
|
+
|
|
3305
|
+
interface DeliveryOptionSummary {
|
|
3306
|
+
readonly 'id': string;
|
|
3307
|
+
readonly 'cost': io.flow.common.v0.models.Price;
|
|
3308
|
+
readonly 'delivered_duty': io.flow.common.v0.enums.DeliveredDuty;
|
|
3309
|
+
readonly 'price': io.flow.common.v0.models.Price;
|
|
3310
|
+
readonly 'service': io.flow.fulfillment.v0.models.ServiceReference;
|
|
3311
|
+
readonly 'tier': io.flow.fulfillment.v0.models.TierReference;
|
|
3312
|
+
readonly 'window': io.flow.common.v0.models.DatetimeRange;
|
|
3313
|
+
}
|
|
3314
|
+
|
|
3315
|
+
interface DeliveryOptionVersion {
|
|
3316
|
+
readonly 'id': string;
|
|
3317
|
+
readonly 'timestamp': string;
|
|
3318
|
+
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
3319
|
+
readonly 'delivery_option': io.flow.fulfillment.v0.models.DeliveryOptionSummary;
|
|
3320
|
+
}
|
|
3321
|
+
|
|
3322
|
+
interface DeliverySummary {
|
|
3323
|
+
readonly 'id': string;
|
|
3324
|
+
readonly 'items': io.flow.common.v0.models.LineItemForm[];
|
|
3325
|
+
}
|
|
3326
|
+
|
|
3327
|
+
interface DeliveryVersion {
|
|
3328
|
+
readonly 'id': string;
|
|
3329
|
+
readonly 'timestamp': string;
|
|
3330
|
+
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
3331
|
+
readonly 'delivery': io.flow.fulfillment.v0.models.DeliverySummary;
|
|
3332
|
+
}
|
|
3333
|
+
|
|
3334
|
+
interface DeliveryWindow {
|
|
3335
|
+
readonly 'from': string;
|
|
3336
|
+
readonly 'to': string;
|
|
3337
|
+
readonly 'timezone'?: string;
|
|
3338
|
+
readonly 'label'?: string;
|
|
3339
|
+
readonly 'min_days'?: number;
|
|
3340
|
+
readonly 'max_days'?: number;
|
|
3341
|
+
}
|
|
3342
|
+
|
|
3343
|
+
interface DeliveryWindowComponent {
|
|
3344
|
+
readonly 'from': string;
|
|
3345
|
+
readonly 'to': string;
|
|
3346
|
+
readonly 'source': io.flow.fulfillment.v0.enums.DeliveryWindowComponentSource;
|
|
3347
|
+
}
|
|
3348
|
+
|
|
3349
|
+
interface DeliveryWindowComponents {
|
|
3350
|
+
readonly 'shipment_estimate': io.flow.fulfillment.v0.models.DeliveryWindowComponent;
|
|
3351
|
+
readonly 'transit_estimate': io.flow.fulfillment.v0.models.DeliveryWindowComponent;
|
|
3352
|
+
}
|
|
3353
|
+
|
|
3354
|
+
interface DeliveryWindowComponentsV2 {
|
|
3355
|
+
readonly 'processing_estimates': io.flow.fulfillment.v0.models.ProcessingEstimate[];
|
|
3356
|
+
readonly 'transit_estimates': io.flow.fulfillment.v0.models.TransitEstimate[];
|
|
3357
|
+
}
|
|
3358
|
+
|
|
3359
|
+
interface DeliveryWindowSummary {
|
|
3360
|
+
readonly 'country': string;
|
|
3361
|
+
readonly 'delivery_window': io.flow.fulfillment.v0.models.DeliveryWindow;
|
|
3362
|
+
}
|
|
3363
|
+
|
|
3364
|
+
interface DigitalDelivery {
|
|
3365
|
+
readonly 'discriminator': 'digital_delivery';
|
|
3366
|
+
readonly 'id': string;
|
|
3367
|
+
readonly 'key'?: string;
|
|
3368
|
+
readonly 'items': io.flow.fulfillment.v0.models.DeliveryItem[];
|
|
3369
|
+
readonly 'prices'?: io.flow.order.price.v0.models.OrderPriceDetail[];
|
|
3370
|
+
readonly 'total'?: io.flow.catalog.v0.models.LocalizedTotal;
|
|
3371
|
+
}
|
|
3372
|
+
|
|
3373
|
+
interface EstimatedWindow {
|
|
3374
|
+
readonly 'from': number;
|
|
3375
|
+
readonly 'to': number;
|
|
3376
|
+
readonly 'unit': io.flow.common.v0.enums.UnitOfTime;
|
|
3377
|
+
}
|
|
3378
|
+
|
|
3379
|
+
interface FlatRate {
|
|
3380
|
+
readonly 'discriminator': 'flat_rate';
|
|
3381
|
+
readonly 'price': io.flow.common.v0.models.Price;
|
|
3382
|
+
readonly 'zero_amount_indicator'?: io.flow.fulfillment.v0.enums.ZeroAmountIndicator;
|
|
3383
|
+
}
|
|
3384
|
+
|
|
3385
|
+
interface FlatRateForm {
|
|
3386
|
+
readonly 'discriminator': 'flat_rate_form';
|
|
3387
|
+
readonly 'price': io.flow.common.v0.models.Money;
|
|
3388
|
+
readonly 'zero_amount_indicator'?: io.flow.fulfillment.v0.enums.ZeroAmountIndicator;
|
|
3389
|
+
}
|
|
3390
|
+
|
|
3391
|
+
interface FulfillmentExperienceReference {
|
|
3392
|
+
readonly 'id': string;
|
|
3393
|
+
readonly 'currency': string;
|
|
3394
|
+
}
|
|
3395
|
+
|
|
3396
|
+
interface InboundCartonFee {
|
|
3397
|
+
readonly 'discriminator': 'inbound_carton_fee';
|
|
3398
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
3399
|
+
}
|
|
3400
|
+
|
|
3401
|
+
interface ItemShippingPricing {
|
|
3402
|
+
readonly 'min': io.flow.common.v0.models.Price;
|
|
3403
|
+
readonly 'max'?: io.flow.common.v0.models.Price;
|
|
3404
|
+
}
|
|
3405
|
+
|
|
3406
|
+
interface NumberRange {
|
|
3407
|
+
readonly 'min': number;
|
|
3408
|
+
readonly 'max': number;
|
|
3409
|
+
}
|
|
3410
|
+
|
|
3411
|
+
interface OptionWeightEstimates {
|
|
3412
|
+
readonly 'gravitational': io.flow.common.v0.models.Measurement;
|
|
3413
|
+
readonly 'dimensional': io.flow.common.v0.models.Measurement;
|
|
3414
|
+
}
|
|
3415
|
+
|
|
3416
|
+
interface OutboundCartonFee {
|
|
3417
|
+
readonly 'discriminator': 'outbound_carton_fee';
|
|
3418
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
3419
|
+
}
|
|
3420
|
+
|
|
3421
|
+
interface Packaging {
|
|
3422
|
+
readonly 'dimensions': io.flow.common.v0.models.Dimensions;
|
|
3423
|
+
readonly 'name'?: string;
|
|
3424
|
+
readonly 'number'?: string;
|
|
3425
|
+
}
|
|
3426
|
+
|
|
3427
|
+
interface PartnerCenter {
|
|
3428
|
+
readonly 'partner_reference': io.flow.common.v0.models.PartnerReference;
|
|
3429
|
+
readonly 'number'?: string;
|
|
3430
|
+
readonly 'fees'?: io.flow.fulfillment.v0.unions.PartnerCenterFee[];
|
|
3431
|
+
}
|
|
3432
|
+
|
|
3433
|
+
interface PartnerCenterForm {
|
|
3434
|
+
readonly 'partner_id': string;
|
|
3435
|
+
readonly 'number'?: string;
|
|
3436
|
+
readonly 'fees'?: io.flow.fulfillment.v0.unions.PartnerCenterFee[];
|
|
3437
|
+
}
|
|
3438
|
+
|
|
3439
|
+
interface PercentMargin {
|
|
3440
|
+
readonly 'discriminator': 'percent_margin';
|
|
3441
|
+
readonly 'percentage': number;
|
|
3442
|
+
}
|
|
3443
|
+
|
|
3444
|
+
interface PhysicalDelivery {
|
|
3445
|
+
readonly 'discriminator': 'physical_delivery';
|
|
3446
|
+
readonly 'id': string;
|
|
3447
|
+
readonly 'key'?: string;
|
|
3448
|
+
readonly 'center'?: io.flow.fulfillment.v0.models.CenterSummary;
|
|
3449
|
+
readonly 'fulfillment_routing'?: io.flow.fulfillment.v0.enums.FulfillmentRouting;
|
|
3450
|
+
readonly 'ship_from_country'?: string;
|
|
3451
|
+
readonly 'items': io.flow.fulfillment.v0.models.DeliveryItem[];
|
|
3452
|
+
readonly 'options': io.flow.fulfillment.v0.models.DeliveryOption[];
|
|
3453
|
+
readonly 'special_services'?: io.flow.fulfillment.v0.enums.PhysicalDeliverySpecialSerivce[];
|
|
3454
|
+
readonly 'prices'?: io.flow.order.price.v0.models.OrderPriceDetail[];
|
|
3455
|
+
readonly 'total'?: io.flow.catalog.v0.models.LocalizedTotal;
|
|
3456
|
+
readonly 'goods_supply'?: io.flow.common.v0.enums.GoodsSupply;
|
|
3457
|
+
readonly 'merchant_of_record_flow_entity'?: io.flow.merchant.of.record.v0.enums.FlowEntity;
|
|
3458
|
+
readonly 'preferred_service'?: io.flow.fulfillment.v0.models.PhysicalDeliveryPreferredService;
|
|
3459
|
+
}
|
|
3460
|
+
|
|
3461
|
+
interface PhysicalDeliveryPreferredService {
|
|
3462
|
+
readonly 'id': string;
|
|
3463
|
+
readonly 'selection_stratey': io.flow.fulfillment.v0.enums.PreferredServiceSelectionStrategy;
|
|
3464
|
+
}
|
|
3465
|
+
|
|
3466
|
+
interface PriceWithBaseAndDetails {
|
|
3467
|
+
readonly 'currency': string;
|
|
3468
|
+
readonly 'amount': number;
|
|
3469
|
+
readonly 'label': string;
|
|
3470
|
+
readonly 'base'?: io.flow.common.v0.models.Price;
|
|
3471
|
+
readonly 'details'?: io.flow.fulfillment.v0.models.DeliveryOptionCostDetail[];
|
|
3472
|
+
}
|
|
3473
|
+
|
|
3474
|
+
interface ProcessingEstimate {
|
|
3475
|
+
readonly 'location': io.flow.fulfillment.v0.enums.DeliveryWindowLocation;
|
|
3476
|
+
readonly 'min_date': string;
|
|
3477
|
+
readonly 'max_date': string;
|
|
3478
|
+
readonly 'source': io.flow.fulfillment.v0.enums.DeliveryWindowComponentSource;
|
|
3479
|
+
}
|
|
3480
|
+
|
|
3481
|
+
interface Quote {
|
|
3482
|
+
readonly 'id': string;
|
|
3483
|
+
readonly 'destination': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3484
|
+
readonly 'deliveries': io.flow.fulfillment.v0.unions.Delivery[];
|
|
3485
|
+
readonly 'selections': io.flow.fulfillment.v0.models.DeliveryOptionReference[];
|
|
3486
|
+
readonly 'delivered_duty': io.flow.common.v0.enums.DeliveredDuty;
|
|
3487
|
+
readonly 'delivered_duties': io.flow.common.v0.enums.DeliveredDuty[];
|
|
3488
|
+
}
|
|
3489
|
+
|
|
3490
|
+
interface QuoteError {
|
|
3491
|
+
readonly 'code': io.flow.fulfillment.v0.enums.QuoteErrorCode;
|
|
3492
|
+
readonly 'messages': string[];
|
|
3493
|
+
readonly 'item_numbers'?: string[];
|
|
3494
|
+
}
|
|
3495
|
+
|
|
3496
|
+
interface QuoteForm {
|
|
3497
|
+
readonly 'destination': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3498
|
+
readonly 'experience': string;
|
|
3499
|
+
readonly 'items': io.flow.fulfillment.v0.models.QuoteLineItemForm[];
|
|
3500
|
+
readonly 'delivered_duty'?: io.flow.common.v0.enums.DeliveredDuty;
|
|
3501
|
+
readonly 'delivered_duties'?: io.flow.common.v0.enums.DeliveredDuty[];
|
|
3502
|
+
readonly 'direction'?: io.flow.fulfillment.v0.enums.LaneDirection;
|
|
3503
|
+
}
|
|
3504
|
+
|
|
3505
|
+
interface QuoteLineItemForm {
|
|
3506
|
+
readonly 'number': string;
|
|
3507
|
+
readonly 'quantity': number;
|
|
3508
|
+
readonly 'shipment_estimate'?: io.flow.common.v0.models.DatetimeRange;
|
|
3509
|
+
readonly 'price': io.flow.common.v0.models.MoneyWithBase;
|
|
3510
|
+
readonly 'attributes'?: Record<string, string>;
|
|
3511
|
+
readonly 'center'?: string;
|
|
3512
|
+
}
|
|
3513
|
+
|
|
3514
|
+
interface QuoteSummary {
|
|
3515
|
+
readonly 'id': string;
|
|
3516
|
+
readonly 'destination': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3517
|
+
}
|
|
3518
|
+
|
|
3519
|
+
interface QuoteVersion {
|
|
3520
|
+
readonly 'id': string;
|
|
3521
|
+
readonly 'timestamp': string;
|
|
3522
|
+
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
3523
|
+
readonly 'quote': io.flow.fulfillment.v0.models.QuoteSummary;
|
|
3524
|
+
}
|
|
3525
|
+
|
|
3526
|
+
interface ScheduledPickup {
|
|
3527
|
+
readonly 'day_of_week': io.flow.common.v0.enums.DayOfWeek;
|
|
3528
|
+
readonly 'hour_of_day': string;
|
|
3529
|
+
readonly 'minute_of_hour': string;
|
|
3530
|
+
}
|
|
3531
|
+
|
|
3532
|
+
interface ServiceReference {
|
|
3533
|
+
readonly 'id': string;
|
|
3534
|
+
}
|
|
3535
|
+
|
|
3536
|
+
interface ServiceSummary {
|
|
3537
|
+
readonly 'discriminator': 'service_summary';
|
|
3538
|
+
readonly 'id': string;
|
|
3539
|
+
readonly 'carrier': io.flow.fulfillment.v0.models.CarrierReference;
|
|
3540
|
+
readonly 'name': string;
|
|
3541
|
+
readonly 'center_code'?: string;
|
|
3542
|
+
}
|
|
3543
|
+
|
|
3544
|
+
interface ServiceUnknown {
|
|
3545
|
+
readonly 'discriminator': 'service_unknown';
|
|
3546
|
+
readonly 'name': string;
|
|
3547
|
+
}
|
|
3548
|
+
|
|
3549
|
+
interface ShippingAddress {
|
|
3550
|
+
readonly 'contact': io.flow.common.v0.models.Contact;
|
|
3551
|
+
readonly 'location': io.flow.common.v0.models.Address;
|
|
3552
|
+
readonly 'center_key'?: string;
|
|
3553
|
+
readonly 'center_reference'?: io.flow.fulfillment.v0.models.CenterReference;
|
|
3554
|
+
readonly 'service'?: io.flow.fulfillment.v0.models.ServiceSummary;
|
|
3555
|
+
}
|
|
3556
|
+
|
|
3557
|
+
interface ShippingConfiguration {
|
|
3558
|
+
readonly 'id': string;
|
|
3559
|
+
readonly 'name': string;
|
|
3560
|
+
readonly 'key': string;
|
|
3561
|
+
readonly 'type': io.flow.fulfillment.v0.enums.ShippingConfigurationType;
|
|
3562
|
+
readonly 'shipping_lanes': io.flow.fulfillment.v0.models.ShippingLane[];
|
|
3563
|
+
}
|
|
3564
|
+
|
|
3565
|
+
interface ShippingConfigurationCopy {
|
|
3566
|
+
readonly 'original': io.flow.fulfillment.v0.models.ShippingConfigurationReference;
|
|
3567
|
+
readonly 'new': io.flow.fulfillment.v0.models.ShippingConfigurationReference;
|
|
3568
|
+
}
|
|
3569
|
+
|
|
3570
|
+
interface ShippingConfigurationCopyForm {
|
|
3571
|
+
readonly 'name': string;
|
|
3572
|
+
}
|
|
3573
|
+
|
|
3574
|
+
interface ShippingConfigurationForm {
|
|
3575
|
+
readonly 'name': string;
|
|
3576
|
+
}
|
|
3577
|
+
|
|
3578
|
+
interface ShippingConfigurationItemAvailability {
|
|
3579
|
+
readonly 'id': string;
|
|
3580
|
+
readonly 'item': io.flow.common.v0.models.ItemReference;
|
|
3581
|
+
readonly 'shipping_configuration': io.flow.fulfillment.v0.models.ShippingConfigurationSummary;
|
|
3582
|
+
readonly 'availabilities': io.flow.fulfillment.v0.models.CountryAvailability[];
|
|
3583
|
+
}
|
|
3584
|
+
|
|
3585
|
+
interface ShippingConfigurationItemShippingPricing {
|
|
3586
|
+
readonly 'id': string;
|
|
3587
|
+
readonly 'item': io.flow.common.v0.models.ItemReference;
|
|
3588
|
+
readonly 'shipping_configuration': io.flow.fulfillment.v0.models.ShippingConfigurationSummary;
|
|
3589
|
+
readonly 'country_shipping_pricings': io.flow.fulfillment.v0.models.CountryShippingPricing[];
|
|
3590
|
+
}
|
|
3591
|
+
|
|
3592
|
+
interface ShippingConfigurationReference {
|
|
3593
|
+
readonly 'key': string;
|
|
3594
|
+
}
|
|
3595
|
+
|
|
3596
|
+
interface ShippingConfigurationSummary {
|
|
3597
|
+
readonly 'id': string;
|
|
3598
|
+
readonly 'name': string;
|
|
3599
|
+
readonly 'key': string;
|
|
3600
|
+
readonly 'type': io.flow.fulfillment.v0.enums.ShippingConfigurationType;
|
|
3601
|
+
}
|
|
3602
|
+
|
|
3603
|
+
interface ShippingConfigurationVersion {
|
|
3604
|
+
readonly 'id': string;
|
|
3605
|
+
readonly 'timestamp': string;
|
|
3606
|
+
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
3607
|
+
readonly 'shipping_configuration': io.flow.fulfillment.v0.models.ShippingConfiguration;
|
|
3608
|
+
}
|
|
3609
|
+
|
|
3610
|
+
interface ShippingLane {
|
|
3611
|
+
readonly 'id': string;
|
|
3612
|
+
readonly 'shipping_configuration': io.flow.fulfillment.v0.models.ShippingConfigurationReference;
|
|
3613
|
+
readonly 'region': string;
|
|
3614
|
+
readonly 'centers': io.flow.fulfillment.v0.unions.ExpandableCenter[];
|
|
3615
|
+
readonly 'tiers': io.flow.fulfillment.v0.models.Tier[];
|
|
3616
|
+
readonly 'query': io.flow.query.builder.v0.models.Query;
|
|
3617
|
+
readonly 'strategy': io.flow.fulfillment.v0.enums.LaneStrategy;
|
|
3618
|
+
readonly 'direction'?: io.flow.fulfillment.v0.enums.LaneDirection;
|
|
3619
|
+
readonly 'preference'?: io.flow.fulfillment.v0.enums.LanePreselectPreference;
|
|
3620
|
+
}
|
|
3621
|
+
|
|
3622
|
+
interface ShippingLaneDefaultTier {
|
|
3623
|
+
readonly 'id': string;
|
|
3624
|
+
readonly 'tier': io.flow.fulfillment.v0.models.TierReference;
|
|
3625
|
+
}
|
|
3626
|
+
|
|
3627
|
+
interface ShippingLaneDefaultTierForm {
|
|
3628
|
+
readonly 'tier_id': string;
|
|
3629
|
+
}
|
|
3630
|
+
|
|
3631
|
+
interface ShippingLaneForm {
|
|
3632
|
+
readonly 'from': string;
|
|
3633
|
+
readonly 'to': string;
|
|
3634
|
+
readonly 'strategy'?: io.flow.fulfillment.v0.enums.LaneStrategy;
|
|
3635
|
+
readonly 'direction'?: io.flow.fulfillment.v0.enums.LaneDirection;
|
|
3636
|
+
readonly 'preference'?: io.flow.fulfillment.v0.enums.LanePreselectPreference;
|
|
3637
|
+
}
|
|
3638
|
+
|
|
3639
|
+
interface ShippingLaneSummary {
|
|
3640
|
+
readonly 'shipping_lane_id': string;
|
|
3641
|
+
readonly 'region': string;
|
|
3642
|
+
readonly 'centers': io.flow.fulfillment.v0.unions.ExpandableCenter[];
|
|
3643
|
+
}
|
|
3644
|
+
|
|
3645
|
+
interface ShippingLaneVersion {
|
|
3646
|
+
readonly 'id': string;
|
|
3647
|
+
readonly 'timestamp': string;
|
|
3648
|
+
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
3649
|
+
readonly 'shipping_lane': io.flow.fulfillment.v0.models.ShippingLane;
|
|
3650
|
+
}
|
|
3651
|
+
|
|
3652
|
+
interface SurchargeResponsiblePartyDisplay {
|
|
3653
|
+
readonly 'name': string;
|
|
3654
|
+
readonly 'responsible_party': io.flow.fulfillment.v0.enums.SurchargeResponsibleParty;
|
|
3655
|
+
}
|
|
3656
|
+
|
|
3657
|
+
interface SurchargeSetting {
|
|
3658
|
+
readonly 'key': io.flow.fulfillment.v0.enums.DeliveryOptionCostDetailComponentKey;
|
|
3659
|
+
readonly 'responsible_party': io.flow.fulfillment.v0.enums.SurchargeResponsibleParty;
|
|
3660
|
+
}
|
|
3661
|
+
|
|
3662
|
+
interface SurchargeSettingDisplay {
|
|
3663
|
+
readonly 'name': string;
|
|
3664
|
+
readonly 'description': string;
|
|
3665
|
+
readonly 'key': io.flow.fulfillment.v0.enums.DeliveryOptionCostDetailComponentKey;
|
|
3666
|
+
readonly 'available': io.flow.fulfillment.v0.models.SurchargeResponsiblePartyDisplay[];
|
|
3667
|
+
}
|
|
3668
|
+
|
|
3669
|
+
interface Tier {
|
|
3670
|
+
readonly 'id': string;
|
|
3671
|
+
readonly 'direction': io.flow.fulfillment.v0.enums.LaneDirection;
|
|
3672
|
+
readonly 'integration': io.flow.fulfillment.v0.enums.ShipmentIntegrationType;
|
|
3673
|
+
readonly 'name': string;
|
|
3674
|
+
readonly 'message'?: string;
|
|
3675
|
+
readonly 'rules': io.flow.fulfillment.v0.models.TierRule[];
|
|
3676
|
+
readonly 'services': io.flow.reference.v0.models.CarrierService[];
|
|
3677
|
+
readonly 'strategy': io.flow.fulfillment.v0.enums.TierStrategy;
|
|
3678
|
+
readonly 'visibility': io.flow.common.v0.enums.Visibility;
|
|
3679
|
+
readonly 'currency': string;
|
|
3680
|
+
readonly 'description'?: string;
|
|
3681
|
+
readonly 'display'?: io.flow.fulfillment.v0.models.TierDisplay;
|
|
3682
|
+
readonly 'shipping_lane'?: string;
|
|
3683
|
+
readonly 'surcharge_settings'?: io.flow.fulfillment.v0.models.SurchargeSetting[];
|
|
3684
|
+
readonly 'lane'?: io.flow.fulfillment.v0.models.ShippingLaneSummary;
|
|
3685
|
+
readonly 'settings'?: io.flow.fulfillment.v0.models.TierSettings;
|
|
3686
|
+
}
|
|
3687
|
+
|
|
3688
|
+
interface TierDisplay {
|
|
3689
|
+
readonly 'estimate': io.flow.fulfillment.v0.models.TierEstimate;
|
|
3690
|
+
}
|
|
3691
|
+
|
|
3692
|
+
interface TierDisplayForm {
|
|
3693
|
+
readonly 'estimate'?: io.flow.fulfillment.v0.models.TierEstimate;
|
|
3694
|
+
}
|
|
3695
|
+
|
|
3696
|
+
interface TierEstimate {
|
|
3697
|
+
readonly 'type': io.flow.fulfillment.v0.enums.TierEstimateType;
|
|
3698
|
+
readonly 'label'?: string;
|
|
3699
|
+
}
|
|
3700
|
+
|
|
3701
|
+
interface TierForm {
|
|
3702
|
+
readonly 'currency': string;
|
|
3703
|
+
readonly 'integration': io.flow.fulfillment.v0.enums.ShipmentIntegrationType;
|
|
3704
|
+
readonly 'name': string;
|
|
3705
|
+
readonly 'message'?: string;
|
|
3706
|
+
readonly 'rules': io.flow.fulfillment.v0.models.TierRuleForm[];
|
|
3707
|
+
readonly 'services': string[];
|
|
3708
|
+
readonly 'strategy': io.flow.fulfillment.v0.enums.TierStrategy;
|
|
3709
|
+
readonly 'visibility': io.flow.common.v0.enums.Visibility;
|
|
3710
|
+
readonly 'description'?: string;
|
|
3711
|
+
readonly 'direction'?: io.flow.fulfillment.v0.enums.LaneDirection;
|
|
3712
|
+
readonly 'display'?: io.flow.fulfillment.v0.models.TierDisplayForm;
|
|
3713
|
+
readonly 'shipping_lane': string;
|
|
3714
|
+
readonly 'surcharge_settings'?: io.flow.fulfillment.v0.models.SurchargeSetting[];
|
|
3715
|
+
readonly 'settings'?: io.flow.fulfillment.v0.models.TierSettings;
|
|
3716
|
+
}
|
|
3717
|
+
|
|
3718
|
+
interface TierReference {
|
|
3719
|
+
readonly 'id': string;
|
|
3720
|
+
}
|
|
3721
|
+
|
|
3722
|
+
interface TierRule {
|
|
3723
|
+
readonly 'id': string;
|
|
3724
|
+
readonly 'position': number;
|
|
3725
|
+
readonly 'query': string;
|
|
3726
|
+
readonly 'outcome': io.flow.fulfillment.v0.unions.TierRuleOutcome;
|
|
3727
|
+
}
|
|
3728
|
+
|
|
3729
|
+
interface TierRuleForm {
|
|
3730
|
+
readonly 'position'?: number;
|
|
3731
|
+
readonly 'query': string;
|
|
3732
|
+
readonly 'outcome': io.flow.fulfillment.v0.unions.TierRuleOutcomeForm;
|
|
3733
|
+
}
|
|
3734
|
+
|
|
3735
|
+
interface TierRuleVersion {
|
|
3736
|
+
readonly 'id': string;
|
|
3737
|
+
readonly 'timestamp': string;
|
|
3738
|
+
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
3739
|
+
readonly 'tier_rule': io.flow.fulfillment.v0.models.TierRule;
|
|
3740
|
+
}
|
|
3741
|
+
|
|
3742
|
+
interface TierSettings {
|
|
3743
|
+
readonly 'availability': io.flow.fulfillment.v0.enums.TierAvailability;
|
|
3744
|
+
}
|
|
3745
|
+
|
|
3746
|
+
interface TierSummary {
|
|
3747
|
+
readonly 'id': string;
|
|
3748
|
+
readonly 'experience'?: io.flow.fulfillment.v0.models.FulfillmentExperienceReference;
|
|
3749
|
+
readonly 'integration': io.flow.fulfillment.v0.enums.ShipmentIntegrationType;
|
|
3750
|
+
readonly 'name': string;
|
|
3751
|
+
readonly 'services': string[];
|
|
3752
|
+
readonly 'strategy': io.flow.fulfillment.v0.enums.TierStrategy;
|
|
3753
|
+
readonly 'visibility': io.flow.common.v0.enums.Visibility;
|
|
3754
|
+
readonly 'currency': string;
|
|
3755
|
+
readonly 'display'?: io.flow.fulfillment.v0.models.TierDisplay;
|
|
3756
|
+
readonly 'message'?: string;
|
|
3757
|
+
readonly 'settings'?: io.flow.fulfillment.v0.models.TierSettings;
|
|
3758
|
+
}
|
|
3759
|
+
|
|
3760
|
+
interface TierVersion {
|
|
3761
|
+
readonly 'id': string;
|
|
3762
|
+
readonly 'timestamp': string;
|
|
3763
|
+
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
3764
|
+
readonly 'tier': io.flow.fulfillment.v0.models.TierSummary;
|
|
3765
|
+
}
|
|
3766
|
+
|
|
3767
|
+
interface TransitEstimate {
|
|
3768
|
+
readonly 'origin': io.flow.fulfillment.v0.enums.DeliveryWindowLocation;
|
|
3769
|
+
readonly 'destination': io.flow.fulfillment.v0.enums.DeliveryWindowLocation;
|
|
3770
|
+
readonly 'min_date': string;
|
|
3771
|
+
readonly 'max_date': string;
|
|
3772
|
+
readonly 'source': io.flow.fulfillment.v0.enums.DeliveryWindowComponentSource;
|
|
3773
|
+
}
|
|
3774
|
+
}
|
|
3775
|
+
|
|
3776
|
+
declare namespace io.flow.fulfillment.v0.unions {
|
|
3777
|
+
type Delivery = (io.flow.fulfillment.v0.models.DigitalDelivery | io.flow.fulfillment.v0.models.PhysicalDelivery);
|
|
3778
|
+
type ExpandableCenter = (io.flow.fulfillment.v0.models.Center | io.flow.fulfillment.v0.models.CenterReference);
|
|
3779
|
+
type PartnerCenterFee = (io.flow.fulfillment.v0.models.CommercialInvoiceFee | io.flow.fulfillment.v0.models.InboundCartonFee | io.flow.fulfillment.v0.models.OutboundCartonFee);
|
|
3780
|
+
type ServiceDescription = (io.flow.fulfillment.v0.models.ServiceSummary | io.flow.fulfillment.v0.models.ServiceUnknown);
|
|
3781
|
+
type TierRuleOutcome = (io.flow.fulfillment.v0.models.AmountMargin | io.flow.fulfillment.v0.models.AtCost | io.flow.fulfillment.v0.models.FlatRate | io.flow.fulfillment.v0.models.PercentMargin);
|
|
3782
|
+
type TierRuleOutcomeForm = (io.flow.fulfillment.v0.models.AmountMarginForm | io.flow.fulfillment.v0.models.FlatRateForm | io.flow.fulfillment.v0.models.AtCost | io.flow.fulfillment.v0.models.PercentMargin);
|
|
3783
|
+
}
|
|
3784
|
+
|
|
3785
|
+
declare namespace io.flow.apple.pay.v0.enums {
|
|
3786
|
+
type ApplePayContactField = 'email' | 'name' | 'phone' | 'postalAddress' | 'phoneticName';
|
|
3787
|
+
type ApplePayLineItemType = 'final' | 'pending';
|
|
3788
|
+
type ApplePayMerchantCapability = 'supports3DS' | 'supportsCredit' | 'supportsDebit' | 'supportsEMV';
|
|
3789
|
+
type ApplePayShippingType = 'shipping' | 'delivery' | 'storePickup' | 'servicePickup';
|
|
3790
|
+
type ApplePaySupportedNetworks = 'amex' | 'chinaUnionPay' | 'discover' | 'jcb' | 'masterCard' | 'privateLabel' | 'visa';
|
|
3791
|
+
}
|
|
3792
|
+
|
|
3793
|
+
declare namespace io.flow.apple.pay.v0.models {
|
|
3794
|
+
interface ApplePayLineItem {
|
|
3795
|
+
readonly 'label': string;
|
|
3796
|
+
readonly 'type': io.flow.apple.pay.v0.enums.ApplePayLineItemType;
|
|
3797
|
+
readonly 'amount': string;
|
|
3798
|
+
}
|
|
3799
|
+
|
|
3800
|
+
interface ApplePayPaymentContact {
|
|
3801
|
+
readonly 'email_address'?: string;
|
|
3802
|
+
readonly 'family_name'?: string;
|
|
3803
|
+
readonly 'given_name'?: string;
|
|
3804
|
+
readonly 'phone_number'?: string;
|
|
3805
|
+
readonly 'phonetic_familyName'?: string;
|
|
3806
|
+
readonly 'phonetic_givenName'?: string;
|
|
3807
|
+
readonly 'address_lines'?: string[];
|
|
3808
|
+
readonly 'locality'?: string;
|
|
3809
|
+
readonly 'sub_locality'?: string;
|
|
3810
|
+
readonly 'administrative_area'?: string;
|
|
3811
|
+
readonly 'sub_administrative_area'?: string;
|
|
3812
|
+
readonly 'postal_code'?: string;
|
|
3813
|
+
readonly 'country'?: string;
|
|
3814
|
+
readonly 'country_code'?: string;
|
|
3815
|
+
}
|
|
3816
|
+
|
|
3817
|
+
interface ApplePayPaymentData {
|
|
3818
|
+
readonly 'applicationPrimaryAccountNumber': string;
|
|
3819
|
+
readonly 'applicationExpirationDate': string;
|
|
3820
|
+
readonly 'currencyCode': string;
|
|
3821
|
+
readonly 'transactionAmount': number;
|
|
3822
|
+
readonly 'cardholderName'?: string;
|
|
3823
|
+
readonly 'deviceManufacturerIdentifier': string;
|
|
3824
|
+
readonly 'paymentDataType': string;
|
|
3825
|
+
readonly 'paymentData': any/*object*/;
|
|
3826
|
+
}
|
|
3827
|
+
|
|
3828
|
+
interface ApplePayPaymentInfo {
|
|
3829
|
+
readonly 'total': io.flow.apple.pay.v0.models.ApplePayLineItem;
|
|
3830
|
+
readonly 'line_items'?: io.flow.apple.pay.v0.models.ApplePayLineItem[];
|
|
3831
|
+
readonly 'country_code': string;
|
|
3832
|
+
readonly 'currency_code': string;
|
|
3833
|
+
readonly 'merchant_capabilities': io.flow.apple.pay.v0.enums.ApplePayMerchantCapability[];
|
|
3834
|
+
readonly 'shipping_methods'?: io.flow.apple.pay.v0.models.ApplePayShippingMethod[];
|
|
3835
|
+
readonly 'shipping_type'?: io.flow.apple.pay.v0.enums.ApplePayShippingType;
|
|
3836
|
+
readonly 'supported_countries'?: string[];
|
|
3837
|
+
readonly 'supported_networks': io.flow.apple.pay.v0.enums.ApplePaySupportedNetworks[];
|
|
3838
|
+
readonly 'required_billingContactFields'?: io.flow.apple.pay.v0.enums.ApplePayContactField[];
|
|
3839
|
+
readonly 'required_shippingContactFields'?: io.flow.apple.pay.v0.enums.ApplePayContactField[];
|
|
3840
|
+
readonly 'billing_contact'?: io.flow.apple.pay.v0.models.ApplePayPaymentContact;
|
|
3841
|
+
readonly 'shipping_contact'?: io.flow.apple.pay.v0.models.ApplePayPaymentContact;
|
|
3842
|
+
readonly 'application_data'?: string;
|
|
3843
|
+
}
|
|
3844
|
+
|
|
3845
|
+
interface ApplePayShippingMethod {
|
|
3846
|
+
readonly 'label': string;
|
|
3847
|
+
readonly 'detail': string;
|
|
3848
|
+
readonly 'amount': string;
|
|
3849
|
+
readonly 'identifier': string;
|
|
3850
|
+
}
|
|
3851
|
+
}
|
|
3852
|
+
|
|
3853
|
+
declare namespace io.flow.merchant.of.record.v0.enums {
|
|
3854
|
+
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
3855
|
+
type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can' | 'ge-usa';
|
|
3856
|
+
}
|
|
3857
|
+
|
|
3858
|
+
declare namespace io.flow.currency.v0.models {
|
|
3859
|
+
interface Rate {
|
|
3860
|
+
readonly 'id': string;
|
|
3861
|
+
readonly 'base': string;
|
|
3862
|
+
readonly 'target': string;
|
|
3863
|
+
readonly 'effective_at': string;
|
|
3864
|
+
readonly 'value': number;
|
|
3865
|
+
}
|
|
3866
|
+
|
|
3867
|
+
interface RateForm {
|
|
3868
|
+
readonly 'base': string;
|
|
3869
|
+
readonly 'target': string;
|
|
3870
|
+
readonly 'effective_at': string;
|
|
3871
|
+
}
|
|
3872
|
+
|
|
3873
|
+
interface RateVersion {
|
|
3874
|
+
readonly 'id': string;
|
|
3875
|
+
readonly 'timestamp': string;
|
|
3876
|
+
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
3877
|
+
readonly 'rate': io.flow.currency.v0.models.Rate;
|
|
3878
|
+
}
|
|
3879
|
+
}
|
|
3880
|
+
|
|
3881
|
+
declare namespace io.flow.organization.v0.enums {
|
|
3882
|
+
type CountryPickerSource = 'experience' | 'destination';
|
|
3883
|
+
type EcommercePlatformType = 'commercetools' | 'custom' | 'hybris' | 'magento' | 'shopify' | 'shopify_markets' | 'sfcc' | 'solidus' | 'workarea';
|
|
3884
|
+
type InvitationErrorCode = 'expired' | 'invalid_email';
|
|
3885
|
+
}
|
|
3886
|
+
|
|
3887
|
+
declare namespace io.flow.organization.v0.models {
|
|
3888
|
+
interface CountryPicker {
|
|
3889
|
+
readonly 'id': string;
|
|
3890
|
+
readonly 'source': io.flow.organization.v0.enums.CountryPickerSource;
|
|
3891
|
+
}
|
|
3892
|
+
|
|
3893
|
+
interface CountryPickerForm {
|
|
3894
|
+
readonly 'source': io.flow.organization.v0.enums.CountryPickerSource;
|
|
3895
|
+
}
|
|
3896
|
+
|
|
3897
|
+
interface EcommercePlatform {
|
|
3898
|
+
readonly 'id': string;
|
|
3899
|
+
readonly 'type': io.flow.organization.v0.enums.EcommercePlatformType;
|
|
3900
|
+
readonly 'version'?: string;
|
|
3901
|
+
}
|
|
3902
|
+
|
|
3903
|
+
interface EcommercePlatformForm {
|
|
3904
|
+
readonly 'type': io.flow.organization.v0.enums.EcommercePlatformType;
|
|
3905
|
+
readonly 'version'?: string;
|
|
3906
|
+
}
|
|
3907
|
+
|
|
3908
|
+
interface Invitation {
|
|
3909
|
+
readonly 'id': string;
|
|
3910
|
+
readonly 'organization': io.flow.common.v0.unions.ExpandableOrganization;
|
|
3911
|
+
readonly 'email': string;
|
|
3912
|
+
readonly 'name': io.flow.common.v0.models.Name;
|
|
3913
|
+
readonly 'role'?: io.flow.common.v0.enums.Role;
|
|
3914
|
+
readonly 'roles'?: io.flow.permission.v0.enums.FlowRole[];
|
|
3915
|
+
readonly 'expiration': string;
|
|
3916
|
+
}
|
|
3917
|
+
|
|
3918
|
+
interface InvitationError {
|
|
3919
|
+
readonly 'code': io.flow.organization.v0.enums.InvitationErrorCode;
|
|
3920
|
+
readonly 'messages': string[];
|
|
3921
|
+
}
|
|
3922
|
+
|
|
3923
|
+
interface InvitationForm {
|
|
3924
|
+
readonly 'organization': string;
|
|
3925
|
+
readonly 'email': string;
|
|
3926
|
+
readonly 'name'?: io.flow.common.v0.models.Name;
|
|
3927
|
+
readonly 'role'?: io.flow.common.v0.enums.Role;
|
|
3928
|
+
readonly 'roles'?: io.flow.permission.v0.enums.FlowRole[];
|
|
3929
|
+
}
|
|
3930
|
+
|
|
3931
|
+
interface InvitationVersion {
|
|
3932
|
+
readonly 'id': string;
|
|
3933
|
+
readonly 'timestamp': string;
|
|
3934
|
+
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
3935
|
+
readonly 'invitation': io.flow.organization.v0.models.Invitation;
|
|
3936
|
+
}
|
|
3937
|
+
|
|
3938
|
+
interface Membership {
|
|
3939
|
+
readonly 'id': string;
|
|
3940
|
+
readonly 'organization': io.flow.common.v0.unions.ExpandableOrganization;
|
|
3941
|
+
readonly 'user': io.flow.common.v0.unions.ExpandableUser;
|
|
3942
|
+
readonly 'role'?: io.flow.common.v0.enums.Role;
|
|
3943
|
+
readonly 'roles': io.flow.permission.v0.enums.FlowRole[];
|
|
3944
|
+
}
|
|
3945
|
+
|
|
3946
|
+
interface MembershipForm {
|
|
3947
|
+
readonly 'organization': string;
|
|
3948
|
+
readonly 'user': string;
|
|
3949
|
+
readonly 'role'?: io.flow.common.v0.enums.Role;
|
|
3950
|
+
readonly 'roles'?: io.flow.permission.v0.enums.FlowRole[];
|
|
3951
|
+
}
|
|
3952
|
+
|
|
3953
|
+
interface MembershipPutForm {
|
|
3954
|
+
readonly 'role'?: io.flow.common.v0.enums.Role;
|
|
3955
|
+
readonly 'roles'?: io.flow.permission.v0.enums.FlowRole[];
|
|
3956
|
+
}
|
|
3957
|
+
|
|
3958
|
+
interface MembershipVersion {
|
|
3959
|
+
readonly 'id': string;
|
|
3960
|
+
readonly 'timestamp': string;
|
|
3961
|
+
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
3962
|
+
readonly 'membership': io.flow.organization.v0.models.Membership;
|
|
3963
|
+
}
|
|
3964
|
+
|
|
3965
|
+
interface OrganizationAuthorization {
|
|
3966
|
+
readonly 'role'?: io.flow.common.v0.enums.Role;
|
|
3967
|
+
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
3968
|
+
}
|
|
3969
|
+
|
|
3970
|
+
interface OrganizationAuthorizationForm {
|
|
3971
|
+
readonly 'organization': string;
|
|
3972
|
+
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
3973
|
+
}
|
|
3974
|
+
|
|
3975
|
+
interface OrganizationConfigurationReference {
|
|
3976
|
+
readonly 'id': string;
|
|
3977
|
+
}
|
|
3978
|
+
|
|
3979
|
+
interface OrganizationDefaultConfigurations {
|
|
3980
|
+
readonly 'id': string;
|
|
3981
|
+
readonly 'checkout_configuration': io.flow.organization.v0.models.OrganizationConfigurationReference;
|
|
3982
|
+
}
|
|
3983
|
+
|
|
3984
|
+
interface OrganizationDefaultConfigurationsForm {
|
|
3985
|
+
readonly 'id': string;
|
|
3986
|
+
}
|
|
3987
|
+
|
|
3988
|
+
interface OrganizationForm {
|
|
3989
|
+
readonly 'id'?: string;
|
|
3990
|
+
readonly 'name'?: string;
|
|
3991
|
+
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
3992
|
+
readonly 'parent_id'?: string;
|
|
3993
|
+
readonly 'defaults'?: io.flow.common.v0.models.OrganizationDefaults;
|
|
3994
|
+
readonly 'status'?: io.flow.common.v0.enums.OrganizationStatus;
|
|
3995
|
+
readonly 'type'?: io.flow.common.v0.enums.OrganizationType;
|
|
3996
|
+
}
|
|
3997
|
+
|
|
3998
|
+
interface OrganizationPutForm {
|
|
3999
|
+
readonly 'name'?: string;
|
|
4000
|
+
readonly 'environment'?: io.flow.common.v0.enums.Environment;
|
|
4001
|
+
readonly 'parent_id'?: string;
|
|
4002
|
+
readonly 'defaults'?: io.flow.common.v0.models.OrganizationDefaults;
|
|
4003
|
+
readonly 'status'?: io.flow.common.v0.enums.OrganizationStatus;
|
|
4004
|
+
}
|
|
4005
|
+
|
|
4006
|
+
interface OrganizationVersion {
|
|
4007
|
+
readonly 'id': string;
|
|
4008
|
+
readonly 'timestamp': string;
|
|
4009
|
+
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
4010
|
+
readonly 'organization': io.flow.common.v0.models.Organization;
|
|
4011
|
+
}
|
|
4012
|
+
|
|
4013
|
+
interface RegionSetting {
|
|
4014
|
+
readonly 'id': string;
|
|
4015
|
+
readonly 'region': string;
|
|
4016
|
+
readonly 'status': io.flow.common.v0.enums.AvailabilityStatus;
|
|
4017
|
+
}
|
|
4018
|
+
|
|
4019
|
+
interface RegionSettingForm {
|
|
4020
|
+
readonly 'status': io.flow.common.v0.enums.AvailabilityStatus;
|
|
4021
|
+
}
|
|
4022
|
+
}
|
|
4023
|
+
|
|
4024
|
+
declare namespace io.flow.catalog.v0.enums {
|
|
4025
|
+
type AdjustmentReasonKey = 'duty_deminimis' | 'vat_deminimis';
|
|
4026
|
+
type AttributeIntent = 'brand' | 'color' | 'countries_of_origin' | 'product_id' | 'fulfillment_method' | 'hazardous' | 'price' | 'size' | 'sku' | 'taxability' | 'consumer_url' | 'gtin' | 'mpn' | 'facet' | 'eccn' | 'returnable' | 'searchable' | 'barcode' | 'min_days_to_ship' | 'max_days_to_ship' | 'commercial_invoice_item_number' | 'include_in_product_feeds';
|
|
4027
|
+
type FulfillmentMethodType = 'fulfillment_method';
|
|
4028
|
+
type FulfillmentMethodValue = 'digital' | 'physical';
|
|
4029
|
+
type ImageTag = 'thumbnail' | 'checkout';
|
|
4030
|
+
type ReturnItemStatus = 'returnable' | 'non-returnable';
|
|
4031
|
+
type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
|
|
4032
|
+
type TaxabilityType = 'tax_rule';
|
|
4033
|
+
type TaxabilityValue = 'exempt';
|
|
4034
|
+
type UpdatePolicy = 'auto' | 'queue' | 'discard';
|
|
4035
|
+
}
|
|
4036
|
+
|
|
4037
|
+
declare namespace io.flow.catalog.v0.models {
|
|
4038
|
+
interface AdjustmentReason {
|
|
4039
|
+
readonly 'key': io.flow.catalog.v0.enums.AdjustmentReasonKey;
|
|
4040
|
+
readonly 'label': string;
|
|
4041
|
+
}
|
|
4042
|
+
|
|
4043
|
+
interface Attribute {
|
|
4044
|
+
readonly 'id': string;
|
|
4045
|
+
readonly 'key': string;
|
|
4046
|
+
readonly 'options': io.flow.catalog.v0.models.Options;
|
|
4047
|
+
readonly 'label'?: string;
|
|
4048
|
+
readonly 'intent'?: io.flow.catalog.v0.enums.AttributeIntent;
|
|
4049
|
+
readonly 'type'?: io.flow.common.v0.enums.AttributeDataType;
|
|
4050
|
+
readonly 'position'?: number;
|
|
4051
|
+
}
|
|
4052
|
+
|
|
4053
|
+
interface AttributeForm {
|
|
4054
|
+
readonly 'key': string;
|
|
4055
|
+
readonly 'options': io.flow.catalog.v0.models.Options;
|
|
4056
|
+
readonly 'label'?: string;
|
|
4057
|
+
readonly 'intent'?: io.flow.catalog.v0.enums.AttributeIntent;
|
|
4058
|
+
readonly 'type'?: io.flow.common.v0.enums.AttributeDataType;
|
|
4059
|
+
readonly 'position'?: number;
|
|
4060
|
+
}
|
|
4061
|
+
|
|
4062
|
+
interface AttributeVersion {
|
|
4063
|
+
readonly 'id': string;
|
|
4064
|
+
readonly 'timestamp': string;
|
|
4065
|
+
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
4066
|
+
readonly 'attribute': io.flow.catalog.v0.models.Attribute;
|
|
4067
|
+
}
|
|
4068
|
+
|
|
4069
|
+
interface Catalog {
|
|
4070
|
+
readonly 'id': string;
|
|
4071
|
+
}
|
|
4072
|
+
|
|
4073
|
+
interface CatalogReference {
|
|
4074
|
+
readonly 'id': string;
|
|
4075
|
+
}
|
|
4076
|
+
|
|
4077
|
+
interface CatalogStatistics {
|
|
4078
|
+
readonly 'id': string;
|
|
4079
|
+
readonly 'items': number;
|
|
4080
|
+
readonly 'categories': number;
|
|
4081
|
+
}
|
|
4082
|
+
|
|
4083
|
+
interface CatalogVersion {
|
|
4084
|
+
readonly 'id': string;
|
|
4085
|
+
readonly 'timestamp': string;
|
|
4086
|
+
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
4087
|
+
readonly 'catalog': io.flow.catalog.v0.models.Catalog;
|
|
4088
|
+
}
|
|
4089
|
+
|
|
4090
|
+
interface FlowItemIndexMetadata {
|
|
4091
|
+
readonly 'status': io.flow.catalog.v0.enums.SubcatalogItemStatus;
|
|
4092
|
+
}
|
|
4093
|
+
|
|
4094
|
+
interface Image {
|
|
4095
|
+
readonly 'url': string;
|
|
4096
|
+
readonly 'tags': io.flow.catalog.v0.enums.ImageTag[];
|
|
4097
|
+
readonly 'attributes'?: Record<string, string>;
|
|
4098
|
+
}
|
|
4099
|
+
|
|
4100
|
+
interface ImageForm {
|
|
4101
|
+
readonly 'url': string;
|
|
4102
|
+
readonly 'tags'?: io.flow.catalog.v0.enums.ImageTag[];
|
|
4103
|
+
readonly 'attributes'?: Record<string, string>;
|
|
4104
|
+
}
|
|
4105
|
+
|
|
4106
|
+
interface Item {
|
|
4107
|
+
readonly 'id': string;
|
|
4108
|
+
readonly 'number': string;
|
|
4109
|
+
readonly 'locale': string;
|
|
4110
|
+
readonly 'name': string;
|
|
4111
|
+
readonly 'price': io.flow.common.v0.models.Price;
|
|
4112
|
+
readonly 'categories': string[];
|
|
4113
|
+
readonly 'description'?: string;
|
|
4114
|
+
readonly 'attributes': Record<string, string>;
|
|
4115
|
+
readonly 'dimensions': io.flow.common.v0.models.Dimensions;
|
|
4116
|
+
readonly 'images': io.flow.catalog.v0.models.Image[];
|
|
4117
|
+
readonly 'local'?: io.flow.catalog.v0.models.Local;
|
|
4118
|
+
readonly 'created_at'?: string;
|
|
4119
|
+
readonly 'updated_at'?: string;
|
|
4120
|
+
readonly 'deleted_at'?: string;
|
|
4121
|
+
}
|
|
4122
|
+
|
|
4123
|
+
interface ItemAttributesPatchForm {
|
|
4124
|
+
readonly 'attributes': Record<string, string>;
|
|
4125
|
+
}
|
|
4126
|
+
|
|
4127
|
+
interface ItemForm {
|
|
4128
|
+
readonly 'number': string;
|
|
4129
|
+
readonly 'locale': string;
|
|
4130
|
+
readonly 'name': string;
|
|
4131
|
+
readonly 'currency': string;
|
|
4132
|
+
readonly 'price': number;
|
|
4133
|
+
readonly 'categories'?: string[];
|
|
4134
|
+
readonly 'description'?: string;
|
|
4135
|
+
readonly 'attributes'?: Record<string, string>;
|
|
4136
|
+
readonly 'dimensions'?: io.flow.common.v0.models.Dimensions;
|
|
4137
|
+
readonly 'images'?: io.flow.catalog.v0.models.ImageForm[];
|
|
4138
|
+
readonly 'deleted_at'?: string;
|
|
4139
|
+
}
|
|
4140
|
+
|
|
4141
|
+
interface ItemFormOverlay {
|
|
4142
|
+
readonly 'id': string;
|
|
4143
|
+
readonly 'number': string;
|
|
4144
|
+
readonly 'key': string;
|
|
4145
|
+
readonly 'position': number;
|
|
4146
|
+
readonly 'price'?: io.flow.common.v0.models.Price;
|
|
4147
|
+
readonly 'categories'?: string[];
|
|
4148
|
+
readonly 'description'?: string;
|
|
4149
|
+
readonly 'attributes'?: Record<string, string>;
|
|
4150
|
+
readonly 'dimensions'?: io.flow.common.v0.models.Dimensions;
|
|
4151
|
+
readonly 'images'?: io.flow.catalog.v0.models.ImageForm[];
|
|
4152
|
+
readonly 'deleted_at'?: string;
|
|
4153
|
+
}
|
|
4154
|
+
|
|
4155
|
+
interface ItemFormOverlayForm {
|
|
4156
|
+
readonly 'number': string;
|
|
4157
|
+
readonly 'price'?: number;
|
|
4158
|
+
readonly 'currency'?: string;
|
|
4159
|
+
readonly 'position'?: number;
|
|
4160
|
+
readonly 'categories'?: string[];
|
|
4161
|
+
readonly 'description'?: string;
|
|
4162
|
+
readonly 'attributes'?: Record<string, string>;
|
|
4163
|
+
readonly 'dimensions'?: io.flow.common.v0.models.Dimensions;
|
|
4164
|
+
readonly 'images'?: io.flow.catalog.v0.models.ImageForm[];
|
|
4165
|
+
readonly 'deleted_at'?: string;
|
|
4166
|
+
}
|
|
4167
|
+
|
|
4168
|
+
interface ItemPriceUpdateForm {
|
|
4169
|
+
readonly 'number': string;
|
|
4170
|
+
readonly 'currency'?: string;
|
|
4171
|
+
readonly 'price': number;
|
|
4172
|
+
readonly 'attributes': Record<string, string>;
|
|
4173
|
+
}
|
|
4174
|
+
|
|
4175
|
+
interface ItemPriceUpdatePutForm {
|
|
4176
|
+
readonly 'currency'?: string;
|
|
4177
|
+
readonly 'price': number;
|
|
4178
|
+
readonly 'attributes': Record<string, string>;
|
|
4179
|
+
}
|
|
4180
|
+
|
|
4181
|
+
interface ItemStatistics {
|
|
4182
|
+
readonly 'items': number;
|
|
4183
|
+
readonly 'categories': number;
|
|
4184
|
+
}
|
|
4185
|
+
|
|
4186
|
+
interface ItemVersion {
|
|
4187
|
+
readonly 'id': string;
|
|
4188
|
+
readonly 'timestamp': string;
|
|
4189
|
+
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
4190
|
+
readonly 'item': io.flow.catalog.v0.models.Item;
|
|
4191
|
+
}
|
|
4192
|
+
|
|
4193
|
+
interface Local {
|
|
4194
|
+
readonly 'experience': io.flow.common.v0.models.ExperienceSummary;
|
|
4195
|
+
readonly 'prices': io.flow.catalog.v0.unions.LocalizedPrice[];
|
|
4196
|
+
readonly 'rates': io.flow.currency.v0.models.Rate[];
|
|
4197
|
+
readonly 'spot_rates': any/*object*/[];
|
|
4198
|
+
readonly 'status': io.flow.catalog.v0.enums.SubcatalogItemStatus;
|
|
4199
|
+
readonly 'attributes'?: Record<string, string>;
|
|
4200
|
+
readonly 'price_attributes'?: Record<string, io.flow.common.v0.models.PriceWithBase>;
|
|
4201
|
+
}
|
|
4202
|
+
|
|
4203
|
+
interface LocalizedAdjustment {
|
|
4204
|
+
readonly 'currency': string;
|
|
4205
|
+
readonly 'amount': number;
|
|
4206
|
+
readonly 'label': string;
|
|
4207
|
+
readonly 'base': io.flow.common.v0.models.Price;
|
|
4208
|
+
readonly 'reason': io.flow.catalog.v0.models.AdjustmentReason;
|
|
4209
|
+
}
|
|
4210
|
+
|
|
4211
|
+
interface LocalizedItemDuty {
|
|
4212
|
+
readonly 'key': 'localized_item_duty';
|
|
4213
|
+
readonly 'currency': string;
|
|
4214
|
+
readonly 'amount': number;
|
|
4215
|
+
readonly 'label': string;
|
|
4216
|
+
readonly 'base': io.flow.common.v0.models.Price;
|
|
4217
|
+
readonly 'adjustment'?: io.flow.catalog.v0.models.LocalizedAdjustment;
|
|
4218
|
+
readonly 'basis'?: io.flow.common.v0.models.MoneyWithBase;
|
|
4219
|
+
}
|
|
4220
|
+
|
|
4221
|
+
interface LocalizedItemPrice {
|
|
4222
|
+
readonly 'key': 'localized_item_price';
|
|
4223
|
+
readonly 'currency': string;
|
|
4224
|
+
readonly 'amount': number;
|
|
4225
|
+
readonly 'label': string;
|
|
4226
|
+
readonly 'base': io.flow.common.v0.models.Price;
|
|
4227
|
+
readonly 'includes'?: io.flow.common.v0.models.IncludedLevies;
|
|
4228
|
+
}
|
|
4229
|
+
|
|
4230
|
+
interface LocalizedItemVat {
|
|
4231
|
+
readonly 'key': 'localized_item_vat';
|
|
4232
|
+
readonly 'currency': string;
|
|
4233
|
+
readonly 'amount': number;
|
|
4234
|
+
readonly 'label': string;
|
|
4235
|
+
readonly 'base': io.flow.common.v0.models.Price;
|
|
4236
|
+
readonly 'name': string;
|
|
4237
|
+
readonly 'adjustment'?: io.flow.catalog.v0.models.LocalizedAdjustment;
|
|
4238
|
+
readonly 'accuracy'?: io.flow.price.v0.enums.PriceAccuracy;
|
|
4239
|
+
readonly 'basis'?: io.flow.common.v0.models.MoneyWithBase;
|
|
4240
|
+
}
|
|
4241
|
+
|
|
4242
|
+
interface LocalizedTotal {
|
|
4243
|
+
readonly 'key': 'localized_total';
|
|
4244
|
+
readonly 'currency': string;
|
|
4245
|
+
readonly 'amount': number;
|
|
4246
|
+
readonly 'label': string;
|
|
4247
|
+
readonly 'base': io.flow.common.v0.models.Price;
|
|
4248
|
+
}
|
|
4249
|
+
|
|
4250
|
+
interface Options {
|
|
4251
|
+
readonly 'required': boolean;
|
|
4252
|
+
readonly 'show_in_catalog': boolean;
|
|
4253
|
+
readonly 'show_in_harmonization': boolean;
|
|
4254
|
+
}
|
|
4255
|
+
|
|
4256
|
+
interface Subcatalog {
|
|
4257
|
+
readonly 'discriminator': 'subcatalog';
|
|
4258
|
+
readonly 'id': string;
|
|
4259
|
+
readonly 'catalog': io.flow.catalog.v0.models.Catalog;
|
|
4260
|
+
readonly 'settings': io.flow.catalog.v0.models.SubcatalogSettings;
|
|
4261
|
+
}
|
|
4262
|
+
|
|
4263
|
+
interface SubcatalogForm {
|
|
4264
|
+
readonly 'settings'?: io.flow.catalog.v0.models.SubcatalogSettingsForm;
|
|
4265
|
+
}
|
|
4266
|
+
|
|
4267
|
+
interface SubcatalogItem {
|
|
4268
|
+
readonly 'id': string;
|
|
4269
|
+
readonly 'item': io.flow.catalog.v0.models.Item;
|
|
4270
|
+
readonly 'status': io.flow.catalog.v0.enums.SubcatalogItemStatus;
|
|
4271
|
+
}
|
|
4272
|
+
|
|
4273
|
+
interface SubcatalogItemVersion {
|
|
4274
|
+
readonly 'id': string;
|
|
4275
|
+
readonly 'timestamp': string;
|
|
4276
|
+
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
4277
|
+
readonly 'subcatalog_item': io.flow.catalog.v0.models.SubcatalogItem;
|
|
4278
|
+
}
|
|
4279
|
+
|
|
4280
|
+
interface SubcatalogReference {
|
|
4281
|
+
readonly 'discriminator': 'subcatalog_reference';
|
|
4282
|
+
readonly 'id': string;
|
|
4283
|
+
}
|
|
4284
|
+
|
|
4285
|
+
interface SubcatalogSettings {
|
|
4286
|
+
readonly 'update_policy': io.flow.catalog.v0.enums.UpdatePolicy;
|
|
4287
|
+
}
|
|
4288
|
+
|
|
4289
|
+
interface SubcatalogSettingsForm {
|
|
4290
|
+
readonly 'update_policy'?: io.flow.catalog.v0.enums.UpdatePolicy;
|
|
4291
|
+
}
|
|
4292
|
+
|
|
4293
|
+
interface SubcatalogStatistics {
|
|
4294
|
+
readonly 'excluded': io.flow.catalog.v0.models.ItemStatistics;
|
|
4295
|
+
readonly 'included': io.flow.catalog.v0.models.ItemStatistics;
|
|
4296
|
+
readonly 'restricted': io.flow.catalog.v0.models.ItemStatistics;
|
|
4297
|
+
readonly 'queue': io.flow.catalog.v0.models.ItemStatistics;
|
|
4298
|
+
readonly 'catalog': io.flow.catalog.v0.models.CatalogStatistics;
|
|
4299
|
+
}
|
|
4300
|
+
|
|
4301
|
+
interface SubcatalogVersion {
|
|
4302
|
+
readonly 'id': string;
|
|
4303
|
+
readonly 'timestamp': string;
|
|
4304
|
+
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
4305
|
+
readonly 'subcatalog': io.flow.catalog.v0.models.Subcatalog;
|
|
4306
|
+
}
|
|
4307
|
+
}
|
|
4308
|
+
|
|
4309
|
+
declare namespace io.flow.catalog.v0.unions {
|
|
4310
|
+
type ExpandableSubcatalog = (io.flow.catalog.v0.models.Subcatalog | io.flow.catalog.v0.models.SubcatalogReference);
|
|
4311
|
+
type LocalizedPrice = (io.flow.catalog.v0.models.LocalizedItemPrice | io.flow.catalog.v0.models.LocalizedItemVat | io.flow.catalog.v0.models.LocalizedItemDuty | io.flow.catalog.v0.models.LocalizedTotal);
|
|
4312
|
+
}
|
|
4313
|
+
|
|
4314
|
+
declare namespace io.flow.inventory.v0.enums {
|
|
4315
|
+
type Aggregate = 'maximum' | 'minimum';
|
|
4316
|
+
type InventoryStatus = 'has_inventory' | 'no_inventory';
|
|
4317
|
+
type UpdateType = 'change' | 'set';
|
|
4318
|
+
}
|
|
4319
|
+
|
|
4320
|
+
declare namespace io.flow.inventory.v0.models {
|
|
4321
|
+
interface ExternalApiTimeoutReservationError {
|
|
4322
|
+
readonly 'code': 'external_api_timeout';
|
|
4323
|
+
readonly 'messages': string[];
|
|
4324
|
+
}
|
|
4325
|
+
|
|
4326
|
+
interface GenericReservationError {
|
|
4327
|
+
readonly 'code': 'generic_reservation_error';
|
|
4328
|
+
readonly 'messages': string[];
|
|
4329
|
+
}
|
|
4330
|
+
|
|
4331
|
+
interface InventoryBackorder {
|
|
4332
|
+
readonly 'discriminator': 'inventory_backorder';
|
|
4333
|
+
readonly 'quantity': number;
|
|
4334
|
+
}
|
|
4335
|
+
|
|
4336
|
+
interface InventoryCenterReference {
|
|
4337
|
+
readonly 'key': string;
|
|
4338
|
+
}
|
|
4339
|
+
|
|
4340
|
+
interface InventoryCheckResponse {
|
|
4341
|
+
readonly 'items': io.flow.inventory.v0.models.InventoryCheckResponseItem[];
|
|
4342
|
+
}
|
|
4343
|
+
|
|
4344
|
+
interface InventoryCheckResponseItem {
|
|
4345
|
+
readonly 'number': string;
|
|
4346
|
+
readonly 'quantity': number;
|
|
4347
|
+
readonly 'inventory_status': io.flow.inventory.v0.enums.InventoryStatus;
|
|
4348
|
+
}
|
|
4349
|
+
|
|
4350
|
+
interface InventoryExperienceReference {
|
|
4351
|
+
readonly 'key': string;
|
|
4352
|
+
}
|
|
4353
|
+
|
|
4354
|
+
interface InventoryFollowEcommercePlatform {
|
|
4355
|
+
readonly 'discriminator': 'inventory_follow_ecommerce_platform';
|
|
4356
|
+
readonly 'quantity': number;
|
|
4357
|
+
}
|
|
4358
|
+
|
|
4359
|
+
interface InventoryItemReference {
|
|
4360
|
+
readonly 'number': string;
|
|
4361
|
+
}
|
|
4362
|
+
|
|
4363
|
+
interface InventoryRequest {
|
|
4364
|
+
readonly 'items': io.flow.inventory.v0.models.InventoryRequestItem[];
|
|
4365
|
+
}
|
|
4366
|
+
|
|
4367
|
+
interface InventoryRequestItem {
|
|
4368
|
+
readonly 'number': string;
|
|
4369
|
+
readonly 'quantity': number;
|
|
4370
|
+
}
|
|
4371
|
+
|
|
4372
|
+
interface InventoryRule {
|
|
4373
|
+
readonly 'id': string;
|
|
4374
|
+
readonly 'position': number;
|
|
4375
|
+
readonly 'query': string;
|
|
4376
|
+
readonly 'strategy': io.flow.inventory.v0.unions.InventoryStrategy;
|
|
4377
|
+
}
|
|
4378
|
+
|
|
4379
|
+
interface InventoryRuleForm {
|
|
4380
|
+
readonly 'position': number;
|
|
4381
|
+
readonly 'query': string;
|
|
4382
|
+
readonly 'strategy': io.flow.inventory.v0.unions.InventoryStrategy;
|
|
4383
|
+
}
|
|
4384
|
+
|
|
4385
|
+
interface InventoryRuleVersion {
|
|
4386
|
+
readonly 'id': string;
|
|
4387
|
+
readonly 'timestamp': string;
|
|
4388
|
+
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
4389
|
+
readonly 'inventory_rule': io.flow.inventory.v0.models.InventoryRule;
|
|
4390
|
+
}
|
|
4391
|
+
|
|
4392
|
+
interface InventorySnapshot {
|
|
4393
|
+
readonly 'id': string;
|
|
4394
|
+
readonly 'available': number;
|
|
4395
|
+
readonly 'center': io.flow.inventory.v0.models.InventoryCenterReference;
|
|
4396
|
+
readonly 'item': io.flow.inventory.v0.models.InventoryItemReference;
|
|
4397
|
+
readonly 'quantity': number;
|
|
4398
|
+
}
|
|
4399
|
+
|
|
4400
|
+
interface InventorySnapshotVersion {
|
|
4401
|
+
readonly 'id': string;
|
|
4402
|
+
readonly 'timestamp': string;
|
|
4403
|
+
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
4404
|
+
readonly 'inventory_snapshot': io.flow.inventory.v0.models.InventorySnapshot;
|
|
4405
|
+
}
|
|
4406
|
+
|
|
4407
|
+
interface InventoryStock {
|
|
4408
|
+
readonly 'discriminator': 'inventory_stock';
|
|
4409
|
+
readonly 'quantity': number;
|
|
4410
|
+
}
|
|
4411
|
+
|
|
4412
|
+
interface InventoryUnlimited {
|
|
4413
|
+
readonly 'discriminator': 'inventory_unlimited';
|
|
4414
|
+
readonly 'placeholder'?: string;
|
|
4415
|
+
}
|
|
4416
|
+
|
|
4417
|
+
interface InventoryUpdate {
|
|
4418
|
+
readonly 'id': string;
|
|
4419
|
+
readonly 'idempotency_key': string;
|
|
4420
|
+
readonly 'center': io.flow.inventory.v0.models.InventoryCenterReference;
|
|
4421
|
+
readonly 'item': io.flow.inventory.v0.models.InventoryItemReference;
|
|
4422
|
+
readonly 'notes': any/*object*/;
|
|
4423
|
+
readonly 'quantity': number;
|
|
4424
|
+
readonly 'type': io.flow.inventory.v0.enums.UpdateType;
|
|
4425
|
+
}
|
|
4426
|
+
|
|
4427
|
+
interface InventoryUpdateForm {
|
|
4428
|
+
readonly 'center': string;
|
|
4429
|
+
readonly 'idempotency_key': string;
|
|
4430
|
+
readonly 'item_number': string;
|
|
4431
|
+
readonly 'quantity': number;
|
|
4432
|
+
readonly 'type': io.flow.inventory.v0.enums.UpdateType;
|
|
4433
|
+
readonly 'notes'?: any/*object*/;
|
|
4434
|
+
}
|
|
4435
|
+
|
|
4436
|
+
interface InventoryUpdateVersion {
|
|
4437
|
+
readonly 'id': string;
|
|
4438
|
+
readonly 'timestamp': string;
|
|
4439
|
+
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
4440
|
+
readonly 'inventory_update': io.flow.inventory.v0.models.InventoryUpdate;
|
|
4441
|
+
}
|
|
4442
|
+
|
|
4443
|
+
interface NoInventoryReservationError {
|
|
4444
|
+
readonly 'code': 'no_inventory';
|
|
4445
|
+
readonly 'messages': string[];
|
|
4446
|
+
readonly 'items': io.flow.inventory.v0.models.NoInventoryReservationErrorItem[];
|
|
4447
|
+
}
|
|
4448
|
+
|
|
4449
|
+
interface NoInventoryReservationErrorItem {
|
|
4450
|
+
readonly 'number': string;
|
|
4451
|
+
readonly 'requested_quantity': number;
|
|
4452
|
+
readonly 'available_quantity': number;
|
|
4453
|
+
}
|
|
4454
|
+
|
|
4455
|
+
interface PfsInventoryCheckResponse {
|
|
4456
|
+
readonly 'items': Record<string, io.flow.inventory.v0.models.PfsInventoryCheckResponseItem>;
|
|
4457
|
+
}
|
|
4458
|
+
|
|
4459
|
+
interface PfsInventoryCheckResponseItem {
|
|
4460
|
+
readonly 'number': string;
|
|
4461
|
+
readonly 'ats': number;
|
|
4462
|
+
readonly 'in_stock': boolean;
|
|
4463
|
+
}
|
|
4464
|
+
|
|
4465
|
+
interface PfsInventoryStatus {
|
|
4466
|
+
readonly 'status': string;
|
|
4467
|
+
}
|
|
4468
|
+
|
|
4469
|
+
interface Reservation {
|
|
4470
|
+
readonly 'id': string;
|
|
4471
|
+
readonly 'key': string;
|
|
4472
|
+
readonly 'order'?: io.flow.inventory.v0.models.ReservationOrderReference;
|
|
4473
|
+
readonly 'items': io.flow.inventory.v0.models.ReservationItem[];
|
|
4474
|
+
readonly 'reserved_until'?: string;
|
|
4475
|
+
}
|
|
4476
|
+
|
|
4477
|
+
interface ReservationForm {
|
|
4478
|
+
readonly 'order_number'?: string;
|
|
4479
|
+
readonly 'items': io.flow.inventory.v0.models.ReservationItemForm[];
|
|
4480
|
+
}
|
|
4481
|
+
|
|
4482
|
+
interface ReservationItem {
|
|
4483
|
+
readonly 'item': io.flow.inventory.v0.models.ReservationItemReference;
|
|
4484
|
+
readonly 'quantity': number;
|
|
4485
|
+
}
|
|
4486
|
+
|
|
4487
|
+
interface ReservationItemForm {
|
|
4488
|
+
readonly 'item_number': string;
|
|
4489
|
+
readonly 'quantity': number;
|
|
4490
|
+
}
|
|
4491
|
+
|
|
4492
|
+
interface ReservationItemReference {
|
|
4493
|
+
readonly 'number': string;
|
|
4494
|
+
}
|
|
4495
|
+
|
|
4496
|
+
interface ReservationOrderReference {
|
|
4497
|
+
readonly 'number': string;
|
|
4498
|
+
}
|
|
4499
|
+
}
|
|
4500
|
+
|
|
4501
|
+
declare namespace io.flow.inventory.v0.unions {
|
|
4502
|
+
type InventoryStrategy = (io.flow.inventory.v0.models.InventoryBackorder | io.flow.inventory.v0.models.InventoryStock | io.flow.inventory.v0.models.InventoryUnlimited | io.flow.inventory.v0.models.InventoryFollowEcommercePlatform);
|
|
4503
|
+
type ReservationError = (io.flow.inventory.v0.models.NoInventoryReservationError | io.flow.inventory.v0.models.ExternalApiTimeoutReservationError | io.flow.inventory.v0.models.GenericReservationError);
|
|
4504
|
+
}
|
|
4505
|
+
|
|
4506
|
+
declare namespace io.flow.permission.v0.enums {
|
|
4507
|
+
type AuthenticationTechnique = 'anonymous' | 'session' | 'token' | 'partner_token' | 'user';
|
|
4508
|
+
type FlowBehavior = 'view_consumer_data';
|
|
4509
|
+
type FlowRole = 'organization_admin' | 'organization_merchant' | 'organization_customer_service' | 'organization_fulfillment' | 'organization_marketing' | 'organization_finance' | 'organization_classification' | 'flow_operations' | 'channel_admin' | 'channel_organization_admin';
|
|
4510
|
+
type PermittedHttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
4511
|
+
}
|
|
4512
|
+
|
|
4513
|
+
declare namespace io.flow.permission.v0.models {
|
|
4514
|
+
interface BehaviorAudit {
|
|
4515
|
+
readonly 'behavior': io.flow.permission.v0.enums.FlowBehavior;
|
|
4516
|
+
readonly 'authentication_techniques': io.flow.permission.v0.enums.AuthenticationTechnique[];
|
|
4517
|
+
readonly 'roles': io.flow.permission.v0.enums.FlowRole[];
|
|
4518
|
+
}
|
|
4519
|
+
|
|
4520
|
+
interface PermissionAudit {
|
|
4521
|
+
readonly 'routes': io.flow.permission.v0.models.RouteAudit[];
|
|
4522
|
+
readonly 'behaviors': io.flow.permission.v0.models.BehaviorAudit[];
|
|
4523
|
+
}
|
|
4524
|
+
|
|
4525
|
+
interface PermissionCheck {
|
|
4526
|
+
readonly 'authentication_technique': io.flow.permission.v0.enums.AuthenticationTechnique;
|
|
4527
|
+
readonly 'user'?: io.flow.common.v0.unions.ExpandableUser;
|
|
4528
|
+
readonly 'roles': io.flow.permission.v0.enums.FlowRole[];
|
|
4529
|
+
readonly 'behaviors': io.flow.permission.v0.enums.FlowBehavior[];
|
|
4530
|
+
readonly 'routes': io.flow.permission.v0.models.PermittedRoute[];
|
|
4531
|
+
}
|
|
4532
|
+
|
|
4533
|
+
interface PermittedRoute {
|
|
4534
|
+
readonly 'method': io.flow.permission.v0.enums.PermittedHttpMethod;
|
|
4535
|
+
readonly 'path': string;
|
|
4536
|
+
}
|
|
4537
|
+
|
|
4538
|
+
interface RouteAudit {
|
|
4539
|
+
readonly 'method': io.flow.permission.v0.enums.PermittedHttpMethod;
|
|
4540
|
+
readonly 'path': string;
|
|
4541
|
+
readonly 'authentication_techniques': io.flow.permission.v0.enums.AuthenticationTechnique[];
|
|
4542
|
+
readonly 'roles': io.flow.permission.v0.enums.FlowRole[];
|
|
4543
|
+
}
|
|
4544
|
+
|
|
4545
|
+
interface SimplePermissionCheck {
|
|
4546
|
+
readonly 'behaviors': io.flow.permission.v0.enums.FlowBehavior[];
|
|
4547
|
+
}
|
|
4548
|
+
}
|
|
4549
|
+
|
|
4550
|
+
declare namespace io.flow.query.builder.v0.enums {
|
|
4551
|
+
type AvailableFilterFormat = 'boolean' | 'date' | 'money' | 'decimal' | 'string' | 'unit_of_length' | 'unit_of_mass';
|
|
4552
|
+
}
|
|
4553
|
+
|
|
4554
|
+
declare namespace io.flow.query.builder.v0.models {
|
|
4555
|
+
interface AvailableFilterStructured {
|
|
4556
|
+
readonly 'discriminator': 'structured';
|
|
4557
|
+
readonly 'field': string;
|
|
4558
|
+
readonly 'operators': string[];
|
|
4559
|
+
readonly 'format': io.flow.query.builder.v0.enums.AvailableFilterFormat;
|
|
4560
|
+
readonly 'valid_values'?: string[];
|
|
4561
|
+
readonly 'placeholder'?: string;
|
|
4562
|
+
}
|
|
4563
|
+
|
|
4564
|
+
interface AvailableFilterUnstructured {
|
|
4565
|
+
readonly 'discriminator': 'unstructured';
|
|
4566
|
+
readonly 'placeholder'?: string;
|
|
4567
|
+
}
|
|
4568
|
+
|
|
4569
|
+
interface Query {
|
|
4570
|
+
readonly 'q': string;
|
|
4571
|
+
readonly 'filters': io.flow.query.builder.v0.unions.QueryFilter[];
|
|
4572
|
+
}
|
|
4573
|
+
|
|
4574
|
+
interface QueryBuilder {
|
|
4575
|
+
readonly 'q': string;
|
|
4576
|
+
readonly 'filters': io.flow.query.builder.v0.unions.QueryFilter[];
|
|
4577
|
+
readonly 'available': io.flow.query.builder.v0.unions.AvailableFilter[];
|
|
4578
|
+
}
|
|
4579
|
+
|
|
4580
|
+
interface QueryBuilderFilterForm {
|
|
4581
|
+
readonly 'discriminator': 'filter';
|
|
4582
|
+
readonly 'filters': io.flow.query.builder.v0.unions.QueryFilterForm[];
|
|
4583
|
+
}
|
|
4584
|
+
|
|
4585
|
+
interface QueryBuilderQueryForm {
|
|
4586
|
+
readonly 'discriminator': 'query';
|
|
4587
|
+
readonly 'q': string;
|
|
2382
4588
|
}
|
|
2383
4589
|
|
|
2384
|
-
interface
|
|
2385
|
-
readonly '
|
|
2386
|
-
readonly '
|
|
2387
|
-
readonly '
|
|
2388
|
-
readonly '
|
|
2389
|
-
readonly '
|
|
2390
|
-
readonly 'phonetic_givenName'?: string;
|
|
2391
|
-
readonly 'address_lines'?: string[];
|
|
2392
|
-
readonly 'locality'?: string;
|
|
2393
|
-
readonly 'sub_locality'?: string;
|
|
2394
|
-
readonly 'administrative_area'?: string;
|
|
2395
|
-
readonly 'sub_administrative_area'?: string;
|
|
2396
|
-
readonly 'postal_code'?: string;
|
|
2397
|
-
readonly 'country'?: string;
|
|
2398
|
-
readonly 'country_code'?: string;
|
|
4590
|
+
interface QueryFilterStructured {
|
|
4591
|
+
readonly 'discriminator': 'structured';
|
|
4592
|
+
readonly 'q': string;
|
|
4593
|
+
readonly 'field': string;
|
|
4594
|
+
readonly 'operator': string;
|
|
4595
|
+
readonly 'values': string[];
|
|
2399
4596
|
}
|
|
2400
4597
|
|
|
2401
|
-
interface
|
|
2402
|
-
readonly '
|
|
2403
|
-
readonly '
|
|
2404
|
-
readonly '
|
|
2405
|
-
readonly '
|
|
2406
|
-
readonly 'cardholderName'?: string;
|
|
2407
|
-
readonly 'deviceManufacturerIdentifier': string;
|
|
2408
|
-
readonly 'paymentDataType': string;
|
|
2409
|
-
readonly 'paymentData': any/*object*/;
|
|
4598
|
+
interface QueryFilterStructuredForm {
|
|
4599
|
+
readonly 'discriminator': 'structured';
|
|
4600
|
+
readonly 'field': string;
|
|
4601
|
+
readonly 'operator': string;
|
|
4602
|
+
readonly 'values': string[];
|
|
2410
4603
|
}
|
|
2411
4604
|
|
|
2412
|
-
interface
|
|
2413
|
-
readonly '
|
|
2414
|
-
readonly '
|
|
2415
|
-
readonly 'country_code': string;
|
|
2416
|
-
readonly 'currency_code': string;
|
|
2417
|
-
readonly 'merchant_capabilities': io.flow.apple.pay.v0.enums.ApplePayMerchantCapability[];
|
|
2418
|
-
readonly 'shipping_methods'?: io.flow.apple.pay.v0.models.ApplePayShippingMethod[];
|
|
2419
|
-
readonly 'shipping_type'?: io.flow.apple.pay.v0.enums.ApplePayShippingType;
|
|
2420
|
-
readonly 'supported_countries'?: string[];
|
|
2421
|
-
readonly 'supported_networks': io.flow.apple.pay.v0.enums.ApplePaySupportedNetworks[];
|
|
2422
|
-
readonly 'required_billingContactFields'?: io.flow.apple.pay.v0.enums.ApplePayContactField[];
|
|
2423
|
-
readonly 'required_shippingContactFields'?: io.flow.apple.pay.v0.enums.ApplePayContactField[];
|
|
2424
|
-
readonly 'billing_contact'?: io.flow.apple.pay.v0.models.ApplePayPaymentContact;
|
|
2425
|
-
readonly 'shipping_contact'?: io.flow.apple.pay.v0.models.ApplePayPaymentContact;
|
|
2426
|
-
readonly 'application_data'?: string;
|
|
4605
|
+
interface QueryFilterUnstructured {
|
|
4606
|
+
readonly 'discriminator': 'unstructured';
|
|
4607
|
+
readonly 'q': string;
|
|
2427
4608
|
}
|
|
2428
4609
|
|
|
2429
|
-
interface
|
|
2430
|
-
readonly '
|
|
2431
|
-
readonly '
|
|
2432
|
-
readonly 'amount': string;
|
|
2433
|
-
readonly 'identifier': string;
|
|
4610
|
+
interface QueryFilterUnstructuredForm {
|
|
4611
|
+
readonly 'discriminator': 'unstructured';
|
|
4612
|
+
readonly 'q': string;
|
|
2434
4613
|
}
|
|
2435
4614
|
}
|
|
2436
4615
|
|
|
4616
|
+
declare namespace io.flow.query.builder.v0.unions {
|
|
4617
|
+
type AvailableFilter = (io.flow.query.builder.v0.models.AvailableFilterStructured | io.flow.query.builder.v0.models.AvailableFilterUnstructured);
|
|
4618
|
+
type QueryBuilderForm = (io.flow.query.builder.v0.models.QueryBuilderFilterForm | io.flow.query.builder.v0.models.QueryBuilderQueryForm);
|
|
4619
|
+
type QueryFilter = (io.flow.query.builder.v0.models.QueryFilterStructured | io.flow.query.builder.v0.models.QueryFilterUnstructured);
|
|
4620
|
+
type QueryFilterForm = (io.flow.query.builder.v0.models.QueryFilterStructuredForm | io.flow.query.builder.v0.models.QueryFilterUnstructuredForm);
|
|
4621
|
+
}
|
|
4622
|
+
|
|
2437
4623
|
declare namespace io.flow.v0.enums {
|
|
2438
4624
|
type AbandonedOrderPromotionStatus = 'active' | 'inactive';
|
|
2439
4625
|
type AbandonedOrderSettingStatus = 'active' | 'inactive';
|
|
2440
4626
|
type AddressFieldName = 'first_name' | 'last_name' | 'street_1' | 'street_2' | 'city' | 'province' | 'postal' | 'country' | 'phone' | 'company' | 'vat_registration_number';
|
|
2441
4627
|
type AddressVerificationResultFieldCode = 'matched' | 'not_available' | 'not_checked' | 'not_matched';
|
|
2442
4628
|
type AdjustmentReasonKey = 'duty_deminimis' | 'vat_deminimis';
|
|
2443
|
-
type Aggregate = 'maximum' | 'minimum';
|
|
2444
4629
|
type AttributeDataType = 'boolean' | 'integer' | 'decimal' | 'string' | 'json_array';
|
|
2445
4630
|
type AttributeIntent = 'brand' | 'color' | 'countries_of_origin' | 'product_id' | 'fulfillment_method' | 'hazardous' | 'price' | 'size' | 'sku' | 'taxability' | 'consumer_url' | 'gtin' | 'mpn' | 'facet' | 'eccn' | 'returnable' | 'searchable' | 'barcode' | 'min_days_to_ship' | 'max_days_to_ship' | 'commercial_invoice_item_number' | 'include_in_product_feeds';
|
|
2446
4631
|
type AuthenticationTechnique = 'anonymous' | 'session' | 'token' | 'partner_token' | 'user';
|
|
@@ -2488,9 +4673,9 @@ declare namespace io.flow.v0.enums {
|
|
|
2488
4673
|
type DutyItemApprovalStatus = 'pending' | 'certified' | 'decertified';
|
|
2489
4674
|
type EcommercePlatformType = 'commercetools' | 'custom' | 'hybris' | 'magento' | 'shopify' | 'shopify_markets' | 'sfcc' | 'solidus' | 'workarea';
|
|
2490
4675
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
2491
|
-
type EntityIdentifierType = 'ioss' | 'voec';
|
|
4676
|
+
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
2492
4677
|
type Environment = 'sandbox' | 'production';
|
|
2493
|
-
type EventType = 'test_upserted' | 'generate_load' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'catalog_item_upserted' | 'catalog_item_deleted' | 'catalog_item_upserted_v2' | 'catalog_item_deleted_v2' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'item_inserted' | 'item_updated' | 'item_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | 'email_notification_upserted' | 'email_notification_deleted' | 'available_promotions_upserted' | 'available_promotions_deleted' | 'available_promotions_upserted_v2' | 'available_promotions_deleted_v2' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'currency_format_deleted' | 'currency_format_upserted' | 'experience_deleted' | 'experience_upserted' | 'experience_deleted_v2' | 'experience_upserted_v2' | 'country_status_upserted' | 'country_status_deleted' | 'experience_price_book_mapping_deleted' | 'experience_price_book_mapping_upserted' | 'experience_logistics_settings_upserted' | 'experience_logistics_settings_deleted' | 'item_margin_deleted_v2' | 'item_margin_upserted_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'label_format_deleted' | 'label_format_upserted' | 'order_deleted' | 'order_upserted' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted' | 'order_identifier_upserted' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v2' | 'order_identifier_upserted_v3' | 'order_replacement_upserted' | 'order_replacement_deleted' | 'pricing_deleted' | 'pricing_upserted' | 'order_service_change_request' | 'fraud_status_changed' | 'center_upserted' | 'center_deleted' | 'shipping_configuration_upserted' | 'shipping_configuration_deleted' | 'tier_upserted_v2' | 'tier_deleted_v2' | 'shipping_lane_upserted' | 'shipping_lane_deleted' | 'shipping_configuration_item_availability_upserted' | 'shipping_configuration_item_availability_deleted' | 'shipping_configuration_item_shipping_pricing_upserted' | 'shipping_configuration_item_shipping_pricing_deleted' | 'hs6_code_upserted' | 'hs6_code_deleted' | 'hs10_code_upserted' | 'hs10_code_deleted' | 'item_origin_upserted' | 'item_origin_deleted' | 'harmonized_landed_cost_upserted' | 'fully_harmonized_item_upserted' | 'import_completed_v2' | 'import_failed_v2' | '
|
|
4678
|
+
type EventType = 'test_upserted' | 'generate_load' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'catalog_item_upserted' | 'catalog_item_deleted' | 'catalog_item_upserted_v2' | 'catalog_item_deleted_v2' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'item_inserted' | 'item_updated' | 'item_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | 'email_notification_upserted' | 'email_notification_deleted' | 'available_promotions_upserted' | 'available_promotions_deleted' | 'available_promotions_upserted_v2' | 'available_promotions_deleted_v2' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'currency_format_deleted' | 'currency_format_upserted' | 'experience_deleted' | 'experience_upserted' | 'experience_deleted_v2' | 'experience_upserted_v2' | 'country_status_upserted' | 'country_status_deleted' | 'experience_price_book_mapping_deleted' | 'experience_price_book_mapping_upserted' | 'experience_logistics_settings_upserted' | 'experience_logistics_settings_deleted' | 'item_margin_deleted_v2' | 'item_margin_upserted_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'label_format_deleted' | 'label_format_upserted' | 'order_deleted' | 'order_upserted' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted' | 'order_identifier_upserted' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v2' | 'order_identifier_upserted_v3' | 'order_replacement_upserted' | 'order_replacement_deleted' | 'pricing_deleted' | 'pricing_upserted' | 'order_service_change_request' | 'fraud_status_changed' | 'center_upserted' | 'center_deleted' | 'shipping_configuration_upserted' | 'shipping_configuration_deleted' | 'tier_upserted_v2' | 'tier_deleted_v2' | 'shipping_lane_upserted' | 'shipping_lane_deleted' | 'shipping_configuration_item_availability_upserted' | 'shipping_configuration_item_availability_deleted' | 'shipping_configuration_item_shipping_pricing_upserted' | 'shipping_configuration_item_shipping_pricing_deleted' | 'hs6_code_upserted' | 'hs6_code_deleted' | 'hs10_code_upserted' | 'hs10_code_deleted' | 'item_origin_upserted' | 'item_origin_deleted' | 'harmonized_landed_cost_upserted' | 'fully_harmonized_item_upserted' | 'import_completed_v2' | 'import_failed_v2' | 'label_upserted' | 'label_deleted_v2' | 'label_upserted_v2' | 'notification_upserted_v2' | 'notification_deleted_v2' | 'manifested_label_upserted' | 'manifested_label_deleted' | 'label_processing_modification_upserted' | 'label_processing_modification_deleted' | 'local_item_upserted' | 'local_item_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'checkout_optin_responses_upserted' | 'checkout_optin_responses_deleted' | 'browse_optin_responses_upserted' | 'browse_optin_responses_deleted' | 'order_placed' | 'order_placed_v2' | 'ready_to_fulfill' | 'ready_to_fulfill_v2' | 'membership_upserted_v2' | 'membership_deleted_v2' | 'organization_upserted' | 'organization_deleted' | 'organization_upserted_v2' | 'organization_deleted_v2' | 'organization_default_configurations_upserted' | 'organization_default_configurations_deleted' | 'ecommerce_platform_upserted' | 'ecommerce_platform_deleted' | 'organization_onboarding_state_upserted' | 'organization_onboarding_state_deleted' | 'authorization_deleted_v2' | 'authorization_status_changed' | 'card_authorization_upserted_v2' | 'card_authorization_deleted_v2' | 'online_authorization_upserted_v2' | 'online_authorization_deleted_v2' | 'capture_upserted_v2' | 'capture_deleted' | 'card_upserted_v2' | 'card_deleted' | 'payment_upserted' | 'payment_deleted' | 'refund_upserted_v2' | 'refund_deleted_v2' | 'refund_capture_upserted_v2' | 'reversal_upserted' | 'reversal_deleted' | 'capture_identifier_upserted' | 'capture_identifier_deleted' | 'refund_identifier_upserted' | 'refund_identifier_deleted' | 'virtual_card_capture_upserted' | 'virtual_card_capture_deleted' | 'virtual_card_refund_upserted' | 'virtual_card_refund_deleted' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | 'organization_rates_published' | 'ratecard_lane_upserted' | 'ratecard_lane_deleted' | 'ratecard_upserted' | 'ratecard_deleted' | 'product_restriction_result_upserted' | 'product_restriction_result_deleted' | 'return_upserted' | 'return_deleted' | 'return_upserted_v2' | 'return_deleted_v2' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
|
|
2494
4679
|
type ExceptionType = 'open' | 'closed';
|
|
2495
4680
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
2496
4681
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -2518,9 +4703,9 @@ declare namespace io.flow.v0.enums {
|
|
|
2518
4703
|
type ImportType = 'catalog_items' | 'catalog_items_external' | 'customs_descriptions' | 'customs_description_tariffs' | 'experiences_with_settings' | 'harmonization_codes' | 'item_prices' | 'item_form_overlays' | 'price_book_items' | 'price_book_items_query' | 'ratecard_lanes' | 'order_service_changes';
|
|
2519
4704
|
type IncludedLevyKey = 'duty' | 'vat' | 'vat_and_duty' | 'none';
|
|
2520
4705
|
type Incoterm = 'EXW' | 'FCA' | 'CPT' | 'CIP' | 'DAT' | 'DAP' | 'DDP' | 'FAS' | 'FOB' | 'CFR' | 'CIF' | 'DAF' | 'DES' | 'DEQ' | 'DDU';
|
|
4706
|
+
type IncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
2521
4707
|
type InlineWindowViewportSize = 'xxx_small' | 'xx_small' | 'x_small' | 'small' | 'fullscreen' | 'responsive';
|
|
2522
4708
|
type InputSpecificationType = 'text' | 'number';
|
|
2523
|
-
type InventoryStatus = 'has_inventory' | 'no_inventory';
|
|
2524
4709
|
type InvitationErrorCode = 'expired' | 'invalid_email';
|
|
2525
4710
|
type ItemAvailabilityStatus = 'available' | 'low' | 'out_of_stock';
|
|
2526
4711
|
type ItemIdentifier = 'item_number' | 'sku';
|
|
@@ -2648,7 +4833,6 @@ declare namespace io.flow.v0.enums {
|
|
|
2648
4833
|
type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
|
|
2649
4834
|
type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
|
|
2650
4835
|
type UpdatePolicy = 'auto' | 'queue' | 'discard';
|
|
2651
|
-
type UpdateType = 'change' | 'set';
|
|
2652
4836
|
type UserStatus = 'pending' | 'active' | 'inactive';
|
|
2653
4837
|
type ValueAddedService = 'Hazardous Material';
|
|
2654
4838
|
type Visibility = 'public' | 'private';
|
|
@@ -5978,11 +8162,6 @@ declare namespace io.flow.v0.models {
|
|
|
5978
8162
|
readonly 'export': io.flow.v0.models.Export;
|
|
5979
8163
|
}
|
|
5980
8164
|
|
|
5981
|
-
interface ExternalApiTimeoutReservationError {
|
|
5982
|
-
readonly 'code': 'external_api_timeout';
|
|
5983
|
-
readonly 'messages': string[];
|
|
5984
|
-
}
|
|
5985
|
-
|
|
5986
8165
|
interface FeeDeduction {
|
|
5987
8166
|
readonly 'type': io.flow.v0.enums.FeeDeductionType;
|
|
5988
8167
|
readonly 'amount': number;
|
|
@@ -6295,11 +8474,6 @@ declare namespace io.flow.v0.models {
|
|
|
6295
8474
|
readonly 'messages': string[];
|
|
6296
8475
|
}
|
|
6297
8476
|
|
|
6298
|
-
interface GenericReservationError {
|
|
6299
|
-
readonly 'code': 'generic_reservation_error';
|
|
6300
|
-
readonly 'messages': string[];
|
|
6301
|
-
}
|
|
6302
|
-
|
|
6303
8477
|
interface GeoForm {
|
|
6304
8478
|
readonly 'country': string;
|
|
6305
8479
|
readonly 'currency': string;
|
|
@@ -6631,6 +8805,17 @@ declare namespace io.flow.v0.models {
|
|
|
6631
8805
|
readonly 'label': string;
|
|
6632
8806
|
}
|
|
6633
8807
|
|
|
8808
|
+
interface IncotermIncludes {
|
|
8809
|
+
readonly 'duties': boolean;
|
|
8810
|
+
readonly 'taxes': boolean;
|
|
8811
|
+
}
|
|
8812
|
+
|
|
8813
|
+
interface IncotermSummary {
|
|
8814
|
+
readonly 'configuration': io.flow.v0.enums.IncotermConfiguration;
|
|
8815
|
+
readonly 'includes': io.flow.v0.models.IncotermIncludes;
|
|
8816
|
+
readonly 'reason'?: string;
|
|
8817
|
+
}
|
|
8818
|
+
|
|
6634
8819
|
interface IndirectTax {
|
|
6635
8820
|
readonly 'number'?: string;
|
|
6636
8821
|
readonly 'id'?: string;
|
|
@@ -6688,118 +8873,6 @@ declare namespace io.flow.v0.models {
|
|
|
6688
8873
|
readonly 'limitations'?: io.flow.v0.unions.InputSpecificationLimitation[];
|
|
6689
8874
|
}
|
|
6690
8875
|
|
|
6691
|
-
interface InventoryBackorder {
|
|
6692
|
-
readonly 'discriminator': 'inventory_backorder';
|
|
6693
|
-
readonly 'quantity': number;
|
|
6694
|
-
}
|
|
6695
|
-
|
|
6696
|
-
interface InventoryCenterReference {
|
|
6697
|
-
readonly 'key': string;
|
|
6698
|
-
}
|
|
6699
|
-
|
|
6700
|
-
interface InventoryCheckResponse {
|
|
6701
|
-
readonly 'items': io.flow.v0.models.InventoryCheckResponseItem[];
|
|
6702
|
-
}
|
|
6703
|
-
|
|
6704
|
-
interface InventoryCheckResponseItem {
|
|
6705
|
-
readonly 'number': string;
|
|
6706
|
-
readonly 'quantity': number;
|
|
6707
|
-
readonly 'inventory_status': io.flow.v0.enums.InventoryStatus;
|
|
6708
|
-
}
|
|
6709
|
-
|
|
6710
|
-
interface InventoryExperienceReference {
|
|
6711
|
-
readonly 'key': string;
|
|
6712
|
-
}
|
|
6713
|
-
|
|
6714
|
-
interface InventoryFollowEcommercePlatform {
|
|
6715
|
-
readonly 'discriminator': 'inventory_follow_ecommerce_platform';
|
|
6716
|
-
readonly 'quantity': number;
|
|
6717
|
-
}
|
|
6718
|
-
|
|
6719
|
-
interface InventoryItemReference {
|
|
6720
|
-
readonly 'number': string;
|
|
6721
|
-
}
|
|
6722
|
-
|
|
6723
|
-
interface InventoryRequest {
|
|
6724
|
-
readonly 'items': io.flow.v0.models.InventoryRequestItem[];
|
|
6725
|
-
}
|
|
6726
|
-
|
|
6727
|
-
interface InventoryRequestItem {
|
|
6728
|
-
readonly 'number': string;
|
|
6729
|
-
readonly 'quantity': number;
|
|
6730
|
-
}
|
|
6731
|
-
|
|
6732
|
-
interface InventoryRule {
|
|
6733
|
-
readonly 'id': string;
|
|
6734
|
-
readonly 'position': number;
|
|
6735
|
-
readonly 'query': string;
|
|
6736
|
-
readonly 'strategy': io.flow.v0.unions.InventoryStrategy;
|
|
6737
|
-
}
|
|
6738
|
-
|
|
6739
|
-
interface InventoryRuleForm {
|
|
6740
|
-
readonly 'position': number;
|
|
6741
|
-
readonly 'query': string;
|
|
6742
|
-
readonly 'strategy': io.flow.v0.unions.InventoryStrategy;
|
|
6743
|
-
}
|
|
6744
|
-
|
|
6745
|
-
interface InventoryRuleVersion {
|
|
6746
|
-
readonly 'id': string;
|
|
6747
|
-
readonly 'timestamp': string;
|
|
6748
|
-
readonly 'type': io.flow.v0.enums.ChangeType;
|
|
6749
|
-
readonly 'inventory_rule': io.flow.v0.models.InventoryRule;
|
|
6750
|
-
}
|
|
6751
|
-
|
|
6752
|
-
interface InventorySnapshot {
|
|
6753
|
-
readonly 'id': string;
|
|
6754
|
-
readonly 'available': number;
|
|
6755
|
-
readonly 'center': io.flow.v0.models.InventoryCenterReference;
|
|
6756
|
-
readonly 'item': io.flow.v0.models.InventoryItemReference;
|
|
6757
|
-
readonly 'quantity': number;
|
|
6758
|
-
}
|
|
6759
|
-
|
|
6760
|
-
interface InventorySnapshotVersion {
|
|
6761
|
-
readonly 'id': string;
|
|
6762
|
-
readonly 'timestamp': string;
|
|
6763
|
-
readonly 'type': io.flow.v0.enums.ChangeType;
|
|
6764
|
-
readonly 'inventory_snapshot': io.flow.v0.models.InventorySnapshot;
|
|
6765
|
-
}
|
|
6766
|
-
|
|
6767
|
-
interface InventoryStock {
|
|
6768
|
-
readonly 'discriminator': 'inventory_stock';
|
|
6769
|
-
readonly 'quantity': number;
|
|
6770
|
-
}
|
|
6771
|
-
|
|
6772
|
-
interface InventoryUnlimited {
|
|
6773
|
-
readonly 'discriminator': 'inventory_unlimited';
|
|
6774
|
-
readonly 'placeholder'?: string;
|
|
6775
|
-
}
|
|
6776
|
-
|
|
6777
|
-
interface InventoryUpdate {
|
|
6778
|
-
readonly 'id': string;
|
|
6779
|
-
readonly 'idempotency_key': string;
|
|
6780
|
-
readonly 'center': io.flow.v0.models.InventoryCenterReference;
|
|
6781
|
-
readonly 'item': io.flow.v0.models.InventoryItemReference;
|
|
6782
|
-
readonly 'notes': any/*object*/;
|
|
6783
|
-
readonly 'quantity': number;
|
|
6784
|
-
readonly 'type': io.flow.v0.enums.UpdateType;
|
|
6785
|
-
}
|
|
6786
|
-
|
|
6787
|
-
interface InventoryUpdateForm {
|
|
6788
|
-
readonly 'center': string;
|
|
6789
|
-
readonly 'idempotency_key': string;
|
|
6790
|
-
readonly 'item_number': string;
|
|
6791
|
-
readonly 'quantity': number;
|
|
6792
|
-
readonly 'type': io.flow.v0.enums.UpdateType;
|
|
6793
|
-
readonly 'notes'?: any/*object*/;
|
|
6794
|
-
}
|
|
6795
|
-
|
|
6796
|
-
interface InventoryUpdateVersion {
|
|
6797
|
-
readonly 'id': string;
|
|
6798
|
-
readonly 'timestamp': string;
|
|
6799
|
-
readonly 'type': io.flow.v0.enums.ChangeType;
|
|
6800
|
-
readonly 'inventory_update': io.flow.v0.models.InventoryUpdate;
|
|
6801
|
-
}
|
|
6802
|
-
|
|
6803
8876
|
interface Invitation {
|
|
6804
8877
|
readonly 'id': string;
|
|
6805
8878
|
readonly 'organization': io.flow.v0.unions.ExpandableOrganization;
|
|
@@ -7826,18 +9899,6 @@ declare namespace io.flow.v0.models {
|
|
|
7826
9899
|
readonly 'last'?: string;
|
|
7827
9900
|
}
|
|
7828
9901
|
|
|
7829
|
-
interface NoInventoryReservationError {
|
|
7830
|
-
readonly 'code': 'no_inventory';
|
|
7831
|
-
readonly 'messages': string[];
|
|
7832
|
-
readonly 'items': io.flow.v0.models.NoInventoryReservationErrorItem[];
|
|
7833
|
-
}
|
|
7834
|
-
|
|
7835
|
-
interface NoInventoryReservationErrorItem {
|
|
7836
|
-
readonly 'number': string;
|
|
7837
|
-
readonly 'requested_quantity': number;
|
|
7838
|
-
readonly 'available_quantity': number;
|
|
7839
|
-
}
|
|
7840
|
-
|
|
7841
9902
|
interface NotificationDeletedV2 {
|
|
7842
9903
|
readonly 'discriminator': 'notification_deleted_v2';
|
|
7843
9904
|
readonly 'event_id': string;
|
|
@@ -7987,6 +10048,7 @@ declare namespace io.flow.v0.models {
|
|
|
7987
10048
|
readonly 'geo'?: io.flow.v0.models.OrderGeo;
|
|
7988
10049
|
readonly 'device_details'?: io.flow.v0.unions.DeviceDetails;
|
|
7989
10050
|
readonly 'destination_contact_details'?: io.flow.v0.models.DestinationContactDetail[];
|
|
10051
|
+
readonly 'incoterm_summary'?: io.flow.v0.models.IncotermSummary;
|
|
7990
10052
|
}
|
|
7991
10053
|
|
|
7992
10054
|
interface OrderAddress {
|
|
@@ -9830,20 +11892,6 @@ declare namespace io.flow.v0.models {
|
|
|
9830
11892
|
readonly 'path': string;
|
|
9831
11893
|
}
|
|
9832
11894
|
|
|
9833
|
-
interface PfsInventoryCheckResponse {
|
|
9834
|
-
readonly 'items': Record<string, io.flow.v0.models.PfsInventoryCheckResponseItem>;
|
|
9835
|
-
}
|
|
9836
|
-
|
|
9837
|
-
interface PfsInventoryCheckResponseItem {
|
|
9838
|
-
readonly 'number': string;
|
|
9839
|
-
readonly 'ats': number;
|
|
9840
|
-
readonly 'in_stock': boolean;
|
|
9841
|
-
}
|
|
9842
|
-
|
|
9843
|
-
interface PfsInventoryStatus {
|
|
9844
|
-
readonly 'status': string;
|
|
9845
|
-
}
|
|
9846
|
-
|
|
9847
11895
|
interface PhysicalDelivery {
|
|
9848
11896
|
readonly 'discriminator': 'physical_delivery';
|
|
9849
11897
|
readonly 'id': string;
|
|
@@ -10801,37 +12849,6 @@ declare namespace io.flow.v0.models {
|
|
|
10801
12849
|
readonly 'days_of_week': io.flow.v0.enums.DayOfWeek[];
|
|
10802
12850
|
}
|
|
10803
12851
|
|
|
10804
|
-
interface Reservation {
|
|
10805
|
-
readonly 'id': string;
|
|
10806
|
-
readonly 'key': string;
|
|
10807
|
-
readonly 'order'?: io.flow.v0.models.ReservationOrderReference;
|
|
10808
|
-
readonly 'items': io.flow.v0.models.ReservationItem[];
|
|
10809
|
-
readonly 'reserved_until'?: string;
|
|
10810
|
-
}
|
|
10811
|
-
|
|
10812
|
-
interface ReservationForm {
|
|
10813
|
-
readonly 'order_number'?: string;
|
|
10814
|
-
readonly 'items': io.flow.v0.models.ReservationItemForm[];
|
|
10815
|
-
}
|
|
10816
|
-
|
|
10817
|
-
interface ReservationItem {
|
|
10818
|
-
readonly 'item': io.flow.v0.models.ReservationItemReference;
|
|
10819
|
-
readonly 'quantity': number;
|
|
10820
|
-
}
|
|
10821
|
-
|
|
10822
|
-
interface ReservationItemForm {
|
|
10823
|
-
readonly 'item_number': string;
|
|
10824
|
-
readonly 'quantity': number;
|
|
10825
|
-
}
|
|
10826
|
-
|
|
10827
|
-
interface ReservationItemReference {
|
|
10828
|
-
readonly 'number': string;
|
|
10829
|
-
}
|
|
10830
|
-
|
|
10831
|
-
interface ReservationOrderReference {
|
|
10832
|
-
readonly 'number': string;
|
|
10833
|
-
}
|
|
10834
|
-
|
|
10835
12852
|
interface Return {
|
|
10836
12853
|
readonly 'id': string;
|
|
10837
12854
|
readonly 'key': string;
|
|
@@ -11065,21 +13082,6 @@ declare namespace io.flow.v0.models {
|
|
|
11065
13082
|
readonly 'roles': io.flow.v0.enums.FlowRole[];
|
|
11066
13083
|
}
|
|
11067
13084
|
|
|
11068
|
-
interface RuleDeleted {
|
|
11069
|
-
readonly 'discriminator': 'rule_deleted';
|
|
11070
|
-
readonly 'event_id': string;
|
|
11071
|
-
readonly 'timestamp': string;
|
|
11072
|
-
readonly 'id': string;
|
|
11073
|
-
}
|
|
11074
|
-
|
|
11075
|
-
interface RuleUpserted {
|
|
11076
|
-
readonly 'discriminator': 'rule_upserted';
|
|
11077
|
-
readonly 'event_id': string;
|
|
11078
|
-
readonly 'timestamp': string;
|
|
11079
|
-
readonly 'organization_id': string;
|
|
11080
|
-
readonly 'rule': io.flow.v0.models.InventoryRule;
|
|
11081
|
-
}
|
|
11082
|
-
|
|
11083
13085
|
interface Schedule {
|
|
11084
13086
|
readonly 'calendar'?: io.flow.v0.enums.Calendar;
|
|
11085
13087
|
readonly 'holiday': io.flow.v0.enums.HolidayCalendar;
|
|
@@ -11914,25 +13916,6 @@ declare namespace io.flow.v0.models {
|
|
|
11914
13916
|
readonly 'shipment_recipient'?: io.flow.v0.enums.ShipmentRecipient;
|
|
11915
13917
|
}
|
|
11916
13918
|
|
|
11917
|
-
interface SnapshotDeleted {
|
|
11918
|
-
readonly 'discriminator': 'snapshot_deleted';
|
|
11919
|
-
readonly 'event_id': string;
|
|
11920
|
-
readonly 'timestamp': string;
|
|
11921
|
-
readonly 'snapshot_id': string;
|
|
11922
|
-
}
|
|
11923
|
-
|
|
11924
|
-
interface SnapshotUpserted {
|
|
11925
|
-
readonly 'discriminator': 'snapshot_upserted';
|
|
11926
|
-
readonly 'event_id': string;
|
|
11927
|
-
readonly 'timestamp': string;
|
|
11928
|
-
readonly 'organization': string;
|
|
11929
|
-
readonly 'snapshot_id': string;
|
|
11930
|
-
readonly 'available': number;
|
|
11931
|
-
readonly 'center_key': string;
|
|
11932
|
-
readonly 'item_number': string;
|
|
11933
|
-
readonly 'quantity': number;
|
|
11934
|
-
}
|
|
11935
|
-
|
|
11936
13919
|
interface SolidusProductExportType {
|
|
11937
13920
|
readonly 'discriminator': 'solidus_product_export_type';
|
|
11938
13921
|
readonly 'numbers'?: string[];
|
|
@@ -12337,6 +14320,11 @@ declare namespace io.flow.v0.models {
|
|
|
12337
14320
|
readonly 'eci'?: string;
|
|
12338
14321
|
readonly 'liability_sift'?: boolean;
|
|
12339
14322
|
readonly 'version'?: string;
|
|
14323
|
+
readonly 'authenticated'?: boolean;
|
|
14324
|
+
readonly 'authenticated_result'?: string;
|
|
14325
|
+
readonly 'offered'?: boolean;
|
|
14326
|
+
readonly 'offered_result'?: string;
|
|
14327
|
+
readonly 'sca_exemption'?: string;
|
|
12340
14328
|
}
|
|
12341
14329
|
|
|
12342
14330
|
interface ThreedsChallengeActionDetails {
|
|
@@ -12522,6 +14510,7 @@ declare namespace io.flow.v0.models {
|
|
|
12522
14510
|
readonly 'status': io.flow.v0.enums.TrackingStatus;
|
|
12523
14511
|
readonly 'timestamp': string;
|
|
12524
14512
|
readonly 'description'?: string;
|
|
14513
|
+
readonly 'aggregator_status_code'?: string;
|
|
12525
14514
|
}
|
|
12526
14515
|
|
|
12527
14516
|
interface TrackingEventForm {
|
|
@@ -13105,7 +15094,7 @@ declare namespace io.flow.v0.unions {
|
|
|
13105
15094
|
type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
|
|
13106
15095
|
type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
|
|
13107
15096
|
type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
|
|
13108
|
-
type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.CatalogItemUpserted | io.flow.v0.models.CatalogItemDeleted | io.flow.v0.models.CatalogItemUpsertedV2 | io.flow.v0.models.CatalogItemDeletedV2 | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ItemInserted | io.flow.v0.models.ItemUpdated | io.flow.v0.models.ItemDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.EmailNotificationUpserted | io.flow.v0.models.EmailNotificationDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.
|
|
15097
|
+
type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.CatalogItemUpserted | io.flow.v0.models.CatalogItemDeleted | io.flow.v0.models.CatalogItemUpsertedV2 | io.flow.v0.models.CatalogItemDeletedV2 | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ItemInserted | io.flow.v0.models.ItemUpdated | io.flow.v0.models.ItemDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.EmailNotificationUpserted | io.flow.v0.models.EmailNotificationDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.LabelUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LabelProcessingModificationUpserted | io.flow.v0.models.LabelProcessingModificationDeleted | io.flow.v0.models.LocalItemUpserted | io.flow.v0.models.LocalItemDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.CheckoutOptinResponsesUpserted | io.flow.v0.models.CheckoutOptinResponsesDeleted | io.flow.v0.models.BrowseOptinResponsesUpserted | io.flow.v0.models.BrowseOptinResponsesDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.OrganizationDefaultConfigurationsUpserted | io.flow.v0.models.OrganizationDefaultConfigurationsDeleted | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ReturnUpserted | io.flow.v0.models.ReturnDeleted | io.flow.v0.models.ReturnUpsertedV2 | io.flow.v0.models.ReturnDeletedV2 | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted);
|
|
13109
15098
|
type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary);
|
|
13110
15099
|
type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
|
|
13111
15100
|
type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
|
|
@@ -13123,7 +15112,6 @@ declare namespace io.flow.v0.unions {
|
|
|
13123
15112
|
type GatewayAuthenticationDataForm = (io.flow.v0.models.StripeAuthenticationDataForm);
|
|
13124
15113
|
type InlineActionConfiguration = (io.flow.v0.models.BrowserInlineActionConfiguration);
|
|
13125
15114
|
type InputSpecificationLimitation = (io.flow.v0.models.InputSpecificationLimitationMax);
|
|
13126
|
-
type InventoryStrategy = (io.flow.v0.models.InventoryBackorder | io.flow.v0.models.InventoryStock | io.flow.v0.models.InventoryUnlimited | io.flow.v0.models.InventoryFollowEcommercePlatform);
|
|
13127
15115
|
type KnowYourBusiness = (io.flow.v0.models.KnowYourBusinessUsa);
|
|
13128
15116
|
type KnowYourBusinessForm = (io.flow.v0.models.KnowYourBusinessUsaForm);
|
|
13129
15117
|
type LabelSurchargeDetail = (io.flow.v0.models.LabelSurchargeDetailFlat | io.flow.v0.models.LabelSurchargeDetailPercentage | io.flow.v0.models.LabelSurchargeDetailPerWeightUnit);
|
|
@@ -13174,7 +15162,6 @@ declare namespace io.flow.v0.unions {
|
|
|
13174
15162
|
type RatecardEstimate = (io.flow.v0.models.RatecardEstimateV1 | io.flow.v0.models.RatecardEstimateV2 | io.flow.v0.models.RatecardEstimateV3 | io.flow.v0.models.RatecardEstimateV4);
|
|
13175
15163
|
type RatecardFee = (io.flow.v0.models.DdpRatecardFee | io.flow.v0.models.FuelSurchargeRatecardFee | io.flow.v0.models.OversizePieceSurchargeRatecardFee | io.flow.v0.models.ReturnPackageRatecardFee | io.flow.v0.models.CrossdockRatecardFee | io.flow.v0.models.RemoteAreaRatecardFee | io.flow.v0.models.EmergencySituationSurchargeRatecardFee | io.flow.v0.models.PeakSurchargeRatecardFee | io.flow.v0.models.DutiesTaxesPaidSurchargeRatecardFee | io.flow.v0.models.SecurityRatecardFee | io.flow.v0.models.EeiFilingRatecardFee | io.flow.v0.models.FixedDdpRatecardFee | io.flow.v0.models.FixedCurrencyConversionRatecardFee);
|
|
13176
15164
|
type RepeatSchedule = (io.flow.v0.models.RepeatHourly | io.flow.v0.models.RepeatDaily | io.flow.v0.models.RepeatWeekly | io.flow.v0.models.RepeatMonthly);
|
|
13177
|
-
type ReservationError = (io.flow.v0.models.NoInventoryReservationError | io.flow.v0.models.ExternalApiTimeoutReservationError | io.flow.v0.models.GenericReservationError);
|
|
13178
15165
|
type ReturnSource = (io.flow.v0.models.ReturnSourceFlow | io.flow.v0.models.ReturnSourceExternalVendor);
|
|
13179
15166
|
type SdkAdyenV3AuthenticationToken = (io.flow.v0.models.AdyenV3FingerprintToken | io.flow.v0.models.AdyenV3ChallengeToken);
|
|
13180
15167
|
type ServiceDescription = (io.flow.v0.models.ServiceSummary | io.flow.v0.models.ServiceUnknown);
|
|
@@ -13203,7 +15190,6 @@ export const abandonedOrderSettingStatus: PropTypes.Requireable<io.flow.v0.enums
|
|
|
13203
15190
|
export const addressFieldName: PropTypes.Requireable<io.flow.v0.enums.AddressFieldName>;
|
|
13204
15191
|
export const addressVerificationResultFieldCode: PropTypes.Requireable<io.flow.v0.enums.AddressVerificationResultFieldCode>;
|
|
13205
15192
|
export const adjustmentReasonKey: PropTypes.Requireable<io.flow.v0.enums.AdjustmentReasonKey>;
|
|
13206
|
-
export const aggregate: PropTypes.Requireable<io.flow.v0.enums.Aggregate>;
|
|
13207
15193
|
export const attributeDataType: PropTypes.Requireable<io.flow.v0.enums.AttributeDataType>;
|
|
13208
15194
|
export const attributeIntent: PropTypes.Requireable<io.flow.v0.enums.AttributeIntent>;
|
|
13209
15195
|
export const authenticationTechnique: PropTypes.Requireable<io.flow.v0.enums.AuthenticationTechnique>;
|
|
@@ -13281,9 +15267,9 @@ export const imageTag: PropTypes.Requireable<io.flow.v0.enums.ImageTag>;
|
|
|
13281
15267
|
export const importType: PropTypes.Requireable<io.flow.v0.enums.ImportType>;
|
|
13282
15268
|
export const includedLevyKey: PropTypes.Requireable<io.flow.v0.enums.IncludedLevyKey>;
|
|
13283
15269
|
export const incoterm: PropTypes.Requireable<io.flow.v0.enums.Incoterm>;
|
|
15270
|
+
export const incotermConfiguration: PropTypes.Requireable<io.flow.v0.enums.IncotermConfiguration>;
|
|
13284
15271
|
export const inlineWindowViewportSize: PropTypes.Requireable<io.flow.v0.enums.InlineWindowViewportSize>;
|
|
13285
15272
|
export const inputSpecificationType: PropTypes.Requireable<io.flow.v0.enums.InputSpecificationType>;
|
|
13286
|
-
export const inventoryStatus: PropTypes.Requireable<io.flow.v0.enums.InventoryStatus>;
|
|
13287
15273
|
export const invitationErrorCode: PropTypes.Requireable<io.flow.v0.enums.InvitationErrorCode>;
|
|
13288
15274
|
export const itemAvailabilityStatus: PropTypes.Requireable<io.flow.v0.enums.ItemAvailabilityStatus>;
|
|
13289
15275
|
export const itemIdentifier: PropTypes.Requireable<io.flow.v0.enums.ItemIdentifier>;
|
|
@@ -13411,7 +15397,6 @@ export const unitOfTime: PropTypes.Requireable<io.flow.v0.enums.UnitOfTime>;
|
|
|
13411
15397
|
export const unitOfVolume: PropTypes.Requireable<io.flow.v0.enums.UnitOfVolume>;
|
|
13412
15398
|
export const unitOfWeight: PropTypes.Requireable<io.flow.v0.enums.UnitOfWeight>;
|
|
13413
15399
|
export const updatePolicy: PropTypes.Requireable<io.flow.v0.enums.UpdatePolicy>;
|
|
13414
|
-
export const updateType: PropTypes.Requireable<io.flow.v0.enums.UpdateType>;
|
|
13415
15400
|
export const userStatus: PropTypes.Requireable<io.flow.v0.enums.UserStatus>;
|
|
13416
15401
|
export const valueAddedService: PropTypes.Requireable<io.flow.v0.enums.ValueAddedService>;
|
|
13417
15402
|
export const visibility: PropTypes.Requireable<io.flow.v0.enums.Visibility>;
|
|
@@ -13880,7 +15865,6 @@ export const exportForm: PropTypes.Requireable<io.flow.v0.models.ExportForm>;
|
|
|
13880
15865
|
export const exportLocalizedItemPrices: PropTypes.Requireable<io.flow.v0.models.ExportLocalizedItemPrices>;
|
|
13881
15866
|
export const exportLocalizedItemPricesDetail: PropTypes.Requireable<io.flow.v0.models.ExportLocalizedItemPricesDetail>;
|
|
13882
15867
|
export const exportVersion: PropTypes.Requireable<io.flow.v0.models.ExportVersion>;
|
|
13883
|
-
export const externalApiTimeoutReservationError: PropTypes.Requireable<io.flow.v0.models.ExternalApiTimeoutReservationError>;
|
|
13884
15868
|
export const feeDeduction: PropTypes.Requireable<io.flow.v0.models.FeeDeduction>;
|
|
13885
15869
|
export const feeWeight: PropTypes.Requireable<io.flow.v0.models.FeeWeight>;
|
|
13886
15870
|
export const fieldValidationMax: PropTypes.Requireable<io.flow.v0.models.FieldValidationMax>;
|
|
@@ -13931,7 +15915,6 @@ export const fulfillmentLineCancelForm: PropTypes.Requireable<io.flow.v0.models.
|
|
|
13931
15915
|
export const fullyHarmonizedItemUpserted: PropTypes.Requireable<io.flow.v0.models.FullyHarmonizedItemUpserted>;
|
|
13932
15916
|
export const generateLoad: PropTypes.Requireable<io.flow.v0.models.GenerateLoad>;
|
|
13933
15917
|
export const genericError: PropTypes.Requireable<io.flow.v0.models.GenericError>;
|
|
13934
|
-
export const genericReservationError: PropTypes.Requireable<io.flow.v0.models.GenericReservationError>;
|
|
13935
15918
|
export const geoForm: PropTypes.Requireable<io.flow.v0.models.GeoForm>;
|
|
13936
15919
|
export const googlePayAuthorizationPayload: PropTypes.Requireable<io.flow.v0.models.GooglePayAuthorizationPayload>;
|
|
13937
15920
|
export const graphqlRequest: PropTypes.Requireable<io.flow.v0.models.GraphqlRequest>;
|
|
@@ -13978,6 +15961,8 @@ export const importVersion: PropTypes.Requireable<io.flow.v0.models.ImportVersio
|
|
|
13978
15961
|
export const inComplianceReview: PropTypes.Requireable<io.flow.v0.models.InComplianceReview>;
|
|
13979
15962
|
export const inboundCartonFee: PropTypes.Requireable<io.flow.v0.models.InboundCartonFee>;
|
|
13980
15963
|
export const includedLevies: PropTypes.Requireable<io.flow.v0.models.IncludedLevies>;
|
|
15964
|
+
export const incotermIncludes: PropTypes.Requireable<io.flow.v0.models.IncotermIncludes>;
|
|
15965
|
+
export const incotermSummary: PropTypes.Requireable<io.flow.v0.models.IncotermSummary>;
|
|
13981
15966
|
export const indirectTax: PropTypes.Requireable<io.flow.v0.models.IndirectTax>;
|
|
13982
15967
|
export const individual: PropTypes.Requireable<io.flow.v0.models.Individual>;
|
|
13983
15968
|
export const inlineAuthorizationDetails: PropTypes.Requireable<io.flow.v0.models.InlineAuthorizationDetails>;
|
|
@@ -13987,25 +15972,6 @@ export const inputFormSpecification: PropTypes.Requireable<io.flow.v0.models.Inp
|
|
|
13987
15972
|
export const inputSpecification: PropTypes.Requireable<io.flow.v0.models.InputSpecification>;
|
|
13988
15973
|
export const inputSpecificationLimitationMax: PropTypes.Requireable<io.flow.v0.models.InputSpecificationLimitationMax>;
|
|
13989
15974
|
export const inputSpecificationLimitations: PropTypes.Requireable<io.flow.v0.models.InputSpecificationLimitations>;
|
|
13990
|
-
export const inventoryBackorder: PropTypes.Requireable<io.flow.v0.models.InventoryBackorder>;
|
|
13991
|
-
export const inventoryCenterReference: PropTypes.Requireable<io.flow.v0.models.InventoryCenterReference>;
|
|
13992
|
-
export const inventoryCheckResponse: PropTypes.Requireable<io.flow.v0.models.InventoryCheckResponse>;
|
|
13993
|
-
export const inventoryCheckResponseItem: PropTypes.Requireable<io.flow.v0.models.InventoryCheckResponseItem>;
|
|
13994
|
-
export const inventoryExperienceReference: PropTypes.Requireable<io.flow.v0.models.InventoryExperienceReference>;
|
|
13995
|
-
export const inventoryFollowEcommercePlatform: PropTypes.Requireable<io.flow.v0.models.InventoryFollowEcommercePlatform>;
|
|
13996
|
-
export const inventoryItemReference: PropTypes.Requireable<io.flow.v0.models.InventoryItemReference>;
|
|
13997
|
-
export const inventoryRequest: PropTypes.Requireable<io.flow.v0.models.InventoryRequest>;
|
|
13998
|
-
export const inventoryRequestItem: PropTypes.Requireable<io.flow.v0.models.InventoryRequestItem>;
|
|
13999
|
-
export const inventoryRule: PropTypes.Requireable<io.flow.v0.models.InventoryRule>;
|
|
14000
|
-
export const inventoryRuleForm: PropTypes.Requireable<io.flow.v0.models.InventoryRuleForm>;
|
|
14001
|
-
export const inventoryRuleVersion: PropTypes.Requireable<io.flow.v0.models.InventoryRuleVersion>;
|
|
14002
|
-
export const inventorySnapshot: PropTypes.Requireable<io.flow.v0.models.InventorySnapshot>;
|
|
14003
|
-
export const inventorySnapshotVersion: PropTypes.Requireable<io.flow.v0.models.InventorySnapshotVersion>;
|
|
14004
|
-
export const inventoryStock: PropTypes.Requireable<io.flow.v0.models.InventoryStock>;
|
|
14005
|
-
export const inventoryUnlimited: PropTypes.Requireable<io.flow.v0.models.InventoryUnlimited>;
|
|
14006
|
-
export const inventoryUpdate: PropTypes.Requireable<io.flow.v0.models.InventoryUpdate>;
|
|
14007
|
-
export const inventoryUpdateForm: PropTypes.Requireable<io.flow.v0.models.InventoryUpdateForm>;
|
|
14008
|
-
export const inventoryUpdateVersion: PropTypes.Requireable<io.flow.v0.models.InventoryUpdateVersion>;
|
|
14009
15975
|
export const invitation: PropTypes.Requireable<io.flow.v0.models.Invitation>;
|
|
14010
15976
|
export const invitationError: PropTypes.Requireable<io.flow.v0.models.InvitationError>;
|
|
14011
15977
|
export const invitationForm: PropTypes.Requireable<io.flow.v0.models.InvitationForm>;
|
|
@@ -14144,8 +16110,6 @@ export const monthlyAverage: PropTypes.Requireable<io.flow.v0.models.MonthlyAver
|
|
|
14144
16110
|
export const monthlyAverageVolume: PropTypes.Requireable<io.flow.v0.models.MonthlyAverageVolume>;
|
|
14145
16111
|
export const name: PropTypes.Requireable<io.flow.v0.models.Name>;
|
|
14146
16112
|
export const nameForm: PropTypes.Requireable<io.flow.v0.models.NameForm>;
|
|
14147
|
-
export const noInventoryReservationError: PropTypes.Requireable<io.flow.v0.models.NoInventoryReservationError>;
|
|
14148
|
-
export const noInventoryReservationErrorItem: PropTypes.Requireable<io.flow.v0.models.NoInventoryReservationErrorItem>;
|
|
14149
16113
|
export const notificationDeletedV2: PropTypes.Requireable<io.flow.v0.models.NotificationDeletedV2>;
|
|
14150
16114
|
export const notificationUpsertedV2: PropTypes.Requireable<io.flow.v0.models.NotificationUpsertedV2>;
|
|
14151
16115
|
export const numberRange: PropTypes.Requireable<io.flow.v0.models.NumberRange>;
|
|
@@ -14427,9 +16391,6 @@ export const percentMargin: PropTypes.Requireable<io.flow.v0.models.PercentMargi
|
|
|
14427
16391
|
export const permissionAudit: PropTypes.Requireable<io.flow.v0.models.PermissionAudit>;
|
|
14428
16392
|
export const permissionCheck: PropTypes.Requireable<io.flow.v0.models.PermissionCheck>;
|
|
14429
16393
|
export const permittedRoute: PropTypes.Requireable<io.flow.v0.models.PermittedRoute>;
|
|
14430
|
-
export const pfsInventoryCheckResponse: PropTypes.Requireable<io.flow.v0.models.PfsInventoryCheckResponse>;
|
|
14431
|
-
export const pfsInventoryCheckResponseItem: PropTypes.Requireable<io.flow.v0.models.PfsInventoryCheckResponseItem>;
|
|
14432
|
-
export const pfsInventoryStatus: PropTypes.Requireable<io.flow.v0.models.PfsInventoryStatus>;
|
|
14433
16394
|
export const physicalDelivery: PropTypes.Requireable<io.flow.v0.models.PhysicalDelivery>;
|
|
14434
16395
|
export const physicalDeliveryPreferredService: PropTypes.Requireable<io.flow.v0.models.PhysicalDeliveryPreferredService>;
|
|
14435
16396
|
export const postPaymentRedirectUrls: PropTypes.Requireable<io.flow.v0.models.PostPaymentRedirectUrls>;
|
|
@@ -14553,12 +16514,6 @@ export const repeatDaily: PropTypes.Requireable<io.flow.v0.models.RepeatDaily>;
|
|
|
14553
16514
|
export const repeatHourly: PropTypes.Requireable<io.flow.v0.models.RepeatHourly>;
|
|
14554
16515
|
export const repeatMonthly: PropTypes.Requireable<io.flow.v0.models.RepeatMonthly>;
|
|
14555
16516
|
export const repeatWeekly: PropTypes.Requireable<io.flow.v0.models.RepeatWeekly>;
|
|
14556
|
-
export const reservation: PropTypes.Requireable<io.flow.v0.models.Reservation>;
|
|
14557
|
-
export const reservationForm: PropTypes.Requireable<io.flow.v0.models.ReservationForm>;
|
|
14558
|
-
export const reservationItem: PropTypes.Requireable<io.flow.v0.models.ReservationItem>;
|
|
14559
|
-
export const reservationItemForm: PropTypes.Requireable<io.flow.v0.models.ReservationItemForm>;
|
|
14560
|
-
export const reservationItemReference: PropTypes.Requireable<io.flow.v0.models.ReservationItemReference>;
|
|
14561
|
-
export const reservationOrderReference: PropTypes.Requireable<io.flow.v0.models.ReservationOrderReference>;
|
|
14562
16517
|
export const UNSAFE_return: PropTypes.Requireable<io.flow.v0.models.Return>;
|
|
14563
16518
|
export const returnDeleted: PropTypes.Requireable<io.flow.v0.models.ReturnDeleted>;
|
|
14564
16519
|
export const returnDeletedV2: PropTypes.Requireable<io.flow.v0.models.ReturnDeletedV2>;
|
|
@@ -14591,8 +16546,6 @@ export const romanization: PropTypes.Requireable<io.flow.v0.models.Romanization>
|
|
|
14591
16546
|
export const romanizationForm: PropTypes.Requireable<io.flow.v0.models.RomanizationForm>;
|
|
14592
16547
|
export const rounding: PropTypes.Requireable<io.flow.v0.models.Rounding>;
|
|
14593
16548
|
export const routeAudit: PropTypes.Requireable<io.flow.v0.models.RouteAudit>;
|
|
14594
|
-
export const ruleDeleted: PropTypes.Requireable<io.flow.v0.models.RuleDeleted>;
|
|
14595
|
-
export const ruleUpserted: PropTypes.Requireable<io.flow.v0.models.RuleUpserted>;
|
|
14596
16549
|
export const schedule: PropTypes.Requireable<io.flow.v0.models.Schedule>;
|
|
14597
16550
|
export const scheduledExport: PropTypes.Requireable<io.flow.v0.models.ScheduledExport>;
|
|
14598
16551
|
export const scheduledExportForm: PropTypes.Requireable<io.flow.v0.models.ScheduledExportForm>;
|
|
@@ -14703,8 +16656,6 @@ export const shopifyVariantFlowMetafield: PropTypes.Requireable<io.flow.v0.model
|
|
|
14703
16656
|
export const shopifyVariantInventoryMetafield: PropTypes.Requireable<io.flow.v0.models.ShopifyVariantInventoryMetafield>;
|
|
14704
16657
|
export const simplePermissionCheck: PropTypes.Requireable<io.flow.v0.models.SimplePermissionCheck>;
|
|
14705
16658
|
export const singlePackageShippingNotificationForm: PropTypes.Requireable<io.flow.v0.models.SinglePackageShippingNotificationForm>;
|
|
14706
|
-
export const snapshotDeleted: PropTypes.Requireable<io.flow.v0.models.SnapshotDeleted>;
|
|
14707
|
-
export const snapshotUpserted: PropTypes.Requireable<io.flow.v0.models.SnapshotUpserted>;
|
|
14708
16659
|
export const solidusProductExportType: PropTypes.Requireable<io.flow.v0.models.SolidusProductExportType>;
|
|
14709
16660
|
export const solidusVariantExportType: PropTypes.Requireable<io.flow.v0.models.SolidusVariantExportType>;
|
|
14710
16661
|
export const statement: PropTypes.Requireable<io.flow.v0.models.Statement>;
|
|
@@ -14911,7 +16862,6 @@ export const gatewayAuthenticationData: PropTypes.Requireable<io.flow.v0.unions.
|
|
|
14911
16862
|
export const gatewayAuthenticationDataForm: PropTypes.Requireable<io.flow.v0.unions.GatewayAuthenticationDataForm>;
|
|
14912
16863
|
export const inlineActionConfiguration: PropTypes.Requireable<io.flow.v0.unions.InlineActionConfiguration>;
|
|
14913
16864
|
export const inputSpecificationLimitation: PropTypes.Requireable<io.flow.v0.unions.InputSpecificationLimitation>;
|
|
14914
|
-
export const inventoryStrategy: PropTypes.Requireable<io.flow.v0.unions.InventoryStrategy>;
|
|
14915
16865
|
export const knowYourBusiness: PropTypes.Requireable<io.flow.v0.unions.KnowYourBusiness>;
|
|
14916
16866
|
export const knowYourBusinessForm: PropTypes.Requireable<io.flow.v0.unions.KnowYourBusinessForm>;
|
|
14917
16867
|
export const labelSurchargeDetail: PropTypes.Requireable<io.flow.v0.unions.LabelSurchargeDetail>;
|
|
@@ -14954,7 +16904,6 @@ export const queryFilterForm: PropTypes.Requireable<io.flow.v0.unions.QueryFilte
|
|
|
14954
16904
|
export const ratecardEstimate: PropTypes.Requireable<io.flow.v0.unions.RatecardEstimate>;
|
|
14955
16905
|
export const ratecardFee: PropTypes.Requireable<io.flow.v0.unions.RatecardFee>;
|
|
14956
16906
|
export const repeatSchedule: PropTypes.Requireable<io.flow.v0.unions.RepeatSchedule>;
|
|
14957
|
-
export const reservationError: PropTypes.Requireable<io.flow.v0.unions.ReservationError>;
|
|
14958
16907
|
export const returnSource: PropTypes.Requireable<io.flow.v0.unions.ReturnSource>;
|
|
14959
16908
|
export const sdkAdyenV3AuthenticationToken: PropTypes.Requireable<io.flow.v0.unions.SdkAdyenV3AuthenticationToken>;
|
|
14960
16909
|
export const serviceDescription: PropTypes.Requireable<io.flow.v0.unions.ServiceDescription>;
|