@flowio/types 11.24.139 → 11.24.141
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 +529 -125
- package/dist/api.d.ts +5801 -2373
- package/package.json +1 -1
- package/src/api-internal.ts +691 -158
- package/src/api.ts +7584 -3174
package/src/api-internal.ts
CHANGED
|
@@ -1256,7 +1256,7 @@ declare namespace io.flow.channel.v0.models {
|
|
|
1256
1256
|
declare namespace io.flow.restrictions.v0.enums {
|
|
1257
1257
|
type RestrictedReviewStatus = 'in_review' | 'reviewed';
|
|
1258
1258
|
type RestrictionDecision = 'accept' | 'reject' | 'escalate' | 'review';
|
|
1259
|
-
type RestrictionDecisionReason = 'manual_dispute';
|
|
1259
|
+
type RestrictionDecisionReason = 'manual_dispute' | 'operations_decision';
|
|
1260
1260
|
type RestrictionEnvironment = 'sandbox' | 'production' | 'qa';
|
|
1261
1261
|
type ReviewStatus = 'high_risk_in_review' | 'low_risk_in_review' | 'reviewed';
|
|
1262
1262
|
}
|
|
@@ -5494,6 +5494,8 @@ declare namespace io.flow.label.v0.models {
|
|
|
5494
5494
|
readonly updated_at?: string;
|
|
5495
5495
|
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
5496
5496
|
readonly shipping_cost_guarantee?: io.flow.label.v0.enums.ShippingCostGuarantee;
|
|
5497
|
+
readonly delivery_window_days_from?: number;
|
|
5498
|
+
readonly delivery_window_days_to?: number;
|
|
5497
5499
|
}
|
|
5498
5500
|
|
|
5499
5501
|
interface ShippingLabelDocument {
|
|
@@ -7025,6 +7027,10 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
7025
7027
|
readonly id: string;
|
|
7026
7028
|
}
|
|
7027
7029
|
|
|
7030
|
+
interface OrderSettings {
|
|
7031
|
+
readonly tax_and_duty_inclusivity_setting?: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
|
|
7032
|
+
}
|
|
7033
|
+
|
|
7028
7034
|
interface OrderTaxAndDutyInclusivitySetting {
|
|
7029
7035
|
readonly id: string;
|
|
7030
7036
|
readonly organization_id: string;
|
|
@@ -8465,6 +8471,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
8465
8471
|
}
|
|
8466
8472
|
|
|
8467
8473
|
interface GraphqlTaxonomyCategory {
|
|
8474
|
+
readonly id?: string;
|
|
8468
8475
|
readonly name: string;
|
|
8469
8476
|
readonly fullName: string;
|
|
8470
8477
|
}
|
|
@@ -8586,7 +8593,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
8586
8593
|
readonly created_at: string;
|
|
8587
8594
|
readonly updated_at: string;
|
|
8588
8595
|
readonly has_variants_that_requires_components?: boolean;
|
|
8589
|
-
readonly category?: io.flow.
|
|
8596
|
+
readonly category?: io.flow.shopify.external.v0.models.RestTaxonomyCategory;
|
|
8590
8597
|
readonly metafields?: io.flow.shopify.external.v0.models.ProductMetafield[];
|
|
8591
8598
|
}
|
|
8592
8599
|
|
|
@@ -8726,6 +8733,12 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
8726
8733
|
readonly variant: io.flow.shopify.external.v0.models.ProductVariant;
|
|
8727
8734
|
}
|
|
8728
8735
|
|
|
8736
|
+
interface RestTaxonomyCategory {
|
|
8737
|
+
readonly name: string;
|
|
8738
|
+
readonly full_name: string;
|
|
8739
|
+
readonly admin_graphql_api_id?: string;
|
|
8740
|
+
}
|
|
8741
|
+
|
|
8729
8742
|
interface Shop {
|
|
8730
8743
|
readonly id: number;
|
|
8731
8744
|
readonly domain: string;
|
|
@@ -10330,6 +10343,7 @@ declare namespace io.flow.channel.shopify.internal.v0.models {
|
|
|
10330
10343
|
}
|
|
10331
10344
|
|
|
10332
10345
|
declare namespace io.flow.order.price.v0.enums {
|
|
10346
|
+
type OrderPriceCoefficientType = 'item_shipping';
|
|
10333
10347
|
type OrderPriceDetailComponentKey =
|
|
10334
10348
|
| 'adjustment'
|
|
10335
10349
|
| 'vat_deminimis'
|
|
@@ -10379,9 +10393,16 @@ declare namespace io.flow.order.price.v0.enums {
|
|
|
10379
10393
|
| 'tax_and_duties'
|
|
10380
10394
|
| 'product'
|
|
10381
10395
|
| 'mor_tax';
|
|
10396
|
+
type OrderPriceSubsidyType = 'shipping_subsidy';
|
|
10382
10397
|
}
|
|
10383
10398
|
|
|
10384
10399
|
declare namespace io.flow.order.price.v0.models {
|
|
10400
|
+
interface OrderPriceCoefficient {
|
|
10401
|
+
readonly type: io.flow.order.price.v0.enums.OrderPriceCoefficientType;
|
|
10402
|
+
readonly value: number;
|
|
10403
|
+
readonly price: io.flow.common.v0.models.PriceWithBase;
|
|
10404
|
+
}
|
|
10405
|
+
|
|
10385
10406
|
interface OrderPriceDetail {
|
|
10386
10407
|
readonly key: io.flow.order.price.v0.enums.OrderPriceDetailKey;
|
|
10387
10408
|
readonly currency: string;
|
|
@@ -10416,10 +10437,17 @@ declare namespace io.flow.order.price.v0.models {
|
|
|
10416
10437
|
readonly type: io.flow.order.price.v0.enums.OrderPriceFeeType;
|
|
10417
10438
|
}
|
|
10418
10439
|
|
|
10440
|
+
interface OrderPriceSubsidy {
|
|
10441
|
+
readonly type: io.flow.order.price.v0.enums.OrderPriceSubsidyType;
|
|
10442
|
+
readonly price: io.flow.common.v0.models.PriceWithBase;
|
|
10443
|
+
}
|
|
10444
|
+
|
|
10419
10445
|
interface PurchasePriceBreakdown {
|
|
10420
10446
|
readonly total_price: io.flow.common.v0.models.PriceWithBase;
|
|
10421
10447
|
readonly product_price: io.flow.common.v0.models.PriceWithBase;
|
|
10422
10448
|
readonly fees: io.flow.order.price.v0.models.OrderPriceFee[];
|
|
10449
|
+
readonly coefficients?: io.flow.order.price.v0.models.OrderPriceCoefficient[];
|
|
10450
|
+
readonly subsidies?: io.flow.order.price.v0.models.OrderPriceSubsidy[];
|
|
10423
10451
|
}
|
|
10424
10452
|
}
|
|
10425
10453
|
|
|
@@ -10518,7 +10546,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
10518
10546
|
readonly order_updated_at?: string;
|
|
10519
10547
|
readonly order_edit_summary?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
10520
10548
|
readonly payment_source?: io.flow.channel.internal.v0.enums.OrderPaymentSourceType;
|
|
10521
|
-
readonly external_order_summary?: io.flow.channel.
|
|
10549
|
+
readonly external_order_summary?: io.flow.channel.internal.v0.models.ExternalOrderSummary;
|
|
10522
10550
|
}
|
|
10523
10551
|
|
|
10524
10552
|
interface ChannelOrderAcceptanceDetails {
|
|
@@ -10544,6 +10572,13 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
10544
10572
|
readonly rejection_reason?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
10545
10573
|
}
|
|
10546
10574
|
|
|
10575
|
+
interface ChannelOrderTaxAndDutyInclusivitySetting {
|
|
10576
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
10577
|
+
readonly order_number: string;
|
|
10578
|
+
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
10579
|
+
readonly tax_and_duty_inclusivity_setting: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
|
|
10580
|
+
}
|
|
10581
|
+
|
|
10547
10582
|
interface ChannelOrganizationDomains {
|
|
10548
10583
|
readonly internal: string;
|
|
10549
10584
|
readonly external: string;
|
|
@@ -10581,6 +10616,12 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
10581
10616
|
readonly catalog_products_count?: number;
|
|
10582
10617
|
}
|
|
10583
10618
|
|
|
10619
|
+
interface ExternalOrderSummary {
|
|
10620
|
+
readonly id: string;
|
|
10621
|
+
readonly edit_ids: string[];
|
|
10622
|
+
readonly created_at?: string;
|
|
10623
|
+
}
|
|
10624
|
+
|
|
10584
10625
|
interface FlowChannelOrganization {
|
|
10585
10626
|
readonly placeholder?: string;
|
|
10586
10627
|
}
|
|
@@ -11657,7 +11698,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
11657
11698
|
type OrganizationPaymentMethodTag = 'deny';
|
|
11658
11699
|
type PaymentMethodRuleContentKey = 'description';
|
|
11659
11700
|
type PriceFacetBoundary = 'min' | 'max';
|
|
11660
|
-
type PricingType = 'inclusive_pricing';
|
|
11701
|
+
type PricingType = 'inclusive_pricing' | 'inclusive_pricing_with_shipping';
|
|
11661
11702
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
11662
11703
|
type TaxAndDutyInclusivitySetting =
|
|
11663
11704
|
| 'duty_exclusive_tax_exclusive'
|
|
@@ -13618,35 +13659,6 @@ declare namespace io.flow.crypto.v0.models {
|
|
|
13618
13659
|
}
|
|
13619
13660
|
}
|
|
13620
13661
|
|
|
13621
|
-
declare namespace io.flow.channel.shopify.v0.enums {
|
|
13622
|
-
type ChannelShopifyOrderStateReasonCode = 'placeholder_reason_code';
|
|
13623
|
-
}
|
|
13624
|
-
|
|
13625
|
-
declare namespace io.flow.channel.shopify.v0.models {
|
|
13626
|
-
interface ChannelShopifyOrderState {
|
|
13627
|
-
readonly id: string;
|
|
13628
|
-
readonly shopify_order_summary: io.flow.channel.shopify.v0.models.ChannelShopifyOrderSummary;
|
|
13629
|
-
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
13630
|
-
readonly reasons?: io.flow.channel.shopify.v0.models.ChannelShopifyOrderStateReason[];
|
|
13631
|
-
readonly external_order_summary?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
|
|
13632
|
-
}
|
|
13633
|
-
|
|
13634
|
-
interface ChannelShopifyOrderStateReason {
|
|
13635
|
-
readonly code: io.flow.channel.shopify.v0.enums.ChannelShopifyOrderStateReasonCode;
|
|
13636
|
-
readonly message: string;
|
|
13637
|
-
}
|
|
13638
|
-
|
|
13639
|
-
interface ChannelShopifyOrderSummary {
|
|
13640
|
-
readonly order_id: number;
|
|
13641
|
-
readonly shop_id: number;
|
|
13642
|
-
}
|
|
13643
|
-
|
|
13644
|
-
interface ExternalOrderSummary {
|
|
13645
|
-
readonly id: string;
|
|
13646
|
-
readonly edit_ids: string[];
|
|
13647
|
-
}
|
|
13648
|
-
}
|
|
13649
|
-
|
|
13650
13662
|
declare namespace io.flow.shopify.merchant.config.v0.models {
|
|
13651
13663
|
interface Company {
|
|
13652
13664
|
readonly discriminator: 'company';
|
|
@@ -14131,6 +14143,7 @@ declare namespace io.flow.product.v0.models {
|
|
|
14131
14143
|
interface ProductTaxonomyCategory {
|
|
14132
14144
|
readonly name: string;
|
|
14133
14145
|
readonly full_name: string;
|
|
14146
|
+
readonly id?: string;
|
|
14134
14147
|
}
|
|
14135
14148
|
|
|
14136
14149
|
interface ProductTaxonomyData {
|
|
@@ -15396,6 +15409,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
15396
15409
|
| 'us_inbound_tax_refund'
|
|
15397
15410
|
| 'order_cancellation_above_de_min'
|
|
15398
15411
|
| 'wyol_shipment_above_de_min'
|
|
15412
|
+
| 'wyol_shipment_lvg'
|
|
15399
15413
|
| 'full_refund_without_shipment'
|
|
15400
15414
|
| 'unfulfilled_order_above_de_min'
|
|
15401
15415
|
| 'order_cancellation_without_capture';
|
|
@@ -15544,6 +15558,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
15544
15558
|
readonly settlement: io.flow.billing.v0.unions.Settlement;
|
|
15545
15559
|
readonly attachments: io.flow.billing.v0.models.Attachment[];
|
|
15546
15560
|
readonly created_at: string;
|
|
15561
|
+
readonly period?: io.flow.common.v0.models.DatetimeRange;
|
|
15547
15562
|
}
|
|
15548
15563
|
|
|
15549
15564
|
interface ChannelTransaction {
|
|
@@ -15709,6 +15724,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
15709
15724
|
readonly settlement: io.flow.billing.v0.unions.Settlement;
|
|
15710
15725
|
readonly attachments: io.flow.billing.v0.models.Attachment[];
|
|
15711
15726
|
readonly created_at: string;
|
|
15727
|
+
readonly period?: io.flow.common.v0.models.DatetimeRange;
|
|
15712
15728
|
}
|
|
15713
15729
|
|
|
15714
15730
|
interface StatementStatusForm {
|
|
@@ -16764,6 +16780,14 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
16764
16780
|
readonly bank_name: string;
|
|
16765
16781
|
}
|
|
16766
16782
|
|
|
16783
|
+
interface BankAccountInfoKorV2 {
|
|
16784
|
+
readonly discriminator: 'kor_v2';
|
|
16785
|
+
readonly name: string;
|
|
16786
|
+
readonly bank_account_number: string;
|
|
16787
|
+
readonly bank_routing_number: string;
|
|
16788
|
+
readonly bank_name: string;
|
|
16789
|
+
}
|
|
16790
|
+
|
|
16767
16791
|
interface BankAccountInfoUsa {
|
|
16768
16792
|
readonly discriminator: 'usa';
|
|
16769
16793
|
readonly routing_number: string;
|
|
@@ -16778,7 +16802,8 @@ declare namespace io.flow.billing.bank.account.v0.unions {
|
|
|
16778
16802
|
| io.flow.billing.bank.account.v0.models.BankAccountInfoGbr
|
|
16779
16803
|
| io.flow.billing.bank.account.v0.models.BankAccountInfoFra
|
|
16780
16804
|
| io.flow.billing.bank.account.v0.models.BankAccountInfoIta
|
|
16781
|
-
| io.flow.billing.bank.account.v0.models.BankAccountInfoKor
|
|
16805
|
+
| io.flow.billing.bank.account.v0.models.BankAccountInfoKor
|
|
16806
|
+
| io.flow.billing.bank.account.v0.models.BankAccountInfoKorV2;
|
|
16782
16807
|
}
|
|
16783
16808
|
|
|
16784
16809
|
declare namespace io.flow.internal.v0.enums {
|
|
@@ -16795,6 +16820,16 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16795
16820
|
| 'hosted_payment_page'
|
|
16796
16821
|
| 'checkout_payments_api'
|
|
16797
16822
|
| 'classic_authorise_api';
|
|
16823
|
+
type AiReviewConsumer = 'restrictions' | 'sellability' | 'harmonization';
|
|
16824
|
+
type AiReviewFailureReason =
|
|
16825
|
+
| 'item_errored'
|
|
16826
|
+
| 'item_expired'
|
|
16827
|
+
| 'item_unparseable'
|
|
16828
|
+
| 'item_image_fetch_failed'
|
|
16829
|
+
| 'item_undecided'
|
|
16830
|
+
| 'batch_failed'
|
|
16831
|
+
| 'batch_timed_out';
|
|
16832
|
+
type AiReviewType = 'pv_review_general' | 'pv_review_dg_hazmat' | 'pc_review';
|
|
16798
16833
|
type AmruthaItemType = 'physical' | 'digital';
|
|
16799
16834
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
16800
16835
|
type ApiCallReferenceId =
|
|
@@ -17232,7 +17267,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17232
17267
|
| 'Flow'
|
|
17233
17268
|
| 'FlowOnboarding'
|
|
17234
17269
|
| 'Borderfree';
|
|
17235
|
-
type ClassificationScope = 'Item' | 'Product';
|
|
17270
|
+
type ClassificationScope = 'Item' | 'Product' | 'Bucket';
|
|
17236
17271
|
type ClassificationSource = 'sellability';
|
|
17237
17272
|
type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
|
|
17238
17273
|
type ClothingAgeClassification =
|
|
@@ -17322,12 +17357,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17322
17357
|
type ErpFileType = 'vendor';
|
|
17323
17358
|
type EvaluationCheckResult = 'pass' | 'fail';
|
|
17324
17359
|
type EventType =
|
|
17325
|
-
| 'adaptive_pricing_coefficient_upserted'
|
|
17326
|
-
| 'adaptive_pricing_coefficient_deleted'
|
|
17327
|
-
| 'adaptive_pricing_update_upserted'
|
|
17328
|
-
| 'adaptive_pricing_update_deleted'
|
|
17329
|
-
| 'adaptive_shipping_rate_upserted'
|
|
17330
|
-
| 'adaptive_shipping_rate_deleted'
|
|
17331
17360
|
| 'adyen_authorization_deleted'
|
|
17332
17361
|
| 'adyen_authorization_upserted'
|
|
17333
17362
|
| 'adyen_cancel_deleted'
|
|
@@ -17338,6 +17367,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17338
17367
|
| 'adyen_refund_upserted'
|
|
17339
17368
|
| 'adyen_dispute_upserted'
|
|
17340
17369
|
| 'adyen_dispute_deleted'
|
|
17370
|
+
| 'ai_review_batch_submitted'
|
|
17371
|
+
| 'ai_review_result_upserted'
|
|
17372
|
+
| 'ai_review_result_deleted'
|
|
17373
|
+
| 'ai_review_request_failed'
|
|
17341
17374
|
| 'fulfillment_upserted'
|
|
17342
17375
|
| 'fulfillment_deleted'
|
|
17343
17376
|
| 'merchant_upserted'
|
|
@@ -17414,6 +17447,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17414
17447
|
| 'channel_order_acceptance_failed'
|
|
17415
17448
|
| 'channel_shop_statistics_upserted'
|
|
17416
17449
|
| 'channel_shop_statistics_deleted'
|
|
17450
|
+
| 'channel_order_tax_and_duty_inclusivity_setting_upserted'
|
|
17451
|
+
| 'channel_order_tax_and_duty_inclusivity_setting_deleted'
|
|
17417
17452
|
| 'commercial_invoice_internal_upserted'
|
|
17418
17453
|
| 'commercial_invoice_internal_deleted'
|
|
17419
17454
|
| 'internal_channel_rate_deleted'
|
|
@@ -17475,6 +17510,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17475
17510
|
| 'mor_cost_deleted'
|
|
17476
17511
|
| 'flat_rate_label_reversal_upserted'
|
|
17477
17512
|
| 'flat_rate_label_reversal_deleted'
|
|
17513
|
+
| 'flat_rate_label_subsidy_upserted'
|
|
17514
|
+
| 'flat_rate_label_subsidy_deleted'
|
|
17478
17515
|
| 'fraud_review_upserted'
|
|
17479
17516
|
| 'fraud_review_deleted'
|
|
17480
17517
|
| 'fraud_pending_review_upserted'
|
|
@@ -17500,8 +17537,16 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17500
17537
|
| 'fulfillment_fallbacks_deleted'
|
|
17501
17538
|
| 'quote_upserted'
|
|
17502
17539
|
| 'quote_deleted'
|
|
17540
|
+
| 'guaranteed_shipping_calibrated_output_upserted'
|
|
17541
|
+
| 'guaranteed_shipping_calibrated_output_deleted'
|
|
17542
|
+
| 'outbound_shipping_cost_upserted'
|
|
17543
|
+
| 'outbound_shipping_cost_deleted'
|
|
17503
17544
|
| 'guaranteed_shipping_published_output_upserted'
|
|
17504
17545
|
| 'guaranteed_shipping_published_output_deleted'
|
|
17546
|
+
| 'guaranteed_shipping_settings_upserted'
|
|
17547
|
+
| 'guaranteed_shipping_settings_deleted'
|
|
17548
|
+
| 'guaranteed_shipping_settings_update_upserted'
|
|
17549
|
+
| 'guaranteed_shipping_settings_update_deleted'
|
|
17505
17550
|
| 'all_items_export'
|
|
17506
17551
|
| 'harmonized_items_hs6_export'
|
|
17507
17552
|
| 'unharmonized_items_export'
|
|
@@ -17524,6 +17569,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17524
17569
|
| 'merchant_override_upserted'
|
|
17525
17570
|
| 'merchant_override_deleted'
|
|
17526
17571
|
| 'harmonization_classification_statistics_published'
|
|
17572
|
+
| 'issuer_upserted'
|
|
17573
|
+
| 'issuer_deleted'
|
|
17527
17574
|
| 'item_form_import_request'
|
|
17528
17575
|
| 'label_request_error_upserted'
|
|
17529
17576
|
| 'label_request_error_deleted'
|
|
@@ -17634,6 +17681,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17634
17681
|
| 'taxonomy_category_hs6_ref_deleted'
|
|
17635
17682
|
| 'preonboarding_merchant_upserted'
|
|
17636
17683
|
| 'preonboarding_merchant_deleted'
|
|
17684
|
+
| 'unserviceable_taxonomy_category_upserted'
|
|
17685
|
+
| 'unserviceable_taxonomy_category_deleted'
|
|
17686
|
+
| 'sellability_pending_verification_upserted'
|
|
17687
|
+
| 'sellability_pending_verification_deleted'
|
|
17637
17688
|
| 'shopify_hs10_codes_upserted'
|
|
17638
17689
|
| 'shopify_hs10_codes_deleted'
|
|
17639
17690
|
| 'shopify_markets_order_upserted'
|
|
@@ -17806,12 +17857,14 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17806
17857
|
| 'classified'
|
|
17807
17858
|
| 'non_classifiable_not_enough_information'
|
|
17808
17859
|
| 'exempt'
|
|
17809
|
-
| 'manual_classification_required'
|
|
17860
|
+
| 'manual_classification_required'
|
|
17861
|
+
| 'unserviceable_taxonomy';
|
|
17810
17862
|
type ItemQuantityAction =
|
|
17811
17863
|
| 'fulfillment_ship'
|
|
17812
17864
|
| 'fulfillment_cancel'
|
|
17813
17865
|
| 'fulfillment_generate_label';
|
|
17814
17866
|
type ItemType = 'standard' | 'multi_product';
|
|
17867
|
+
type JohnStrongItemType = 'physical' | 'digital';
|
|
17815
17868
|
type JournalOperation = 'insert' | 'update' | 'delete';
|
|
17816
17869
|
type KeywordType = 'positive' | 'negative';
|
|
17817
17870
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
@@ -18038,6 +18091,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18038
18091
|
| 'crypto';
|
|
18039
18092
|
type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
|
|
18040
18093
|
type ProductStatus = 'active' | 'archived' | 'draft' | 'unlisted';
|
|
18094
|
+
type PvDecision = 'uphold' | 'remove';
|
|
18041
18095
|
type RateLevelKey =
|
|
18042
18096
|
| 'shopify_small_usa'
|
|
18043
18097
|
| 'shopify_medium_usa'
|
|
@@ -18053,6 +18107,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18053
18107
|
| 'risky_velocity'
|
|
18054
18108
|
| 'suspicious_behavior'
|
|
18055
18109
|
| 'suspicious_past_activity';
|
|
18110
|
+
type RemediateTaxDutyArm = 'non_lvg' | 'lvg_full_refund';
|
|
18056
18111
|
type ReportFileStatus = 'processing' | 'failed' | 'succeeded';
|
|
18057
18112
|
type ReportFileType = 'stripe_connect_report';
|
|
18058
18113
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
@@ -18073,6 +18128,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18073
18128
|
| 'scheduled_payment_citi'
|
|
18074
18129
|
| 'scheduled_payment_citi_krw'
|
|
18075
18130
|
| 'scheduled_payment_citi_krw_txt'
|
|
18131
|
+
| 'scheduled_payment_citi_uk_xml'
|
|
18076
18132
|
| 'account_quarterly_balances'
|
|
18077
18133
|
| 'invariants'
|
|
18078
18134
|
| 'payments'
|
|
@@ -18112,6 +18168,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18112
18168
|
type RestrictionRuleCommunityExemption =
|
|
18113
18169
|
| 'domestic_exemption'
|
|
18114
18170
|
| 'intra_eu_exemption';
|
|
18171
|
+
type RestrictionRuleEvaluationMode =
|
|
18172
|
+
| 'all_screenings'
|
|
18173
|
+
| 'first_screening_only';
|
|
18115
18174
|
type RestrictionRuleExceptionAction = 'allow' | 'deny';
|
|
18116
18175
|
type RestrictionStateReviewStatus = 'reviewed' | 'in_review';
|
|
18117
18176
|
type RestrictionStatus =
|
|
@@ -18600,6 +18659,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18600
18659
|
readonly refund?: io.flow.payment.v0.models.RefundReference;
|
|
18601
18660
|
readonly tax_reversal?: io.flow.internal.v0.models.TransactionReference;
|
|
18602
18661
|
readonly duty_reversal?: io.flow.internal.v0.models.TransactionReference;
|
|
18662
|
+
readonly flat_rate_reversal?: io.flow.internal.v0.models.TransactionReference;
|
|
18663
|
+
readonly flat_rate_subsidy_reversal?: io.flow.internal.v0.models.TransactionReference;
|
|
18603
18664
|
}
|
|
18604
18665
|
|
|
18605
18666
|
interface ActionQuantity {
|
|
@@ -18607,67 +18668,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18607
18668
|
readonly quantity: number;
|
|
18608
18669
|
}
|
|
18609
18670
|
|
|
18610
|
-
interface AdaptivePricingCoefficient {
|
|
18611
|
-
readonly coefficients_updated_at: number;
|
|
18612
|
-
readonly channel_id: string;
|
|
18613
|
-
readonly organization_id: string;
|
|
18614
|
-
readonly destination_country: string;
|
|
18615
|
-
readonly tax_and_duty_coefficient: number;
|
|
18616
|
-
readonly fees_coefficient: number;
|
|
18617
|
-
readonly merchant_subsidy: io.flow.common.v0.models.Money;
|
|
18618
|
-
readonly created_at: number;
|
|
18619
|
-
}
|
|
18620
|
-
|
|
18621
|
-
interface AdaptivePricingCoefficientDeleted {
|
|
18622
|
-
readonly discriminator: 'adaptive_pricing_coefficient_deleted';
|
|
18623
|
-
readonly event_id: string;
|
|
18624
|
-
readonly timestamp: string;
|
|
18625
|
-
readonly organization: string;
|
|
18626
|
-
readonly channel_id: string;
|
|
18627
|
-
readonly id: string;
|
|
18628
|
-
}
|
|
18629
|
-
|
|
18630
|
-
interface AdaptivePricingCoefficientUpserted {
|
|
18631
|
-
readonly discriminator: 'adaptive_pricing_coefficient_upserted';
|
|
18632
|
-
readonly event_id: string;
|
|
18633
|
-
readonly timestamp: string;
|
|
18634
|
-
readonly organization: string;
|
|
18635
|
-
readonly channel_id: string;
|
|
18636
|
-
readonly adaptive_pricing_coefficient: io.flow.internal.v0.models.AdaptivePricingCoefficient;
|
|
18637
|
-
}
|
|
18638
|
-
|
|
18639
|
-
interface AdaptivePricingDestinationUpdate {
|
|
18640
|
-
readonly country: string;
|
|
18641
|
-
readonly updated_at: string;
|
|
18642
|
-
readonly tax_and_duty_coefficient: number;
|
|
18643
|
-
readonly fees_coefficient: number;
|
|
18644
|
-
readonly merchant_subsidy: io.flow.common.v0.models.Money;
|
|
18645
|
-
}
|
|
18646
|
-
|
|
18647
|
-
interface AdaptivePricingUpdate {
|
|
18648
|
-
readonly channel_id: string;
|
|
18649
|
-
readonly organization_id: string;
|
|
18650
|
-
readonly destination_updates: io.flow.internal.v0.models.AdaptivePricingDestinationUpdate[];
|
|
18651
|
-
}
|
|
18652
|
-
|
|
18653
|
-
interface AdaptivePricingUpdateDeleted {
|
|
18654
|
-
readonly discriminator: 'adaptive_pricing_update_deleted';
|
|
18655
|
-
readonly event_id: string;
|
|
18656
|
-
readonly timestamp: string;
|
|
18657
|
-
readonly organization: string;
|
|
18658
|
-
readonly channel_id: string;
|
|
18659
|
-
readonly id: string;
|
|
18660
|
-
}
|
|
18661
|
-
|
|
18662
|
-
interface AdaptivePricingUpdateUpserted {
|
|
18663
|
-
readonly discriminator: 'adaptive_pricing_update_upserted';
|
|
18664
|
-
readonly event_id: string;
|
|
18665
|
-
readonly timestamp: string;
|
|
18666
|
-
readonly organization: string;
|
|
18667
|
-
readonly channel_id: string;
|
|
18668
|
-
readonly adaptive_pricing_update: io.flow.internal.v0.models.AdaptivePricingUpdate;
|
|
18669
|
-
}
|
|
18670
|
-
|
|
18671
18671
|
interface AdaptiveShippingOrderGuarantee {
|
|
18672
18672
|
readonly id: string;
|
|
18673
18673
|
readonly organization_id: string;
|
|
@@ -18693,33 +18693,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18693
18693
|
readonly adaptive_shipping_order_guarantee: io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
18694
18694
|
}
|
|
18695
18695
|
|
|
18696
|
-
interface AdaptiveShippingRate {
|
|
18697
|
-
readonly id: string;
|
|
18698
|
-
readonly organization_id: string;
|
|
18699
|
-
readonly channel_id: string;
|
|
18700
|
-
readonly destination_country: string;
|
|
18701
|
-
readonly coefficient: number;
|
|
18702
|
-
readonly flat_rates: io.flow.internal.v0.models.FlatRate[];
|
|
18703
|
-
readonly effective_at: string;
|
|
18704
|
-
readonly effective_until?: string;
|
|
18705
|
-
}
|
|
18706
|
-
|
|
18707
|
-
interface AdaptiveShippingRateDeleted {
|
|
18708
|
-
readonly discriminator: 'adaptive_shipping_rate_deleted';
|
|
18709
|
-
readonly event_id: string;
|
|
18710
|
-
readonly timestamp: string;
|
|
18711
|
-
readonly organization: string;
|
|
18712
|
-
readonly id: string;
|
|
18713
|
-
}
|
|
18714
|
-
|
|
18715
|
-
interface AdaptiveShippingRateUpserted {
|
|
18716
|
-
readonly discriminator: 'adaptive_shipping_rate_upserted';
|
|
18717
|
-
readonly event_id: string;
|
|
18718
|
-
readonly timestamp: string;
|
|
18719
|
-
readonly organization: string;
|
|
18720
|
-
readonly adaptive_shipping_rate: io.flow.internal.v0.models.AdaptiveShippingRate;
|
|
18721
|
-
}
|
|
18722
|
-
|
|
18723
18696
|
interface AdditionalImportTax {
|
|
18724
18697
|
readonly name?: string;
|
|
18725
18698
|
readonly additional_import_tax_value?: io.flow.common.v0.models.Money;
|
|
@@ -19154,6 +19127,55 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19154
19127
|
readonly placeholder?: boolean;
|
|
19155
19128
|
}
|
|
19156
19129
|
|
|
19130
|
+
interface AiReviewBatchSubmitted {
|
|
19131
|
+
readonly discriminator: 'ai_review_batch_submitted';
|
|
19132
|
+
readonly event_id: string;
|
|
19133
|
+
readonly timestamp: string;
|
|
19134
|
+
readonly consumer: io.flow.internal.v0.enums.AiReviewConsumer;
|
|
19135
|
+
readonly items: io.flow.internal.v0.models.ReviewRequestItem[];
|
|
19136
|
+
}
|
|
19137
|
+
|
|
19138
|
+
interface AiReviewFailedItem {
|
|
19139
|
+
readonly review_id: string;
|
|
19140
|
+
readonly organization_id: string;
|
|
19141
|
+
}
|
|
19142
|
+
|
|
19143
|
+
interface AiReviewRequestFailed {
|
|
19144
|
+
readonly discriminator: 'ai_review_request_failed';
|
|
19145
|
+
readonly event_id: string;
|
|
19146
|
+
readonly timestamp: string;
|
|
19147
|
+
readonly consumer: io.flow.internal.v0.enums.AiReviewConsumer;
|
|
19148
|
+
readonly review_type: io.flow.internal.v0.enums.AiReviewType;
|
|
19149
|
+
readonly reason: io.flow.internal.v0.enums.AiReviewFailureReason;
|
|
19150
|
+
readonly items: io.flow.internal.v0.models.AiReviewFailedItem[];
|
|
19151
|
+
}
|
|
19152
|
+
|
|
19153
|
+
interface AiReviewResult {
|
|
19154
|
+
readonly review_id: string;
|
|
19155
|
+
readonly organization_id: string;
|
|
19156
|
+
readonly consumer: io.flow.internal.v0.enums.AiReviewConsumer;
|
|
19157
|
+
readonly review_type: io.flow.internal.v0.enums.AiReviewType;
|
|
19158
|
+
readonly ai_output: io.flow.internal.v0.unions.AiOutput;
|
|
19159
|
+
readonly ai_model: string;
|
|
19160
|
+
readonly prompt_id: string;
|
|
19161
|
+
readonly prompt_version: string;
|
|
19162
|
+
}
|
|
19163
|
+
|
|
19164
|
+
interface AiReviewResultDeleted {
|
|
19165
|
+
readonly discriminator: 'ai_review_result_deleted';
|
|
19166
|
+
readonly event_id: string;
|
|
19167
|
+
readonly timestamp: string;
|
|
19168
|
+
readonly id: string;
|
|
19169
|
+
readonly organization: string;
|
|
19170
|
+
}
|
|
19171
|
+
|
|
19172
|
+
interface AiReviewResultUpserted {
|
|
19173
|
+
readonly discriminator: 'ai_review_result_upserted';
|
|
19174
|
+
readonly event_id: string;
|
|
19175
|
+
readonly timestamp: string;
|
|
19176
|
+
readonly ai_review_result: io.flow.internal.v0.models.AiReviewResult;
|
|
19177
|
+
}
|
|
19178
|
+
|
|
19157
19179
|
interface AllItemsExport {
|
|
19158
19180
|
readonly discriminator: 'all_items_export';
|
|
19159
19181
|
readonly event_id: string;
|
|
@@ -20461,7 +20483,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20461
20483
|
readonly order_updated_at?: string;
|
|
20462
20484
|
readonly order_edit_summary?: io.flow.internal.v0.models.OrderEditSummary;
|
|
20463
20485
|
readonly payment_source?: io.flow.internal.v0.enums.OrderPaymentSourceType;
|
|
20464
|
-
readonly external_order_summary?: io.flow.
|
|
20486
|
+
readonly external_order_summary?: io.flow.internal.v0.models.ExternalOrderSummary;
|
|
20465
20487
|
}
|
|
20466
20488
|
|
|
20467
20489
|
interface ChannelOrderAcceptanceDeleted {
|
|
@@ -20543,6 +20565,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20543
20565
|
readonly channel_order_summary: io.flow.internal.v0.models.ChannelOrderSummary;
|
|
20544
20566
|
}
|
|
20545
20567
|
|
|
20568
|
+
interface ChannelOrderTaxAndDutyInclusivitySetting {
|
|
20569
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
20570
|
+
readonly order_number: string;
|
|
20571
|
+
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
20572
|
+
readonly tax_and_duty_inclusivity_setting: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
|
|
20573
|
+
}
|
|
20574
|
+
|
|
20575
|
+
interface ChannelOrderTaxAndDutyInclusivitySettingDeleted {
|
|
20576
|
+
readonly discriminator: 'channel_order_tax_and_duty_inclusivity_setting_deleted';
|
|
20577
|
+
readonly event_id: string;
|
|
20578
|
+
readonly timestamp: string;
|
|
20579
|
+
readonly organization: string;
|
|
20580
|
+
readonly id: string;
|
|
20581
|
+
}
|
|
20582
|
+
|
|
20583
|
+
interface ChannelOrderTaxAndDutyInclusivitySettingUpserted {
|
|
20584
|
+
readonly discriminator: 'channel_order_tax_and_duty_inclusivity_setting_upserted';
|
|
20585
|
+
readonly event_id: string;
|
|
20586
|
+
readonly timestamp: string;
|
|
20587
|
+
readonly channel_order_tax_and_duty_inclusivity_setting: io.flow.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySetting;
|
|
20588
|
+
}
|
|
20589
|
+
|
|
20546
20590
|
interface ChannelOrganizationDomains {
|
|
20547
20591
|
readonly internal: string;
|
|
20548
20592
|
readonly external: string;
|
|
@@ -21694,6 +21738,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21694
21738
|
readonly destination: io.flow.common.v0.models.Address;
|
|
21695
21739
|
}
|
|
21696
21740
|
|
|
21741
|
+
interface DgClassAssessment {
|
|
21742
|
+
readonly dg_class: string;
|
|
21743
|
+
readonly decision: io.flow.internal.v0.enums.PvDecision;
|
|
21744
|
+
readonly confidence: number;
|
|
21745
|
+
readonly reasoning: string;
|
|
21746
|
+
}
|
|
21747
|
+
|
|
21748
|
+
interface DgReviewContext {
|
|
21749
|
+
readonly discriminator: 'dg_review_context';
|
|
21750
|
+
readonly organization_id: string;
|
|
21751
|
+
readonly item_name: string;
|
|
21752
|
+
readonly item_description?: string;
|
|
21753
|
+
readonly image_url?: string;
|
|
21754
|
+
readonly hs_code?: string;
|
|
21755
|
+
readonly categories?: string;
|
|
21756
|
+
readonly price?: string;
|
|
21757
|
+
}
|
|
21758
|
+
|
|
21759
|
+
interface DgReviewOutput {
|
|
21760
|
+
readonly discriminator: 'dg_review_output';
|
|
21761
|
+
readonly assessments: io.flow.internal.v0.models.DgClassAssessment[];
|
|
21762
|
+
}
|
|
21763
|
+
|
|
21697
21764
|
interface Dhl {
|
|
21698
21765
|
readonly discriminator: 'dhl';
|
|
21699
21766
|
readonly export_account_number: string;
|
|
@@ -22428,6 +22495,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22428
22495
|
readonly fulfilled_via_replacement_order?: boolean;
|
|
22429
22496
|
}
|
|
22430
22497
|
|
|
22498
|
+
interface ExternalOrderSummary {
|
|
22499
|
+
readonly id: string;
|
|
22500
|
+
readonly edit_ids: string[];
|
|
22501
|
+
readonly created_at?: string;
|
|
22502
|
+
}
|
|
22503
|
+
|
|
22431
22504
|
interface ExternalRatecardLink {
|
|
22432
22505
|
readonly external_ratecard_id: string;
|
|
22433
22506
|
readonly flow_ratecard_ids: string[];
|
|
@@ -22735,6 +22808,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22735
22808
|
readonly flat_rate_label_reversal: io.flow.internal.v0.models.FlatRateLabelReversal;
|
|
22736
22809
|
}
|
|
22737
22810
|
|
|
22811
|
+
interface FlatRateLabelSubsidy {
|
|
22812
|
+
readonly id: string;
|
|
22813
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
22814
|
+
readonly organization_id: string;
|
|
22815
|
+
readonly order_number: string;
|
|
22816
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
22817
|
+
readonly tax: io.flow.common.v0.models.Money;
|
|
22818
|
+
}
|
|
22819
|
+
|
|
22820
|
+
interface FlatRateLabelSubsidyDeleted {
|
|
22821
|
+
readonly discriminator: 'flat_rate_label_subsidy_deleted';
|
|
22822
|
+
readonly event_id: string;
|
|
22823
|
+
readonly timestamp: string;
|
|
22824
|
+
readonly organization: string;
|
|
22825
|
+
readonly id: string;
|
|
22826
|
+
}
|
|
22827
|
+
|
|
22828
|
+
interface FlatRateLabelSubsidyUpserted {
|
|
22829
|
+
readonly discriminator: 'flat_rate_label_subsidy_upserted';
|
|
22830
|
+
readonly event_id: string;
|
|
22831
|
+
readonly timestamp: string;
|
|
22832
|
+
readonly organization: string;
|
|
22833
|
+
readonly flat_rate_label_subsidy: io.flow.internal.v0.models.FlatRateLabelSubsidy;
|
|
22834
|
+
}
|
|
22835
|
+
|
|
22738
22836
|
interface FlatRateLabelTransaction {
|
|
22739
22837
|
readonly discriminator: 'flat_rate_label_transaction';
|
|
22740
22838
|
readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -23447,6 +23545,49 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23447
23545
|
readonly tracker_id: string;
|
|
23448
23546
|
}
|
|
23449
23547
|
|
|
23548
|
+
interface GuaranteedShippingCalibratedOutput {
|
|
23549
|
+
readonly id: string;
|
|
23550
|
+
readonly organization_id: string;
|
|
23551
|
+
readonly channel_id: string;
|
|
23552
|
+
readonly destination_country: string;
|
|
23553
|
+
readonly coefficient: number;
|
|
23554
|
+
readonly flat_rates: io.flow.internal.v0.models.FlatRate[];
|
|
23555
|
+
readonly effective_at: string;
|
|
23556
|
+
readonly effective_until?: string;
|
|
23557
|
+
}
|
|
23558
|
+
|
|
23559
|
+
interface GuaranteedShippingCalibratedOutputDeleted {
|
|
23560
|
+
readonly discriminator: 'guaranteed_shipping_calibrated_output_deleted';
|
|
23561
|
+
readonly event_id: string;
|
|
23562
|
+
readonly timestamp: string;
|
|
23563
|
+
readonly organization: string;
|
|
23564
|
+
readonly id: string;
|
|
23565
|
+
}
|
|
23566
|
+
|
|
23567
|
+
interface GuaranteedShippingCalibratedOutputUpserted {
|
|
23568
|
+
readonly discriminator: 'guaranteed_shipping_calibrated_output_upserted';
|
|
23569
|
+
readonly event_id: string;
|
|
23570
|
+
readonly timestamp: string;
|
|
23571
|
+
readonly organization: string;
|
|
23572
|
+
readonly guaranteed_shipping_calibrated_output: io.flow.internal.v0.models.GuaranteedShippingCalibratedOutput;
|
|
23573
|
+
}
|
|
23574
|
+
|
|
23575
|
+
interface GuaranteedShippingCalibration {
|
|
23576
|
+
readonly channel_id: string;
|
|
23577
|
+
readonly organization_id: string;
|
|
23578
|
+
readonly destination_country: string;
|
|
23579
|
+
}
|
|
23580
|
+
|
|
23581
|
+
interface GuaranteedShippingCalibrationForm {
|
|
23582
|
+
readonly lanes: io.flow.internal.v0.models.GuaranteedShippingCalibrationLaneForm[];
|
|
23583
|
+
}
|
|
23584
|
+
|
|
23585
|
+
interface GuaranteedShippingCalibrationLaneForm {
|
|
23586
|
+
readonly channel_id: string;
|
|
23587
|
+
readonly organization_id: string;
|
|
23588
|
+
readonly destination_country?: string;
|
|
23589
|
+
}
|
|
23590
|
+
|
|
23450
23591
|
interface GuaranteedShippingPublishedOutput {
|
|
23451
23592
|
readonly id: string;
|
|
23452
23593
|
readonly organization_id: string;
|
|
@@ -23473,6 +23614,71 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23473
23614
|
readonly guaranteed_shipping_published_output: io.flow.internal.v0.models.GuaranteedShippingPublishedOutput;
|
|
23474
23615
|
}
|
|
23475
23616
|
|
|
23617
|
+
interface GuaranteedShippingSettings {
|
|
23618
|
+
readonly coefficients_updated_at: number;
|
|
23619
|
+
readonly channel_id: string;
|
|
23620
|
+
readonly organization_id: string;
|
|
23621
|
+
readonly destination_country: string;
|
|
23622
|
+
readonly tax_and_duty_coefficient: number;
|
|
23623
|
+
readonly fees_coefficient: number;
|
|
23624
|
+
readonly merchant_subsidy: io.flow.common.v0.models.Money;
|
|
23625
|
+
readonly created_at: number;
|
|
23626
|
+
readonly guaranteed_pricing_enabled: boolean;
|
|
23627
|
+
readonly guaranteed_shipping_enabled: boolean;
|
|
23628
|
+
}
|
|
23629
|
+
|
|
23630
|
+
interface GuaranteedShippingSettingsDeleted {
|
|
23631
|
+
readonly discriminator: 'guaranteed_shipping_settings_deleted';
|
|
23632
|
+
readonly event_id: string;
|
|
23633
|
+
readonly timestamp: string;
|
|
23634
|
+
readonly organization: string;
|
|
23635
|
+
readonly channel_id: string;
|
|
23636
|
+
readonly id: string;
|
|
23637
|
+
}
|
|
23638
|
+
|
|
23639
|
+
interface GuaranteedShippingSettingsDestinationUpdate {
|
|
23640
|
+
readonly country: string;
|
|
23641
|
+
readonly updated_at: string;
|
|
23642
|
+
readonly tax_and_duty_coefficient: number;
|
|
23643
|
+
readonly fees_coefficient: number;
|
|
23644
|
+
readonly merchant_subsidy: io.flow.common.v0.models.Money;
|
|
23645
|
+
readonly guaranteed_pricing_enabled: boolean;
|
|
23646
|
+
readonly guaranteed_shipping_enabled: boolean;
|
|
23647
|
+
}
|
|
23648
|
+
|
|
23649
|
+
interface GuaranteedShippingSettingsUpdate {
|
|
23650
|
+
readonly channel_id: string;
|
|
23651
|
+
readonly organization_id: string;
|
|
23652
|
+
readonly destination_updates: io.flow.internal.v0.models.GuaranteedShippingSettingsDestinationUpdate[];
|
|
23653
|
+
}
|
|
23654
|
+
|
|
23655
|
+
interface GuaranteedShippingSettingsUpdateDeleted {
|
|
23656
|
+
readonly discriminator: 'guaranteed_shipping_settings_update_deleted';
|
|
23657
|
+
readonly event_id: string;
|
|
23658
|
+
readonly timestamp: string;
|
|
23659
|
+
readonly organization: string;
|
|
23660
|
+
readonly channel_id: string;
|
|
23661
|
+
readonly id: string;
|
|
23662
|
+
}
|
|
23663
|
+
|
|
23664
|
+
interface GuaranteedShippingSettingsUpdateUpserted {
|
|
23665
|
+
readonly discriminator: 'guaranteed_shipping_settings_update_upserted';
|
|
23666
|
+
readonly event_id: string;
|
|
23667
|
+
readonly timestamp: string;
|
|
23668
|
+
readonly organization: string;
|
|
23669
|
+
readonly channel_id: string;
|
|
23670
|
+
readonly guaranteed_shipping_settings_update: io.flow.internal.v0.models.GuaranteedShippingSettingsUpdate;
|
|
23671
|
+
}
|
|
23672
|
+
|
|
23673
|
+
interface GuaranteedShippingSettingsUpserted {
|
|
23674
|
+
readonly discriminator: 'guaranteed_shipping_settings_upserted';
|
|
23675
|
+
readonly event_id: string;
|
|
23676
|
+
readonly timestamp: string;
|
|
23677
|
+
readonly organization: string;
|
|
23678
|
+
readonly channel_id: string;
|
|
23679
|
+
readonly guaranteed_shipping_settings: io.flow.internal.v0.models.GuaranteedShippingSettings;
|
|
23680
|
+
}
|
|
23681
|
+
|
|
23476
23682
|
interface HarmonizationClassificationStatisticsData {
|
|
23477
23683
|
readonly statistics: io.flow.internal.v0.models.ClassificationStatistics;
|
|
23478
23684
|
}
|
|
@@ -23865,6 +24071,32 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23865
24071
|
readonly created_at: string;
|
|
23866
24072
|
}
|
|
23867
24073
|
|
|
24074
|
+
interface Issuer {
|
|
24075
|
+
readonly id: string;
|
|
24076
|
+
readonly iin: string;
|
|
24077
|
+
readonly name?: string;
|
|
24078
|
+
readonly country?: string;
|
|
24079
|
+
readonly brand?: string;
|
|
24080
|
+
readonly type?: string;
|
|
24081
|
+
readonly category?: string;
|
|
24082
|
+
readonly website?: string;
|
|
24083
|
+
readonly phone?: string;
|
|
24084
|
+
}
|
|
24085
|
+
|
|
24086
|
+
interface IssuerDeleted {
|
|
24087
|
+
readonly discriminator: 'issuer_deleted';
|
|
24088
|
+
readonly event_id: string;
|
|
24089
|
+
readonly timestamp: string;
|
|
24090
|
+
readonly issuer: io.flow.internal.v0.models.Issuer;
|
|
24091
|
+
}
|
|
24092
|
+
|
|
24093
|
+
interface IssuerUpserted {
|
|
24094
|
+
readonly discriminator: 'issuer_upserted';
|
|
24095
|
+
readonly event_id: string;
|
|
24096
|
+
readonly timestamp: string;
|
|
24097
|
+
readonly issuer: io.flow.internal.v0.models.Issuer;
|
|
24098
|
+
}
|
|
24099
|
+
|
|
23868
24100
|
interface ItemClassification {
|
|
23869
24101
|
readonly id?: string;
|
|
23870
24102
|
readonly organization: string;
|
|
@@ -23972,6 +24204,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23972
24204
|
>;
|
|
23973
24205
|
readonly decision_source?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
23974
24206
|
readonly classification_scope?: io.flow.internal.v0.enums.ClassificationScope;
|
|
24207
|
+
readonly classification_resource_id?: string;
|
|
23975
24208
|
readonly taxonomy_category_classification_alignment?: io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;
|
|
23976
24209
|
readonly created_at?: string;
|
|
23977
24210
|
readonly updated_at?: string;
|
|
@@ -23992,6 +24225,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23992
24225
|
readonly item_harmonization: io.flow.internal.v0.models.ItemHarmonization;
|
|
23993
24226
|
}
|
|
23994
24227
|
|
|
24228
|
+
interface ItemHs6Override {
|
|
24229
|
+
readonly item_number: string;
|
|
24230
|
+
readonly hs6: string;
|
|
24231
|
+
}
|
|
24232
|
+
|
|
24233
|
+
interface ItemHs6OverrideForm {
|
|
24234
|
+
readonly item_number: string;
|
|
24235
|
+
readonly hs6: string;
|
|
24236
|
+
readonly hs6_description?: string;
|
|
24237
|
+
}
|
|
24238
|
+
|
|
24239
|
+
interface ItemHs6OverrideRejection {
|
|
24240
|
+
readonly item_number: string;
|
|
24241
|
+
readonly message: string;
|
|
24242
|
+
}
|
|
24243
|
+
|
|
24244
|
+
interface ItemHs6OverrideResult {
|
|
24245
|
+
readonly applied: io.flow.internal.v0.models.ItemHs6Override[];
|
|
24246
|
+
readonly rejected: io.flow.internal.v0.models.ItemHs6OverrideRejection[];
|
|
24247
|
+
}
|
|
24248
|
+
|
|
24249
|
+
interface ItemHs6OverridesForm {
|
|
24250
|
+
readonly items: io.flow.internal.v0.models.ItemHs6OverrideForm[];
|
|
24251
|
+
}
|
|
24252
|
+
|
|
23995
24253
|
interface ItemQueryResponse {
|
|
23996
24254
|
readonly q: string;
|
|
23997
24255
|
readonly items: io.flow.catalog.v0.models.Item[];
|
|
@@ -24090,6 +24348,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24090
24348
|
readonly values: string[];
|
|
24091
24349
|
}
|
|
24092
24350
|
|
|
24351
|
+
interface JohnStrongItem {
|
|
24352
|
+
readonly id: string;
|
|
24353
|
+
readonly number: string;
|
|
24354
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
24355
|
+
readonly description?: string;
|
|
24356
|
+
readonly type: io.flow.internal.v0.enums.JohnStrongItemType;
|
|
24357
|
+
readonly added_on: string;
|
|
24358
|
+
}
|
|
24359
|
+
|
|
24360
|
+
interface JohnStrongItemForm {
|
|
24361
|
+
readonly number: string;
|
|
24362
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
24363
|
+
readonly description?: string;
|
|
24364
|
+
readonly type: io.flow.internal.v0.enums.JohnStrongItemType;
|
|
24365
|
+
readonly added_on: string;
|
|
24366
|
+
}
|
|
24367
|
+
|
|
24093
24368
|
interface Journal {
|
|
24094
24369
|
readonly name: string;
|
|
24095
24370
|
readonly queued: number;
|
|
@@ -25321,6 +25596,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25321
25596
|
readonly organization_id: string;
|
|
25322
25597
|
readonly order_number: string;
|
|
25323
25598
|
readonly price: io.flow.common.v0.models.PriceWithBase;
|
|
25599
|
+
readonly refunded_at?: string;
|
|
25324
25600
|
}
|
|
25325
25601
|
|
|
25326
25602
|
interface OrderRefundTransactionDeleted {
|
|
@@ -25370,6 +25646,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25370
25646
|
readonly to_service_id: string;
|
|
25371
25647
|
}
|
|
25372
25648
|
|
|
25649
|
+
interface OrderSettings {
|
|
25650
|
+
readonly tax_and_duty_inclusivity_setting?: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
|
|
25651
|
+
}
|
|
25652
|
+
|
|
25373
25653
|
interface OrderSummary {
|
|
25374
25654
|
readonly id: string;
|
|
25375
25655
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
@@ -26027,6 +26307,35 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26027
26307
|
readonly insurance: number;
|
|
26028
26308
|
}
|
|
26029
26309
|
|
|
26310
|
+
interface OutboundShippingCost {
|
|
26311
|
+
readonly channel_id: string;
|
|
26312
|
+
readonly organization_id: string;
|
|
26313
|
+
readonly destination_country: string;
|
|
26314
|
+
readonly carrier_service_id: string;
|
|
26315
|
+
readonly cost: io.flow.common.v0.models.Money;
|
|
26316
|
+
readonly updated_at: number;
|
|
26317
|
+
readonly run_id: string;
|
|
26318
|
+
readonly model_version: string;
|
|
26319
|
+
}
|
|
26320
|
+
|
|
26321
|
+
interface OutboundShippingCostDeleted {
|
|
26322
|
+
readonly discriminator: 'outbound_shipping_cost_deleted';
|
|
26323
|
+
readonly event_id: string;
|
|
26324
|
+
readonly timestamp: string;
|
|
26325
|
+
readonly organization: string;
|
|
26326
|
+
readonly channel_id: string;
|
|
26327
|
+
readonly id: string;
|
|
26328
|
+
}
|
|
26329
|
+
|
|
26330
|
+
interface OutboundShippingCostUpserted {
|
|
26331
|
+
readonly discriminator: 'outbound_shipping_cost_upserted';
|
|
26332
|
+
readonly event_id: string;
|
|
26333
|
+
readonly timestamp: string;
|
|
26334
|
+
readonly organization: string;
|
|
26335
|
+
readonly channel_id: string;
|
|
26336
|
+
readonly outbound_shipping_cost: io.flow.internal.v0.models.OutboundShippingCost;
|
|
26337
|
+
}
|
|
26338
|
+
|
|
26030
26339
|
interface Partner {
|
|
26031
26340
|
readonly id: string;
|
|
26032
26341
|
readonly name: string;
|
|
@@ -26525,6 +26834,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26525
26834
|
readonly refund: io.flow.internal.v0.models.PaypalInternalRefund;
|
|
26526
26835
|
}
|
|
26527
26836
|
|
|
26837
|
+
interface PcReviewContext {
|
|
26838
|
+
readonly discriminator: 'pc_review_context';
|
|
26839
|
+
readonly organization_id: string;
|
|
26840
|
+
readonly item_name: string;
|
|
26841
|
+
readonly item_description?: string;
|
|
26842
|
+
readonly categories?: string;
|
|
26843
|
+
readonly taxonomy_category?: string;
|
|
26844
|
+
readonly image_url?: string;
|
|
26845
|
+
}
|
|
26846
|
+
|
|
26847
|
+
interface PcReviewOutput {
|
|
26848
|
+
readonly discriminator: 'pc_review_output';
|
|
26849
|
+
readonly hs_code: string;
|
|
26850
|
+
readonly alternates: string[];
|
|
26851
|
+
readonly confidence: number;
|
|
26852
|
+
readonly reasoning: string;
|
|
26853
|
+
}
|
|
26854
|
+
|
|
26528
26855
|
interface PendingBankPayment {
|
|
26529
26856
|
readonly id: string;
|
|
26530
26857
|
readonly account: io.flow.internal.v0.models.AccountSummary;
|
|
@@ -26676,6 +27003,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26676
27003
|
readonly catalog_size: number;
|
|
26677
27004
|
readonly processed_product_count: number;
|
|
26678
27005
|
readonly last_request: string;
|
|
27006
|
+
readonly screening_mode?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
26679
27007
|
readonly updated_by_user_id: string;
|
|
26680
27008
|
}
|
|
26681
27009
|
|
|
@@ -27140,6 +27468,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27140
27468
|
readonly location: io.flow.common.v0.models.Address;
|
|
27141
27469
|
}
|
|
27142
27470
|
|
|
27471
|
+
interface PvReviewContext {
|
|
27472
|
+
readonly discriminator: 'pv_review_context';
|
|
27473
|
+
readonly organization_id: string;
|
|
27474
|
+
readonly item_name: string;
|
|
27475
|
+
readonly item_description?: string;
|
|
27476
|
+
readonly image_url?: string;
|
|
27477
|
+
readonly rule_name: string;
|
|
27478
|
+
readonly rule_reason_code: string;
|
|
27479
|
+
readonly hs_code?: string;
|
|
27480
|
+
readonly categories?: string;
|
|
27481
|
+
readonly price?: string;
|
|
27482
|
+
readonly matching_positive_keywords: string[];
|
|
27483
|
+
readonly matching_negative_keywords: string[];
|
|
27484
|
+
}
|
|
27485
|
+
|
|
27486
|
+
interface PvReviewOutput {
|
|
27487
|
+
readonly discriminator: 'pv_review_output';
|
|
27488
|
+
readonly decision: io.flow.internal.v0.enums.PvDecision;
|
|
27489
|
+
readonly confidence: number;
|
|
27490
|
+
readonly reasoning: string;
|
|
27491
|
+
}
|
|
27492
|
+
|
|
27143
27493
|
interface Quote {
|
|
27144
27494
|
readonly id: string;
|
|
27145
27495
|
readonly base: string;
|
|
@@ -27525,6 +27875,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27525
27875
|
readonly number: string;
|
|
27526
27876
|
}
|
|
27527
27877
|
|
|
27878
|
+
interface RemediateTaxDutyMetadata {
|
|
27879
|
+
readonly discriminator: 'remediate_tax_duty_metadata';
|
|
27880
|
+
readonly arm: io.flow.internal.v0.enums.RemediateTaxDutyArm;
|
|
27881
|
+
}
|
|
27882
|
+
|
|
27528
27883
|
interface RemittanceResponsibility {
|
|
27529
27884
|
readonly tax: io.flow.internal.v0.enums.ResponsibleParty;
|
|
27530
27885
|
readonly duty: io.flow.internal.v0.enums.ResponsibleParty;
|
|
@@ -28005,6 +28360,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28005
28360
|
readonly hs_code?: string;
|
|
28006
28361
|
readonly hs_code_source?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
28007
28362
|
readonly classification_scope?: io.flow.internal.v0.enums.ClassificationScope;
|
|
28363
|
+
readonly classification_resource_id?: string;
|
|
28008
28364
|
readonly description: string;
|
|
28009
28365
|
readonly category?: string;
|
|
28010
28366
|
readonly categories: string[];
|
|
@@ -28133,6 +28489,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28133
28489
|
readonly hs_code?: string;
|
|
28134
28490
|
readonly hs_code_source?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
28135
28491
|
readonly classification_scope?: io.flow.internal.v0.enums.ClassificationScope;
|
|
28492
|
+
readonly classification_resource_id?: string;
|
|
28136
28493
|
readonly url?: string;
|
|
28137
28494
|
readonly reviews: io.flow.internal.v0.models.RestrictionItemReview[];
|
|
28138
28495
|
readonly created_at: string;
|
|
@@ -28182,6 +28539,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28182
28539
|
readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
|
|
28183
28540
|
readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
28184
28541
|
readonly activation_status: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
28542
|
+
readonly evaluation_mode: io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
|
|
28185
28543
|
}
|
|
28186
28544
|
|
|
28187
28545
|
interface RestrictionRuleDecisionForm {
|
|
@@ -28243,6 +28601,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28243
28601
|
readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
|
|
28244
28602
|
readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
28245
28603
|
readonly activation_status: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
28604
|
+
readonly evaluation_mode: io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
|
|
28246
28605
|
}
|
|
28247
28606
|
|
|
28248
28607
|
interface RestrictionRuleLaneExemption {
|
|
@@ -28542,6 +28901,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28542
28901
|
readonly revenue_record: io.flow.internal.v0.models.RevenueRecord;
|
|
28543
28902
|
}
|
|
28544
28903
|
|
|
28904
|
+
interface ReviewRequestItem {
|
|
28905
|
+
readonly review_type: io.flow.internal.v0.enums.AiReviewType;
|
|
28906
|
+
readonly review_id: string;
|
|
28907
|
+
readonly context: io.flow.internal.v0.unions.AiReviewContext;
|
|
28908
|
+
}
|
|
28909
|
+
|
|
28545
28910
|
interface RoutingAccount {
|
|
28546
28911
|
readonly discriminator: 'routing_account';
|
|
28547
28912
|
readonly processor: io.flow.internal.v0.enums.Processor;
|
|
@@ -28713,6 +29078,41 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28713
29078
|
readonly merchant_error?: io.flow.sellability.v0.models.SellabilityError[];
|
|
28714
29079
|
}
|
|
28715
29080
|
|
|
29081
|
+
interface SellabilityPendingVerification {
|
|
29082
|
+
readonly id: string;
|
|
29083
|
+
readonly merchant_id: string;
|
|
29084
|
+
readonly product_id: string;
|
|
29085
|
+
readonly channel: string;
|
|
29086
|
+
readonly request_id: string;
|
|
29087
|
+
readonly name: string;
|
|
29088
|
+
readonly description: string;
|
|
29089
|
+
readonly taxonomy_category?: string;
|
|
29090
|
+
readonly hs6_code?: string;
|
|
29091
|
+
readonly price?: string;
|
|
29092
|
+
readonly rule_id: string;
|
|
29093
|
+
readonly reason_code: string;
|
|
29094
|
+
readonly matching_keywords?: string;
|
|
29095
|
+
readonly status: string;
|
|
29096
|
+
readonly agent_decision?: string;
|
|
29097
|
+
readonly agent_reasoning?: string;
|
|
29098
|
+
readonly created_at: string;
|
|
29099
|
+
readonly updated_at: string;
|
|
29100
|
+
}
|
|
29101
|
+
|
|
29102
|
+
interface SellabilityPendingVerificationDeleted {
|
|
29103
|
+
readonly discriminator: 'sellability_pending_verification_deleted';
|
|
29104
|
+
readonly event_id: string;
|
|
29105
|
+
readonly timestamp: string;
|
|
29106
|
+
readonly id: string;
|
|
29107
|
+
}
|
|
29108
|
+
|
|
29109
|
+
interface SellabilityPendingVerificationUpserted {
|
|
29110
|
+
readonly discriminator: 'sellability_pending_verification_upserted';
|
|
29111
|
+
readonly event_id: string;
|
|
29112
|
+
readonly timestamp: string;
|
|
29113
|
+
readonly sellability_pending_verification: io.flow.internal.v0.models.SellabilityPendingVerification;
|
|
29114
|
+
}
|
|
29115
|
+
|
|
28716
29116
|
interface ServiceFees {
|
|
28717
29117
|
readonly ratecard: io.flow.internal.v0.models.RatecardInternalSummary;
|
|
28718
29118
|
readonly service_fees: io.flow.ratecard.v0.unions.ServiceFee[];
|
|
@@ -30511,6 +30911,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30511
30911
|
interface TaxonomyCategoryHs6Ref {
|
|
30512
30912
|
readonly id: string;
|
|
30513
30913
|
readonly taxonomy_category: string;
|
|
30914
|
+
readonly taxonomy_category_id?: string;
|
|
30514
30915
|
readonly hs6: string;
|
|
30515
30916
|
readonly updated_by_user_id: string;
|
|
30516
30917
|
}
|
|
@@ -31040,6 +31441,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
31040
31441
|
readonly message: string;
|
|
31041
31442
|
}
|
|
31042
31443
|
|
|
31444
|
+
interface UnserviceableTaxonomyCategory {
|
|
31445
|
+
readonly id: string;
|
|
31446
|
+
readonly taxonomy_category: string;
|
|
31447
|
+
readonly taxonomy_category_id?: string;
|
|
31448
|
+
readonly updated_by_user_id: string;
|
|
31449
|
+
}
|
|
31450
|
+
|
|
31451
|
+
interface UnserviceableTaxonomyCategoryDeleted {
|
|
31452
|
+
readonly discriminator: 'unserviceable_taxonomy_category_deleted';
|
|
31453
|
+
readonly event_id: string;
|
|
31454
|
+
readonly timestamp: string;
|
|
31455
|
+
readonly id: string;
|
|
31456
|
+
}
|
|
31457
|
+
|
|
31458
|
+
interface UnserviceableTaxonomyCategoryUpserted {
|
|
31459
|
+
readonly discriminator: 'unserviceable_taxonomy_category_upserted';
|
|
31460
|
+
readonly event_id: string;
|
|
31461
|
+
readonly timestamp: string;
|
|
31462
|
+
readonly unserviceable_taxonomy_category: io.flow.internal.v0.models.UnserviceableTaxonomyCategory;
|
|
31463
|
+
}
|
|
31464
|
+
|
|
31043
31465
|
interface Ups {
|
|
31044
31466
|
readonly discriminator: 'ups';
|
|
31045
31467
|
readonly client_id: string;
|
|
@@ -31156,6 +31578,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
31156
31578
|
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
31157
31579
|
readonly package_dimensions_source: io.flow.label.v0.enums.PackageDimensionsSource;
|
|
31158
31580
|
readonly shipping_date_time?: string;
|
|
31581
|
+
readonly delivery_window_days_from?: number;
|
|
31582
|
+
readonly delivery_window_days_to?: number;
|
|
31159
31583
|
}
|
|
31160
31584
|
|
|
31161
31585
|
interface ViesResult {
|
|
@@ -31213,6 +31637,14 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31213
31637
|
| io.flow.internal.v0.models.AdjustmentAmountPercentage
|
|
31214
31638
|
| io.flow.internal.v0.models.AdjustmentAmountFixed
|
|
31215
31639
|
| io.flow.internal.v0.models.AdjustmentDetailsProcessingTransaction;
|
|
31640
|
+
type AiOutput =
|
|
31641
|
+
| io.flow.internal.v0.models.PvReviewOutput
|
|
31642
|
+
| io.flow.internal.v0.models.DgReviewOutput
|
|
31643
|
+
| io.flow.internal.v0.models.PcReviewOutput;
|
|
31644
|
+
type AiReviewContext =
|
|
31645
|
+
| io.flow.internal.v0.models.PvReviewContext
|
|
31646
|
+
| io.flow.internal.v0.models.DgReviewContext
|
|
31647
|
+
| io.flow.internal.v0.models.PcReviewContext;
|
|
31216
31648
|
type AuthorizationPayload =
|
|
31217
31649
|
| io.flow.internal.v0.models.ApplePayAuthorizationPayload
|
|
31218
31650
|
| io.flow.internal.v0.models.PaypalAuthorizationPayload;
|
|
@@ -31285,12 +31717,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31285
31717
|
| io.flow.internal.v0.models.DutyCompoundExpression
|
|
31286
31718
|
| io.flow.internal.v0.models.DutySimpleExpression;
|
|
31287
31719
|
type Event =
|
|
31288
|
-
| io.flow.internal.v0.models.AdaptivePricingCoefficientUpserted
|
|
31289
|
-
| io.flow.internal.v0.models.AdaptivePricingCoefficientDeleted
|
|
31290
|
-
| io.flow.internal.v0.models.AdaptivePricingUpdateUpserted
|
|
31291
|
-
| io.flow.internal.v0.models.AdaptivePricingUpdateDeleted
|
|
31292
|
-
| io.flow.internal.v0.models.AdaptiveShippingRateUpserted
|
|
31293
|
-
| io.flow.internal.v0.models.AdaptiveShippingRateDeleted
|
|
31294
31720
|
| io.flow.internal.v0.models.AdyenAuthorizationDeleted
|
|
31295
31721
|
| io.flow.internal.v0.models.AdyenAuthorizationUpserted
|
|
31296
31722
|
| io.flow.internal.v0.models.AdyenCancelDeleted
|
|
@@ -31301,6 +31727,10 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31301
31727
|
| io.flow.internal.v0.models.AdyenRefundUpserted
|
|
31302
31728
|
| io.flow.internal.v0.models.AdyenDisputeUpserted
|
|
31303
31729
|
| io.flow.internal.v0.models.AdyenDisputeDeleted
|
|
31730
|
+
| io.flow.internal.v0.models.AiReviewBatchSubmitted
|
|
31731
|
+
| io.flow.internal.v0.models.AiReviewResultUpserted
|
|
31732
|
+
| io.flow.internal.v0.models.AiReviewResultDeleted
|
|
31733
|
+
| io.flow.internal.v0.models.AiReviewRequestFailed
|
|
31304
31734
|
| io.flow.internal.v0.models.FulfillmentUpserted
|
|
31305
31735
|
| io.flow.internal.v0.models.FulfillmentDeleted
|
|
31306
31736
|
| io.flow.internal.v0.models.MerchantUpserted
|
|
@@ -31377,6 +31807,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31377
31807
|
| io.flow.internal.v0.models.ChannelOrderAcceptanceFailed
|
|
31378
31808
|
| io.flow.internal.v0.models.ChannelShopStatisticsUpserted
|
|
31379
31809
|
| io.flow.internal.v0.models.ChannelShopStatisticsDeleted
|
|
31810
|
+
| io.flow.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySettingUpserted
|
|
31811
|
+
| io.flow.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySettingDeleted
|
|
31380
31812
|
| io.flow.internal.v0.models.CommercialInvoiceInternalUpserted
|
|
31381
31813
|
| io.flow.internal.v0.models.CommercialInvoiceInternalDeleted
|
|
31382
31814
|
| io.flow.internal.v0.models.InternalChannelRateDeleted
|
|
@@ -31438,6 +31870,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31438
31870
|
| io.flow.internal.v0.models.MorCostDeleted
|
|
31439
31871
|
| io.flow.internal.v0.models.FlatRateLabelReversalUpserted
|
|
31440
31872
|
| io.flow.internal.v0.models.FlatRateLabelReversalDeleted
|
|
31873
|
+
| io.flow.internal.v0.models.FlatRateLabelSubsidyUpserted
|
|
31874
|
+
| io.flow.internal.v0.models.FlatRateLabelSubsidyDeleted
|
|
31441
31875
|
| io.flow.internal.v0.models.FraudReviewUpserted
|
|
31442
31876
|
| io.flow.internal.v0.models.FraudReviewDeleted
|
|
31443
31877
|
| io.flow.internal.v0.models.FraudPendingReviewUpserted
|
|
@@ -31463,8 +31897,16 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31463
31897
|
| io.flow.internal.v0.models.FulfillmentFallbacksDeleted
|
|
31464
31898
|
| io.flow.internal.v0.models.QuoteUpserted
|
|
31465
31899
|
| io.flow.internal.v0.models.QuoteDeleted
|
|
31900
|
+
| io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputUpserted
|
|
31901
|
+
| io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputDeleted
|
|
31902
|
+
| io.flow.internal.v0.models.OutboundShippingCostUpserted
|
|
31903
|
+
| io.flow.internal.v0.models.OutboundShippingCostDeleted
|
|
31466
31904
|
| io.flow.internal.v0.models.GuaranteedShippingPublishedOutputUpserted
|
|
31467
31905
|
| io.flow.internal.v0.models.GuaranteedShippingPublishedOutputDeleted
|
|
31906
|
+
| io.flow.internal.v0.models.GuaranteedShippingSettingsUpserted
|
|
31907
|
+
| io.flow.internal.v0.models.GuaranteedShippingSettingsDeleted
|
|
31908
|
+
| io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateUpserted
|
|
31909
|
+
| io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateDeleted
|
|
31468
31910
|
| io.flow.internal.v0.models.AllItemsExport
|
|
31469
31911
|
| io.flow.internal.v0.models.HarmonizedItemsHs6Export
|
|
31470
31912
|
| io.flow.internal.v0.models.UnharmonizedItemsExport
|
|
@@ -31487,6 +31929,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31487
31929
|
| io.flow.internal.v0.models.MerchantOverrideUpserted
|
|
31488
31930
|
| io.flow.internal.v0.models.MerchantOverrideDeleted
|
|
31489
31931
|
| io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished
|
|
31932
|
+
| io.flow.internal.v0.models.IssuerUpserted
|
|
31933
|
+
| io.flow.internal.v0.models.IssuerDeleted
|
|
31490
31934
|
| io.flow.internal.v0.models.ItemFormImportRequest
|
|
31491
31935
|
| io.flow.internal.v0.models.LabelRequestErrorUpserted
|
|
31492
31936
|
| io.flow.internal.v0.models.LabelRequestErrorDeleted
|
|
@@ -31597,6 +32041,10 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31597
32041
|
| io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted
|
|
31598
32042
|
| io.flow.internal.v0.models.PreonboardingMerchantUpserted
|
|
31599
32043
|
| io.flow.internal.v0.models.PreonboardingMerchantDeleted
|
|
32044
|
+
| io.flow.internal.v0.models.UnserviceableTaxonomyCategoryUpserted
|
|
32045
|
+
| io.flow.internal.v0.models.UnserviceableTaxonomyCategoryDeleted
|
|
32046
|
+
| io.flow.internal.v0.models.SellabilityPendingVerificationUpserted
|
|
32047
|
+
| io.flow.internal.v0.models.SellabilityPendingVerificationDeleted
|
|
31600
32048
|
| io.flow.internal.v0.models.ShopifyHs10CodesUpserted
|
|
31601
32049
|
| io.flow.internal.v0.models.ShopifyHs10CodesDeleted
|
|
31602
32050
|
| io.flow.internal.v0.models.ShopifyMarketsOrderUpserted
|
|
@@ -31867,7 +32315,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31867
32315
|
| io.flow.internal.v0.models.NonL4LTaxDutyFxFeeMetadata
|
|
31868
32316
|
| io.flow.internal.v0.models.ChannelTransactionTriggerMetadata
|
|
31869
32317
|
| io.flow.internal.v0.models.B2BFeeMorTaxTriggerMetadata
|
|
31870
|
-
| io.flow.internal.v0.models.B2BFeeShippingTaxTriggerMetadata
|
|
32318
|
+
| io.flow.internal.v0.models.B2BFeeShippingTaxTriggerMetadata
|
|
32319
|
+
| io.flow.internal.v0.models.RemediateTaxDutyMetadata;
|
|
31871
32320
|
type TaxAmount =
|
|
31872
32321
|
| io.flow.internal.v0.models.CalculatedTaxAmount
|
|
31873
32322
|
| io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
@@ -31959,20 +32408,6 @@ export type AccountingPendingOrderMetadata =
|
|
|
31959
32408
|
export type AccountingReturnMetadata =
|
|
31960
32409
|
io.flow.internal.v0.models.AccountingReturnMetadata;
|
|
31961
32410
|
export type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
|
|
31962
|
-
export type AdaptivePricingCoefficient =
|
|
31963
|
-
io.flow.internal.v0.models.AdaptivePricingCoefficient;
|
|
31964
|
-
export type AdaptivePricingCoefficientDeleted =
|
|
31965
|
-
io.flow.internal.v0.models.AdaptivePricingCoefficientDeleted;
|
|
31966
|
-
export type AdaptivePricingCoefficientUpserted =
|
|
31967
|
-
io.flow.internal.v0.models.AdaptivePricingCoefficientUpserted;
|
|
31968
|
-
export type AdaptivePricingDestinationUpdate =
|
|
31969
|
-
io.flow.internal.v0.models.AdaptivePricingDestinationUpdate;
|
|
31970
|
-
export type AdaptivePricingUpdate =
|
|
31971
|
-
io.flow.internal.v0.models.AdaptivePricingUpdate;
|
|
31972
|
-
export type AdaptivePricingUpdateDeleted =
|
|
31973
|
-
io.flow.internal.v0.models.AdaptivePricingUpdateDeleted;
|
|
31974
|
-
export type AdaptivePricingUpdateUpserted =
|
|
31975
|
-
io.flow.internal.v0.models.AdaptivePricingUpdateUpserted;
|
|
31976
32411
|
export type AdaptiveShippingOrderGuarantee =
|
|
31977
32412
|
io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
31978
32413
|
export type AdaptiveShippingOrderGuaranteeDeleted =
|
|
@@ -31981,12 +32416,6 @@ export type AdaptiveShippingOrderGuaranteeState =
|
|
|
31981
32416
|
io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState;
|
|
31982
32417
|
export type AdaptiveShippingOrderGuaranteeUpserted =
|
|
31983
32418
|
io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted;
|
|
31984
|
-
export type AdaptiveShippingRate =
|
|
31985
|
-
io.flow.internal.v0.models.AdaptiveShippingRate;
|
|
31986
|
-
export type AdaptiveShippingRateDeleted =
|
|
31987
|
-
io.flow.internal.v0.models.AdaptiveShippingRateDeleted;
|
|
31988
|
-
export type AdaptiveShippingRateUpserted =
|
|
31989
|
-
io.flow.internal.v0.models.AdaptiveShippingRateUpserted;
|
|
31990
32419
|
export type AdditionalImportTax =
|
|
31991
32420
|
io.flow.internal.v0.models.AdditionalImportTax;
|
|
31992
32421
|
export type AdjustmentAmount = io.flow.internal.v0.unions.AdjustmentAmount;
|
|
@@ -32090,6 +32519,22 @@ export type AfterpayRefundDeleted =
|
|
|
32090
32519
|
export type AfterpayRefundUpserted =
|
|
32091
32520
|
io.flow.internal.v0.models.AfterpayRefundUpserted;
|
|
32092
32521
|
export type AftershipWebhook = io.flow.internal.v0.models.AftershipWebhook;
|
|
32522
|
+
export type AiOutput = io.flow.internal.v0.unions.AiOutput;
|
|
32523
|
+
export type AiReviewBatchSubmitted =
|
|
32524
|
+
io.flow.internal.v0.models.AiReviewBatchSubmitted;
|
|
32525
|
+
export type AiReviewConsumer = io.flow.internal.v0.enums.AiReviewConsumer;
|
|
32526
|
+
export type AiReviewContext = io.flow.internal.v0.unions.AiReviewContext;
|
|
32527
|
+
export type AiReviewFailedItem = io.flow.internal.v0.models.AiReviewFailedItem;
|
|
32528
|
+
export type AiReviewFailureReason =
|
|
32529
|
+
io.flow.internal.v0.enums.AiReviewFailureReason;
|
|
32530
|
+
export type AiReviewRequestFailed =
|
|
32531
|
+
io.flow.internal.v0.models.AiReviewRequestFailed;
|
|
32532
|
+
export type AiReviewResult = io.flow.internal.v0.models.AiReviewResult;
|
|
32533
|
+
export type AiReviewResultDeleted =
|
|
32534
|
+
io.flow.internal.v0.models.AiReviewResultDeleted;
|
|
32535
|
+
export type AiReviewResultUpserted =
|
|
32536
|
+
io.flow.internal.v0.models.AiReviewResultUpserted;
|
|
32537
|
+
export type AiReviewType = io.flow.internal.v0.enums.AiReviewType;
|
|
32093
32538
|
export type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
|
|
32094
32539
|
export type AllocationItemReference =
|
|
32095
32540
|
io.flow.internal.v0.models.AllocationItemReference;
|
|
@@ -32463,6 +32908,12 @@ export type ChannelOrderSummaryFulfillmentDetails =
|
|
|
32463
32908
|
io.flow.internal.v0.models.ChannelOrderSummaryFulfillmentDetails;
|
|
32464
32909
|
export type ChannelOrderSummaryUpserted =
|
|
32465
32910
|
io.flow.internal.v0.models.ChannelOrderSummaryUpserted;
|
|
32911
|
+
export type ChannelOrderTaxAndDutyInclusivitySetting =
|
|
32912
|
+
io.flow.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySetting;
|
|
32913
|
+
export type ChannelOrderTaxAndDutyInclusivitySettingDeleted =
|
|
32914
|
+
io.flow.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySettingDeleted;
|
|
32915
|
+
export type ChannelOrderTaxAndDutyInclusivitySettingUpserted =
|
|
32916
|
+
io.flow.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySettingUpserted;
|
|
32466
32917
|
export type ChannelOrganizationDomains =
|
|
32467
32918
|
io.flow.internal.v0.models.ChannelOrganizationDomains;
|
|
32468
32919
|
export type ChannelOrganizationIdentifier =
|
|
@@ -32791,6 +33242,9 @@ export type DeminimisAdjustmentType =
|
|
|
32791
33242
|
export type DestinationDutyComparison =
|
|
32792
33243
|
io.flow.internal.v0.models.DestinationDutyComparison;
|
|
32793
33244
|
export type DestinationError = io.flow.internal.v0.models.DestinationError;
|
|
33245
|
+
export type DgClassAssessment = io.flow.internal.v0.models.DgClassAssessment;
|
|
33246
|
+
export type DgReviewContext = io.flow.internal.v0.models.DgReviewContext;
|
|
33247
|
+
export type DgReviewOutput = io.flow.internal.v0.models.DgReviewOutput;
|
|
32794
33248
|
export type Dhl = io.flow.internal.v0.models.Dhl;
|
|
32795
33249
|
export type DhlEcommerce = io.flow.internal.v0.models.DhlEcommerce;
|
|
32796
33250
|
export type DimensionEstimateOpsInput =
|
|
@@ -32969,6 +33423,8 @@ export type ExternalFulfillmentProofTracking =
|
|
|
32969
33423
|
io.flow.internal.v0.models.ExternalFulfillmentProofTracking;
|
|
32970
33424
|
export type ExternalFulfillmentProofTrackingForm =
|
|
32971
33425
|
io.flow.internal.v0.models.ExternalFulfillmentProofTrackingForm;
|
|
33426
|
+
export type ExternalOrderSummary =
|
|
33427
|
+
io.flow.internal.v0.models.ExternalOrderSummary;
|
|
32972
33428
|
export type ExternalRatecardLink =
|
|
32973
33429
|
io.flow.internal.v0.models.ExternalRatecardLink;
|
|
32974
33430
|
export type ExternalRatecardLinkResponse =
|
|
@@ -33040,6 +33496,12 @@ export type FlatRateLabelReversalDeleted =
|
|
|
33040
33496
|
io.flow.internal.v0.models.FlatRateLabelReversalDeleted;
|
|
33041
33497
|
export type FlatRateLabelReversalUpserted =
|
|
33042
33498
|
io.flow.internal.v0.models.FlatRateLabelReversalUpserted;
|
|
33499
|
+
export type FlatRateLabelSubsidy =
|
|
33500
|
+
io.flow.internal.v0.models.FlatRateLabelSubsidy;
|
|
33501
|
+
export type FlatRateLabelSubsidyDeleted =
|
|
33502
|
+
io.flow.internal.v0.models.FlatRateLabelSubsidyDeleted;
|
|
33503
|
+
export type FlatRateLabelSubsidyUpserted =
|
|
33504
|
+
io.flow.internal.v0.models.FlatRateLabelSubsidyUpserted;
|
|
33043
33505
|
export type FlatRateLabelTransaction =
|
|
33044
33506
|
io.flow.internal.v0.models.FlatRateLabelTransaction;
|
|
33045
33507
|
export type FlatRateLabelTransactionType =
|
|
@@ -33218,12 +33680,38 @@ export type GoogleShoppingSetting =
|
|
|
33218
33680
|
io.flow.internal.v0.models.GoogleShoppingSetting;
|
|
33219
33681
|
export type GoogleTagManager = io.flow.internal.v0.models.GoogleTagManager;
|
|
33220
33682
|
export type GraphqlServiceTypes = io.flow.internal.v0.enums.GraphqlServiceTypes;
|
|
33683
|
+
export type GuaranteedShippingCalibratedOutput =
|
|
33684
|
+
io.flow.internal.v0.models.GuaranteedShippingCalibratedOutput;
|
|
33685
|
+
export type GuaranteedShippingCalibratedOutputDeleted =
|
|
33686
|
+
io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputDeleted;
|
|
33687
|
+
export type GuaranteedShippingCalibratedOutputUpserted =
|
|
33688
|
+
io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputUpserted;
|
|
33689
|
+
export type GuaranteedShippingCalibration =
|
|
33690
|
+
io.flow.internal.v0.models.GuaranteedShippingCalibration;
|
|
33691
|
+
export type GuaranteedShippingCalibrationForm =
|
|
33692
|
+
io.flow.internal.v0.models.GuaranteedShippingCalibrationForm;
|
|
33693
|
+
export type GuaranteedShippingCalibrationLaneForm =
|
|
33694
|
+
io.flow.internal.v0.models.GuaranteedShippingCalibrationLaneForm;
|
|
33221
33695
|
export type GuaranteedShippingPublishedOutput =
|
|
33222
33696
|
io.flow.internal.v0.models.GuaranteedShippingPublishedOutput;
|
|
33223
33697
|
export type GuaranteedShippingPublishedOutputDeleted =
|
|
33224
33698
|
io.flow.internal.v0.models.GuaranteedShippingPublishedOutputDeleted;
|
|
33225
33699
|
export type GuaranteedShippingPublishedOutputUpserted =
|
|
33226
33700
|
io.flow.internal.v0.models.GuaranteedShippingPublishedOutputUpserted;
|
|
33701
|
+
export type GuaranteedShippingSettings =
|
|
33702
|
+
io.flow.internal.v0.models.GuaranteedShippingSettings;
|
|
33703
|
+
export type GuaranteedShippingSettingsDeleted =
|
|
33704
|
+
io.flow.internal.v0.models.GuaranteedShippingSettingsDeleted;
|
|
33705
|
+
export type GuaranteedShippingSettingsDestinationUpdate =
|
|
33706
|
+
io.flow.internal.v0.models.GuaranteedShippingSettingsDestinationUpdate;
|
|
33707
|
+
export type GuaranteedShippingSettingsUpdate =
|
|
33708
|
+
io.flow.internal.v0.models.GuaranteedShippingSettingsUpdate;
|
|
33709
|
+
export type GuaranteedShippingSettingsUpdateDeleted =
|
|
33710
|
+
io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateDeleted;
|
|
33711
|
+
export type GuaranteedShippingSettingsUpdateUpserted =
|
|
33712
|
+
io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateUpserted;
|
|
33713
|
+
export type GuaranteedShippingSettingsUpserted =
|
|
33714
|
+
io.flow.internal.v0.models.GuaranteedShippingSettingsUpserted;
|
|
33227
33715
|
export type HarmonizationClassificationStatisticsData =
|
|
33228
33716
|
io.flow.internal.v0.models.HarmonizationClassificationStatisticsData;
|
|
33229
33717
|
export type HarmonizationClassificationStatisticsPublished =
|
|
@@ -33318,6 +33806,9 @@ export type InvoiceInfoForm = io.flow.internal.v0.models.InvoiceInfoForm;
|
|
|
33318
33806
|
export type InvoiceLine = io.flow.internal.v0.models.InvoiceLine;
|
|
33319
33807
|
export type InvoiceLineItem = io.flow.internal.v0.models.InvoiceLineItem;
|
|
33320
33808
|
export type InvoiceTransaction = io.flow.internal.v0.models.InvoiceTransaction;
|
|
33809
|
+
export type Issuer = io.flow.internal.v0.models.Issuer;
|
|
33810
|
+
export type IssuerDeleted = io.flow.internal.v0.models.IssuerDeleted;
|
|
33811
|
+
export type IssuerUpserted = io.flow.internal.v0.models.IssuerUpserted;
|
|
33321
33812
|
export type ItemClassification = io.flow.internal.v0.models.ItemClassification;
|
|
33322
33813
|
export type ItemClassificationAction =
|
|
33323
33814
|
io.flow.internal.v0.enums.ItemClassificationAction;
|
|
@@ -33346,6 +33837,15 @@ export type ItemHarmonizationStatus =
|
|
|
33346
33837
|
io.flow.internal.v0.enums.ItemHarmonizationStatus;
|
|
33347
33838
|
export type ItemHarmonizationUpserted =
|
|
33348
33839
|
io.flow.internal.v0.models.ItemHarmonizationUpserted;
|
|
33840
|
+
export type ItemHs6Override = io.flow.internal.v0.models.ItemHs6Override;
|
|
33841
|
+
export type ItemHs6OverrideForm =
|
|
33842
|
+
io.flow.internal.v0.models.ItemHs6OverrideForm;
|
|
33843
|
+
export type ItemHs6OverrideRejection =
|
|
33844
|
+
io.flow.internal.v0.models.ItemHs6OverrideRejection;
|
|
33845
|
+
export type ItemHs6OverrideResult =
|
|
33846
|
+
io.flow.internal.v0.models.ItemHs6OverrideResult;
|
|
33847
|
+
export type ItemHs6OverridesForm =
|
|
33848
|
+
io.flow.internal.v0.models.ItemHs6OverridesForm;
|
|
33349
33849
|
export type ItemQuantityAction = io.flow.internal.v0.enums.ItemQuantityAction;
|
|
33350
33850
|
export type ItemQueryResponse = io.flow.internal.v0.models.ItemQueryResponse;
|
|
33351
33851
|
export type ItemRestriction = io.flow.internal.v0.models.ItemRestriction;
|
|
@@ -33369,6 +33869,9 @@ export type ItemSalesMarginVersion =
|
|
|
33369
33869
|
export type ItemSummary = io.flow.internal.v0.models.ItemSummary;
|
|
33370
33870
|
export type ItemType = io.flow.internal.v0.enums.ItemType;
|
|
33371
33871
|
export type ItemValuesForm = io.flow.internal.v0.models.ItemValuesForm;
|
|
33872
|
+
export type JohnStrongItem = io.flow.internal.v0.models.JohnStrongItem;
|
|
33873
|
+
export type JohnStrongItemForm = io.flow.internal.v0.models.JohnStrongItemForm;
|
|
33874
|
+
export type JohnStrongItemType = io.flow.internal.v0.enums.JohnStrongItemType;
|
|
33372
33875
|
export type Journal = io.flow.internal.v0.models.Journal;
|
|
33373
33876
|
export type JournalFailure = io.flow.internal.v0.models.JournalFailure;
|
|
33374
33877
|
export type JournalOperation = io.flow.internal.v0.enums.JournalOperation;
|
|
@@ -33696,6 +34199,7 @@ export type OrderRevenueTimelineDataPoint =
|
|
|
33696
34199
|
io.flow.internal.v0.models.OrderRevenueTimelineDataPoint;
|
|
33697
34200
|
export type OrderServiceChangeCsvForm =
|
|
33698
34201
|
io.flow.internal.v0.models.OrderServiceChangeCsvForm;
|
|
34202
|
+
export type OrderSettings = io.flow.internal.v0.models.OrderSettings;
|
|
33699
34203
|
export type OrderSummary = io.flow.internal.v0.models.OrderSummary;
|
|
33700
34204
|
export type OrderTaxAndDutyInclusivitySetting =
|
|
33701
34205
|
io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
@@ -33876,6 +34380,12 @@ export type OtherRecordUpserted =
|
|
|
33876
34380
|
io.flow.internal.v0.models.OtherRecordUpserted;
|
|
33877
34381
|
export type OtherRecordWithholdings =
|
|
33878
34382
|
io.flow.internal.v0.models.OtherRecordWithholdings;
|
|
34383
|
+
export type OutboundShippingCost =
|
|
34384
|
+
io.flow.internal.v0.models.OutboundShippingCost;
|
|
34385
|
+
export type OutboundShippingCostDeleted =
|
|
34386
|
+
io.flow.internal.v0.models.OutboundShippingCostDeleted;
|
|
34387
|
+
export type OutboundShippingCostUpserted =
|
|
34388
|
+
io.flow.internal.v0.models.OutboundShippingCostUpserted;
|
|
33879
34389
|
export type OutputStyle = io.flow.internal.v0.enums.OutputStyle;
|
|
33880
34390
|
export type Owner = io.flow.internal.v0.enums.Owner;
|
|
33881
34391
|
export type Partner = io.flow.internal.v0.models.Partner;
|
|
@@ -33991,6 +34501,8 @@ export type PaypalRefundDeleted =
|
|
|
33991
34501
|
io.flow.internal.v0.models.PaypalRefundDeleted;
|
|
33992
34502
|
export type PaypalRefundUpserted =
|
|
33993
34503
|
io.flow.internal.v0.models.PaypalRefundUpserted;
|
|
34504
|
+
export type PcReviewContext = io.flow.internal.v0.models.PcReviewContext;
|
|
34505
|
+
export type PcReviewOutput = io.flow.internal.v0.models.PcReviewOutput;
|
|
33994
34506
|
export type PendingBankPayment = io.flow.internal.v0.models.PendingBankPayment;
|
|
33995
34507
|
export type PendingBankPaymentDetail =
|
|
33996
34508
|
io.flow.internal.v0.models.PendingBankPaymentDetail;
|
|
@@ -34161,6 +34673,9 @@ export type PspRoutingDistributionRevisionForm =
|
|
|
34161
34673
|
io.flow.internal.v0.models.PspRoutingDistributionRevisionForm;
|
|
34162
34674
|
export type PublicHub = io.flow.internal.v0.models.PublicHub;
|
|
34163
34675
|
export type PublicHubForm = io.flow.internal.v0.models.PublicHubForm;
|
|
34676
|
+
export type PvDecision = io.flow.internal.v0.enums.PvDecision;
|
|
34677
|
+
export type PvReviewContext = io.flow.internal.v0.models.PvReviewContext;
|
|
34678
|
+
export type PvReviewOutput = io.flow.internal.v0.models.PvReviewOutput;
|
|
34164
34679
|
export type Quote = io.flow.internal.v0.models.Quote;
|
|
34165
34680
|
export type QuoteDeleted = io.flow.internal.v0.models.QuoteDeleted;
|
|
34166
34681
|
export type QuoteUpserted = io.flow.internal.v0.models.QuoteUpserted;
|
|
@@ -34248,6 +34763,9 @@ export type RegisteredExporterTariffEligibilityData =
|
|
|
34248
34763
|
export type RegisteredExporterTariffEligibilityForm =
|
|
34249
34764
|
io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
|
|
34250
34765
|
export type RejectionReason = io.flow.internal.v0.enums.RejectionReason;
|
|
34766
|
+
export type RemediateTaxDutyArm = io.flow.internal.v0.enums.RemediateTaxDutyArm;
|
|
34767
|
+
export type RemediateTaxDutyMetadata =
|
|
34768
|
+
io.flow.internal.v0.models.RemediateTaxDutyMetadata;
|
|
34251
34769
|
export type RemittanceResponsibility =
|
|
34252
34770
|
io.flow.internal.v0.models.RemittanceResponsibility;
|
|
34253
34771
|
export type Report = io.flow.internal.v0.models.Report;
|
|
@@ -34423,6 +34941,8 @@ export type RestrictionRuleEffectForm =
|
|
|
34423
34941
|
io.flow.internal.v0.models.RestrictionRuleEffectForm;
|
|
34424
34942
|
export type RestrictionRuleEffectUpserted =
|
|
34425
34943
|
io.flow.internal.v0.models.RestrictionRuleEffectUpserted;
|
|
34944
|
+
export type RestrictionRuleEvaluationMode =
|
|
34945
|
+
io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
|
|
34426
34946
|
export type RestrictionRuleExceptionAction =
|
|
34427
34947
|
io.flow.internal.v0.enums.RestrictionRuleExceptionAction;
|
|
34428
34948
|
export type RestrictionRuleForm =
|
|
@@ -34492,6 +35012,7 @@ export type RevenueRecordDeleted =
|
|
|
34492
35012
|
export type RevenueRecordType = io.flow.internal.v0.enums.RevenueRecordType;
|
|
34493
35013
|
export type RevenueRecordUpserted =
|
|
34494
35014
|
io.flow.internal.v0.models.RevenueRecordUpserted;
|
|
35015
|
+
export type ReviewRequestItem = io.flow.internal.v0.models.ReviewRequestItem;
|
|
34495
35016
|
export type RiskCheck = io.flow.internal.v0.enums.RiskCheck;
|
|
34496
35017
|
export type RiskEvaluation = io.flow.internal.v0.enums.RiskEvaluation;
|
|
34497
35018
|
export type RoutingAccount = io.flow.internal.v0.models.RoutingAccount;
|
|
@@ -34532,6 +35053,12 @@ export type SellabilityCheckStatus =
|
|
|
34532
35053
|
io.flow.internal.v0.enums.SellabilityCheckStatus;
|
|
34533
35054
|
export type SellabilityInternalMatchType =
|
|
34534
35055
|
io.flow.internal.v0.enums.SellabilityInternalMatchType;
|
|
35056
|
+
export type SellabilityPendingVerification =
|
|
35057
|
+
io.flow.internal.v0.models.SellabilityPendingVerification;
|
|
35058
|
+
export type SellabilityPendingVerificationDeleted =
|
|
35059
|
+
io.flow.internal.v0.models.SellabilityPendingVerificationDeleted;
|
|
35060
|
+
export type SellabilityPendingVerificationUpserted =
|
|
35061
|
+
io.flow.internal.v0.models.SellabilityPendingVerificationUpserted;
|
|
34535
35062
|
export type SellabilityStatus = io.flow.internal.v0.enums.SellabilityStatus;
|
|
34536
35063
|
export type ServiceFees = io.flow.internal.v0.models.ServiceFees;
|
|
34537
35064
|
export type ServiceFeesForm = io.flow.internal.v0.models.ServiceFeesForm;
|
|
@@ -35156,6 +35683,12 @@ export type UnharmonizedItemsExport =
|
|
|
35156
35683
|
io.flow.internal.v0.models.UnharmonizedItemsExport;
|
|
35157
35684
|
export type UnphrasedProductsExport =
|
|
35158
35685
|
io.flow.internal.v0.models.UnphrasedProductsExport;
|
|
35686
|
+
export type UnserviceableTaxonomyCategory =
|
|
35687
|
+
io.flow.internal.v0.models.UnserviceableTaxonomyCategory;
|
|
35688
|
+
export type UnserviceableTaxonomyCategoryDeleted =
|
|
35689
|
+
io.flow.internal.v0.models.UnserviceableTaxonomyCategoryDeleted;
|
|
35690
|
+
export type UnserviceableTaxonomyCategoryUpserted =
|
|
35691
|
+
io.flow.internal.v0.models.UnserviceableTaxonomyCategoryUpserted;
|
|
35159
35692
|
export type Ups = io.flow.internal.v0.models.Ups;
|
|
35160
35693
|
export type UsdSpotRate = io.flow.internal.v0.models.UsdSpotRate;
|
|
35161
35694
|
export type UsdSpotRateDeleted = io.flow.internal.v0.models.UsdSpotRateDeleted;
|