@flowio/types 11.24.121 → 11.24.122
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +8848 -9930
- package/dist/api.d.ts +231 -392
- package/package.json +2 -2
- package/src/api-internal.ts +11470 -12854
- package/src/api.ts +311 -517
package/dist/api.d.ts
CHANGED
|
@@ -3518,9 +3518,11 @@ declare namespace io.flow.merchant.of.record.v0.enums {
|
|
|
3518
3518
|
declare namespace io.flow.tech.onboarding.playground.v0.enums {
|
|
3519
3519
|
type AldoItemType = 'physical' | 'digital';
|
|
3520
3520
|
type AnshItemType = 'physical' | 'digital';
|
|
3521
|
+
type HoseinItemType = 'physical' | 'digital';
|
|
3521
3522
|
type NiallItemType = 'physical' | 'digital';
|
|
3522
3523
|
type PrateekItemType = 'physical' | 'digital';
|
|
3523
3524
|
type RohanItemType = 'physical' | 'digital';
|
|
3525
|
+
type SarveshItemType = 'physical' | 'digital';
|
|
3524
3526
|
}
|
|
3525
3527
|
declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
3526
3528
|
interface AldoItem {
|
|
@@ -3553,6 +3555,21 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
|
3553
3555
|
readonly type: io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
|
|
3554
3556
|
readonly added_on: string;
|
|
3555
3557
|
}
|
|
3558
|
+
interface HoseinItem {
|
|
3559
|
+
readonly id: string;
|
|
3560
|
+
readonly number: string;
|
|
3561
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
3562
|
+
readonly description?: string;
|
|
3563
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.HoseinItemType;
|
|
3564
|
+
readonly added_on: string;
|
|
3565
|
+
}
|
|
3566
|
+
interface HoseinItemForm {
|
|
3567
|
+
readonly number: string;
|
|
3568
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
3569
|
+
readonly description?: string;
|
|
3570
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.HoseinItemType;
|
|
3571
|
+
readonly added_on: string;
|
|
3572
|
+
}
|
|
3556
3573
|
interface JeanDemoItem {
|
|
3557
3574
|
readonly id: string;
|
|
3558
3575
|
readonly name: string;
|
|
@@ -3602,10 +3619,45 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
|
3602
3619
|
readonly type: io.flow.tech.onboarding.playground.v0.enums.RohanItemType;
|
|
3603
3620
|
readonly added_on: string;
|
|
3604
3621
|
}
|
|
3622
|
+
interface SarveshItem {
|
|
3623
|
+
readonly id: string;
|
|
3624
|
+
readonly number: string;
|
|
3625
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
3626
|
+
readonly description?: string;
|
|
3627
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.SarveshItemType;
|
|
3628
|
+
readonly added_on: string;
|
|
3629
|
+
}
|
|
3630
|
+
interface SarveshItemForm {
|
|
3631
|
+
readonly number: string;
|
|
3632
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
3633
|
+
readonly description?: string;
|
|
3634
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.SarveshItemType;
|
|
3635
|
+
readonly added_on: string;
|
|
3636
|
+
}
|
|
3605
3637
|
interface TechOnboardingDescription {
|
|
3606
3638
|
readonly description: string;
|
|
3607
3639
|
}
|
|
3608
3640
|
}
|
|
3641
|
+
declare namespace io.flow.currency.v0.models {
|
|
3642
|
+
interface Rate {
|
|
3643
|
+
readonly id: string;
|
|
3644
|
+
readonly base: string;
|
|
3645
|
+
readonly target: string;
|
|
3646
|
+
readonly effective_at: string;
|
|
3647
|
+
readonly value: number;
|
|
3648
|
+
}
|
|
3649
|
+
interface RateForm {
|
|
3650
|
+
readonly base: string;
|
|
3651
|
+
readonly target: string;
|
|
3652
|
+
readonly effective_at: string;
|
|
3653
|
+
}
|
|
3654
|
+
interface RateVersion {
|
|
3655
|
+
readonly id: string;
|
|
3656
|
+
readonly timestamp: string;
|
|
3657
|
+
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
3658
|
+
readonly rate: io.flow.currency.v0.models.Rate;
|
|
3659
|
+
}
|
|
3660
|
+
}
|
|
3609
3661
|
declare namespace io.flow.organization.v0.enums {
|
|
3610
3662
|
type CountryPickerSource = 'experience' | 'destination';
|
|
3611
3663
|
type EcommercePlatformType = 'commercetools' | 'custom' | 'hybris' | 'magento' | 'shopify' | 'shopify_markets' | 'sfcc' | 'solidus' | 'workarea';
|
|
@@ -3834,6 +3886,7 @@ declare namespace io.flow.product.v0.models {
|
|
|
3834
3886
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
3835
3887
|
readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
3836
3888
|
readonly item_numbers: string[];
|
|
3889
|
+
readonly highest_value_item_number?: string;
|
|
3837
3890
|
readonly updated_at: string;
|
|
3838
3891
|
readonly deleted_at?: string;
|
|
3839
3892
|
}
|
|
@@ -4376,67 +4429,6 @@ declare namespace io.flow.query.builder.v0.unions {
|
|
|
4376
4429
|
type QueryFilter = io.flow.query.builder.v0.models.QueryFilterStructured | io.flow.query.builder.v0.models.QueryFilterUnstructured;
|
|
4377
4430
|
type QueryFilterForm = io.flow.query.builder.v0.models.QueryFilterStructuredForm | io.flow.query.builder.v0.models.QueryFilterUnstructuredForm;
|
|
4378
4431
|
}
|
|
4379
|
-
declare namespace io.flow.sellability.v0.enums {
|
|
4380
|
-
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
4381
|
-
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
|
|
4382
|
-
type SellabilityRequestStatus = 'commit';
|
|
4383
|
-
}
|
|
4384
|
-
declare namespace io.flow.sellability.v0.models {
|
|
4385
|
-
interface ProductSellability {
|
|
4386
|
-
readonly discriminator: 'product_sellability';
|
|
4387
|
-
readonly shop_id: string;
|
|
4388
|
-
readonly product_id?: string;
|
|
4389
|
-
readonly request_id: string;
|
|
4390
|
-
readonly hs6_code: string;
|
|
4391
|
-
readonly restricted_regions: io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
4392
|
-
}
|
|
4393
|
-
interface ProductSellabilityForm {
|
|
4394
|
-
readonly shop_id: string;
|
|
4395
|
-
readonly product_id?: string;
|
|
4396
|
-
readonly name: string;
|
|
4397
|
-
readonly price: io.flow.sellability.v0.models.ProductSellabilityPrice;
|
|
4398
|
-
readonly description: string;
|
|
4399
|
-
readonly taxonomy_category: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
4400
|
-
readonly status?: io.flow.sellability.v0.enums.SellabilityRequestStatus;
|
|
4401
|
-
readonly dry_run?: boolean;
|
|
4402
|
-
}
|
|
4403
|
-
interface ProductSellabilityPrice {
|
|
4404
|
-
readonly currency: string;
|
|
4405
|
-
readonly amount: number;
|
|
4406
|
-
}
|
|
4407
|
-
interface SellabilityError {
|
|
4408
|
-
readonly discriminator: 'sellability_error';
|
|
4409
|
-
readonly code: io.flow.sellability.v0.enums.SellabilityErrorCode;
|
|
4410
|
-
readonly messages: string[];
|
|
4411
|
-
}
|
|
4412
|
-
interface SellablilityRegionResult {
|
|
4413
|
-
readonly type: io.flow.sellability.v0.enums.RuleEffectType;
|
|
4414
|
-
readonly regions: string[];
|
|
4415
|
-
}
|
|
4416
|
-
}
|
|
4417
|
-
declare namespace io.flow.sellability.v0.unions {
|
|
4418
|
-
type SellabilityResponse = io.flow.sellability.v0.models.ProductSellability | io.flow.sellability.v0.models.SellabilityError;
|
|
4419
|
-
}
|
|
4420
|
-
declare namespace io.flow.currency.v0.models {
|
|
4421
|
-
interface Rate {
|
|
4422
|
-
readonly id: string;
|
|
4423
|
-
readonly base: string;
|
|
4424
|
-
readonly target: string;
|
|
4425
|
-
readonly effective_at: string;
|
|
4426
|
-
readonly value: number;
|
|
4427
|
-
}
|
|
4428
|
-
interface RateForm {
|
|
4429
|
-
readonly base: string;
|
|
4430
|
-
readonly target: string;
|
|
4431
|
-
readonly effective_at: string;
|
|
4432
|
-
}
|
|
4433
|
-
interface RateVersion {
|
|
4434
|
-
readonly id: string;
|
|
4435
|
-
readonly timestamp: string;
|
|
4436
|
-
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
4437
|
-
readonly rate: io.flow.currency.v0.models.Rate;
|
|
4438
|
-
}
|
|
4439
|
-
}
|
|
4440
4432
|
declare namespace io.flow.v0.enums {
|
|
4441
4433
|
type AbandonedOrderPromotionStatus = 'active' | 'inactive';
|
|
4442
4434
|
type AbandonedOrderSettingStatus = 'active' | 'inactive';
|
|
@@ -4493,7 +4485,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4493
4485
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
4494
4486
|
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
4495
4487
|
type Environment = 'sandbox' | 'production';
|
|
4496
|
-
type EventType = 'test_upserted' | 'generate_load' | 'niall_item_upserted' | 'niall_item_deleted' | 'rohan_item_upserted' | 'rohan_item_deleted' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'ansh_item_upserted' | 'ansh_item_deleted' | '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' | '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' | 'channel_shopify_order_state_upserted' | 'channel_shopify_order_state_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' | '
|
|
4488
|
+
type EventType = 'test_upserted' | 'generate_load' | 'sarvesh_item_upserted' | 'sarvesh_item_deleted' | 'hosein_item_upserted' | 'hosein_item_deleted' | 'niall_item_upserted' | 'niall_item_deleted' | 'rohan_item_upserted' | 'rohan_item_deleted' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'ansh_item_upserted' | 'ansh_item_deleted' | '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' | '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' | 'channel_shopify_order_state_upserted' | 'channel_shopify_order_state_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' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v3' | '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' | 'ge_item_inserted' | 'ge_item_updated' | 'ge_item_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' | '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' | 'merchant_application_upserted' | 'merchant_application_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' | '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' | 'authorization_retry_upserted' | 'authorization_retry_deleted' | 'transfer_upserted' | 'transfer_deleted' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | 'product_inserted' | 'product_updated' | 'product_deleted' | 'organization_rates_published' | 'ratecard_lane_upserted' | 'ratecard_lane_deleted' | 'ratecard_upserted' | 'ratecard_deleted' | 'product_restriction_result_upserted' | 'product_restriction_result_deleted' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
|
|
4497
4489
|
type ExceptionType = 'open' | 'closed';
|
|
4498
4490
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
4499
4491
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -4535,6 +4527,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4535
4527
|
type LanePreselectPreference = 'lowest_cost' | 'default_tier';
|
|
4536
4528
|
type LaneStrategy = 'oldest' | 'fastest' | 'lowest_cost' | 'highest_priority';
|
|
4537
4529
|
type LevyComponent = 'goods' | 'duty' | 'insurance' | 'freight' | 'vat';
|
|
4530
|
+
type LevyInclusion = 'tax' | 'duty';
|
|
4538
4531
|
type LevyStrategy = 'minimum' | 'average' | 'maximum';
|
|
4539
4532
|
type LocationErrorCode = 'address_required' | 'ip_invalid' | 'ip_required' | 'timezone_unavailable';
|
|
4540
4533
|
type LogisticsFormatPreference = 'shopify_console' | 'existing_3pl_integration' | 'byo_integration';
|
|
@@ -4585,6 +4578,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4585
4578
|
type PermittedHttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
4586
4579
|
type PhysicalDeliverySpecialSerivce = 'cold_storage' | 'hazardous' | 'perishable';
|
|
4587
4580
|
type PostalType = 'eircode' | 'pin' | 'postal' | 'zip';
|
|
4581
|
+
type PreferentialRateEligibility = 'baby_clothing' | 'kids_clothing';
|
|
4588
4582
|
type PreferredServiceSelectionStrategy = 'calculated_rate' | 'flat_rate' | 'custom_rate';
|
|
4589
4583
|
type PriceAccuracy = 'calculated' | 'estimated_from_partial_destination';
|
|
4590
4584
|
type PriceBookStatus = 'draft' | 'published' | 'archived';
|
|
@@ -4592,7 +4586,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4592
4586
|
type PriceDetailKey = 'item_price' | 'margins' | 'vat' | 'duty' | 'rounding' | 'adjustment';
|
|
4593
4587
|
type PriceFacetBoundary = 'min' | 'max';
|
|
4594
4588
|
type PricingLevySetting = 'included' | 'displayed' | 'ignored';
|
|
4595
|
-
type ProductRestrictionRule = 'Adult Products' | 'Alcohol' | 'Anti Money Laundering' | 'Collagen' | 'Consumer Safety' | 'Cosmetics' | 'DG - Batteries' | 'DG - Hazmat' | 'Drugs' | 'Dual Use' | 'Fine Art' | 'Fish & Wildlife - CITES' | 'Fish & Wildlife - Plant' | 'Fish & Wildlife - USFWS' | 'Food' | 'Gambling' | 'Health' | 'Human hair' | 'Insufficient Details' | 'Intangible' | 'Jewelry' | 'Jewelry & Watches Over 5000' | 'Knives' | 'Liquids' | 'Oversized' | 'Restrict by Default' | 'Supplements' | 'Tattoo Ink And PMU' | 'Weapon' | 'Wood';
|
|
4589
|
+
type ProductRestrictionRule = 'Adult Products' | 'Alcohol' | 'Anti Money Laundering' | 'Collagen' | 'Consumer Safety' | 'Cosmetics' | 'DG - Batteries' | 'DG - Hazmat' | 'Drugs' | 'Dual Use' | 'Fine Art' | 'Fish & Wildlife - CITES' | 'Fish & Wildlife - Plant' | 'Fish & Wildlife - USFWS' | 'Food' | 'Gambling' | 'Health' | 'Human hair' | 'Insufficient Details' | 'Intangible' | 'Jewelry' | 'Jewelry & Watches Over 5000' | 'Knives' | 'Liquids' | 'Oversized' | 'Pending Classification' | 'Restrict by Default' | 'Supplements' | 'Tattoo Ink And PMU' | 'Unknown Bundles' | 'Weapon' | 'Wood';
|
|
4596
4590
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
4597
4591
|
type ProvinceType = 'area' | 'city' | 'county' | 'department' | 'dependency' | 'district' | 'do_si' | 'emirate' | 'entity' | 'island' | 'municipality' | 'oblast' | 'outlying_area' | 'parish' | 'prefecture' | 'province' | 'state' | 'territory' | 'other';
|
|
4598
4592
|
type QuoteErrorCode = 'generic_error' | 'items_not_available' | 'shipping_unavailable';
|
|
@@ -4612,7 +4606,10 @@ declare namespace io.flow.v0.enums {
|
|
|
4612
4606
|
type Role = 'admin' | 'member';
|
|
4613
4607
|
type RoundingMethod = 'up' | 'down' | 'nearest';
|
|
4614
4608
|
type RoundingType = 'pattern' | 'multiple';
|
|
4609
|
+
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
4615
4610
|
type ScheduleExceptionStatus = 'Open' | 'Closed';
|
|
4611
|
+
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
|
|
4612
|
+
type SellabilityRequestStatus = 'commit';
|
|
4616
4613
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
4617
4614
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
4618
4615
|
type ShippingConfigurationType = 'default' | 'variant';
|
|
@@ -4628,6 +4625,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4628
4625
|
type SubstatusCode = 'Delivered_001' | 'Delivered_002' | 'Delivered_003' | 'Delivered_004' | 'AvailableForPickup_001' | 'Exception_001' | 'Exception_002' | 'Exception_003' | 'Exception_004' | 'Exception_005' | 'Exception_006' | 'Exception_007' | 'Exception_008' | 'Exception_009' | 'Exception_010' | 'Exception_011' | 'Exception_012' | 'Exception_013' | 'AttemptFail_001' | 'AttemptFail_002' | 'AttemptFail_003' | 'InTransit_001' | 'InTransit_002' | 'InTransit_003' | 'InTransit_004' | 'InTransit_005' | 'InTransit_006' | 'InTransit_007' | 'InTransit_008' | 'InTransit_009' | 'InfoReceived_001' | 'OutForDelivery_001' | 'OutForDelivery_003' | 'OutForDelivery_004' | 'Pending_001' | 'Pending_002' | 'Pending_003' | 'Pending_004' | 'Pending_005' | 'Pending_006' | 'Expired_001';
|
|
4629
4626
|
type SurchargeResponsibleParty = 'organization' | 'customer';
|
|
4630
4627
|
type TaxApplicability = 'none' | 'all';
|
|
4628
|
+
type TaxDutyCalculatorValidationErrorCode = 'generic_error' | 'destination_country_not_defined' | 'destination_address_iso3166_unrecognized' | 'line_item_shipfrom_shipto_country_invalid' | 'line_item_ship_from_invalid' | 'line_item_currency_iso4217_unrecognized' | 'line_quantity_invalid' | 'line_item_quantity_invalid' | 'line_item_unit_price_precision_invalid' | 'line_item_unit_price_negative' | 'line_item_discount_amount_precision_invalid' | 'line_item_discount_amount_positive' | 'line_item_country_of_origin_iso3166_unrecognized' | 'line_item_hs_code_invalid' | 'line_item_duty_provider_invalid' | 'shipping_unit_price_precision_invalid' | 'shipping_unit_price_negative' | 'shipping_discount_amount_precision_invalid' | 'shipping_discount_amount_invalid' | 'merchant_of_record_invalid' | 'wrong_unit_specified';
|
|
4631
4629
|
type TaxDutyTransactionReasonCode = 'post_capture' | 'post_fulfilment' | 'manual_payment_or_gift_card' | 'order_edit' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'full_refund_without_shipment' | 'unfulfilled_order_above_de_min';
|
|
4632
4630
|
type TaxReportType = 'consumer' | 'b2b';
|
|
4633
4631
|
type TaxVerificationResult = 'valid' | 'invalid' | 'unable_to_validate';
|
|
@@ -4643,7 +4641,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4643
4641
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired' | 'unknown' | 'unmapped';
|
|
4644
4642
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
4645
4643
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
4646
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'duty_refund' | 'non_l4l_tax_duty_fx' | 'ge_revenue_share';
|
|
4644
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'duty_refund' | 'non_l4l_tax_duty_fx' | 'merchant_payout' | 'merchant_refund' | 'ge_revenue_share';
|
|
4647
4645
|
type TransferStatus = 'succeeded' | 'canceled';
|
|
4648
4646
|
type TransferType = 'payout_to_merchant' | 'disputed_amount_to_merchant' | 'duties_and_taxes_adjustment_to_merchant' | 'disputed_amount_from_merchant' | 'duties_and_taxes_adjustment_from_merchant' | 'refund_from_merchant';
|
|
4649
4647
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
@@ -4660,6 +4658,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4660
4658
|
type WebhookStatus = 'pending' | 'success' | 'failure' | 'ignored';
|
|
4661
4659
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
4662
4660
|
type ZeroAmountIndicator = 'zero' | 'free';
|
|
4661
|
+
type ZeroLevyReasonCode = 'zero_basis' | 'zero_rate_on_goods' | 'value_rounds_to_zero' | 'order_below_de_minimis_threshold' | 'amount_below_de_minimis_threshold' | 'delivered_unpaid' | 'duty_free_domestic' | 'duty_free_intra_community' | 'duty_free_reimport' | 'duty_free_by_trade_agreement';
|
|
4663
4662
|
}
|
|
4664
4663
|
declare namespace io.flow.v0.models {
|
|
4665
4664
|
interface AbandonedOrderEmailSettings {
|
|
@@ -5278,35 +5277,6 @@ declare namespace io.flow.v0.models {
|
|
|
5278
5277
|
readonly region: io.flow.v0.models.RegionReference;
|
|
5279
5278
|
readonly promotions: io.flow.v0.unions.Promotion[];
|
|
5280
5279
|
}
|
|
5281
|
-
interface AvailablePromotionsDeleted {
|
|
5282
|
-
readonly discriminator: 'available_promotions_deleted';
|
|
5283
|
-
readonly event_id: string;
|
|
5284
|
-
readonly timestamp: string;
|
|
5285
|
-
readonly organization: string;
|
|
5286
|
-
readonly experience_key: string;
|
|
5287
|
-
}
|
|
5288
|
-
interface AvailablePromotionsDeletedV2 {
|
|
5289
|
-
readonly discriminator: 'available_promotions_deleted_v2';
|
|
5290
|
-
readonly event_id: string;
|
|
5291
|
-
readonly timestamp: string;
|
|
5292
|
-
readonly organization: string;
|
|
5293
|
-
readonly available_promotion: io.flow.v0.models.AvailablePromotion;
|
|
5294
|
-
}
|
|
5295
|
-
interface AvailablePromotionsUpserted {
|
|
5296
|
-
readonly discriminator: 'available_promotions_upserted';
|
|
5297
|
-
readonly event_id: string;
|
|
5298
|
-
readonly timestamp: string;
|
|
5299
|
-
readonly organization: string;
|
|
5300
|
-
readonly experience_key: string;
|
|
5301
|
-
readonly available_promotions: any[];
|
|
5302
|
-
}
|
|
5303
|
-
interface AvailablePromotionsUpsertedV2 {
|
|
5304
|
-
readonly discriminator: 'available_promotions_upserted_v2';
|
|
5305
|
-
readonly event_id: string;
|
|
5306
|
-
readonly timestamp: string;
|
|
5307
|
-
readonly organization: string;
|
|
5308
|
-
readonly available_promotion: io.flow.v0.models.AvailablePromotion;
|
|
5309
|
-
}
|
|
5310
5280
|
interface AvailableService {
|
|
5311
5281
|
readonly service: string;
|
|
5312
5282
|
readonly scheduled_pickups?: io.flow.v0.models.ScheduledPickup[];
|
|
@@ -6424,23 +6394,9 @@ declare namespace io.flow.v0.models {
|
|
|
6424
6394
|
readonly country: string;
|
|
6425
6395
|
readonly status: io.flow.v0.enums.ExperienceCountryStatus;
|
|
6426
6396
|
}
|
|
6427
|
-
interface CountryStatusDeleted {
|
|
6428
|
-
readonly discriminator: 'country_status_deleted';
|
|
6429
|
-
readonly event_id: string;
|
|
6430
|
-
readonly timestamp: string;
|
|
6431
|
-
readonly organization: string;
|
|
6432
|
-
readonly country_status: io.flow.v0.models.CountryStatus;
|
|
6433
|
-
}
|
|
6434
6397
|
interface CountryStatusForm {
|
|
6435
6398
|
readonly status: io.flow.v0.enums.ExperienceCountryStatus;
|
|
6436
6399
|
}
|
|
6437
|
-
interface CountryStatusUpserted {
|
|
6438
|
-
readonly discriminator: 'country_status_upserted';
|
|
6439
|
-
readonly event_id: string;
|
|
6440
|
-
readonly timestamp: string;
|
|
6441
|
-
readonly organization: string;
|
|
6442
|
-
readonly country_status: io.flow.v0.models.CountryStatus;
|
|
6443
|
-
}
|
|
6444
6400
|
interface CreditMemo {
|
|
6445
6401
|
readonly id: string;
|
|
6446
6402
|
readonly number?: string;
|
|
@@ -6555,23 +6511,6 @@ declare namespace io.flow.v0.models {
|
|
|
6555
6511
|
readonly symbol: io.flow.v0.enums.CurrencySymbolFormat;
|
|
6556
6512
|
readonly label_formatters: io.flow.v0.enums.CurrencyLabelFormatter[];
|
|
6557
6513
|
}
|
|
6558
|
-
interface CurrencyFormatDeleted {
|
|
6559
|
-
readonly discriminator: 'currency_format_deleted';
|
|
6560
|
-
readonly event_id: string;
|
|
6561
|
-
readonly timestamp: string;
|
|
6562
|
-
readonly organization: string;
|
|
6563
|
-
readonly id: string;
|
|
6564
|
-
}
|
|
6565
|
-
interface CurrencyFormatUpserted {
|
|
6566
|
-
readonly discriminator: 'currency_format_upserted';
|
|
6567
|
-
readonly event_id: string;
|
|
6568
|
-
readonly timestamp: string;
|
|
6569
|
-
readonly organization: string;
|
|
6570
|
-
readonly id: string;
|
|
6571
|
-
readonly experience_key: string;
|
|
6572
|
-
readonly symbol: io.flow.v0.enums.CurrencySymbolFormat;
|
|
6573
|
-
readonly label_formatters: io.flow.v0.enums.CurrencyLabelFormatter[];
|
|
6574
|
-
}
|
|
6575
6514
|
interface CurrencySymbols {
|
|
6576
6515
|
readonly primary: string;
|
|
6577
6516
|
readonly narrow?: string;
|
|
@@ -7249,21 +7188,6 @@ declare namespace io.flow.v0.models {
|
|
|
7249
7188
|
readonly language: string;
|
|
7250
7189
|
readonly measurement_system: io.flow.v0.enums.MeasurementSystem;
|
|
7251
7190
|
}
|
|
7252
|
-
interface ExperienceDeleted {
|
|
7253
|
-
readonly discriminator: 'experience_deleted';
|
|
7254
|
-
readonly event_id: string;
|
|
7255
|
-
readonly timestamp: string;
|
|
7256
|
-
readonly organization: string;
|
|
7257
|
-
readonly key: string;
|
|
7258
|
-
readonly subcatalog_id: string;
|
|
7259
|
-
}
|
|
7260
|
-
interface ExperienceDeletedV2 {
|
|
7261
|
-
readonly discriminator: 'experience_deleted_v2';
|
|
7262
|
-
readonly event_id: string;
|
|
7263
|
-
readonly timestamp: string;
|
|
7264
|
-
readonly organization: string;
|
|
7265
|
-
readonly experience: io.flow.v0.models.Experience;
|
|
7266
|
-
}
|
|
7267
7191
|
interface ExperienceExportType {
|
|
7268
7192
|
readonly discriminator: 'experience_export_type';
|
|
7269
7193
|
readonly organization_id: string;
|
|
@@ -7296,23 +7220,9 @@ declare namespace io.flow.v0.models {
|
|
|
7296
7220
|
readonly experience: io.flow.v0.models.ExperienceOverview;
|
|
7297
7221
|
readonly shipping_configuration: io.flow.v0.models.ShippingConfigurationReference;
|
|
7298
7222
|
}
|
|
7299
|
-
interface ExperienceLogisticsSettingsDeleted {
|
|
7300
|
-
readonly discriminator: 'experience_logistics_settings_deleted';
|
|
7301
|
-
readonly event_id: string;
|
|
7302
|
-
readonly timestamp: string;
|
|
7303
|
-
readonly organization: string;
|
|
7304
|
-
readonly logistics_settings: io.flow.v0.models.ExperienceLogisticsSettings;
|
|
7305
|
-
}
|
|
7306
7223
|
interface ExperienceLogisticsSettingsPutForm {
|
|
7307
7224
|
readonly shipping_configuration_key: string;
|
|
7308
7225
|
}
|
|
7309
|
-
interface ExperienceLogisticsSettingsUpserted {
|
|
7310
|
-
readonly discriminator: 'experience_logistics_settings_upserted';
|
|
7311
|
-
readonly event_id: string;
|
|
7312
|
-
readonly timestamp: string;
|
|
7313
|
-
readonly organization: string;
|
|
7314
|
-
readonly logistics_settings: io.flow.v0.models.ExperienceLogisticsSettings;
|
|
7315
|
-
}
|
|
7316
7226
|
interface ExperienceLogisticsSummary {
|
|
7317
7227
|
readonly outbound?: io.flow.v0.models.ExperienceLogisticsTierSummary;
|
|
7318
7228
|
readonly return?: io.flow.v0.models.ExperienceLogisticsTierSummary;
|
|
@@ -7342,13 +7252,6 @@ declare namespace io.flow.v0.models {
|
|
|
7342
7252
|
readonly price_book: io.flow.v0.models.PriceBookReference;
|
|
7343
7253
|
readonly position: number;
|
|
7344
7254
|
}
|
|
7345
|
-
interface ExperiencePriceBookMappingDeleted {
|
|
7346
|
-
readonly discriminator: 'experience_price_book_mapping_deleted';
|
|
7347
|
-
readonly event_id: string;
|
|
7348
|
-
readonly timestamp: string;
|
|
7349
|
-
readonly organization: string;
|
|
7350
|
-
readonly id: string;
|
|
7351
|
-
}
|
|
7352
7255
|
interface ExperiencePriceBookMappingForm {
|
|
7353
7256
|
readonly price_book_key: string;
|
|
7354
7257
|
readonly position?: number;
|
|
@@ -7356,13 +7259,6 @@ declare namespace io.flow.v0.models {
|
|
|
7356
7259
|
interface ExperiencePriceBookMappingPutForm {
|
|
7357
7260
|
readonly price_books: io.flow.v0.models.ExperiencePriceBookMappingForm[];
|
|
7358
7261
|
}
|
|
7359
|
-
interface ExperiencePriceBookMappingUpserted {
|
|
7360
|
-
readonly discriminator: 'experience_price_book_mapping_upserted';
|
|
7361
|
-
readonly event_id: string;
|
|
7362
|
-
readonly timestamp: string;
|
|
7363
|
-
readonly organization: string;
|
|
7364
|
-
readonly experience_price_book_mapping: io.flow.v0.models.ExperiencePriceBookMapping;
|
|
7365
|
-
}
|
|
7366
7262
|
interface ExperiencePriceConversion {
|
|
7367
7263
|
readonly request: io.flow.v0.models.ExperiencePriceConversionRequest;
|
|
7368
7264
|
readonly price: io.flow.v0.models.PriceWithBase;
|
|
@@ -7409,30 +7305,6 @@ declare namespace io.flow.v0.models {
|
|
|
7409
7305
|
readonly currency?: string;
|
|
7410
7306
|
readonly language?: string;
|
|
7411
7307
|
}
|
|
7412
|
-
interface ExperienceUpserted {
|
|
7413
|
-
readonly discriminator: 'experience_upserted';
|
|
7414
|
-
readonly event_id: string;
|
|
7415
|
-
readonly timestamp: string;
|
|
7416
|
-
readonly organization: string;
|
|
7417
|
-
readonly key: string;
|
|
7418
|
-
readonly name: string;
|
|
7419
|
-
readonly delivered_duty: string;
|
|
7420
|
-
readonly subcatalog_id: string;
|
|
7421
|
-
readonly region_id: string;
|
|
7422
|
-
readonly country: string;
|
|
7423
|
-
readonly currency: string;
|
|
7424
|
-
readonly language: string;
|
|
7425
|
-
readonly measurement_system: string;
|
|
7426
|
-
readonly position: number;
|
|
7427
|
-
readonly status?: string;
|
|
7428
|
-
}
|
|
7429
|
-
interface ExperienceUpsertedV2 {
|
|
7430
|
-
readonly discriminator: 'experience_upserted_v2';
|
|
7431
|
-
readonly event_id: string;
|
|
7432
|
-
readonly timestamp: string;
|
|
7433
|
-
readonly organization: string;
|
|
7434
|
-
readonly experience: io.flow.v0.models.Experience;
|
|
7435
|
-
}
|
|
7436
7308
|
interface ExperienceVersion {
|
|
7437
7309
|
readonly id: string;
|
|
7438
7310
|
readonly timestamp: string;
|
|
@@ -7983,6 +7855,18 @@ declare namespace io.flow.v0.models {
|
|
|
7983
7855
|
readonly hop_number: number;
|
|
7984
7856
|
readonly hop_estimate: io.flow.v0.models.HopEstimateV2;
|
|
7985
7857
|
}
|
|
7858
|
+
interface HoseinItemDeleted {
|
|
7859
|
+
readonly discriminator: 'hosein_item_deleted';
|
|
7860
|
+
readonly event_id: string;
|
|
7861
|
+
readonly timestamp: string;
|
|
7862
|
+
readonly id: string;
|
|
7863
|
+
}
|
|
7864
|
+
interface HoseinItemUpserted {
|
|
7865
|
+
readonly discriminator: 'hosein_item_upserted';
|
|
7866
|
+
readonly event_id: string;
|
|
7867
|
+
readonly timestamp: string;
|
|
7868
|
+
readonly item: io.flow.tech.onboarding.playground.v0.models.HoseinItem;
|
|
7869
|
+
}
|
|
7986
7870
|
interface Hs10 {
|
|
7987
7871
|
readonly id: string;
|
|
7988
7872
|
readonly item: io.flow.v0.models.HarmonizedItemReference;
|
|
@@ -8061,20 +7945,6 @@ declare namespace io.flow.v0.models {
|
|
|
8061
7945
|
readonly results?: io.flow.v0.models.ImportResults;
|
|
8062
7946
|
readonly deliveries: io.flow.v0.unions.ExportDelivery[];
|
|
8063
7947
|
}
|
|
8064
|
-
interface ImportCompletedV2 {
|
|
8065
|
-
readonly discriminator: 'import_completed_v2';
|
|
8066
|
-
readonly event_id: string;
|
|
8067
|
-
readonly timestamp: string;
|
|
8068
|
-
readonly organization: string;
|
|
8069
|
-
readonly import: io.flow.v0.models.Import;
|
|
8070
|
-
}
|
|
8071
|
-
interface ImportFailedV2 {
|
|
8072
|
-
readonly discriminator: 'import_failed_v2';
|
|
8073
|
-
readonly event_id: string;
|
|
8074
|
-
readonly timestamp: string;
|
|
8075
|
-
readonly organization: string;
|
|
8076
|
-
readonly import: io.flow.v0.models.Import;
|
|
8077
|
-
}
|
|
8078
7948
|
interface ImportForm {
|
|
8079
7949
|
readonly type: io.flow.v0.enums.ImportType;
|
|
8080
7950
|
readonly source_url: string;
|
|
@@ -8300,13 +8170,6 @@ declare namespace io.flow.v0.models {
|
|
|
8300
8170
|
readonly position: number;
|
|
8301
8171
|
readonly experience?: io.flow.v0.models.ExperienceReference;
|
|
8302
8172
|
}
|
|
8303
|
-
interface ItemMarginDeletedV2 {
|
|
8304
|
-
readonly discriminator: 'item_margin_deleted_v2';
|
|
8305
|
-
readonly event_id: string;
|
|
8306
|
-
readonly timestamp: string;
|
|
8307
|
-
readonly organization: string;
|
|
8308
|
-
readonly item_margin: io.flow.v0.models.ItemMargin;
|
|
8309
|
-
}
|
|
8310
8173
|
interface ItemMarginPostForm {
|
|
8311
8174
|
readonly name: string;
|
|
8312
8175
|
readonly q: string;
|
|
@@ -8322,13 +8185,6 @@ declare namespace io.flow.v0.models {
|
|
|
8322
8185
|
readonly percent?: number;
|
|
8323
8186
|
readonly position?: number;
|
|
8324
8187
|
}
|
|
8325
|
-
interface ItemMarginUpsertedV2 {
|
|
8326
|
-
readonly discriminator: 'item_margin_upserted_v2';
|
|
8327
|
-
readonly event_id: string;
|
|
8328
|
-
readonly timestamp: string;
|
|
8329
|
-
readonly organization: string;
|
|
8330
|
-
readonly item_margin: io.flow.v0.models.ItemMargin;
|
|
8331
|
-
}
|
|
8332
8188
|
interface ItemMarginVersion {
|
|
8333
8189
|
readonly id: string;
|
|
8334
8190
|
readonly timestamp: string;
|
|
@@ -8369,27 +8225,6 @@ declare namespace io.flow.v0.models {
|
|
|
8369
8225
|
interface ItemReference {
|
|
8370
8226
|
readonly number: string;
|
|
8371
8227
|
}
|
|
8372
|
-
interface ItemSalesMarginDeleted {
|
|
8373
|
-
readonly discriminator: 'item_sales_margin_deleted';
|
|
8374
|
-
readonly event_id: string;
|
|
8375
|
-
readonly timestamp: string;
|
|
8376
|
-
readonly item_sales_margin_id: string;
|
|
8377
|
-
readonly organization_id: string;
|
|
8378
|
-
readonly experience_key: string;
|
|
8379
|
-
}
|
|
8380
|
-
interface ItemSalesMarginUpserted {
|
|
8381
|
-
readonly discriminator: 'item_sales_margin_upserted';
|
|
8382
|
-
readonly event_id: string;
|
|
8383
|
-
readonly timestamp: string;
|
|
8384
|
-
readonly item_sales_margin_id: string;
|
|
8385
|
-
readonly organization_id: string;
|
|
8386
|
-
readonly experience_key: string;
|
|
8387
|
-
readonly name: string;
|
|
8388
|
-
readonly q: string;
|
|
8389
|
-
readonly fixed: number;
|
|
8390
|
-
readonly percent: number;
|
|
8391
|
-
readonly position: number;
|
|
8392
|
-
}
|
|
8393
8228
|
interface ItemShippingPricing {
|
|
8394
8229
|
readonly min: io.flow.v0.models.Price;
|
|
8395
8230
|
readonly max?: io.flow.v0.models.Price;
|
|
@@ -8488,21 +8323,6 @@ declare namespace io.flow.v0.models {
|
|
|
8488
8323
|
readonly organization: string;
|
|
8489
8324
|
readonly label: io.flow.v0.models.ShippingLabel;
|
|
8490
8325
|
}
|
|
8491
|
-
interface LabelFormatDeleted {
|
|
8492
|
-
readonly discriminator: 'label_format_deleted';
|
|
8493
|
-
readonly event_id: string;
|
|
8494
|
-
readonly timestamp: string;
|
|
8495
|
-
readonly organization: string;
|
|
8496
|
-
readonly experience_key: string;
|
|
8497
|
-
}
|
|
8498
|
-
interface LabelFormatUpserted {
|
|
8499
|
-
readonly discriminator: 'label_format_upserted';
|
|
8500
|
-
readonly event_id: string;
|
|
8501
|
-
readonly timestamp: string;
|
|
8502
|
-
readonly organization: string;
|
|
8503
|
-
readonly experience_key: string;
|
|
8504
|
-
readonly format: string;
|
|
8505
|
-
}
|
|
8506
8326
|
interface LabelOrderSummary {
|
|
8507
8327
|
readonly id: string;
|
|
8508
8328
|
readonly number: string;
|
|
@@ -9241,13 +9061,6 @@ declare namespace io.flow.v0.models {
|
|
|
9241
9061
|
readonly address?: io.flow.v0.models.BillingAddress;
|
|
9242
9062
|
readonly invoice?: io.flow.v0.models.CustomerInvoice;
|
|
9243
9063
|
}
|
|
9244
|
-
interface OrderDeleted {
|
|
9245
|
-
readonly discriminator: 'order_deleted';
|
|
9246
|
-
readonly event_id: string;
|
|
9247
|
-
readonly timestamp: string;
|
|
9248
|
-
readonly organization: string;
|
|
9249
|
-
readonly number: string;
|
|
9250
|
-
}
|
|
9251
9064
|
interface OrderDeletedV2 {
|
|
9252
9065
|
readonly discriminator: 'order_deleted_v2';
|
|
9253
9066
|
readonly event_id: string;
|
|
@@ -9331,12 +9144,6 @@ declare namespace io.flow.v0.models {
|
|
|
9331
9144
|
readonly primary: boolean;
|
|
9332
9145
|
readonly number?: string;
|
|
9333
9146
|
}
|
|
9334
|
-
interface OrderIdentifierDeleted {
|
|
9335
|
-
readonly discriminator: 'order_identifier_deleted';
|
|
9336
|
-
readonly event_id: string;
|
|
9337
|
-
readonly timestamp: string;
|
|
9338
|
-
readonly id: string;
|
|
9339
|
-
}
|
|
9340
9147
|
interface OrderIdentifierDeletedV2 {
|
|
9341
9148
|
readonly discriminator: 'order_identifier_deleted_v2';
|
|
9342
9149
|
readonly event_id: string;
|
|
@@ -9356,25 +9163,6 @@ declare namespace io.flow.v0.models {
|
|
|
9356
9163
|
readonly name?: string;
|
|
9357
9164
|
readonly primary?: boolean;
|
|
9358
9165
|
}
|
|
9359
|
-
interface OrderIdentifierUpserted {
|
|
9360
|
-
readonly discriminator: 'order_identifier_upserted';
|
|
9361
|
-
readonly event_id: string;
|
|
9362
|
-
readonly timestamp: string;
|
|
9363
|
-
readonly id: string;
|
|
9364
|
-
readonly organization: string;
|
|
9365
|
-
readonly number: string;
|
|
9366
|
-
readonly order_number: string;
|
|
9367
|
-
}
|
|
9368
|
-
interface OrderIdentifierUpsertedV2 {
|
|
9369
|
-
readonly discriminator: 'order_identifier_upserted_v2';
|
|
9370
|
-
readonly event_id: string;
|
|
9371
|
-
readonly timestamp: string;
|
|
9372
|
-
readonly organization: string;
|
|
9373
|
-
readonly id: string;
|
|
9374
|
-
readonly order_number: string;
|
|
9375
|
-
readonly identifier: string;
|
|
9376
|
-
readonly primary: boolean;
|
|
9377
|
-
}
|
|
9378
9166
|
interface OrderIdentifierUpsertedV3 {
|
|
9379
9167
|
readonly discriminator: 'order_identifier_upserted_v3';
|
|
9380
9168
|
readonly event_id: string;
|
|
@@ -9544,23 +9332,9 @@ declare namespace io.flow.v0.models {
|
|
|
9544
9332
|
readonly parent_order: io.flow.v0.models.Order;
|
|
9545
9333
|
readonly replacement_order: io.flow.v0.models.Order;
|
|
9546
9334
|
}
|
|
9547
|
-
interface OrderReplacementDeleted {
|
|
9548
|
-
readonly discriminator: 'order_replacement_deleted';
|
|
9549
|
-
readonly event_id: string;
|
|
9550
|
-
readonly timestamp: string;
|
|
9551
|
-
readonly organization: string;
|
|
9552
|
-
readonly order_replacement: io.flow.v0.models.OrderReplacement;
|
|
9553
|
-
}
|
|
9554
9335
|
interface OrderReplacementForm {
|
|
9555
9336
|
readonly items?: io.flow.v0.models.LineItemForm[];
|
|
9556
9337
|
}
|
|
9557
|
-
interface OrderReplacementUpserted {
|
|
9558
|
-
readonly discriminator: 'order_replacement_upserted';
|
|
9559
|
-
readonly event_id: string;
|
|
9560
|
-
readonly timestamp: string;
|
|
9561
|
-
readonly organization: string;
|
|
9562
|
-
readonly order_replacement: io.flow.v0.models.OrderReplacement;
|
|
9563
|
-
}
|
|
9564
9338
|
interface OrderRuleReference {
|
|
9565
9339
|
readonly id: string;
|
|
9566
9340
|
readonly key: string;
|
|
@@ -9577,13 +9351,6 @@ declare namespace io.flow.v0.models {
|
|
|
9577
9351
|
readonly from_service_id: string;
|
|
9578
9352
|
readonly to_service_id: string;
|
|
9579
9353
|
}
|
|
9580
|
-
interface OrderServiceChangeRequest {
|
|
9581
|
-
readonly discriminator: 'order_service_change_request';
|
|
9582
|
-
readonly event_id: string;
|
|
9583
|
-
readonly timestamp: string;
|
|
9584
|
-
readonly organization: string;
|
|
9585
|
-
readonly request: io.flow.v0.models.OrderServiceChangeRequestData;
|
|
9586
|
-
}
|
|
9587
9354
|
interface OrderServiceChangeRequestData {
|
|
9588
9355
|
readonly id: string;
|
|
9589
9356
|
readonly source_url: string;
|
|
@@ -9649,35 +9416,6 @@ declare namespace io.flow.v0.models {
|
|
|
9649
9416
|
readonly rate?: number;
|
|
9650
9417
|
readonly rate_label?: string;
|
|
9651
9418
|
}
|
|
9652
|
-
interface OrderUpserted {
|
|
9653
|
-
readonly discriminator: 'order_upserted';
|
|
9654
|
-
readonly event_id: string;
|
|
9655
|
-
readonly timestamp: string;
|
|
9656
|
-
readonly organization: string;
|
|
9657
|
-
readonly number: string;
|
|
9658
|
-
readonly environment: string;
|
|
9659
|
-
readonly experience_id: string;
|
|
9660
|
-
readonly expires_at: string;
|
|
9661
|
-
readonly customer: io.flow.v0.models.OrderCustomer;
|
|
9662
|
-
readonly selections: string[];
|
|
9663
|
-
readonly items: io.flow.v0.models.LocalizedLineItem[];
|
|
9664
|
-
readonly destination: io.flow.v0.models.OrderAddress;
|
|
9665
|
-
readonly deliveries: io.flow.v0.unions.Delivery[];
|
|
9666
|
-
readonly prices: io.flow.v0.models.OrderPriceDetail[];
|
|
9667
|
-
readonly order_id?: string;
|
|
9668
|
-
readonly payments?: io.flow.v0.models.OrderPayment[];
|
|
9669
|
-
readonly discount?: io.flow.v0.models.Money;
|
|
9670
|
-
readonly delivered_duty?: string;
|
|
9671
|
-
readonly total: io.flow.v0.models.LocalizedTotal;
|
|
9672
|
-
readonly created_at?: string;
|
|
9673
|
-
readonly updated_at?: string;
|
|
9674
|
-
readonly submitted_at?: string;
|
|
9675
|
-
readonly lines?: io.flow.v0.models.Line[];
|
|
9676
|
-
readonly attributes?: Record<string, string>;
|
|
9677
|
-
readonly geo?: io.flow.v0.models.OrderGeo;
|
|
9678
|
-
readonly merchant_of_record?: io.flow.v0.enums.OrderMerchantOfRecord;
|
|
9679
|
-
readonly tax_registration?: io.flow.v0.models.TaxRegistration;
|
|
9680
|
-
}
|
|
9681
9419
|
interface OrderUpsertedV2 {
|
|
9682
9420
|
readonly discriminator: 'order_upserted_v2';
|
|
9683
9421
|
readonly event_id: string;
|
|
@@ -10948,30 +10686,11 @@ declare namespace io.flow.v0.models {
|
|
|
10948
10686
|
readonly duty: io.flow.v0.enums.PricingLevySetting;
|
|
10949
10687
|
readonly rounding?: io.flow.v0.models.Rounding;
|
|
10950
10688
|
}
|
|
10951
|
-
interface PricingDeleted {
|
|
10952
|
-
readonly discriminator: 'pricing_deleted';
|
|
10953
|
-
readonly event_id: string;
|
|
10954
|
-
readonly timestamp: string;
|
|
10955
|
-
readonly organization: string;
|
|
10956
|
-
readonly experience_key: string;
|
|
10957
|
-
}
|
|
10958
10689
|
interface PricingSettings {
|
|
10959
10690
|
readonly editable: boolean;
|
|
10960
10691
|
readonly default_tax_display: io.flow.v0.enums.PricingLevySetting;
|
|
10961
10692
|
readonly default_duty_display: io.flow.v0.enums.PricingLevySetting;
|
|
10962
10693
|
}
|
|
10963
|
-
interface PricingUpserted {
|
|
10964
|
-
readonly discriminator: 'pricing_upserted';
|
|
10965
|
-
readonly event_id: string;
|
|
10966
|
-
readonly timestamp: string;
|
|
10967
|
-
readonly organization: string;
|
|
10968
|
-
readonly experience_key: string;
|
|
10969
|
-
readonly vat: string;
|
|
10970
|
-
readonly duty: string;
|
|
10971
|
-
readonly rounding_type?: string;
|
|
10972
|
-
readonly rounding_method?: string;
|
|
10973
|
-
readonly rounding_value?: number;
|
|
10974
|
-
}
|
|
10975
10694
|
interface PricingVersion {
|
|
10976
10695
|
readonly id: string;
|
|
10977
10696
|
readonly timestamp: string;
|
|
@@ -10990,6 +10709,7 @@ declare namespace io.flow.v0.models {
|
|
|
10990
10709
|
readonly taxonomy_category?: io.flow.v0.models.ProductTaxonomyCategory;
|
|
10991
10710
|
readonly taxonomy_data?: io.flow.v0.models.ProductTaxonomyData[];
|
|
10992
10711
|
readonly item_numbers: string[];
|
|
10712
|
+
readonly highest_value_item_number?: string;
|
|
10993
10713
|
readonly updated_at: string;
|
|
10994
10714
|
readonly deleted_at?: string;
|
|
10995
10715
|
}
|
|
@@ -11019,7 +10739,7 @@ declare namespace io.flow.v0.models {
|
|
|
11019
10739
|
readonly updated_by?: string;
|
|
11020
10740
|
readonly product_restriction_id?: string;
|
|
11021
10741
|
readonly hs_code?: string;
|
|
11022
|
-
readonly restricted_regions_by_type?: io.flow.
|
|
10742
|
+
readonly restricted_regions_by_type?: io.flow.v0.models.SellablilityRegionResult[];
|
|
11023
10743
|
}
|
|
11024
10744
|
interface ProductRestrictionResultDeleted {
|
|
11025
10745
|
readonly discriminator: 'product_restriction_result_deleted';
|
|
@@ -11035,6 +10755,24 @@ declare namespace io.flow.v0.models {
|
|
|
11035
10755
|
readonly organization: string;
|
|
11036
10756
|
readonly product_restriction_result: io.flow.v0.models.ProductRestrictionResult;
|
|
11037
10757
|
}
|
|
10758
|
+
interface ProductSellability {
|
|
10759
|
+
readonly discriminator: 'product_sellability';
|
|
10760
|
+
readonly shop_id: string;
|
|
10761
|
+
readonly product_id?: string;
|
|
10762
|
+
readonly request_id: string;
|
|
10763
|
+
readonly hs6_code: string;
|
|
10764
|
+
readonly restricted_regions: io.flow.v0.models.SellablilityRegionResult[];
|
|
10765
|
+
}
|
|
10766
|
+
interface ProductSellabilityForm {
|
|
10767
|
+
readonly shop_id: string;
|
|
10768
|
+
readonly product_id?: string;
|
|
10769
|
+
readonly name: string;
|
|
10770
|
+
readonly price: io.flow.v0.models.Money;
|
|
10771
|
+
readonly description: string;
|
|
10772
|
+
readonly taxonomy_category: io.flow.v0.models.ProductTaxonomyCategory;
|
|
10773
|
+
readonly status?: io.flow.v0.enums.SellabilityRequestStatus;
|
|
10774
|
+
readonly dry_run?: boolean;
|
|
10775
|
+
}
|
|
11038
10776
|
interface ProductTaxonomyCategory {
|
|
11039
10777
|
readonly name: string;
|
|
11040
10778
|
readonly full_name: string;
|
|
@@ -11814,6 +11552,18 @@ declare namespace io.flow.v0.models {
|
|
|
11814
11552
|
readonly authentication_techniques: io.flow.v0.enums.AuthenticationTechnique[];
|
|
11815
11553
|
readonly roles: io.flow.v0.enums.FlowRole[];
|
|
11816
11554
|
}
|
|
11555
|
+
interface SarveshItemDeleted {
|
|
11556
|
+
readonly discriminator: 'sarvesh_item_deleted';
|
|
11557
|
+
readonly event_id: string;
|
|
11558
|
+
readonly timestamp: string;
|
|
11559
|
+
readonly id: string;
|
|
11560
|
+
}
|
|
11561
|
+
interface SarveshItemUpserted {
|
|
11562
|
+
readonly discriminator: 'sarvesh_item_upserted';
|
|
11563
|
+
readonly event_id: string;
|
|
11564
|
+
readonly timestamp: string;
|
|
11565
|
+
readonly item: io.flow.tech.onboarding.playground.v0.models.SarveshItem;
|
|
11566
|
+
}
|
|
11817
11567
|
interface Schedule {
|
|
11818
11568
|
readonly calendar?: io.flow.v0.enums.Calendar;
|
|
11819
11569
|
readonly holiday: io.flow.v0.enums.HolidayCalendar;
|
|
@@ -11858,6 +11608,15 @@ declare namespace io.flow.v0.models {
|
|
|
11858
11608
|
readonly discriminator: 'select_issuer_option_action_details';
|
|
11859
11609
|
readonly issuer_options: io.flow.v0.models.IssuerReference[];
|
|
11860
11610
|
}
|
|
11611
|
+
interface SellabilityError {
|
|
11612
|
+
readonly discriminator: 'sellability_error';
|
|
11613
|
+
readonly code: io.flow.v0.enums.SellabilityErrorCode;
|
|
11614
|
+
readonly messages: string[];
|
|
11615
|
+
}
|
|
11616
|
+
interface SellablilityRegionResult {
|
|
11617
|
+
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
11618
|
+
readonly regions: string[];
|
|
11619
|
+
}
|
|
11861
11620
|
interface ServiceReference {
|
|
11862
11621
|
readonly id: string;
|
|
11863
11622
|
}
|
|
@@ -12555,6 +12314,13 @@ declare namespace io.flow.v0.models {
|
|
|
12555
12314
|
readonly organization: string;
|
|
12556
12315
|
readonly statement: io.flow.v0.models.Statement;
|
|
12557
12316
|
}
|
|
12317
|
+
interface StreetAddress {
|
|
12318
|
+
readonly streets?: string[];
|
|
12319
|
+
readonly city?: string;
|
|
12320
|
+
readonly province?: string;
|
|
12321
|
+
readonly postal?: string;
|
|
12322
|
+
readonly country?: string;
|
|
12323
|
+
}
|
|
12558
12324
|
interface StripeAuthenticationData {
|
|
12559
12325
|
readonly discriminator: 'stripe_authentication_data';
|
|
12560
12326
|
readonly secret_key_reference: string;
|
|
@@ -12686,6 +12452,83 @@ declare namespace io.flow.v0.models {
|
|
|
12686
12452
|
readonly components: io.flow.v0.enums.LevyComponent[];
|
|
12687
12453
|
readonly deminimis?: io.flow.v0.unions.Deminimis;
|
|
12688
12454
|
}
|
|
12455
|
+
interface TaxDutyCalculatorValidationError {
|
|
12456
|
+
readonly code: io.flow.v0.enums.TaxDutyCalculatorValidationErrorCode;
|
|
12457
|
+
readonly messages: string[];
|
|
12458
|
+
}
|
|
12459
|
+
interface TaxDutyQuote {
|
|
12460
|
+
readonly id: string;
|
|
12461
|
+
readonly primary_identifier: string;
|
|
12462
|
+
readonly attributes?: Record<string, string>;
|
|
12463
|
+
readonly merchant_of_record: io.flow.v0.enums.MerchantOfRecord;
|
|
12464
|
+
readonly delivered_duty: io.flow.v0.enums.DeliveredDuty;
|
|
12465
|
+
readonly destination: io.flow.v0.models.StreetAddress;
|
|
12466
|
+
readonly quote_date: string;
|
|
12467
|
+
readonly currency: string;
|
|
12468
|
+
readonly lines: io.flow.v0.models.TaxDutyQuoteLineItem[];
|
|
12469
|
+
readonly shipping: io.flow.v0.models.TaxDutyQuoteSimpleShipping[];
|
|
12470
|
+
readonly total_values: io.flow.v0.models.TaxDutyQuoteValues;
|
|
12471
|
+
}
|
|
12472
|
+
interface TaxDutyQuoteFeeValue {
|
|
12473
|
+
readonly amount: number;
|
|
12474
|
+
readonly description: string;
|
|
12475
|
+
readonly amount_refundable_on_return: number;
|
|
12476
|
+
}
|
|
12477
|
+
interface TaxDutyQuoteForm {
|
|
12478
|
+
readonly primary_identifier: string;
|
|
12479
|
+
readonly attributes?: Record<string, string>;
|
|
12480
|
+
readonly delivered_duty: io.flow.v0.enums.DeliveredDuty;
|
|
12481
|
+
readonly destination: io.flow.v0.models.StreetAddress;
|
|
12482
|
+
readonly currency: string;
|
|
12483
|
+
readonly lines: io.flow.v0.models.TaxDutyQuoteLineItemForm[];
|
|
12484
|
+
readonly shipping: io.flow.v0.models.TaxDutyQuoteSimpleShippingForm[];
|
|
12485
|
+
readonly includes?: io.flow.v0.enums.LevyInclusion[];
|
|
12486
|
+
}
|
|
12487
|
+
interface TaxDutyQuoteLineItem {
|
|
12488
|
+
readonly primary_identifier: string;
|
|
12489
|
+
readonly attributes?: Record<string, string>;
|
|
12490
|
+
readonly ship_from: io.flow.v0.models.StreetAddress;
|
|
12491
|
+
readonly quantity: number;
|
|
12492
|
+
readonly unit_values: io.flow.v0.models.TaxDutyQuoteValues;
|
|
12493
|
+
readonly country_of_origin: string;
|
|
12494
|
+
readonly hs_code: string;
|
|
12495
|
+
}
|
|
12496
|
+
interface TaxDutyQuoteLineItemForm {
|
|
12497
|
+
readonly primary_identifier: string;
|
|
12498
|
+
readonly attributes?: Record<string, string>;
|
|
12499
|
+
readonly ship_from: io.flow.v0.models.StreetAddress;
|
|
12500
|
+
readonly quantity: number;
|
|
12501
|
+
readonly unit_price: number;
|
|
12502
|
+
readonly unit_weight?: io.flow.v0.models.Measurement;
|
|
12503
|
+
readonly country_of_origin?: string;
|
|
12504
|
+
readonly hs_code?: string;
|
|
12505
|
+
readonly includes: io.flow.v0.enums.LevyInclusion[];
|
|
12506
|
+
readonly preferential_rate_eligibilities?: io.flow.v0.enums.PreferentialRateEligibility[];
|
|
12507
|
+
}
|
|
12508
|
+
interface TaxDutyQuoteSimpleLevyValue {
|
|
12509
|
+
readonly discriminator: 'tax_duty_quote_simple_levy_value';
|
|
12510
|
+
readonly amount: number;
|
|
12511
|
+
readonly rate: number;
|
|
12512
|
+
readonly description: string;
|
|
12513
|
+
readonly zero_levy_reason?: io.flow.v0.enums.ZeroLevyReasonCode[];
|
|
12514
|
+
readonly amount_refundable_on_return: number;
|
|
12515
|
+
}
|
|
12516
|
+
interface TaxDutyQuoteSimpleShipping {
|
|
12517
|
+
readonly values: io.flow.v0.models.TaxDutyQuoteValues;
|
|
12518
|
+
readonly ship_from: io.flow.v0.models.StreetAddress;
|
|
12519
|
+
}
|
|
12520
|
+
interface TaxDutyQuoteSimpleShippingForm {
|
|
12521
|
+
readonly price: number;
|
|
12522
|
+
readonly includes: io.flow.v0.enums.LevyInclusion[];
|
|
12523
|
+
readonly ship_from?: io.flow.v0.models.StreetAddress;
|
|
12524
|
+
}
|
|
12525
|
+
interface TaxDutyQuoteValues {
|
|
12526
|
+
readonly price: number;
|
|
12527
|
+
readonly duty: io.flow.v0.models.TaxDutyQuoteSimpleLevyValue;
|
|
12528
|
+
readonly tax: io.flow.v0.models.TaxDutyQuoteSimpleLevyValue;
|
|
12529
|
+
readonly fees: io.flow.v0.models.TaxDutyQuoteFeeValue;
|
|
12530
|
+
readonly total: number;
|
|
12531
|
+
}
|
|
12689
12532
|
interface TaxRegistration {
|
|
12690
12533
|
readonly id: string;
|
|
12691
12534
|
readonly key: string;
|
|
@@ -13426,7 +13269,7 @@ declare namespace io.flow.v0.unions {
|
|
|
13426
13269
|
type Document = io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument;
|
|
13427
13270
|
type EmailNotificationData = io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder;
|
|
13428
13271
|
type Entity = io.flow.v0.models.Company | io.flow.v0.models.Individual;
|
|
13429
|
-
type Event = io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.NiallItemUpserted | io.flow.v0.models.NiallItemDeleted | io.flow.v0.models.RohanItemUpserted | io.flow.v0.models.RohanItemDeleted | io.flow.v0.models.AldoItemUpserted | io.flow.v0.models.AldoItemDeleted | io.flow.v0.models.AnshItemUpserted | io.flow.v0.models.AnshItemDeleted | 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.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.ChannelShopifyOrderStateUpserted | io.flow.v0.models.ChannelShopifyOrderStateDeleted | 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.
|
|
13272
|
+
type Event = io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.SarveshItemUpserted | io.flow.v0.models.SarveshItemDeleted | io.flow.v0.models.HoseinItemUpserted | io.flow.v0.models.HoseinItemDeleted | io.flow.v0.models.NiallItemUpserted | io.flow.v0.models.NiallItemDeleted | io.flow.v0.models.RohanItemUpserted | io.flow.v0.models.RohanItemDeleted | io.flow.v0.models.AldoItemUpserted | io.flow.v0.models.AldoItemDeleted | io.flow.v0.models.AnshItemUpserted | io.flow.v0.models.AnshItemDeleted | 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.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.ChannelShopifyOrderStateUpserted | io.flow.v0.models.ChannelShopifyOrderStateDeleted | 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.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | 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.GeItemInserted | io.flow.v0.models.GeItemUpdated | io.flow.v0.models.GeItemDeleted | 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.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.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | 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.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.AuthorizationRetryUpserted | io.flow.v0.models.AuthorizationRetryDeleted | io.flow.v0.models.TransferUpserted | io.flow.v0.models.TransferDeleted | 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.ProductInserted | io.flow.v0.models.ProductUpdated | io.flow.v0.models.ProductDeleted | 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.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted;
|
|
13430
13273
|
type ExpandableCard = io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary | io.flow.v0.models.ExternalCard;
|
|
13431
13274
|
type ExpandableCenter = io.flow.v0.models.Center | io.flow.v0.models.CenterReference;
|
|
13432
13275
|
type ExpandableExperience = io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference;
|
|
@@ -13495,6 +13338,7 @@ declare namespace io.flow.v0.unions {
|
|
|
13495
13338
|
type RepeatSchedule = io.flow.v0.models.RepeatHourly | io.flow.v0.models.RepeatDaily | io.flow.v0.models.RepeatWeekly | io.flow.v0.models.RepeatMonthly;
|
|
13496
13339
|
type ReturnSource = io.flow.v0.models.ReturnSourceFlow | io.flow.v0.models.ReturnSourceExternalVendor;
|
|
13497
13340
|
type SdkAdyenV3AuthenticationToken = io.flow.v0.models.AdyenV3FingerprintToken | io.flow.v0.models.AdyenV3ChallengeToken;
|
|
13341
|
+
type SellabilityResponse = io.flow.v0.models.ProductSellability | io.flow.v0.models.SellabilityError;
|
|
13498
13342
|
type ServiceDescription = io.flow.v0.models.ServiceSummary | io.flow.v0.models.ServiceUnknown;
|
|
13499
13343
|
type ServiceFee = io.flow.v0.models.FuelSurchargeServiceFee | io.flow.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.v0.models.RemoteAreaServiceFee | io.flow.v0.models.EmergencySituationSurchargeServiceFee | io.flow.v0.models.PeakSurchargeServiceFee | io.flow.v0.models.PeakSurchargeByWeightServiceFee | io.flow.v0.models.DutiesTaxesPaidSurchargeServiceFee | io.flow.v0.models.OversizePieceSurchargeServiceFee | io.flow.v0.models.OverweightPieceSurchargeServiceFee | io.flow.v0.models.RemoteAreaByWeightServiceFee | io.flow.v0.models.AdditionalHandlingServiceFee | io.flow.v0.models.LargePackageServiceFee | io.flow.v0.models.SecurityServiceFee | io.flow.v0.models.FixedDdpServiceFee | io.flow.v0.models.FixedCurrencyConversionServiceFee | io.flow.v0.models.EeiFilingServiceFee;
|
|
13500
13344
|
type Session = io.flow.v0.models.OrganizationSession;
|
|
@@ -13504,6 +13348,7 @@ declare namespace io.flow.v0.unions {
|
|
|
13504
13348
|
type ShippingNotificationForm = io.flow.v0.models.DetailedShippingNotificationForm | io.flow.v0.models.SinglePackageShippingNotificationForm | io.flow.v0.models.SummaryShippingNotificationForm;
|
|
13505
13349
|
type ShopifyCartAddForm = io.flow.v0.models.ShopifyCartAddSingleForm | io.flow.v0.models.ShopifyCartAddMultipleForm;
|
|
13506
13350
|
type ShopifyEventBucket = io.flow.v0.models.ShopifyItemEventBucket;
|
|
13351
|
+
type TaxDutyQuoteLevyValue = io.flow.v0.models.TaxDutyQuoteSimpleLevyValue;
|
|
13507
13352
|
type TaxSetting = io.flow.v0.models.AvalaraTaxSetting | io.flow.v0.models.AvalaraTaxCsvSetting;
|
|
13508
13353
|
type ThreedsChallengeAction = io.flow.v0.models.ThreedsTwoChallengeRequest;
|
|
13509
13354
|
type ThreedsIdentifyAction = io.flow.v0.models.ThreedsTwoMethod;
|
|
@@ -13638,10 +13483,6 @@ export declare type AvailableFilterFormat = io.flow.v0.enums.AvailableFilterForm
|
|
|
13638
13483
|
export declare type AvailableFilterStructured = io.flow.v0.models.AvailableFilterStructured;
|
|
13639
13484
|
export declare type AvailableFilterUnstructured = io.flow.v0.models.AvailableFilterUnstructured;
|
|
13640
13485
|
export declare type AvailablePromotion = io.flow.v0.models.AvailablePromotion;
|
|
13641
|
-
export declare type AvailablePromotionsDeleted = io.flow.v0.models.AvailablePromotionsDeleted;
|
|
13642
|
-
export declare type AvailablePromotionsDeletedV2 = io.flow.v0.models.AvailablePromotionsDeletedV2;
|
|
13643
|
-
export declare type AvailablePromotionsUpserted = io.flow.v0.models.AvailablePromotionsUpserted;
|
|
13644
|
-
export declare type AvailablePromotionsUpsertedV2 = io.flow.v0.models.AvailablePromotionsUpsertedV2;
|
|
13645
13486
|
export declare type AvailableService = io.flow.v0.models.AvailableService;
|
|
13646
13487
|
export declare type AvalaraTaxCsvSetting = io.flow.v0.models.AvalaraTaxCsvSetting;
|
|
13647
13488
|
export declare type AvalaraTaxSetting = io.flow.v0.models.AvalaraTaxSetting;
|
|
@@ -13846,9 +13687,7 @@ export declare type CountryPickerForm = io.flow.v0.models.CountryPickerForm;
|
|
|
13846
13687
|
export declare type CountryPickerSource = io.flow.v0.enums.CountryPickerSource;
|
|
13847
13688
|
export declare type CountryShippingPricing = io.flow.v0.models.CountryShippingPricing;
|
|
13848
13689
|
export declare type CountryStatus = io.flow.v0.models.CountryStatus;
|
|
13849
|
-
export declare type CountryStatusDeleted = io.flow.v0.models.CountryStatusDeleted;
|
|
13850
13690
|
export declare type CountryStatusForm = io.flow.v0.models.CountryStatusForm;
|
|
13851
|
-
export declare type CountryStatusUpserted = io.flow.v0.models.CountryStatusUpserted;
|
|
13852
13691
|
export declare type CreditMemo = io.flow.v0.models.CreditMemo;
|
|
13853
13692
|
export declare type CreditMemoDeleted = io.flow.v0.models.CreditMemoDeleted;
|
|
13854
13693
|
export declare type CreditMemoForm = io.flow.v0.models.CreditMemoForm;
|
|
@@ -13866,8 +13705,6 @@ export declare type CsvPriceBookItemExportRowByItemNumber = io.flow.v0.models.Cs
|
|
|
13866
13705
|
export declare type CsvPriceBookItemExportRowBySku = io.flow.v0.models.CsvPriceBookItemExportRowBySku;
|
|
13867
13706
|
export declare type Currency = io.flow.v0.models.Currency;
|
|
13868
13707
|
export declare type CurrencyFormat = io.flow.v0.models.CurrencyFormat;
|
|
13869
|
-
export declare type CurrencyFormatDeleted = io.flow.v0.models.CurrencyFormatDeleted;
|
|
13870
|
-
export declare type CurrencyFormatUpserted = io.flow.v0.models.CurrencyFormatUpserted;
|
|
13871
13708
|
export declare type CurrencyLabelFormatter = io.flow.v0.enums.CurrencyLabelFormatter;
|
|
13872
13709
|
export declare type CurrencySymbolFormat = io.flow.v0.enums.CurrencySymbolFormat;
|
|
13873
13710
|
export declare type CurrencySymbols = io.flow.v0.models.CurrencySymbols;
|
|
@@ -14029,15 +13866,11 @@ export declare type ExperienceCountryStatus = io.flow.v0.enums.ExperienceCountry
|
|
|
14029
13866
|
export declare type ExperienceCurrencyFormat = io.flow.v0.models.ExperienceCurrencyFormat;
|
|
14030
13867
|
export declare type ExperienceCurrencyFormatForm = io.flow.v0.models.ExperienceCurrencyFormatForm;
|
|
14031
13868
|
export declare type ExperienceDefaults = io.flow.v0.models.ExperienceDefaults;
|
|
14032
|
-
export declare type ExperienceDeleted = io.flow.v0.models.ExperienceDeleted;
|
|
14033
|
-
export declare type ExperienceDeletedV2 = io.flow.v0.models.ExperienceDeletedV2;
|
|
14034
13869
|
export declare type ExperienceExportType = io.flow.v0.models.ExperienceExportType;
|
|
14035
13870
|
export declare type ExperienceForm = io.flow.v0.models.ExperienceForm;
|
|
14036
13871
|
export declare type ExperienceGeo = io.flow.v0.models.ExperienceGeo;
|
|
14037
13872
|
export declare type ExperienceLogisticsSettings = io.flow.v0.models.ExperienceLogisticsSettings;
|
|
14038
|
-
export declare type ExperienceLogisticsSettingsDeleted = io.flow.v0.models.ExperienceLogisticsSettingsDeleted;
|
|
14039
13873
|
export declare type ExperienceLogisticsSettingsPutForm = io.flow.v0.models.ExperienceLogisticsSettingsPutForm;
|
|
14040
|
-
export declare type ExperienceLogisticsSettingsUpserted = io.flow.v0.models.ExperienceLogisticsSettingsUpserted;
|
|
14041
13874
|
export declare type ExperienceLogisticsSummary = io.flow.v0.models.ExperienceLogisticsSummary;
|
|
14042
13875
|
export declare type ExperienceLogisticsTierSummary = io.flow.v0.models.ExperienceLogisticsTierSummary;
|
|
14043
13876
|
export declare type ExperienceLogisticsTierSummaryPrices = io.flow.v0.models.ExperienceLogisticsTierSummaryPrices;
|
|
@@ -14046,10 +13879,8 @@ export declare type ExperiencePaymentMethodRule = io.flow.v0.models.ExperiencePa
|
|
|
14046
13879
|
export declare type ExperiencePaymentMethodRuleForm = io.flow.v0.models.ExperiencePaymentMethodRuleForm;
|
|
14047
13880
|
export declare type ExperiencePaymentMethodTag = io.flow.v0.enums.ExperiencePaymentMethodTag;
|
|
14048
13881
|
export declare type ExperiencePriceBookMapping = io.flow.v0.models.ExperiencePriceBookMapping;
|
|
14049
|
-
export declare type ExperiencePriceBookMappingDeleted = io.flow.v0.models.ExperiencePriceBookMappingDeleted;
|
|
14050
13882
|
export declare type ExperiencePriceBookMappingForm = io.flow.v0.models.ExperiencePriceBookMappingForm;
|
|
14051
13883
|
export declare type ExperiencePriceBookMappingPutForm = io.flow.v0.models.ExperiencePriceBookMappingPutForm;
|
|
14052
|
-
export declare type ExperiencePriceBookMappingUpserted = io.flow.v0.models.ExperiencePriceBookMappingUpserted;
|
|
14053
13884
|
export declare type ExperiencePriceConversion = io.flow.v0.models.ExperiencePriceConversion;
|
|
14054
13885
|
export declare type ExperiencePriceConversionRequest = io.flow.v0.models.ExperiencePriceConversionRequest;
|
|
14055
13886
|
export declare type ExperiencePriceConversionResponse = io.flow.v0.models.ExperiencePriceConversionResponse;
|
|
@@ -14061,8 +13892,6 @@ export declare type ExperienceSettings = io.flow.v0.models.ExperienceSettings;
|
|
|
14061
13892
|
export declare type ExperienceStatus = io.flow.v0.enums.ExperienceStatus;
|
|
14062
13893
|
export declare type ExperienceStatusForm = io.flow.v0.models.ExperienceStatusForm;
|
|
14063
13894
|
export declare type ExperienceSummary = io.flow.v0.models.ExperienceSummary;
|
|
14064
|
-
export declare type ExperienceUpserted = io.flow.v0.models.ExperienceUpserted;
|
|
14065
|
-
export declare type ExperienceUpsertedV2 = io.flow.v0.models.ExperienceUpsertedV2;
|
|
14066
13895
|
export declare type ExperienceVersion = io.flow.v0.models.ExperienceVersion;
|
|
14067
13896
|
export declare type Expiration = io.flow.v0.models.Expiration;
|
|
14068
13897
|
export declare type Export = io.flow.v0.models.Export;
|
|
@@ -14182,6 +14011,8 @@ export declare type Hop = io.flow.v0.models.Hop;
|
|
|
14182
14011
|
export declare type HopEstimate = io.flow.v0.models.HopEstimate;
|
|
14183
14012
|
export declare type HopEstimateV2 = io.flow.v0.models.HopEstimateV2;
|
|
14184
14013
|
export declare type HopV2 = io.flow.v0.models.HopV2;
|
|
14014
|
+
export declare type HoseinItemDeleted = io.flow.v0.models.HoseinItemDeleted;
|
|
14015
|
+
export declare type HoseinItemUpserted = io.flow.v0.models.HoseinItemUpserted;
|
|
14185
14016
|
export declare type Hs10 = io.flow.v0.models.Hs10;
|
|
14186
14017
|
export declare type Hs10CodeDeleted = io.flow.v0.models.Hs10CodeDeleted;
|
|
14187
14018
|
export declare type Hs10CodeUpserted = io.flow.v0.models.Hs10CodeUpserted;
|
|
@@ -14194,8 +14025,6 @@ export declare type Image = io.flow.v0.models.Image;
|
|
|
14194
14025
|
export declare type ImageForm = io.flow.v0.models.ImageForm;
|
|
14195
14026
|
export declare type ImageTag = io.flow.v0.enums.ImageTag;
|
|
14196
14027
|
export declare type Import = io.flow.v0.models.Import;
|
|
14197
|
-
export declare type ImportCompletedV2 = io.flow.v0.models.ImportCompletedV2;
|
|
14198
|
-
export declare type ImportFailedV2 = io.flow.v0.models.ImportFailedV2;
|
|
14199
14028
|
export declare type ImportForm = io.flow.v0.models.ImportForm;
|
|
14200
14029
|
export declare type ImportResults = io.flow.v0.models.ImportResults;
|
|
14201
14030
|
export declare type ImportTemplate = io.flow.v0.models.ImportTemplate;
|
|
@@ -14244,10 +14073,8 @@ export declare type ItemFormOverlayForm = io.flow.v0.models.ItemFormOverlayForm;
|
|
|
14244
14073
|
export declare type ItemIdentifier = io.flow.v0.enums.ItemIdentifier;
|
|
14245
14074
|
export declare type ItemInserted = io.flow.v0.models.ItemInserted;
|
|
14246
14075
|
export declare type ItemMargin = io.flow.v0.models.ItemMargin;
|
|
14247
|
-
export declare type ItemMarginDeletedV2 = io.flow.v0.models.ItemMarginDeletedV2;
|
|
14248
14076
|
export declare type ItemMarginPostForm = io.flow.v0.models.ItemMarginPostForm;
|
|
14249
14077
|
export declare type ItemMarginPutForm = io.flow.v0.models.ItemMarginPutForm;
|
|
14250
|
-
export declare type ItemMarginUpsertedV2 = io.flow.v0.models.ItemMarginUpsertedV2;
|
|
14251
14078
|
export declare type ItemMarginVersion = io.flow.v0.models.ItemMarginVersion;
|
|
14252
14079
|
export declare type ItemOriginDeleted = io.flow.v0.models.ItemOriginDeleted;
|
|
14253
14080
|
export declare type ItemOriginUpserted = io.flow.v0.models.ItemOriginUpserted;
|
|
@@ -14255,8 +14082,6 @@ export declare type ItemPriceUpdateForm = io.flow.v0.models.ItemPriceUpdateForm;
|
|
|
14255
14082
|
export declare type ItemPriceUpdatePutForm = io.flow.v0.models.ItemPriceUpdatePutForm;
|
|
14256
14083
|
export declare type ItemQuerySuggestion = io.flow.v0.models.ItemQuerySuggestion;
|
|
14257
14084
|
export declare type ItemReference = io.flow.v0.models.ItemReference;
|
|
14258
|
-
export declare type ItemSalesMarginDeleted = io.flow.v0.models.ItemSalesMarginDeleted;
|
|
14259
|
-
export declare type ItemSalesMarginUpserted = io.flow.v0.models.ItemSalesMarginUpserted;
|
|
14260
14085
|
export declare type ItemShippingPricing = io.flow.v0.models.ItemShippingPricing;
|
|
14261
14086
|
export declare type ItemStatistics = io.flow.v0.models.ItemStatistics;
|
|
14262
14087
|
export declare type ItemUpdated = io.flow.v0.models.ItemUpdated;
|
|
@@ -14275,8 +14100,6 @@ export declare type KnowYourBusinessUsaForm = io.flow.v0.models.KnowYourBusiness
|
|
|
14275
14100
|
export declare type KubeHealthcheck = io.flow.v0.models.KubeHealthcheck;
|
|
14276
14101
|
export declare type LabelBase = io.flow.v0.models.LabelBase;
|
|
14277
14102
|
export declare type LabelDeletedV2 = io.flow.v0.models.LabelDeletedV2;
|
|
14278
|
-
export declare type LabelFormatDeleted = io.flow.v0.models.LabelFormatDeleted;
|
|
14279
|
-
export declare type LabelFormatUpserted = io.flow.v0.models.LabelFormatUpserted;
|
|
14280
14103
|
export declare type LabelOrderSummary = io.flow.v0.models.LabelOrderSummary;
|
|
14281
14104
|
export declare type LabelProcessingModification = io.flow.v0.models.LabelProcessingModification;
|
|
14282
14105
|
export declare type LabelProcessingModificationDeleted = io.flow.v0.models.LabelProcessingModificationDeleted;
|
|
@@ -14304,6 +14127,7 @@ export declare type LaneSummary = io.flow.v0.models.LaneSummary;
|
|
|
14304
14127
|
export declare type Language = io.flow.v0.models.Language;
|
|
14305
14128
|
export declare type LargePackageServiceFee = io.flow.v0.models.LargePackageServiceFee;
|
|
14306
14129
|
export declare type LevyComponent = io.flow.v0.enums.LevyComponent;
|
|
14130
|
+
export declare type LevyInclusion = io.flow.v0.enums.LevyInclusion;
|
|
14307
14131
|
export declare type LevyStrategy = io.flow.v0.enums.LevyStrategy;
|
|
14308
14132
|
export declare type Line = io.flow.v0.models.Line;
|
|
14309
14133
|
export declare type LineItem = io.flow.v0.models.LineItem;
|
|
@@ -14423,7 +14247,6 @@ export declare type OrderBuilderSelectionsForm = io.flow.v0.models.OrderBuilderS
|
|
|
14423
14247
|
export declare type OrderChangeSource = io.flow.v0.enums.OrderChangeSource;
|
|
14424
14248
|
export declare type OrderCustomer = io.flow.v0.models.OrderCustomer;
|
|
14425
14249
|
export declare type OrderCustomerForm = io.flow.v0.models.OrderCustomerForm;
|
|
14426
|
-
export declare type OrderDeleted = io.flow.v0.models.OrderDeleted;
|
|
14427
14250
|
export declare type OrderDeletedV2 = io.flow.v0.models.OrderDeletedV2;
|
|
14428
14251
|
export declare type OrderDestinationPutForm = io.flow.v0.models.OrderDestinationPutForm;
|
|
14429
14252
|
export declare type OrderDetails = io.flow.v0.models.OrderDetails;
|
|
@@ -14436,12 +14259,9 @@ export declare type OrderForm = io.flow.v0.models.OrderForm;
|
|
|
14436
14259
|
export declare type OrderFraudStatus = io.flow.v0.models.OrderFraudStatus;
|
|
14437
14260
|
export declare type OrderGeo = io.flow.v0.models.OrderGeo;
|
|
14438
14261
|
export declare type OrderIdentifier = io.flow.v0.models.OrderIdentifier;
|
|
14439
|
-
export declare type OrderIdentifierDeleted = io.flow.v0.models.OrderIdentifierDeleted;
|
|
14440
14262
|
export declare type OrderIdentifierDeletedV2 = io.flow.v0.models.OrderIdentifierDeletedV2;
|
|
14441
14263
|
export declare type OrderIdentifierForm = io.flow.v0.models.OrderIdentifierForm;
|
|
14442
14264
|
export declare type OrderIdentifierPutForm = io.flow.v0.models.OrderIdentifierPutForm;
|
|
14443
|
-
export declare type OrderIdentifierUpserted = io.flow.v0.models.OrderIdentifierUpserted;
|
|
14444
|
-
export declare type OrderIdentifierUpsertedV2 = io.flow.v0.models.OrderIdentifierUpsertedV2;
|
|
14445
14265
|
export declare type OrderIdentifierUpsertedV3 = io.flow.v0.models.OrderIdentifierUpsertedV3;
|
|
14446
14266
|
export declare type OrderIdentifierVersion = io.flow.v0.models.OrderIdentifierVersion;
|
|
14447
14267
|
export declare type OrderInformation = io.flow.v0.unions.OrderInformation;
|
|
@@ -14482,14 +14302,11 @@ export declare type OrderRefundSummaryPartialCharged = io.flow.v0.enums.OrderRef
|
|
|
14482
14302
|
export declare type OrderRefundSummaryPartialForm = io.flow.v0.models.OrderRefundSummaryPartialForm;
|
|
14483
14303
|
export declare type OrderRefundSummaryPartialIncludes = io.flow.v0.models.OrderRefundSummaryPartialIncludes;
|
|
14484
14304
|
export declare type OrderReplacement = io.flow.v0.models.OrderReplacement;
|
|
14485
|
-
export declare type OrderReplacementDeleted = io.flow.v0.models.OrderReplacementDeleted;
|
|
14486
14305
|
export declare type OrderReplacementForm = io.flow.v0.models.OrderReplacementForm;
|
|
14487
|
-
export declare type OrderReplacementUpserted = io.flow.v0.models.OrderReplacementUpserted;
|
|
14488
14306
|
export declare type OrderRuleReference = io.flow.v0.models.OrderRuleReference;
|
|
14489
14307
|
export declare type OrderRulesSummary = io.flow.v0.models.OrderRulesSummary;
|
|
14490
14308
|
export declare type OrderServiceChange = io.flow.v0.models.OrderServiceChange;
|
|
14491
14309
|
export declare type OrderServiceChangeForm = io.flow.v0.models.OrderServiceChangeForm;
|
|
14492
|
-
export declare type OrderServiceChangeRequest = io.flow.v0.models.OrderServiceChangeRequest;
|
|
14493
14310
|
export declare type OrderServiceChangeRequestData = io.flow.v0.models.OrderServiceChangeRequestData;
|
|
14494
14311
|
export declare type OrderStatus = io.flow.v0.enums.OrderStatus;
|
|
14495
14312
|
export declare type OrderStorage = io.flow.v0.enums.OrderStorage;
|
|
@@ -14502,7 +14319,6 @@ export declare type OrderSummaryLevy = io.flow.v0.models.OrderSummaryLevy;
|
|
|
14502
14319
|
export declare type OrderSummaryLineItem = io.flow.v0.models.OrderSummaryLineItem;
|
|
14503
14320
|
export declare type OrderSummaryPriceDetail = io.flow.v0.models.OrderSummaryPriceDetail;
|
|
14504
14321
|
export declare type OrderType = io.flow.v0.enums.OrderType;
|
|
14505
|
-
export declare type OrderUpserted = io.flow.v0.models.OrderUpserted;
|
|
14506
14322
|
export declare type OrderUpsertedV2 = io.flow.v0.models.OrderUpsertedV2;
|
|
14507
14323
|
export declare type OrderVersion = io.flow.v0.models.OrderVersion;
|
|
14508
14324
|
export declare type OrderWithDiscountsForm = io.flow.v0.models.OrderWithDiscountsForm;
|
|
@@ -14735,6 +14551,7 @@ export declare type PhysicalDeliveryPreferredService = io.flow.v0.models.Physica
|
|
|
14735
14551
|
export declare type PhysicalDeliverySpecialSerivce = io.flow.v0.enums.PhysicalDeliverySpecialSerivce;
|
|
14736
14552
|
export declare type PostPaymentRedirectUrls = io.flow.v0.models.PostPaymentRedirectUrls;
|
|
14737
14553
|
export declare type PostalType = io.flow.v0.enums.PostalType;
|
|
14554
|
+
export declare type PreferentialRateEligibility = io.flow.v0.enums.PreferentialRateEligibility;
|
|
14738
14555
|
export declare type PreferredServiceSelectionStrategy = io.flow.v0.enums.PreferredServiceSelectionStrategy;
|
|
14739
14556
|
export declare type Price = io.flow.v0.models.Price;
|
|
14740
14557
|
export declare type PriceAccuracy = io.flow.v0.enums.PriceAccuracy;
|
|
@@ -14768,10 +14585,8 @@ export declare type PriceSourceProvided = io.flow.v0.models.PriceSourceProvided;
|
|
|
14768
14585
|
export declare type PriceWithBase = io.flow.v0.models.PriceWithBase;
|
|
14769
14586
|
export declare type PriceWithBaseAndDetails = io.flow.v0.models.PriceWithBaseAndDetails;
|
|
14770
14587
|
export declare type Pricing = io.flow.v0.models.Pricing;
|
|
14771
|
-
export declare type PricingDeleted = io.flow.v0.models.PricingDeleted;
|
|
14772
14588
|
export declare type PricingLevySetting = io.flow.v0.enums.PricingLevySetting;
|
|
14773
14589
|
export declare type PricingSettings = io.flow.v0.models.PricingSettings;
|
|
14774
|
-
export declare type PricingUpserted = io.flow.v0.models.PricingUpserted;
|
|
14775
14590
|
export declare type PricingVersion = io.flow.v0.models.PricingVersion;
|
|
14776
14591
|
export declare type ProcessingEstimate = io.flow.v0.models.ProcessingEstimate;
|
|
14777
14592
|
export declare type Product = io.flow.v0.models.Product;
|
|
@@ -14781,6 +14596,8 @@ export declare type ProductRestrictionResult = io.flow.v0.models.ProductRestrict
|
|
|
14781
14596
|
export declare type ProductRestrictionResultDeleted = io.flow.v0.models.ProductRestrictionResultDeleted;
|
|
14782
14597
|
export declare type ProductRestrictionResultUpserted = io.flow.v0.models.ProductRestrictionResultUpserted;
|
|
14783
14598
|
export declare type ProductRestrictionRule = io.flow.v0.enums.ProductRestrictionRule;
|
|
14599
|
+
export declare type ProductSellability = io.flow.v0.models.ProductSellability;
|
|
14600
|
+
export declare type ProductSellabilityForm = io.flow.v0.models.ProductSellabilityForm;
|
|
14784
14601
|
export declare type ProductTaxonomyCategory = io.flow.v0.models.ProductTaxonomyCategory;
|
|
14785
14602
|
export declare type ProductTaxonomyData = io.flow.v0.models.ProductTaxonomyData;
|
|
14786
14603
|
export declare type ProductUpdated = io.flow.v0.models.ProductUpdated;
|
|
@@ -14927,6 +14744,9 @@ export declare type Rounding = io.flow.v0.models.Rounding;
|
|
|
14927
14744
|
export declare type RoundingMethod = io.flow.v0.enums.RoundingMethod;
|
|
14928
14745
|
export declare type RoundingType = io.flow.v0.enums.RoundingType;
|
|
14929
14746
|
export declare type RouteAudit = io.flow.v0.models.RouteAudit;
|
|
14747
|
+
export declare type RuleEffectType = io.flow.v0.enums.RuleEffectType;
|
|
14748
|
+
export declare type SarveshItemDeleted = io.flow.v0.models.SarveshItemDeleted;
|
|
14749
|
+
export declare type SarveshItemUpserted = io.flow.v0.models.SarveshItemUpserted;
|
|
14930
14750
|
export declare type Schedule = io.flow.v0.models.Schedule;
|
|
14931
14751
|
export declare type ScheduleExceptionStatus = io.flow.v0.enums.ScheduleExceptionStatus;
|
|
14932
14752
|
export declare type ScheduledExport = io.flow.v0.models.ScheduledExport;
|
|
@@ -14936,6 +14756,11 @@ export declare type SdkAdyenV3AuthenticationToken = io.flow.v0.unions.SdkAdyenV3
|
|
|
14936
14756
|
export declare type SecurityRatecardFee = io.flow.v0.models.SecurityRatecardFee;
|
|
14937
14757
|
export declare type SecurityServiceFee = io.flow.v0.models.SecurityServiceFee;
|
|
14938
14758
|
export declare type SelectIssuerOptionActionDetails = io.flow.v0.models.SelectIssuerOptionActionDetails;
|
|
14759
|
+
export declare type SellabilityError = io.flow.v0.models.SellabilityError;
|
|
14760
|
+
export declare type SellabilityErrorCode = io.flow.v0.enums.SellabilityErrorCode;
|
|
14761
|
+
export declare type SellabilityRequestStatus = io.flow.v0.enums.SellabilityRequestStatus;
|
|
14762
|
+
export declare type SellabilityResponse = io.flow.v0.unions.SellabilityResponse;
|
|
14763
|
+
export declare type SellablilityRegionResult = io.flow.v0.models.SellablilityRegionResult;
|
|
14939
14764
|
export declare type ServiceDescription = io.flow.v0.unions.ServiceDescription;
|
|
14940
14765
|
export declare type ServiceFee = io.flow.v0.unions.ServiceFee;
|
|
14941
14766
|
export declare type ServiceReference = io.flow.v0.models.ServiceReference;
|
|
@@ -15060,6 +14885,7 @@ export declare type StatementDeleted = io.flow.v0.models.StatementDeleted;
|
|
|
15060
14885
|
export declare type StatementUpserted = io.flow.v0.models.StatementUpserted;
|
|
15061
14886
|
export declare type StoredMethodUsageStep = io.flow.v0.enums.StoredMethodUsageStep;
|
|
15062
14887
|
export declare type Strategy = io.flow.v0.enums.Strategy;
|
|
14888
|
+
export declare type StreetAddress = io.flow.v0.models.StreetAddress;
|
|
15063
14889
|
export declare type StripeAuthenticationData = io.flow.v0.models.StripeAuthenticationData;
|
|
15064
14890
|
export declare type StripeAuthenticationDataForm = io.flow.v0.models.StripeAuthenticationDataForm;
|
|
15065
14891
|
export declare type StripeAuthorizationResultActionDetails = io.flow.v0.models.StripeAuthorizationResultActionDetails;
|
|
@@ -15087,6 +14913,18 @@ export declare type SurchargeSetting = io.flow.v0.models.SurchargeSetting;
|
|
|
15087
14913
|
export declare type SurchargeSettingDisplay = io.flow.v0.models.SurchargeSettingDisplay;
|
|
15088
14914
|
export declare type Tax = io.flow.v0.models.Tax;
|
|
15089
14915
|
export declare type TaxApplicability = io.flow.v0.enums.TaxApplicability;
|
|
14916
|
+
export declare type TaxDutyCalculatorValidationError = io.flow.v0.models.TaxDutyCalculatorValidationError;
|
|
14917
|
+
export declare type TaxDutyCalculatorValidationErrorCode = io.flow.v0.enums.TaxDutyCalculatorValidationErrorCode;
|
|
14918
|
+
export declare type TaxDutyQuote = io.flow.v0.models.TaxDutyQuote;
|
|
14919
|
+
export declare type TaxDutyQuoteFeeValue = io.flow.v0.models.TaxDutyQuoteFeeValue;
|
|
14920
|
+
export declare type TaxDutyQuoteForm = io.flow.v0.models.TaxDutyQuoteForm;
|
|
14921
|
+
export declare type TaxDutyQuoteLevyValue = io.flow.v0.unions.TaxDutyQuoteLevyValue;
|
|
14922
|
+
export declare type TaxDutyQuoteLineItem = io.flow.v0.models.TaxDutyQuoteLineItem;
|
|
14923
|
+
export declare type TaxDutyQuoteLineItemForm = io.flow.v0.models.TaxDutyQuoteLineItemForm;
|
|
14924
|
+
export declare type TaxDutyQuoteSimpleLevyValue = io.flow.v0.models.TaxDutyQuoteSimpleLevyValue;
|
|
14925
|
+
export declare type TaxDutyQuoteSimpleShipping = io.flow.v0.models.TaxDutyQuoteSimpleShipping;
|
|
14926
|
+
export declare type TaxDutyQuoteSimpleShippingForm = io.flow.v0.models.TaxDutyQuoteSimpleShippingForm;
|
|
14927
|
+
export declare type TaxDutyQuoteValues = io.flow.v0.models.TaxDutyQuoteValues;
|
|
15090
14928
|
export declare type TaxDutyTransactionReasonCode = io.flow.v0.enums.TaxDutyTransactionReasonCode;
|
|
15091
14929
|
export declare type TaxRegistration = io.flow.v0.models.TaxRegistration;
|
|
15092
14930
|
export declare type TaxRegistrationForm = io.flow.v0.models.TaxRegistrationForm;
|
|
@@ -15241,5 +15079,6 @@ export declare type WebhookStatus = io.flow.v0.enums.WebhookStatus;
|
|
|
15241
15079
|
export declare type WithholdingDeduction = io.flow.v0.models.WithholdingDeduction;
|
|
15242
15080
|
export declare type WithholdingDeductionType = io.flow.v0.enums.WithholdingDeductionType;
|
|
15243
15081
|
export declare type ZeroAmountIndicator = io.flow.v0.enums.ZeroAmountIndicator;
|
|
15082
|
+
export declare type ZeroLevyReasonCode = io.flow.v0.enums.ZeroLevyReasonCode;
|
|
15244
15083
|
export declare type Zone = io.flow.v0.models.Zone;
|
|
15245
15084
|
export {};
|