@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/dist/api-internal.d.ts
CHANGED
|
@@ -930,7 +930,7 @@ declare namespace io.flow.channel.v0.models {
|
|
|
930
930
|
declare namespace io.flow.restrictions.v0.enums {
|
|
931
931
|
type RestrictedReviewStatus = 'in_review' | 'reviewed';
|
|
932
932
|
type RestrictionDecision = 'accept' | 'reject' | 'escalate' | 'review';
|
|
933
|
-
type RestrictionDecisionReason = 'manual_dispute';
|
|
933
|
+
type RestrictionDecisionReason = 'manual_dispute' | 'operations_decision';
|
|
934
934
|
type RestrictionEnvironment = 'sandbox' | 'production' | 'qa';
|
|
935
935
|
type ReviewStatus = 'high_risk_in_review' | 'low_risk_in_review' | 'reviewed';
|
|
936
936
|
}
|
|
@@ -3991,6 +3991,8 @@ declare namespace io.flow.label.v0.models {
|
|
|
3991
3991
|
readonly updated_at?: string;
|
|
3992
3992
|
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
3993
3993
|
readonly shipping_cost_guarantee?: io.flow.label.v0.enums.ShippingCostGuarantee;
|
|
3994
|
+
readonly delivery_window_days_from?: number;
|
|
3995
|
+
readonly delivery_window_days_to?: number;
|
|
3994
3996
|
}
|
|
3995
3997
|
interface ShippingLabelDocument {
|
|
3996
3998
|
readonly zpl?: string;
|
|
@@ -4956,6 +4958,9 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
4956
4958
|
interface MarketsOrderSummary {
|
|
4957
4959
|
readonly id: string;
|
|
4958
4960
|
}
|
|
4961
|
+
interface OrderSettings {
|
|
4962
|
+
readonly tax_and_duty_inclusivity_setting?: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
|
|
4963
|
+
}
|
|
4959
4964
|
interface OrderTaxAndDutyInclusivitySetting {
|
|
4960
4965
|
readonly id: string;
|
|
4961
4966
|
readonly organization_id: string;
|
|
@@ -5962,6 +5967,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
5962
5967
|
readonly inventoryItem: io.flow.shopify.external.v0.models.GraphqlInventoryItem;
|
|
5963
5968
|
}
|
|
5964
5969
|
interface GraphqlTaxonomyCategory {
|
|
5970
|
+
readonly id?: string;
|
|
5965
5971
|
readonly name: string;
|
|
5966
5972
|
readonly fullName: string;
|
|
5967
5973
|
}
|
|
@@ -6070,7 +6076,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6070
6076
|
readonly created_at: string;
|
|
6071
6077
|
readonly updated_at: string;
|
|
6072
6078
|
readonly has_variants_that_requires_components?: boolean;
|
|
6073
|
-
readonly category?: io.flow.
|
|
6079
|
+
readonly category?: io.flow.shopify.external.v0.models.RestTaxonomyCategory;
|
|
6074
6080
|
readonly metafields?: io.flow.shopify.external.v0.models.ProductMetafield[];
|
|
6075
6081
|
}
|
|
6076
6082
|
interface ProductDelete {
|
|
@@ -6184,6 +6190,11 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6184
6190
|
interface ResponseVariant {
|
|
6185
6191
|
readonly variant: io.flow.shopify.external.v0.models.ProductVariant;
|
|
6186
6192
|
}
|
|
6193
|
+
interface RestTaxonomyCategory {
|
|
6194
|
+
readonly name: string;
|
|
6195
|
+
readonly full_name: string;
|
|
6196
|
+
readonly admin_graphql_api_id?: string;
|
|
6197
|
+
}
|
|
6187
6198
|
interface Shop {
|
|
6188
6199
|
readonly id: number;
|
|
6189
6200
|
readonly domain: string;
|
|
@@ -7472,11 +7483,18 @@ declare namespace io.flow.channel.shopify.internal.v0.models {
|
|
|
7472
7483
|
}
|
|
7473
7484
|
}
|
|
7474
7485
|
declare namespace io.flow.order.price.v0.enums {
|
|
7486
|
+
type OrderPriceCoefficientType = 'item_shipping';
|
|
7475
7487
|
type OrderPriceDetailComponentKey = 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge' | 'tip';
|
|
7476
7488
|
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
7477
7489
|
type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product' | 'mor_tax';
|
|
7490
|
+
type OrderPriceSubsidyType = 'shipping_subsidy';
|
|
7478
7491
|
}
|
|
7479
7492
|
declare namespace io.flow.order.price.v0.models {
|
|
7493
|
+
interface OrderPriceCoefficient {
|
|
7494
|
+
readonly type: io.flow.order.price.v0.enums.OrderPriceCoefficientType;
|
|
7495
|
+
readonly value: number;
|
|
7496
|
+
readonly price: io.flow.common.v0.models.PriceWithBase;
|
|
7497
|
+
}
|
|
7480
7498
|
interface OrderPriceDetail {
|
|
7481
7499
|
readonly key: io.flow.order.price.v0.enums.OrderPriceDetailKey;
|
|
7482
7500
|
readonly currency: string;
|
|
@@ -7507,10 +7525,16 @@ declare namespace io.flow.order.price.v0.models {
|
|
|
7507
7525
|
readonly value: io.flow.common.v0.models.PriceWithBase;
|
|
7508
7526
|
readonly type: io.flow.order.price.v0.enums.OrderPriceFeeType;
|
|
7509
7527
|
}
|
|
7528
|
+
interface OrderPriceSubsidy {
|
|
7529
|
+
readonly type: io.flow.order.price.v0.enums.OrderPriceSubsidyType;
|
|
7530
|
+
readonly price: io.flow.common.v0.models.PriceWithBase;
|
|
7531
|
+
}
|
|
7510
7532
|
interface PurchasePriceBreakdown {
|
|
7511
7533
|
readonly total_price: io.flow.common.v0.models.PriceWithBase;
|
|
7512
7534
|
readonly product_price: io.flow.common.v0.models.PriceWithBase;
|
|
7513
7535
|
readonly fees: io.flow.order.price.v0.models.OrderPriceFee[];
|
|
7536
|
+
readonly coefficients?: io.flow.order.price.v0.models.OrderPriceCoefficient[];
|
|
7537
|
+
readonly subsidies?: io.flow.order.price.v0.models.OrderPriceSubsidy[];
|
|
7514
7538
|
}
|
|
7515
7539
|
}
|
|
7516
7540
|
declare namespace io.flow.channel.internal.v0.enums {
|
|
@@ -7563,7 +7587,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
7563
7587
|
readonly order_updated_at?: string;
|
|
7564
7588
|
readonly order_edit_summary?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
7565
7589
|
readonly payment_source?: io.flow.channel.internal.v0.enums.OrderPaymentSourceType;
|
|
7566
|
-
readonly external_order_summary?: io.flow.channel.
|
|
7590
|
+
readonly external_order_summary?: io.flow.channel.internal.v0.models.ExternalOrderSummary;
|
|
7567
7591
|
}
|
|
7568
7592
|
interface ChannelOrderAcceptanceDetails {
|
|
7569
7593
|
readonly order_acceptance: io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
|
|
@@ -7584,6 +7608,12 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
7584
7608
|
readonly description: string;
|
|
7585
7609
|
readonly rejection_reason?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
7586
7610
|
}
|
|
7611
|
+
interface ChannelOrderTaxAndDutyInclusivitySetting {
|
|
7612
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
7613
|
+
readonly order_number: string;
|
|
7614
|
+
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
7615
|
+
readonly tax_and_duty_inclusivity_setting: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
|
|
7616
|
+
}
|
|
7587
7617
|
interface ChannelOrganizationDomains {
|
|
7588
7618
|
readonly internal: string;
|
|
7589
7619
|
readonly external: string;
|
|
@@ -7614,6 +7644,11 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
7614
7644
|
readonly catalog_sync_duration?: number;
|
|
7615
7645
|
readonly catalog_products_count?: number;
|
|
7616
7646
|
}
|
|
7647
|
+
interface ExternalOrderSummary {
|
|
7648
|
+
readonly id: string;
|
|
7649
|
+
readonly edit_ids: string[];
|
|
7650
|
+
readonly created_at?: string;
|
|
7651
|
+
}
|
|
7617
7652
|
interface FlowChannelOrganization {
|
|
7618
7653
|
readonly placeholder?: string;
|
|
7619
7654
|
}
|
|
@@ -8416,7 +8451,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
8416
8451
|
type OrganizationPaymentMethodTag = 'deny';
|
|
8417
8452
|
type PaymentMethodRuleContentKey = 'description';
|
|
8418
8453
|
type PriceFacetBoundary = 'min' | 'max';
|
|
8419
|
-
type PricingType = 'inclusive_pricing';
|
|
8454
|
+
type PricingType = 'inclusive_pricing' | 'inclusive_pricing_with_shipping';
|
|
8420
8455
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
8421
8456
|
type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
|
|
8422
8457
|
}
|
|
@@ -10039,30 +10074,6 @@ declare namespace io.flow.crypto.v0.models {
|
|
|
10039
10074
|
readonly object: io.flow.crypto.v0.models.Refund;
|
|
10040
10075
|
}
|
|
10041
10076
|
}
|
|
10042
|
-
declare namespace io.flow.channel.shopify.v0.enums {
|
|
10043
|
-
type ChannelShopifyOrderStateReasonCode = 'placeholder_reason_code';
|
|
10044
|
-
}
|
|
10045
|
-
declare namespace io.flow.channel.shopify.v0.models {
|
|
10046
|
-
interface ChannelShopifyOrderState {
|
|
10047
|
-
readonly id: string;
|
|
10048
|
-
readonly shopify_order_summary: io.flow.channel.shopify.v0.models.ChannelShopifyOrderSummary;
|
|
10049
|
-
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
10050
|
-
readonly reasons?: io.flow.channel.shopify.v0.models.ChannelShopifyOrderStateReason[];
|
|
10051
|
-
readonly external_order_summary?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
|
|
10052
|
-
}
|
|
10053
|
-
interface ChannelShopifyOrderStateReason {
|
|
10054
|
-
readonly code: io.flow.channel.shopify.v0.enums.ChannelShopifyOrderStateReasonCode;
|
|
10055
|
-
readonly message: string;
|
|
10056
|
-
}
|
|
10057
|
-
interface ChannelShopifyOrderSummary {
|
|
10058
|
-
readonly order_id: number;
|
|
10059
|
-
readonly shop_id: number;
|
|
10060
|
-
}
|
|
10061
|
-
interface ExternalOrderSummary {
|
|
10062
|
-
readonly id: string;
|
|
10063
|
-
readonly edit_ids: string[];
|
|
10064
|
-
}
|
|
10065
|
-
}
|
|
10066
10077
|
declare namespace io.flow.shopify.merchant.config.v0.models {
|
|
10067
10078
|
interface Company {
|
|
10068
10079
|
readonly discriminator: 'company';
|
|
@@ -10415,6 +10426,7 @@ declare namespace io.flow.product.v0.models {
|
|
|
10415
10426
|
interface ProductTaxonomyCategory {
|
|
10416
10427
|
readonly name: string;
|
|
10417
10428
|
readonly full_name: string;
|
|
10429
|
+
readonly id?: string;
|
|
10418
10430
|
}
|
|
10419
10431
|
interface ProductTaxonomyData {
|
|
10420
10432
|
readonly key: string;
|
|
@@ -11321,7 +11333,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
11321
11333
|
type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance' | 'unfulfilled_amount_greater_than_negative_balance' | 'account_payment_hold';
|
|
11322
11334
|
type StatementAttachmentType = 'csv' | 'pdf';
|
|
11323
11335
|
type StatementStatusCode = 'scheduled' | 'sent' | 'failed' | 'paid';
|
|
11324
|
-
type TaxDutyTransactionReasonCode = 'post_capture' | 'post_fulfilment' | 'manual_payment_or_gift_card' | 'order_edit' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'us_inbound_tax_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'full_refund_without_shipment' | 'unfulfilled_order_above_de_min' | 'order_cancellation_without_capture';
|
|
11336
|
+
type TaxDutyTransactionReasonCode = 'post_capture' | 'post_fulfilment' | 'manual_payment_or_gift_card' | 'order_edit' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'us_inbound_tax_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'wyol_shipment_lvg' | 'full_refund_without_shipment' | 'unfulfilled_order_above_de_min' | 'order_cancellation_without_capture';
|
|
11325
11337
|
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' | 'merchant_fee' | 'b2b_tax' | 'b2b_tax_refund' | 'b2b_fee_mor_tax' | 'b2b_fee_shipping_tax' | 'flat_rate_label' | 'flat_rate_label_subsidy';
|
|
11326
11338
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
11327
11339
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
@@ -11406,6 +11418,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11406
11418
|
readonly settlement: io.flow.billing.v0.unions.Settlement;
|
|
11407
11419
|
readonly attachments: io.flow.billing.v0.models.Attachment[];
|
|
11408
11420
|
readonly created_at: string;
|
|
11421
|
+
readonly period?: io.flow.common.v0.models.DatetimeRange;
|
|
11409
11422
|
}
|
|
11410
11423
|
interface ChannelTransaction {
|
|
11411
11424
|
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
@@ -11550,6 +11563,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11550
11563
|
readonly settlement: io.flow.billing.v0.unions.Settlement;
|
|
11551
11564
|
readonly attachments: io.flow.billing.v0.models.Attachment[];
|
|
11552
11565
|
readonly created_at: string;
|
|
11566
|
+
readonly period?: io.flow.common.v0.models.DatetimeRange;
|
|
11553
11567
|
}
|
|
11554
11568
|
interface StatementStatusForm {
|
|
11555
11569
|
readonly code: io.flow.billing.v0.enums.StatementStatusCode;
|
|
@@ -12374,6 +12388,13 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
12374
12388
|
readonly bank_routing_number: string;
|
|
12375
12389
|
readonly bank_name: string;
|
|
12376
12390
|
}
|
|
12391
|
+
interface BankAccountInfoKorV2 {
|
|
12392
|
+
readonly discriminator: 'kor_v2';
|
|
12393
|
+
readonly name: string;
|
|
12394
|
+
readonly bank_account_number: string;
|
|
12395
|
+
readonly bank_routing_number: string;
|
|
12396
|
+
readonly bank_name: string;
|
|
12397
|
+
}
|
|
12377
12398
|
interface BankAccountInfoUsa {
|
|
12378
12399
|
readonly discriminator: 'usa';
|
|
12379
12400
|
readonly routing_number: string;
|
|
@@ -12381,7 +12402,7 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
12381
12402
|
}
|
|
12382
12403
|
}
|
|
12383
12404
|
declare namespace io.flow.billing.bank.account.v0.unions {
|
|
12384
|
-
type BankAccountInfo = io.flow.billing.bank.account.v0.models.BankAccountInfoUsa | io.flow.billing.bank.account.v0.models.BankAccountInfoCan | io.flow.billing.bank.account.v0.models.BankAccountInfoGbr | io.flow.billing.bank.account.v0.models.BankAccountInfoFra | io.flow.billing.bank.account.v0.models.BankAccountInfoIta | io.flow.billing.bank.account.v0.models.BankAccountInfoKor;
|
|
12405
|
+
type BankAccountInfo = io.flow.billing.bank.account.v0.models.BankAccountInfoUsa | io.flow.billing.bank.account.v0.models.BankAccountInfoCan | io.flow.billing.bank.account.v0.models.BankAccountInfoGbr | io.flow.billing.bank.account.v0.models.BankAccountInfoFra | io.flow.billing.bank.account.v0.models.BankAccountInfoIta | io.flow.billing.bank.account.v0.models.BankAccountInfoKor | io.flow.billing.bank.account.v0.models.BankAccountInfoKorV2;
|
|
12385
12406
|
}
|
|
12386
12407
|
declare namespace io.flow.internal.v0.enums {
|
|
12387
12408
|
type AccountCurrencyFilter = 'GBP' | 'CAD' | 'USD' | 'KRW';
|
|
@@ -12391,6 +12412,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12391
12412
|
type AdaptiveShippingOrderGuaranteeState = 'confirmed' | 'voided';
|
|
12392
12413
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
12393
12414
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
12415
|
+
type AiReviewConsumer = 'restrictions' | 'sellability' | 'harmonization';
|
|
12416
|
+
type AiReviewFailureReason = 'item_errored' | 'item_expired' | 'item_unparseable' | 'item_image_fetch_failed' | 'item_undecided' | 'batch_failed' | 'batch_timed_out';
|
|
12417
|
+
type AiReviewType = 'pv_review_general' | 'pv_review_dg_hazmat' | 'pc_review';
|
|
12394
12418
|
type AmruthaItemType = 'physical' | 'digital';
|
|
12395
12419
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
12396
12420
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
@@ -12443,7 +12467,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12443
12467
|
type ClassificationErrorCode = 'generic_error';
|
|
12444
12468
|
type ClassificationFailureReason = 'low_confidence' | 'timeout' | 'missing_hs6_code' | 'invalid_price';
|
|
12445
12469
|
type ClassificationPlatform = 'GlobalE' | 'Flow' | 'FlowOnboarding' | 'Borderfree';
|
|
12446
|
-
type ClassificationScope = 'Item' | 'Product';
|
|
12470
|
+
type ClassificationScope = 'Item' | 'Product' | 'Bucket';
|
|
12447
12471
|
type ClassificationSource = 'sellability';
|
|
12448
12472
|
type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
|
|
12449
12473
|
type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
|
|
@@ -12487,7 +12511,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12487
12511
|
type EmptyAttribute = 'irrelevant';
|
|
12488
12512
|
type ErpFileType = 'vendor';
|
|
12489
12513
|
type EvaluationCheckResult = 'pass' | 'fail';
|
|
12490
|
-
type EventType = 'adaptive_pricing_coefficient_upserted' | 'adaptive_pricing_coefficient_deleted' | 'adaptive_pricing_update_upserted' | 'adaptive_pricing_update_deleted' | 'adaptive_shipping_rate_upserted' | 'adaptive_shipping_rate_deleted' | 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'fulfillment_status_upserted' | 'fulfillment_status_deleted' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'sales_payment_record_upserted' | 'sales_payment_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'channel_shop_statistics_upserted' | 'channel_shop_statistics_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'shipping_cost_upserted' | 'shipping_cost_deleted' | 'mor_cost_upserted' | 'mor_cost_deleted' | 'flat_rate_label_reversal_upserted' | 'flat_rate_label_reversal_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'quote_upserted' | 'quote_deleted' | 'guaranteed_shipping_published_output_upserted' | 'guaranteed_shipping_published_output_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'merchant_override_upserted' | 'merchant_override_deleted' | 'harmonization_classification_statistics_published' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_creation_job_upserted' | 'label_creation_job_deleted' | 'adaptive_shipping_order_guarantee_upserted' | 'adaptive_shipping_order_guarantee_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'partner_request_upserted' | 'partner_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'order_refund_transaction_upserted' | 'order_refund_transaction_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'preonboarding_sellability_result_inserted' | 'preonboarding_sellability_result_updated' | 'preonboarding_sellability_result_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'product_restriction_state_inserted' | 'product_restriction_state_updated' | 'product_restriction_state_deleted' | 'product_sellability_result_inserted' | 'product_sellability_result_updated' | 'product_sellability_result_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restrictions_athena_dailyops_pc_pv_upserted' | 'restrictions_athena_dailyops_pc_pv_deleted' | 'restrictions_athena_dailyops_fs_upserted' | 'restrictions_athena_dailyops_fs_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'taxonomy_category_hs6_ref_upserted' | 'taxonomy_category_hs6_ref_deleted' | 'preonboarding_merchant_upserted' | 'preonboarding_merchant_deleted' | 'shopify_hs10_codes_upserted' | 'shopify_hs10_codes_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_product_taxonomy_attribute_upserted' | 'shopify_product_taxonomy_attribute_deleted' | 'shopify_product_taxonomy_attribute_value_upserted' | 'shopify_product_taxonomy_attribute_value_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_order_risk_assessment_upserted' | 'shopify_order_risk_assessment_deleted' | 'shopify_order_transaction_upserted' | 'shopify_order_transaction_deleted' | 'shopify_test_order_upserted' | 'shopify_test_order_deleted' | 'shopify_merchant_markets_upserted' | 'shopify_merchant_markets_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'shopify_merchant_plan_upserted' | 'shopify_merchant_plan_deleted' | 'shopify_dispute_upserted' | 'shopify_dispute_deleted' | 'shopify_report_file_upserted' | 'shopify_report_file_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'b2b_tax_transaction_upserted' | 'b2b_tax_transaction_deleted' | 'gabriel_item_upserted' | 'gabriel_item_deleted' | 'chenglin_item_upserted' | 'chenglin_item_deleted' | 'bojana_item_upserted' | 'bojana_item_deleted' | 'raveena_item_upserted' | 'raveena_item_deleted' | 'mahesh_item_upserted' | 'mahesh_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
12514
|
+
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'ai_review_batch_submitted' | 'ai_review_result_upserted' | 'ai_review_result_deleted' | 'ai_review_request_failed' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'fulfillment_status_upserted' | 'fulfillment_status_deleted' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'sales_payment_record_upserted' | 'sales_payment_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'channel_shop_statistics_upserted' | 'channel_shop_statistics_deleted' | 'channel_order_tax_and_duty_inclusivity_setting_upserted' | 'channel_order_tax_and_duty_inclusivity_setting_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'shipping_cost_upserted' | 'shipping_cost_deleted' | 'mor_cost_upserted' | 'mor_cost_deleted' | 'flat_rate_label_reversal_upserted' | 'flat_rate_label_reversal_deleted' | 'flat_rate_label_subsidy_upserted' | 'flat_rate_label_subsidy_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'quote_upserted' | 'quote_deleted' | 'guaranteed_shipping_calibrated_output_upserted' | 'guaranteed_shipping_calibrated_output_deleted' | 'outbound_shipping_cost_upserted' | 'outbound_shipping_cost_deleted' | 'guaranteed_shipping_published_output_upserted' | 'guaranteed_shipping_published_output_deleted' | 'guaranteed_shipping_settings_upserted' | 'guaranteed_shipping_settings_deleted' | 'guaranteed_shipping_settings_update_upserted' | 'guaranteed_shipping_settings_update_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'merchant_override_upserted' | 'merchant_override_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_creation_job_upserted' | 'label_creation_job_deleted' | 'adaptive_shipping_order_guarantee_upserted' | 'adaptive_shipping_order_guarantee_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'partner_request_upserted' | 'partner_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'order_refund_transaction_upserted' | 'order_refund_transaction_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'preonboarding_sellability_result_inserted' | 'preonboarding_sellability_result_updated' | 'preonboarding_sellability_result_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'product_restriction_state_inserted' | 'product_restriction_state_updated' | 'product_restriction_state_deleted' | 'product_sellability_result_inserted' | 'product_sellability_result_updated' | 'product_sellability_result_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restrictions_athena_dailyops_pc_pv_upserted' | 'restrictions_athena_dailyops_pc_pv_deleted' | 'restrictions_athena_dailyops_fs_upserted' | 'restrictions_athena_dailyops_fs_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'taxonomy_category_hs6_ref_upserted' | 'taxonomy_category_hs6_ref_deleted' | 'preonboarding_merchant_upserted' | 'preonboarding_merchant_deleted' | 'unserviceable_taxonomy_category_upserted' | 'unserviceable_taxonomy_category_deleted' | 'sellability_pending_verification_upserted' | 'sellability_pending_verification_deleted' | 'shopify_hs10_codes_upserted' | 'shopify_hs10_codes_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_product_taxonomy_attribute_upserted' | 'shopify_product_taxonomy_attribute_deleted' | 'shopify_product_taxonomy_attribute_value_upserted' | 'shopify_product_taxonomy_attribute_value_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_order_risk_assessment_upserted' | 'shopify_order_risk_assessment_deleted' | 'shopify_order_transaction_upserted' | 'shopify_order_transaction_deleted' | 'shopify_test_order_upserted' | 'shopify_test_order_deleted' | 'shopify_merchant_markets_upserted' | 'shopify_merchant_markets_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'shopify_merchant_plan_upserted' | 'shopify_merchant_plan_deleted' | 'shopify_dispute_upserted' | 'shopify_dispute_deleted' | 'shopify_report_file_upserted' | 'shopify_report_file_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'b2b_tax_transaction_upserted' | 'b2b_tax_transaction_deleted' | 'gabriel_item_upserted' | 'gabriel_item_deleted' | 'chenglin_item_upserted' | 'chenglin_item_deleted' | 'bojana_item_upserted' | 'bojana_item_deleted' | 'raveena_item_upserted' | 'raveena_item_deleted' | 'mahesh_item_upserted' | 'mahesh_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
12491
12515
|
type ExperienceImportType = 'experience_with_settings';
|
|
12492
12516
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
12493
12517
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -12513,9 +12537,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12513
12537
|
type InternalPaymentEntityType = 'authorization' | 'capture' | 'refund' | 'dispute';
|
|
12514
12538
|
type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
|
|
12515
12539
|
type ItemClassificationStatus = 'unknown' | 'manual' | 'manually_accepted' | 'manually_overridden' | 'automatically_accepted' | 'pending';
|
|
12516
|
-
type ItemHarmonizationStatus = 'waiting_for_classification' | 'classified' | 'non_classifiable_not_enough_information' | 'exempt' | 'manual_classification_required';
|
|
12540
|
+
type ItemHarmonizationStatus = 'waiting_for_classification' | 'classified' | 'non_classifiable_not_enough_information' | 'exempt' | 'manual_classification_required' | 'unserviceable_taxonomy';
|
|
12517
12541
|
type ItemQuantityAction = 'fulfillment_ship' | 'fulfillment_cancel' | 'fulfillment_generate_label';
|
|
12518
12542
|
type ItemType = 'standard' | 'multi_product';
|
|
12543
|
+
type JohnStrongItemType = 'physical' | 'digital';
|
|
12519
12544
|
type JournalOperation = 'insert' | 'update' | 'delete';
|
|
12520
12545
|
type KeywordType = 'positive' | 'negative';
|
|
12521
12546
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
@@ -12584,17 +12609,19 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12584
12609
|
type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
|
|
12585
12610
|
type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
|
|
12586
12611
|
type ProductStatus = 'active' | 'archived' | 'draft' | 'unlisted';
|
|
12612
|
+
type PvDecision = 'uphold' | 'remove';
|
|
12587
12613
|
type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
|
|
12588
12614
|
type RateSource = 'calculated' | 'market';
|
|
12589
12615
|
type RaveenaItemType = 'physical' | 'digital';
|
|
12590
12616
|
type RedirectReason = 'three_d_secure';
|
|
12591
12617
|
type RejectionReason = 'merchant_policy' | 'previous_chargebacks' | 'restricted_party_screening' | 'risky_velocity' | 'suspicious_behavior' | 'suspicious_past_activity';
|
|
12618
|
+
type RemediateTaxDutyArm = 'non_lvg' | 'lvg_full_refund';
|
|
12592
12619
|
type ReportFileStatus = 'processing' | 'failed' | 'succeeded';
|
|
12593
12620
|
type ReportFileType = 'stripe_connect_report';
|
|
12594
12621
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
12595
12622
|
type ReportPaymentType = 'credit' | 'debit';
|
|
12596
12623
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
12597
|
-
type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'scheduled_payment_citi' | 'scheduled_payment_citi_krw' | 'scheduled_payment_citi_krw_txt' | 'account_quarterly_balances' | 'invariants' | 'payments' | 'reconcile_not_recorded' | 'products_record' | 'disputes' | 'sales_payments_record';
|
|
12624
|
+
type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'scheduled_payment_citi' | 'scheduled_payment_citi_krw' | 'scheduled_payment_citi_krw_txt' | 'scheduled_payment_citi_uk_xml' | 'account_quarterly_balances' | 'invariants' | 'payments' | 'reconcile_not_recorded' | 'products_record' | 'disputes' | 'sales_payments_record';
|
|
12598
12625
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
12599
12626
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
12600
12627
|
type ResponsibleParty = 'flow' | 'organization';
|
|
@@ -12608,6 +12635,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12608
12635
|
type RestrictionOrganizationSource = 'smb' | 'enterprise';
|
|
12609
12636
|
type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
|
|
12610
12637
|
type RestrictionRuleCommunityExemption = 'domestic_exemption' | 'intra_eu_exemption';
|
|
12638
|
+
type RestrictionRuleEvaluationMode = 'all_screenings' | 'first_screening_only';
|
|
12611
12639
|
type RestrictionRuleExceptionAction = 'allow' | 'deny';
|
|
12612
12640
|
type RestrictionStateReviewStatus = 'reviewed' | 'in_review';
|
|
12613
12641
|
type RestrictionStatus = 'pending' | 'in_review' | 'escalated' | 'accepted' | 'restricted';
|
|
@@ -12882,65 +12910,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12882
12910
|
readonly refund?: io.flow.payment.v0.models.RefundReference;
|
|
12883
12911
|
readonly tax_reversal?: io.flow.internal.v0.models.TransactionReference;
|
|
12884
12912
|
readonly duty_reversal?: io.flow.internal.v0.models.TransactionReference;
|
|
12913
|
+
readonly flat_rate_reversal?: io.flow.internal.v0.models.TransactionReference;
|
|
12914
|
+
readonly flat_rate_subsidy_reversal?: io.flow.internal.v0.models.TransactionReference;
|
|
12885
12915
|
}
|
|
12886
12916
|
interface ActionQuantity {
|
|
12887
12917
|
readonly action: io.flow.internal.v0.enums.ItemQuantityAction;
|
|
12888
12918
|
readonly quantity: number;
|
|
12889
12919
|
}
|
|
12890
|
-
interface AdaptivePricingCoefficient {
|
|
12891
|
-
readonly coefficients_updated_at: number;
|
|
12892
|
-
readonly channel_id: string;
|
|
12893
|
-
readonly organization_id: string;
|
|
12894
|
-
readonly destination_country: string;
|
|
12895
|
-
readonly tax_and_duty_coefficient: number;
|
|
12896
|
-
readonly fees_coefficient: number;
|
|
12897
|
-
readonly merchant_subsidy: io.flow.common.v0.models.Money;
|
|
12898
|
-
readonly created_at: number;
|
|
12899
|
-
}
|
|
12900
|
-
interface AdaptivePricingCoefficientDeleted {
|
|
12901
|
-
readonly discriminator: 'adaptive_pricing_coefficient_deleted';
|
|
12902
|
-
readonly event_id: string;
|
|
12903
|
-
readonly timestamp: string;
|
|
12904
|
-
readonly organization: string;
|
|
12905
|
-
readonly channel_id: string;
|
|
12906
|
-
readonly id: string;
|
|
12907
|
-
}
|
|
12908
|
-
interface AdaptivePricingCoefficientUpserted {
|
|
12909
|
-
readonly discriminator: 'adaptive_pricing_coefficient_upserted';
|
|
12910
|
-
readonly event_id: string;
|
|
12911
|
-
readonly timestamp: string;
|
|
12912
|
-
readonly organization: string;
|
|
12913
|
-
readonly channel_id: string;
|
|
12914
|
-
readonly adaptive_pricing_coefficient: io.flow.internal.v0.models.AdaptivePricingCoefficient;
|
|
12915
|
-
}
|
|
12916
|
-
interface AdaptivePricingDestinationUpdate {
|
|
12917
|
-
readonly country: string;
|
|
12918
|
-
readonly updated_at: string;
|
|
12919
|
-
readonly tax_and_duty_coefficient: number;
|
|
12920
|
-
readonly fees_coefficient: number;
|
|
12921
|
-
readonly merchant_subsidy: io.flow.common.v0.models.Money;
|
|
12922
|
-
}
|
|
12923
|
-
interface AdaptivePricingUpdate {
|
|
12924
|
-
readonly channel_id: string;
|
|
12925
|
-
readonly organization_id: string;
|
|
12926
|
-
readonly destination_updates: io.flow.internal.v0.models.AdaptivePricingDestinationUpdate[];
|
|
12927
|
-
}
|
|
12928
|
-
interface AdaptivePricingUpdateDeleted {
|
|
12929
|
-
readonly discriminator: 'adaptive_pricing_update_deleted';
|
|
12930
|
-
readonly event_id: string;
|
|
12931
|
-
readonly timestamp: string;
|
|
12932
|
-
readonly organization: string;
|
|
12933
|
-
readonly channel_id: string;
|
|
12934
|
-
readonly id: string;
|
|
12935
|
-
}
|
|
12936
|
-
interface AdaptivePricingUpdateUpserted {
|
|
12937
|
-
readonly discriminator: 'adaptive_pricing_update_upserted';
|
|
12938
|
-
readonly event_id: string;
|
|
12939
|
-
readonly timestamp: string;
|
|
12940
|
-
readonly organization: string;
|
|
12941
|
-
readonly channel_id: string;
|
|
12942
|
-
readonly adaptive_pricing_update: io.flow.internal.v0.models.AdaptivePricingUpdate;
|
|
12943
|
-
}
|
|
12944
12920
|
interface AdaptiveShippingOrderGuarantee {
|
|
12945
12921
|
readonly id: string;
|
|
12946
12922
|
readonly organization_id: string;
|
|
@@ -12963,30 +12939,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12963
12939
|
readonly organization: string;
|
|
12964
12940
|
readonly adaptive_shipping_order_guarantee: io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
12965
12941
|
}
|
|
12966
|
-
interface AdaptiveShippingRate {
|
|
12967
|
-
readonly id: string;
|
|
12968
|
-
readonly organization_id: string;
|
|
12969
|
-
readonly channel_id: string;
|
|
12970
|
-
readonly destination_country: string;
|
|
12971
|
-
readonly coefficient: number;
|
|
12972
|
-
readonly flat_rates: io.flow.internal.v0.models.FlatRate[];
|
|
12973
|
-
readonly effective_at: string;
|
|
12974
|
-
readonly effective_until?: string;
|
|
12975
|
-
}
|
|
12976
|
-
interface AdaptiveShippingRateDeleted {
|
|
12977
|
-
readonly discriminator: 'adaptive_shipping_rate_deleted';
|
|
12978
|
-
readonly event_id: string;
|
|
12979
|
-
readonly timestamp: string;
|
|
12980
|
-
readonly organization: string;
|
|
12981
|
-
readonly id: string;
|
|
12982
|
-
}
|
|
12983
|
-
interface AdaptiveShippingRateUpserted {
|
|
12984
|
-
readonly discriminator: 'adaptive_shipping_rate_upserted';
|
|
12985
|
-
readonly event_id: string;
|
|
12986
|
-
readonly timestamp: string;
|
|
12987
|
-
readonly organization: string;
|
|
12988
|
-
readonly adaptive_shipping_rate: io.flow.internal.v0.models.AdaptiveShippingRate;
|
|
12989
|
-
}
|
|
12990
12942
|
interface AdditionalImportTax {
|
|
12991
12943
|
readonly name?: string;
|
|
12992
12944
|
readonly additional_import_tax_value?: io.flow.common.v0.models.Money;
|
|
@@ -13368,6 +13320,49 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13368
13320
|
interface AftershipWebhook {
|
|
13369
13321
|
readonly placeholder?: boolean;
|
|
13370
13322
|
}
|
|
13323
|
+
interface AiReviewBatchSubmitted {
|
|
13324
|
+
readonly discriminator: 'ai_review_batch_submitted';
|
|
13325
|
+
readonly event_id: string;
|
|
13326
|
+
readonly timestamp: string;
|
|
13327
|
+
readonly consumer: io.flow.internal.v0.enums.AiReviewConsumer;
|
|
13328
|
+
readonly items: io.flow.internal.v0.models.ReviewRequestItem[];
|
|
13329
|
+
}
|
|
13330
|
+
interface AiReviewFailedItem {
|
|
13331
|
+
readonly review_id: string;
|
|
13332
|
+
readonly organization_id: string;
|
|
13333
|
+
}
|
|
13334
|
+
interface AiReviewRequestFailed {
|
|
13335
|
+
readonly discriminator: 'ai_review_request_failed';
|
|
13336
|
+
readonly event_id: string;
|
|
13337
|
+
readonly timestamp: string;
|
|
13338
|
+
readonly consumer: io.flow.internal.v0.enums.AiReviewConsumer;
|
|
13339
|
+
readonly review_type: io.flow.internal.v0.enums.AiReviewType;
|
|
13340
|
+
readonly reason: io.flow.internal.v0.enums.AiReviewFailureReason;
|
|
13341
|
+
readonly items: io.flow.internal.v0.models.AiReviewFailedItem[];
|
|
13342
|
+
}
|
|
13343
|
+
interface AiReviewResult {
|
|
13344
|
+
readonly review_id: string;
|
|
13345
|
+
readonly organization_id: string;
|
|
13346
|
+
readonly consumer: io.flow.internal.v0.enums.AiReviewConsumer;
|
|
13347
|
+
readonly review_type: io.flow.internal.v0.enums.AiReviewType;
|
|
13348
|
+
readonly ai_output: io.flow.internal.v0.unions.AiOutput;
|
|
13349
|
+
readonly ai_model: string;
|
|
13350
|
+
readonly prompt_id: string;
|
|
13351
|
+
readonly prompt_version: string;
|
|
13352
|
+
}
|
|
13353
|
+
interface AiReviewResultDeleted {
|
|
13354
|
+
readonly discriminator: 'ai_review_result_deleted';
|
|
13355
|
+
readonly event_id: string;
|
|
13356
|
+
readonly timestamp: string;
|
|
13357
|
+
readonly id: string;
|
|
13358
|
+
readonly organization: string;
|
|
13359
|
+
}
|
|
13360
|
+
interface AiReviewResultUpserted {
|
|
13361
|
+
readonly discriminator: 'ai_review_result_upserted';
|
|
13362
|
+
readonly event_id: string;
|
|
13363
|
+
readonly timestamp: string;
|
|
13364
|
+
readonly ai_review_result: io.flow.internal.v0.models.AiReviewResult;
|
|
13365
|
+
}
|
|
13371
13366
|
interface AllItemsExport {
|
|
13372
13367
|
readonly discriminator: 'all_items_export';
|
|
13373
13368
|
readonly event_id: string;
|
|
@@ -14510,7 +14505,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14510
14505
|
readonly order_updated_at?: string;
|
|
14511
14506
|
readonly order_edit_summary?: io.flow.internal.v0.models.OrderEditSummary;
|
|
14512
14507
|
readonly payment_source?: io.flow.internal.v0.enums.OrderPaymentSourceType;
|
|
14513
|
-
readonly external_order_summary?: io.flow.
|
|
14508
|
+
readonly external_order_summary?: io.flow.internal.v0.models.ExternalOrderSummary;
|
|
14514
14509
|
}
|
|
14515
14510
|
interface ChannelOrderAcceptanceDeleted {
|
|
14516
14511
|
readonly discriminator: 'channel_order_acceptance_deleted';
|
|
@@ -14580,6 +14575,25 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14580
14575
|
readonly channel_id: string;
|
|
14581
14576
|
readonly channel_order_summary: io.flow.internal.v0.models.ChannelOrderSummary;
|
|
14582
14577
|
}
|
|
14578
|
+
interface ChannelOrderTaxAndDutyInclusivitySetting {
|
|
14579
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
14580
|
+
readonly order_number: string;
|
|
14581
|
+
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
14582
|
+
readonly tax_and_duty_inclusivity_setting: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
|
|
14583
|
+
}
|
|
14584
|
+
interface ChannelOrderTaxAndDutyInclusivitySettingDeleted {
|
|
14585
|
+
readonly discriminator: 'channel_order_tax_and_duty_inclusivity_setting_deleted';
|
|
14586
|
+
readonly event_id: string;
|
|
14587
|
+
readonly timestamp: string;
|
|
14588
|
+
readonly organization: string;
|
|
14589
|
+
readonly id: string;
|
|
14590
|
+
}
|
|
14591
|
+
interface ChannelOrderTaxAndDutyInclusivitySettingUpserted {
|
|
14592
|
+
readonly discriminator: 'channel_order_tax_and_duty_inclusivity_setting_upserted';
|
|
14593
|
+
readonly event_id: string;
|
|
14594
|
+
readonly timestamp: string;
|
|
14595
|
+
readonly channel_order_tax_and_duty_inclusivity_setting: io.flow.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySetting;
|
|
14596
|
+
}
|
|
14583
14597
|
interface ChannelOrganizationDomains {
|
|
14584
14598
|
readonly internal: string;
|
|
14585
14599
|
readonly external: string;
|
|
@@ -15577,6 +15591,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15577
15591
|
readonly error: string;
|
|
15578
15592
|
readonly destination: io.flow.common.v0.models.Address;
|
|
15579
15593
|
}
|
|
15594
|
+
interface DgClassAssessment {
|
|
15595
|
+
readonly dg_class: string;
|
|
15596
|
+
readonly decision: io.flow.internal.v0.enums.PvDecision;
|
|
15597
|
+
readonly confidence: number;
|
|
15598
|
+
readonly reasoning: string;
|
|
15599
|
+
}
|
|
15600
|
+
interface DgReviewContext {
|
|
15601
|
+
readonly discriminator: 'dg_review_context';
|
|
15602
|
+
readonly organization_id: string;
|
|
15603
|
+
readonly item_name: string;
|
|
15604
|
+
readonly item_description?: string;
|
|
15605
|
+
readonly image_url?: string;
|
|
15606
|
+
readonly hs_code?: string;
|
|
15607
|
+
readonly categories?: string;
|
|
15608
|
+
readonly price?: string;
|
|
15609
|
+
}
|
|
15610
|
+
interface DgReviewOutput {
|
|
15611
|
+
readonly discriminator: 'dg_review_output';
|
|
15612
|
+
readonly assessments: io.flow.internal.v0.models.DgClassAssessment[];
|
|
15613
|
+
}
|
|
15580
15614
|
interface Dhl {
|
|
15581
15615
|
readonly discriminator: 'dhl';
|
|
15582
15616
|
readonly export_account_number: string;
|
|
@@ -16228,6 +16262,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16228
16262
|
readonly carrier_tracking_number?: string;
|
|
16229
16263
|
readonly fulfilled_via_replacement_order?: boolean;
|
|
16230
16264
|
}
|
|
16265
|
+
interface ExternalOrderSummary {
|
|
16266
|
+
readonly id: string;
|
|
16267
|
+
readonly edit_ids: string[];
|
|
16268
|
+
readonly created_at?: string;
|
|
16269
|
+
}
|
|
16231
16270
|
interface ExternalRatecardLink {
|
|
16232
16271
|
readonly external_ratecard_id: string;
|
|
16233
16272
|
readonly flow_ratecard_ids: string[];
|
|
@@ -16495,6 +16534,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16495
16534
|
readonly organization: string;
|
|
16496
16535
|
readonly flat_rate_label_reversal: io.flow.internal.v0.models.FlatRateLabelReversal;
|
|
16497
16536
|
}
|
|
16537
|
+
interface FlatRateLabelSubsidy {
|
|
16538
|
+
readonly id: string;
|
|
16539
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
16540
|
+
readonly organization_id: string;
|
|
16541
|
+
readonly order_number: string;
|
|
16542
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
16543
|
+
readonly tax: io.flow.common.v0.models.Money;
|
|
16544
|
+
}
|
|
16545
|
+
interface FlatRateLabelSubsidyDeleted {
|
|
16546
|
+
readonly discriminator: 'flat_rate_label_subsidy_deleted';
|
|
16547
|
+
readonly event_id: string;
|
|
16548
|
+
readonly timestamp: string;
|
|
16549
|
+
readonly organization: string;
|
|
16550
|
+
readonly id: string;
|
|
16551
|
+
}
|
|
16552
|
+
interface FlatRateLabelSubsidyUpserted {
|
|
16553
|
+
readonly discriminator: 'flat_rate_label_subsidy_upserted';
|
|
16554
|
+
readonly event_id: string;
|
|
16555
|
+
readonly timestamp: string;
|
|
16556
|
+
readonly organization: string;
|
|
16557
|
+
readonly flat_rate_label_subsidy: io.flow.internal.v0.models.FlatRateLabelSubsidy;
|
|
16558
|
+
}
|
|
16498
16559
|
interface FlatRateLabelTransaction {
|
|
16499
16560
|
readonly discriminator: 'flat_rate_label_transaction';
|
|
16500
16561
|
readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -17116,6 +17177,43 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17116
17177
|
readonly discriminator: 'google_tag_manager';
|
|
17117
17178
|
readonly tracker_id: string;
|
|
17118
17179
|
}
|
|
17180
|
+
interface GuaranteedShippingCalibratedOutput {
|
|
17181
|
+
readonly id: string;
|
|
17182
|
+
readonly organization_id: string;
|
|
17183
|
+
readonly channel_id: string;
|
|
17184
|
+
readonly destination_country: string;
|
|
17185
|
+
readonly coefficient: number;
|
|
17186
|
+
readonly flat_rates: io.flow.internal.v0.models.FlatRate[];
|
|
17187
|
+
readonly effective_at: string;
|
|
17188
|
+
readonly effective_until?: string;
|
|
17189
|
+
}
|
|
17190
|
+
interface GuaranteedShippingCalibratedOutputDeleted {
|
|
17191
|
+
readonly discriminator: 'guaranteed_shipping_calibrated_output_deleted';
|
|
17192
|
+
readonly event_id: string;
|
|
17193
|
+
readonly timestamp: string;
|
|
17194
|
+
readonly organization: string;
|
|
17195
|
+
readonly id: string;
|
|
17196
|
+
}
|
|
17197
|
+
interface GuaranteedShippingCalibratedOutputUpserted {
|
|
17198
|
+
readonly discriminator: 'guaranteed_shipping_calibrated_output_upserted';
|
|
17199
|
+
readonly event_id: string;
|
|
17200
|
+
readonly timestamp: string;
|
|
17201
|
+
readonly organization: string;
|
|
17202
|
+
readonly guaranteed_shipping_calibrated_output: io.flow.internal.v0.models.GuaranteedShippingCalibratedOutput;
|
|
17203
|
+
}
|
|
17204
|
+
interface GuaranteedShippingCalibration {
|
|
17205
|
+
readonly channel_id: string;
|
|
17206
|
+
readonly organization_id: string;
|
|
17207
|
+
readonly destination_country: string;
|
|
17208
|
+
}
|
|
17209
|
+
interface GuaranteedShippingCalibrationForm {
|
|
17210
|
+
readonly lanes: io.flow.internal.v0.models.GuaranteedShippingCalibrationLaneForm[];
|
|
17211
|
+
}
|
|
17212
|
+
interface GuaranteedShippingCalibrationLaneForm {
|
|
17213
|
+
readonly channel_id: string;
|
|
17214
|
+
readonly organization_id: string;
|
|
17215
|
+
readonly destination_country?: string;
|
|
17216
|
+
}
|
|
17119
17217
|
interface GuaranteedShippingPublishedOutput {
|
|
17120
17218
|
readonly id: string;
|
|
17121
17219
|
readonly organization_id: string;
|
|
@@ -17139,6 +17237,64 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17139
17237
|
readonly organization: string;
|
|
17140
17238
|
readonly guaranteed_shipping_published_output: io.flow.internal.v0.models.GuaranteedShippingPublishedOutput;
|
|
17141
17239
|
}
|
|
17240
|
+
interface GuaranteedShippingSettings {
|
|
17241
|
+
readonly coefficients_updated_at: number;
|
|
17242
|
+
readonly channel_id: string;
|
|
17243
|
+
readonly organization_id: string;
|
|
17244
|
+
readonly destination_country: string;
|
|
17245
|
+
readonly tax_and_duty_coefficient: number;
|
|
17246
|
+
readonly fees_coefficient: number;
|
|
17247
|
+
readonly merchant_subsidy: io.flow.common.v0.models.Money;
|
|
17248
|
+
readonly created_at: number;
|
|
17249
|
+
readonly guaranteed_pricing_enabled: boolean;
|
|
17250
|
+
readonly guaranteed_shipping_enabled: boolean;
|
|
17251
|
+
}
|
|
17252
|
+
interface GuaranteedShippingSettingsDeleted {
|
|
17253
|
+
readonly discriminator: 'guaranteed_shipping_settings_deleted';
|
|
17254
|
+
readonly event_id: string;
|
|
17255
|
+
readonly timestamp: string;
|
|
17256
|
+
readonly organization: string;
|
|
17257
|
+
readonly channel_id: string;
|
|
17258
|
+
readonly id: string;
|
|
17259
|
+
}
|
|
17260
|
+
interface GuaranteedShippingSettingsDestinationUpdate {
|
|
17261
|
+
readonly country: string;
|
|
17262
|
+
readonly updated_at: string;
|
|
17263
|
+
readonly tax_and_duty_coefficient: number;
|
|
17264
|
+
readonly fees_coefficient: number;
|
|
17265
|
+
readonly merchant_subsidy: io.flow.common.v0.models.Money;
|
|
17266
|
+
readonly guaranteed_pricing_enabled: boolean;
|
|
17267
|
+
readonly guaranteed_shipping_enabled: boolean;
|
|
17268
|
+
}
|
|
17269
|
+
interface GuaranteedShippingSettingsUpdate {
|
|
17270
|
+
readonly channel_id: string;
|
|
17271
|
+
readonly organization_id: string;
|
|
17272
|
+
readonly destination_updates: io.flow.internal.v0.models.GuaranteedShippingSettingsDestinationUpdate[];
|
|
17273
|
+
}
|
|
17274
|
+
interface GuaranteedShippingSettingsUpdateDeleted {
|
|
17275
|
+
readonly discriminator: 'guaranteed_shipping_settings_update_deleted';
|
|
17276
|
+
readonly event_id: string;
|
|
17277
|
+
readonly timestamp: string;
|
|
17278
|
+
readonly organization: string;
|
|
17279
|
+
readonly channel_id: string;
|
|
17280
|
+
readonly id: string;
|
|
17281
|
+
}
|
|
17282
|
+
interface GuaranteedShippingSettingsUpdateUpserted {
|
|
17283
|
+
readonly discriminator: 'guaranteed_shipping_settings_update_upserted';
|
|
17284
|
+
readonly event_id: string;
|
|
17285
|
+
readonly timestamp: string;
|
|
17286
|
+
readonly organization: string;
|
|
17287
|
+
readonly channel_id: string;
|
|
17288
|
+
readonly guaranteed_shipping_settings_update: io.flow.internal.v0.models.GuaranteedShippingSettingsUpdate;
|
|
17289
|
+
}
|
|
17290
|
+
interface GuaranteedShippingSettingsUpserted {
|
|
17291
|
+
readonly discriminator: 'guaranteed_shipping_settings_upserted';
|
|
17292
|
+
readonly event_id: string;
|
|
17293
|
+
readonly timestamp: string;
|
|
17294
|
+
readonly organization: string;
|
|
17295
|
+
readonly channel_id: string;
|
|
17296
|
+
readonly guaranteed_shipping_settings: io.flow.internal.v0.models.GuaranteedShippingSettings;
|
|
17297
|
+
}
|
|
17142
17298
|
interface HarmonizationClassificationStatisticsData {
|
|
17143
17299
|
readonly statistics: io.flow.internal.v0.models.ClassificationStatistics;
|
|
17144
17300
|
}
|
|
@@ -17485,6 +17641,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17485
17641
|
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
17486
17642
|
readonly created_at: string;
|
|
17487
17643
|
}
|
|
17644
|
+
interface Issuer {
|
|
17645
|
+
readonly id: string;
|
|
17646
|
+
readonly iin: string;
|
|
17647
|
+
readonly name?: string;
|
|
17648
|
+
readonly country?: string;
|
|
17649
|
+
readonly brand?: string;
|
|
17650
|
+
readonly type?: string;
|
|
17651
|
+
readonly category?: string;
|
|
17652
|
+
readonly website?: string;
|
|
17653
|
+
readonly phone?: string;
|
|
17654
|
+
}
|
|
17655
|
+
interface IssuerDeleted {
|
|
17656
|
+
readonly discriminator: 'issuer_deleted';
|
|
17657
|
+
readonly event_id: string;
|
|
17658
|
+
readonly timestamp: string;
|
|
17659
|
+
readonly issuer: io.flow.internal.v0.models.Issuer;
|
|
17660
|
+
}
|
|
17661
|
+
interface IssuerUpserted {
|
|
17662
|
+
readonly discriminator: 'issuer_upserted';
|
|
17663
|
+
readonly event_id: string;
|
|
17664
|
+
readonly timestamp: string;
|
|
17665
|
+
readonly issuer: io.flow.internal.v0.models.Issuer;
|
|
17666
|
+
}
|
|
17488
17667
|
interface ItemClassification {
|
|
17489
17668
|
readonly id?: string;
|
|
17490
17669
|
readonly organization: string;
|
|
@@ -17579,6 +17758,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17579
17758
|
readonly tariffs?: Record<string, io.flow.internal.v0.models.TariffCodeDuty>;
|
|
17580
17759
|
readonly decision_source?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
17581
17760
|
readonly classification_scope?: io.flow.internal.v0.enums.ClassificationScope;
|
|
17761
|
+
readonly classification_resource_id?: string;
|
|
17582
17762
|
readonly taxonomy_category_classification_alignment?: io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;
|
|
17583
17763
|
readonly created_at?: string;
|
|
17584
17764
|
readonly updated_at?: string;
|
|
@@ -17596,6 +17776,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17596
17776
|
readonly timestamp: string;
|
|
17597
17777
|
readonly item_harmonization: io.flow.internal.v0.models.ItemHarmonization;
|
|
17598
17778
|
}
|
|
17779
|
+
interface ItemHs6Override {
|
|
17780
|
+
readonly item_number: string;
|
|
17781
|
+
readonly hs6: string;
|
|
17782
|
+
}
|
|
17783
|
+
interface ItemHs6OverrideForm {
|
|
17784
|
+
readonly item_number: string;
|
|
17785
|
+
readonly hs6: string;
|
|
17786
|
+
readonly hs6_description?: string;
|
|
17787
|
+
}
|
|
17788
|
+
interface ItemHs6OverrideRejection {
|
|
17789
|
+
readonly item_number: string;
|
|
17790
|
+
readonly message: string;
|
|
17791
|
+
}
|
|
17792
|
+
interface ItemHs6OverrideResult {
|
|
17793
|
+
readonly applied: io.flow.internal.v0.models.ItemHs6Override[];
|
|
17794
|
+
readonly rejected: io.flow.internal.v0.models.ItemHs6OverrideRejection[];
|
|
17795
|
+
}
|
|
17796
|
+
interface ItemHs6OverridesForm {
|
|
17797
|
+
readonly items: io.flow.internal.v0.models.ItemHs6OverrideForm[];
|
|
17798
|
+
}
|
|
17599
17799
|
interface ItemQueryResponse {
|
|
17600
17800
|
readonly q: string;
|
|
17601
17801
|
readonly items: io.flow.catalog.v0.models.Item[];
|
|
@@ -17681,6 +17881,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17681
17881
|
interface ItemValuesForm {
|
|
17682
17882
|
readonly values: string[];
|
|
17683
17883
|
}
|
|
17884
|
+
interface JohnStrongItem {
|
|
17885
|
+
readonly id: string;
|
|
17886
|
+
readonly number: string;
|
|
17887
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
17888
|
+
readonly description?: string;
|
|
17889
|
+
readonly type: io.flow.internal.v0.enums.JohnStrongItemType;
|
|
17890
|
+
readonly added_on: string;
|
|
17891
|
+
}
|
|
17892
|
+
interface JohnStrongItemForm {
|
|
17893
|
+
readonly number: string;
|
|
17894
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
17895
|
+
readonly description?: string;
|
|
17896
|
+
readonly type: io.flow.internal.v0.enums.JohnStrongItemType;
|
|
17897
|
+
readonly added_on: string;
|
|
17898
|
+
}
|
|
17684
17899
|
interface Journal {
|
|
17685
17900
|
readonly name: string;
|
|
17686
17901
|
readonly queued: number;
|
|
@@ -18757,6 +18972,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18757
18972
|
readonly organization_id: string;
|
|
18758
18973
|
readonly order_number: string;
|
|
18759
18974
|
readonly price: io.flow.common.v0.models.PriceWithBase;
|
|
18975
|
+
readonly refunded_at?: string;
|
|
18760
18976
|
}
|
|
18761
18977
|
interface OrderRefundTransactionDeleted {
|
|
18762
18978
|
readonly discriminator: 'order_refund_transaction_deleted';
|
|
@@ -18798,6 +19014,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18798
19014
|
readonly from_service_id: string;
|
|
18799
19015
|
readonly to_service_id: string;
|
|
18800
19016
|
}
|
|
19017
|
+
interface OrderSettings {
|
|
19018
|
+
readonly tax_and_duty_inclusivity_setting?: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
|
|
19019
|
+
}
|
|
18801
19020
|
interface OrderSummary {
|
|
18802
19021
|
readonly id: string;
|
|
18803
19022
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
@@ -19373,6 +19592,32 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19373
19592
|
readonly freight: number;
|
|
19374
19593
|
readonly insurance: number;
|
|
19375
19594
|
}
|
|
19595
|
+
interface OutboundShippingCost {
|
|
19596
|
+
readonly channel_id: string;
|
|
19597
|
+
readonly organization_id: string;
|
|
19598
|
+
readonly destination_country: string;
|
|
19599
|
+
readonly carrier_service_id: string;
|
|
19600
|
+
readonly cost: io.flow.common.v0.models.Money;
|
|
19601
|
+
readonly updated_at: number;
|
|
19602
|
+
readonly run_id: string;
|
|
19603
|
+
readonly model_version: string;
|
|
19604
|
+
}
|
|
19605
|
+
interface OutboundShippingCostDeleted {
|
|
19606
|
+
readonly discriminator: 'outbound_shipping_cost_deleted';
|
|
19607
|
+
readonly event_id: string;
|
|
19608
|
+
readonly timestamp: string;
|
|
19609
|
+
readonly organization: string;
|
|
19610
|
+
readonly channel_id: string;
|
|
19611
|
+
readonly id: string;
|
|
19612
|
+
}
|
|
19613
|
+
interface OutboundShippingCostUpserted {
|
|
19614
|
+
readonly discriminator: 'outbound_shipping_cost_upserted';
|
|
19615
|
+
readonly event_id: string;
|
|
19616
|
+
readonly timestamp: string;
|
|
19617
|
+
readonly organization: string;
|
|
19618
|
+
readonly channel_id: string;
|
|
19619
|
+
readonly outbound_shipping_cost: io.flow.internal.v0.models.OutboundShippingCost;
|
|
19620
|
+
}
|
|
19376
19621
|
interface Partner {
|
|
19377
19622
|
readonly id: string;
|
|
19378
19623
|
readonly name: string;
|
|
@@ -19812,6 +20057,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19812
20057
|
readonly timestamp: string;
|
|
19813
20058
|
readonly refund: io.flow.internal.v0.models.PaypalInternalRefund;
|
|
19814
20059
|
}
|
|
20060
|
+
interface PcReviewContext {
|
|
20061
|
+
readonly discriminator: 'pc_review_context';
|
|
20062
|
+
readonly organization_id: string;
|
|
20063
|
+
readonly item_name: string;
|
|
20064
|
+
readonly item_description?: string;
|
|
20065
|
+
readonly categories?: string;
|
|
20066
|
+
readonly taxonomy_category?: string;
|
|
20067
|
+
readonly image_url?: string;
|
|
20068
|
+
}
|
|
20069
|
+
interface PcReviewOutput {
|
|
20070
|
+
readonly discriminator: 'pc_review_output';
|
|
20071
|
+
readonly hs_code: string;
|
|
20072
|
+
readonly alternates: string[];
|
|
20073
|
+
readonly confidence: number;
|
|
20074
|
+
readonly reasoning: string;
|
|
20075
|
+
}
|
|
19815
20076
|
interface PendingBankPayment {
|
|
19816
20077
|
readonly id: string;
|
|
19817
20078
|
readonly account: io.flow.internal.v0.models.AccountSummary;
|
|
@@ -19944,6 +20205,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19944
20205
|
readonly catalog_size: number;
|
|
19945
20206
|
readonly processed_product_count: number;
|
|
19946
20207
|
readonly last_request: string;
|
|
20208
|
+
readonly screening_mode?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
19947
20209
|
readonly updated_by_user_id: string;
|
|
19948
20210
|
}
|
|
19949
20211
|
interface PreonboardingMerchantDeleted {
|
|
@@ -20350,6 +20612,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20350
20612
|
readonly contact: io.flow.common.v0.models.Contact;
|
|
20351
20613
|
readonly location: io.flow.common.v0.models.Address;
|
|
20352
20614
|
}
|
|
20615
|
+
interface PvReviewContext {
|
|
20616
|
+
readonly discriminator: 'pv_review_context';
|
|
20617
|
+
readonly organization_id: string;
|
|
20618
|
+
readonly item_name: string;
|
|
20619
|
+
readonly item_description?: string;
|
|
20620
|
+
readonly image_url?: string;
|
|
20621
|
+
readonly rule_name: string;
|
|
20622
|
+
readonly rule_reason_code: string;
|
|
20623
|
+
readonly hs_code?: string;
|
|
20624
|
+
readonly categories?: string;
|
|
20625
|
+
readonly price?: string;
|
|
20626
|
+
readonly matching_positive_keywords: string[];
|
|
20627
|
+
readonly matching_negative_keywords: string[];
|
|
20628
|
+
}
|
|
20629
|
+
interface PvReviewOutput {
|
|
20630
|
+
readonly discriminator: 'pv_review_output';
|
|
20631
|
+
readonly decision: io.flow.internal.v0.enums.PvDecision;
|
|
20632
|
+
readonly confidence: number;
|
|
20633
|
+
readonly reasoning: string;
|
|
20634
|
+
}
|
|
20353
20635
|
interface Quote {
|
|
20354
20636
|
readonly id: string;
|
|
20355
20637
|
readonly base: string;
|
|
@@ -20682,6 +20964,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20682
20964
|
readonly discriminator: 'rex';
|
|
20683
20965
|
readonly number: string;
|
|
20684
20966
|
}
|
|
20967
|
+
interface RemediateTaxDutyMetadata {
|
|
20968
|
+
readonly discriminator: 'remediate_tax_duty_metadata';
|
|
20969
|
+
readonly arm: io.flow.internal.v0.enums.RemediateTaxDutyArm;
|
|
20970
|
+
}
|
|
20685
20971
|
interface RemittanceResponsibility {
|
|
20686
20972
|
readonly tax: io.flow.internal.v0.enums.ResponsibleParty;
|
|
20687
20973
|
readonly duty: io.flow.internal.v0.enums.ResponsibleParty;
|
|
@@ -21097,6 +21383,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21097
21383
|
readonly hs_code?: string;
|
|
21098
21384
|
readonly hs_code_source?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
21099
21385
|
readonly classification_scope?: io.flow.internal.v0.enums.ClassificationScope;
|
|
21386
|
+
readonly classification_resource_id?: string;
|
|
21100
21387
|
readonly description: string;
|
|
21101
21388
|
readonly category?: string;
|
|
21102
21389
|
readonly categories: string[];
|
|
@@ -21213,6 +21500,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21213
21500
|
readonly hs_code?: string;
|
|
21214
21501
|
readonly hs_code_source?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
21215
21502
|
readonly classification_scope?: io.flow.internal.v0.enums.ClassificationScope;
|
|
21503
|
+
readonly classification_resource_id?: string;
|
|
21216
21504
|
readonly url?: string;
|
|
21217
21505
|
readonly reviews: io.flow.internal.v0.models.RestrictionItemReview[];
|
|
21218
21506
|
readonly created_at: string;
|
|
@@ -21258,6 +21546,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21258
21546
|
readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
|
|
21259
21547
|
readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
21260
21548
|
readonly activation_status: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
21549
|
+
readonly evaluation_mode: io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
|
|
21261
21550
|
}
|
|
21262
21551
|
interface RestrictionRuleDecisionForm {
|
|
21263
21552
|
readonly rule_id: string;
|
|
@@ -21312,6 +21601,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21312
21601
|
readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
|
|
21313
21602
|
readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
21314
21603
|
readonly activation_status: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
21604
|
+
readonly evaluation_mode: io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
|
|
21315
21605
|
}
|
|
21316
21606
|
interface RestrictionRuleLaneExemption {
|
|
21317
21607
|
readonly id: string;
|
|
@@ -21578,6 +21868,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21578
21868
|
readonly organization: string;
|
|
21579
21869
|
readonly revenue_record: io.flow.internal.v0.models.RevenueRecord;
|
|
21580
21870
|
}
|
|
21871
|
+
interface ReviewRequestItem {
|
|
21872
|
+
readonly review_type: io.flow.internal.v0.enums.AiReviewType;
|
|
21873
|
+
readonly review_id: string;
|
|
21874
|
+
readonly context: io.flow.internal.v0.unions.AiReviewContext;
|
|
21875
|
+
}
|
|
21581
21876
|
interface RoutingAccount {
|
|
21582
21877
|
readonly discriminator: 'routing_account';
|
|
21583
21878
|
readonly processor: io.flow.internal.v0.enums.Processor;
|
|
@@ -21727,6 +22022,38 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21727
22022
|
readonly current_error?: io.flow.sellability.v0.models.SellabilityError[];
|
|
21728
22023
|
readonly merchant_error?: io.flow.sellability.v0.models.SellabilityError[];
|
|
21729
22024
|
}
|
|
22025
|
+
interface SellabilityPendingVerification {
|
|
22026
|
+
readonly id: string;
|
|
22027
|
+
readonly merchant_id: string;
|
|
22028
|
+
readonly product_id: string;
|
|
22029
|
+
readonly channel: string;
|
|
22030
|
+
readonly request_id: string;
|
|
22031
|
+
readonly name: string;
|
|
22032
|
+
readonly description: string;
|
|
22033
|
+
readonly taxonomy_category?: string;
|
|
22034
|
+
readonly hs6_code?: string;
|
|
22035
|
+
readonly price?: string;
|
|
22036
|
+
readonly rule_id: string;
|
|
22037
|
+
readonly reason_code: string;
|
|
22038
|
+
readonly matching_keywords?: string;
|
|
22039
|
+
readonly status: string;
|
|
22040
|
+
readonly agent_decision?: string;
|
|
22041
|
+
readonly agent_reasoning?: string;
|
|
22042
|
+
readonly created_at: string;
|
|
22043
|
+
readonly updated_at: string;
|
|
22044
|
+
}
|
|
22045
|
+
interface SellabilityPendingVerificationDeleted {
|
|
22046
|
+
readonly discriminator: 'sellability_pending_verification_deleted';
|
|
22047
|
+
readonly event_id: string;
|
|
22048
|
+
readonly timestamp: string;
|
|
22049
|
+
readonly id: string;
|
|
22050
|
+
}
|
|
22051
|
+
interface SellabilityPendingVerificationUpserted {
|
|
22052
|
+
readonly discriminator: 'sellability_pending_verification_upserted';
|
|
22053
|
+
readonly event_id: string;
|
|
22054
|
+
readonly timestamp: string;
|
|
22055
|
+
readonly sellability_pending_verification: io.flow.internal.v0.models.SellabilityPendingVerification;
|
|
22056
|
+
}
|
|
21730
22057
|
interface ServiceFees {
|
|
21731
22058
|
readonly ratecard: io.flow.internal.v0.models.RatecardInternalSummary;
|
|
21732
22059
|
readonly service_fees: io.flow.ratecard.v0.unions.ServiceFee[];
|
|
@@ -23292,6 +23619,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23292
23619
|
interface TaxonomyCategoryHs6Ref {
|
|
23293
23620
|
readonly id: string;
|
|
23294
23621
|
readonly taxonomy_category: string;
|
|
23622
|
+
readonly taxonomy_category_id?: string;
|
|
23295
23623
|
readonly hs6: string;
|
|
23296
23624
|
readonly updated_by_user_id: string;
|
|
23297
23625
|
}
|
|
@@ -23748,6 +24076,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23748
24076
|
interface UnphrasedProductsExport {
|
|
23749
24077
|
readonly message: string;
|
|
23750
24078
|
}
|
|
24079
|
+
interface UnserviceableTaxonomyCategory {
|
|
24080
|
+
readonly id: string;
|
|
24081
|
+
readonly taxonomy_category: string;
|
|
24082
|
+
readonly taxonomy_category_id?: string;
|
|
24083
|
+
readonly updated_by_user_id: string;
|
|
24084
|
+
}
|
|
24085
|
+
interface UnserviceableTaxonomyCategoryDeleted {
|
|
24086
|
+
readonly discriminator: 'unserviceable_taxonomy_category_deleted';
|
|
24087
|
+
readonly event_id: string;
|
|
24088
|
+
readonly timestamp: string;
|
|
24089
|
+
readonly id: string;
|
|
24090
|
+
}
|
|
24091
|
+
interface UnserviceableTaxonomyCategoryUpserted {
|
|
24092
|
+
readonly discriminator: 'unserviceable_taxonomy_category_upserted';
|
|
24093
|
+
readonly event_id: string;
|
|
24094
|
+
readonly timestamp: string;
|
|
24095
|
+
readonly unserviceable_taxonomy_category: io.flow.internal.v0.models.UnserviceableTaxonomyCategory;
|
|
24096
|
+
}
|
|
23751
24097
|
interface Ups {
|
|
23752
24098
|
readonly discriminator: 'ups';
|
|
23753
24099
|
readonly client_id: string;
|
|
@@ -23851,6 +24197,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23851
24197
|
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
23852
24198
|
readonly package_dimensions_source: io.flow.label.v0.enums.PackageDimensionsSource;
|
|
23853
24199
|
readonly shipping_date_time?: string;
|
|
24200
|
+
readonly delivery_window_days_from?: number;
|
|
24201
|
+
readonly delivery_window_days_to?: number;
|
|
23854
24202
|
}
|
|
23855
24203
|
interface ViesResult {
|
|
23856
24204
|
readonly country: string;
|
|
@@ -23896,6 +24244,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23896
24244
|
declare namespace io.flow.internal.v0.unions {
|
|
23897
24245
|
type AdjustmentAmount = io.flow.internal.v0.models.AdjustmentAmountPercentage | io.flow.internal.v0.models.AdjustmentAmountFixed;
|
|
23898
24246
|
type AdjustmentDetails = io.flow.internal.v0.models.AdjustmentAmountPercentage | io.flow.internal.v0.models.AdjustmentAmountFixed | io.flow.internal.v0.models.AdjustmentDetailsProcessingTransaction;
|
|
24247
|
+
type AiOutput = io.flow.internal.v0.models.PvReviewOutput | io.flow.internal.v0.models.DgReviewOutput | io.flow.internal.v0.models.PcReviewOutput;
|
|
24248
|
+
type AiReviewContext = io.flow.internal.v0.models.PvReviewContext | io.flow.internal.v0.models.DgReviewContext | io.flow.internal.v0.models.PcReviewContext;
|
|
23899
24249
|
type AuthorizationPayload = io.flow.internal.v0.models.ApplePayAuthorizationPayload | io.flow.internal.v0.models.PaypalAuthorizationPayload;
|
|
23900
24250
|
type AuthorizedOrderCharge = io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
23901
24251
|
type CalculatorStamp = io.flow.internal.v0.models.MessageStamp | io.flow.internal.v0.models.CalculationStep;
|
|
@@ -23921,7 +24271,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23921
24271
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
23922
24272
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
|
|
23923
24273
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
23924
|
-
type Event = io.flow.internal.v0.models.AdaptivePricingCoefficientUpserted | io.flow.internal.v0.models.AdaptivePricingCoefficientDeleted | io.flow.internal.v0.models.AdaptivePricingUpdateUpserted | io.flow.internal.v0.models.AdaptivePricingUpdateDeleted | io.flow.internal.v0.models.AdaptiveShippingRateUpserted | io.flow.internal.v0.models.AdaptiveShippingRateDeleted | io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.FulfillmentStatusUpserted | io.flow.internal.v0.models.FulfillmentStatusDeleted | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.SalesPaymentRecordUpserted | io.flow.internal.v0.models.SalesPaymentRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.ChannelShopStatisticsUpserted | io.flow.internal.v0.models.ChannelShopStatisticsDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.ShippingCostUpserted | io.flow.internal.v0.models.ShippingCostDeleted | io.flow.internal.v0.models.MorCostUpserted | io.flow.internal.v0.models.MorCostDeleted | io.flow.internal.v0.models.FlatRateLabelReversalUpserted | io.flow.internal.v0.models.FlatRateLabelReversalDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.GuaranteedShippingPublishedOutputUpserted | io.flow.internal.v0.models.GuaranteedShippingPublishedOutputDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.MerchantOverrideUpserted | io.flow.internal.v0.models.MerchantOverrideDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelCreationJobUpserted | io.flow.internal.v0.models.LabelCreationJobDeleted | io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted | io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.PartnerRequestUpserted | io.flow.internal.v0.models.PartnerRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.OrderRefundTransactionUpserted | io.flow.internal.v0.models.OrderRefundTransactionDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.PreonboardingSellabilityResultInserted | io.flow.internal.v0.models.PreonboardingSellabilityResultUpdated | io.flow.internal.v0.models.PreonboardingSellabilityResultDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.ProductRestrictionStateInserted | io.flow.internal.v0.models.ProductRestrictionStateUpdated | io.flow.internal.v0.models.ProductRestrictionStateDeleted | io.flow.internal.v0.models.ProductSellabilityResultInserted | io.flow.internal.v0.models.ProductSellabilityResultUpdated | io.flow.internal.v0.models.ProductSellabilityResultDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvUpserted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvDeleted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsUpserted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted | io.flow.internal.v0.models.PreonboardingMerchantUpserted | io.flow.internal.v0.models.PreonboardingMerchantDeleted | io.flow.internal.v0.models.ShopifyHs10CodesUpserted | io.flow.internal.v0.models.ShopifyHs10CodesDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.internal.v0.models.ShopifyOrderTransactionUpserted | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted | io.flow.internal.v0.models.ShopifyTestOrderUpserted | io.flow.internal.v0.models.ShopifyTestOrderDeleted | io.flow.internal.v0.models.ShopifyMerchantMarketsUpserted | io.flow.internal.v0.models.ShopifyMerchantMarketsDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.ShopifyMerchantPlanUpserted | io.flow.internal.v0.models.ShopifyMerchantPlanDeleted | io.flow.internal.v0.models.ShopifyDisputeUpserted | io.flow.internal.v0.models.ShopifyDisputeDeleted | io.flow.internal.v0.models.ShopifyReportFileUpserted | io.flow.internal.v0.models.ShopifyReportFileDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.B2BTaxTransactionUpserted | io.flow.internal.v0.models.B2BTaxTransactionDeleted | io.flow.internal.v0.models.GabrielItemUpserted | io.flow.internal.v0.models.GabrielItemDeleted | io.flow.internal.v0.models.ChenglinItemUpserted | io.flow.internal.v0.models.ChenglinItemDeleted | io.flow.internal.v0.models.BojanaItemUpserted | io.flow.internal.v0.models.BojanaItemDeleted | io.flow.internal.v0.models.RaveenaItemUpserted | io.flow.internal.v0.models.RaveenaItemDeleted | io.flow.internal.v0.models.MaheshItemUpserted | io.flow.internal.v0.models.MaheshItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
24274
|
+
type Event = io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.AiReviewBatchSubmitted | io.flow.internal.v0.models.AiReviewResultUpserted | io.flow.internal.v0.models.AiReviewResultDeleted | io.flow.internal.v0.models.AiReviewRequestFailed | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.FulfillmentStatusUpserted | io.flow.internal.v0.models.FulfillmentStatusDeleted | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.SalesPaymentRecordUpserted | io.flow.internal.v0.models.SalesPaymentRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.ChannelShopStatisticsUpserted | io.flow.internal.v0.models.ChannelShopStatisticsDeleted | io.flow.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.ShippingCostUpserted | io.flow.internal.v0.models.ShippingCostDeleted | io.flow.internal.v0.models.MorCostUpserted | io.flow.internal.v0.models.MorCostDeleted | io.flow.internal.v0.models.FlatRateLabelReversalUpserted | io.flow.internal.v0.models.FlatRateLabelReversalDeleted | io.flow.internal.v0.models.FlatRateLabelSubsidyUpserted | io.flow.internal.v0.models.FlatRateLabelSubsidyDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputUpserted | io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputDeleted | io.flow.internal.v0.models.OutboundShippingCostUpserted | io.flow.internal.v0.models.OutboundShippingCostDeleted | io.flow.internal.v0.models.GuaranteedShippingPublishedOutputUpserted | io.flow.internal.v0.models.GuaranteedShippingPublishedOutputDeleted | io.flow.internal.v0.models.GuaranteedShippingSettingsUpserted | io.flow.internal.v0.models.GuaranteedShippingSettingsDeleted | io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateUpserted | io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.MerchantOverrideUpserted | io.flow.internal.v0.models.MerchantOverrideDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelCreationJobUpserted | io.flow.internal.v0.models.LabelCreationJobDeleted | io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted | io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.PartnerRequestUpserted | io.flow.internal.v0.models.PartnerRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.OrderRefundTransactionUpserted | io.flow.internal.v0.models.OrderRefundTransactionDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.PreonboardingSellabilityResultInserted | io.flow.internal.v0.models.PreonboardingSellabilityResultUpdated | io.flow.internal.v0.models.PreonboardingSellabilityResultDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.ProductRestrictionStateInserted | io.flow.internal.v0.models.ProductRestrictionStateUpdated | io.flow.internal.v0.models.ProductRestrictionStateDeleted | io.flow.internal.v0.models.ProductSellabilityResultInserted | io.flow.internal.v0.models.ProductSellabilityResultUpdated | io.flow.internal.v0.models.ProductSellabilityResultDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvUpserted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvDeleted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsUpserted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted | io.flow.internal.v0.models.PreonboardingMerchantUpserted | io.flow.internal.v0.models.PreonboardingMerchantDeleted | io.flow.internal.v0.models.UnserviceableTaxonomyCategoryUpserted | io.flow.internal.v0.models.UnserviceableTaxonomyCategoryDeleted | io.flow.internal.v0.models.SellabilityPendingVerificationUpserted | io.flow.internal.v0.models.SellabilityPendingVerificationDeleted | io.flow.internal.v0.models.ShopifyHs10CodesUpserted | io.flow.internal.v0.models.ShopifyHs10CodesDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.internal.v0.models.ShopifyOrderTransactionUpserted | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted | io.flow.internal.v0.models.ShopifyTestOrderUpserted | io.flow.internal.v0.models.ShopifyTestOrderDeleted | io.flow.internal.v0.models.ShopifyMerchantMarketsUpserted | io.flow.internal.v0.models.ShopifyMerchantMarketsDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.ShopifyMerchantPlanUpserted | io.flow.internal.v0.models.ShopifyMerchantPlanDeleted | io.flow.internal.v0.models.ShopifyDisputeUpserted | io.flow.internal.v0.models.ShopifyDisputeDeleted | io.flow.internal.v0.models.ShopifyReportFileUpserted | io.flow.internal.v0.models.ShopifyReportFileDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.B2BTaxTransactionUpserted | io.flow.internal.v0.models.B2BTaxTransactionDeleted | io.flow.internal.v0.models.GabrielItemUpserted | io.flow.internal.v0.models.GabrielItemDeleted | io.flow.internal.v0.models.ChenglinItemUpserted | io.flow.internal.v0.models.ChenglinItemDeleted | io.flow.internal.v0.models.BojanaItemUpserted | io.flow.internal.v0.models.BojanaItemDeleted | io.flow.internal.v0.models.RaveenaItemUpserted | io.flow.internal.v0.models.RaveenaItemDeleted | io.flow.internal.v0.models.MaheshItemUpserted | io.flow.internal.v0.models.MaheshItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
23925
24275
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
23926
24276
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
23927
24277
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -23964,7 +24314,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23964
24314
|
type TariffEligibilityData = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData;
|
|
23965
24315
|
type TariffEligibilityForm = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
|
|
23966
24316
|
type TaskData = io.flow.internal.v0.models.TaskProcessQueuedEvent | io.flow.internal.v0.models.TaskSummarizeCode | io.flow.internal.v0.models.TaskItemUpserted | io.flow.internal.v0.models.TaskImport;
|
|
23967
|
-
type TaskMetadata = io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingPendingOrderMetadata | io.flow.internal.v0.models.TaxDutyReasonCodeMetadata | io.flow.internal.v0.models.AccountingReturnMetadata | io.flow.internal.v0.models.NonL4LTaxDutyFxFeeMetadata | io.flow.internal.v0.models.ChannelTransactionTriggerMetadata | io.flow.internal.v0.models.B2BFeeMorTaxTriggerMetadata | io.flow.internal.v0.models.B2BFeeShippingTaxTriggerMetadata;
|
|
24317
|
+
type TaskMetadata = io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingPendingOrderMetadata | io.flow.internal.v0.models.TaxDutyReasonCodeMetadata | io.flow.internal.v0.models.AccountingReturnMetadata | io.flow.internal.v0.models.NonL4LTaxDutyFxFeeMetadata | io.flow.internal.v0.models.ChannelTransactionTriggerMetadata | io.flow.internal.v0.models.B2BFeeMorTaxTriggerMetadata | io.flow.internal.v0.models.B2BFeeShippingTaxTriggerMetadata | io.flow.internal.v0.models.RemediateTaxDutyMetadata;
|
|
23968
24318
|
type TaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
23969
24319
|
type Tracker = io.flow.internal.v0.models.GoogleAnalytics | io.flow.internal.v0.models.GoogleGlobalSiteTag | io.flow.internal.v0.models.GoogleTagManager | io.flow.internal.v0.models.FacebookPixel | io.flow.internal.v0.models.SnapchatPixel;
|
|
23970
24320
|
type Transaction = io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction | io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction | io.flow.internal.v0.models.GeRevenueShareTransaction | io.flow.internal.v0.models.MerchantFeeTransaction | io.flow.internal.v0.models.FlatRateLabelTransaction;
|
|
@@ -24006,20 +24356,10 @@ export declare type AccountUpsertedV2 = io.flow.internal.v0.models.AccountUpsert
|
|
|
24006
24356
|
export declare type AccountingPendingOrderMetadata = io.flow.internal.v0.models.AccountingPendingOrderMetadata;
|
|
24007
24357
|
export declare type AccountingReturnMetadata = io.flow.internal.v0.models.AccountingReturnMetadata;
|
|
24008
24358
|
export declare type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
|
|
24009
|
-
export declare type AdaptivePricingCoefficient = io.flow.internal.v0.models.AdaptivePricingCoefficient;
|
|
24010
|
-
export declare type AdaptivePricingCoefficientDeleted = io.flow.internal.v0.models.AdaptivePricingCoefficientDeleted;
|
|
24011
|
-
export declare type AdaptivePricingCoefficientUpserted = io.flow.internal.v0.models.AdaptivePricingCoefficientUpserted;
|
|
24012
|
-
export declare type AdaptivePricingDestinationUpdate = io.flow.internal.v0.models.AdaptivePricingDestinationUpdate;
|
|
24013
|
-
export declare type AdaptivePricingUpdate = io.flow.internal.v0.models.AdaptivePricingUpdate;
|
|
24014
|
-
export declare type AdaptivePricingUpdateDeleted = io.flow.internal.v0.models.AdaptivePricingUpdateDeleted;
|
|
24015
|
-
export declare type AdaptivePricingUpdateUpserted = io.flow.internal.v0.models.AdaptivePricingUpdateUpserted;
|
|
24016
24359
|
export declare type AdaptiveShippingOrderGuarantee = io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
24017
24360
|
export declare type AdaptiveShippingOrderGuaranteeDeleted = io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted;
|
|
24018
24361
|
export declare type AdaptiveShippingOrderGuaranteeState = io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState;
|
|
24019
24362
|
export declare type AdaptiveShippingOrderGuaranteeUpserted = io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted;
|
|
24020
|
-
export declare type AdaptiveShippingRate = io.flow.internal.v0.models.AdaptiveShippingRate;
|
|
24021
|
-
export declare type AdaptiveShippingRateDeleted = io.flow.internal.v0.models.AdaptiveShippingRateDeleted;
|
|
24022
|
-
export declare type AdaptiveShippingRateUpserted = io.flow.internal.v0.models.AdaptiveShippingRateUpserted;
|
|
24023
24363
|
export declare type AdditionalImportTax = io.flow.internal.v0.models.AdditionalImportTax;
|
|
24024
24364
|
export declare type AdjustmentAmount = io.flow.internal.v0.unions.AdjustmentAmount;
|
|
24025
24365
|
export declare type AdjustmentAmountFixed = io.flow.internal.v0.models.AdjustmentAmountFixed;
|
|
@@ -24077,6 +24417,17 @@ export declare type AfterpayRefund = io.flow.internal.v0.models.AfterpayRefund;
|
|
|
24077
24417
|
export declare type AfterpayRefundDeleted = io.flow.internal.v0.models.AfterpayRefundDeleted;
|
|
24078
24418
|
export declare type AfterpayRefundUpserted = io.flow.internal.v0.models.AfterpayRefundUpserted;
|
|
24079
24419
|
export declare type AftershipWebhook = io.flow.internal.v0.models.AftershipWebhook;
|
|
24420
|
+
export declare type AiOutput = io.flow.internal.v0.unions.AiOutput;
|
|
24421
|
+
export declare type AiReviewBatchSubmitted = io.flow.internal.v0.models.AiReviewBatchSubmitted;
|
|
24422
|
+
export declare type AiReviewConsumer = io.flow.internal.v0.enums.AiReviewConsumer;
|
|
24423
|
+
export declare type AiReviewContext = io.flow.internal.v0.unions.AiReviewContext;
|
|
24424
|
+
export declare type AiReviewFailedItem = io.flow.internal.v0.models.AiReviewFailedItem;
|
|
24425
|
+
export declare type AiReviewFailureReason = io.flow.internal.v0.enums.AiReviewFailureReason;
|
|
24426
|
+
export declare type AiReviewRequestFailed = io.flow.internal.v0.models.AiReviewRequestFailed;
|
|
24427
|
+
export declare type AiReviewResult = io.flow.internal.v0.models.AiReviewResult;
|
|
24428
|
+
export declare type AiReviewResultDeleted = io.flow.internal.v0.models.AiReviewResultDeleted;
|
|
24429
|
+
export declare type AiReviewResultUpserted = io.flow.internal.v0.models.AiReviewResultUpserted;
|
|
24430
|
+
export declare type AiReviewType = io.flow.internal.v0.enums.AiReviewType;
|
|
24080
24431
|
export declare type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
|
|
24081
24432
|
export declare type AllocationItemReference = io.flow.internal.v0.models.AllocationItemReference;
|
|
24082
24433
|
export declare type AllowedLabels = io.flow.internal.v0.models.AllowedLabels;
|
|
@@ -24296,6 +24647,9 @@ export declare type ChannelOrderSummary = io.flow.internal.v0.models.ChannelOrde
|
|
|
24296
24647
|
export declare type ChannelOrderSummaryDeleted = io.flow.internal.v0.models.ChannelOrderSummaryDeleted;
|
|
24297
24648
|
export declare type ChannelOrderSummaryFulfillmentDetails = io.flow.internal.v0.models.ChannelOrderSummaryFulfillmentDetails;
|
|
24298
24649
|
export declare type ChannelOrderSummaryUpserted = io.flow.internal.v0.models.ChannelOrderSummaryUpserted;
|
|
24650
|
+
export declare type ChannelOrderTaxAndDutyInclusivitySetting = io.flow.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySetting;
|
|
24651
|
+
export declare type ChannelOrderTaxAndDutyInclusivitySettingDeleted = io.flow.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySettingDeleted;
|
|
24652
|
+
export declare type ChannelOrderTaxAndDutyInclusivitySettingUpserted = io.flow.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySettingUpserted;
|
|
24299
24653
|
export declare type ChannelOrganizationDomains = io.flow.internal.v0.models.ChannelOrganizationDomains;
|
|
24300
24654
|
export declare type ChannelOrganizationIdentifier = io.flow.internal.v0.models.ChannelOrganizationIdentifier;
|
|
24301
24655
|
export declare type ChannelOrganizationIdentifierDeleted = io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted;
|
|
@@ -24493,6 +24847,9 @@ export declare type DeliveredDutyPreferenceForm = io.flow.internal.v0.models.Del
|
|
|
24493
24847
|
export declare type DeminimisAdjustmentType = io.flow.internal.v0.enums.DeminimisAdjustmentType;
|
|
24494
24848
|
export declare type DestinationDutyComparison = io.flow.internal.v0.models.DestinationDutyComparison;
|
|
24495
24849
|
export declare type DestinationError = io.flow.internal.v0.models.DestinationError;
|
|
24850
|
+
export declare type DgClassAssessment = io.flow.internal.v0.models.DgClassAssessment;
|
|
24851
|
+
export declare type DgReviewContext = io.flow.internal.v0.models.DgReviewContext;
|
|
24852
|
+
export declare type DgReviewOutput = io.flow.internal.v0.models.DgReviewOutput;
|
|
24496
24853
|
export declare type Dhl = io.flow.internal.v0.models.Dhl;
|
|
24497
24854
|
export declare type DhlEcommerce = io.flow.internal.v0.models.DhlEcommerce;
|
|
24498
24855
|
export declare type DimensionEstimateOpsInput = io.flow.internal.v0.models.DimensionEstimateOpsInput;
|
|
@@ -24611,6 +24968,7 @@ export declare type ExternalFulfillmentProof = io.flow.internal.v0.models.Extern
|
|
|
24611
24968
|
export declare type ExternalFulfillmentProofForm = io.flow.internal.v0.models.ExternalFulfillmentProofForm;
|
|
24612
24969
|
export declare type ExternalFulfillmentProofTracking = io.flow.internal.v0.models.ExternalFulfillmentProofTracking;
|
|
24613
24970
|
export declare type ExternalFulfillmentProofTrackingForm = io.flow.internal.v0.models.ExternalFulfillmentProofTrackingForm;
|
|
24971
|
+
export declare type ExternalOrderSummary = io.flow.internal.v0.models.ExternalOrderSummary;
|
|
24614
24972
|
export declare type ExternalRatecardLink = io.flow.internal.v0.models.ExternalRatecardLink;
|
|
24615
24973
|
export declare type ExternalRatecardLinkResponse = io.flow.internal.v0.models.ExternalRatecardLinkResponse;
|
|
24616
24974
|
export declare type FacebookPixel = io.flow.internal.v0.models.FacebookPixel;
|
|
@@ -24662,6 +25020,9 @@ export declare type FlatRateLabelGuaranteeStatus = io.flow.internal.v0.enums.Fla
|
|
|
24662
25020
|
export declare type FlatRateLabelReversal = io.flow.internal.v0.models.FlatRateLabelReversal;
|
|
24663
25021
|
export declare type FlatRateLabelReversalDeleted = io.flow.internal.v0.models.FlatRateLabelReversalDeleted;
|
|
24664
25022
|
export declare type FlatRateLabelReversalUpserted = io.flow.internal.v0.models.FlatRateLabelReversalUpserted;
|
|
25023
|
+
export declare type FlatRateLabelSubsidy = io.flow.internal.v0.models.FlatRateLabelSubsidy;
|
|
25024
|
+
export declare type FlatRateLabelSubsidyDeleted = io.flow.internal.v0.models.FlatRateLabelSubsidyDeleted;
|
|
25025
|
+
export declare type FlatRateLabelSubsidyUpserted = io.flow.internal.v0.models.FlatRateLabelSubsidyUpserted;
|
|
24665
25026
|
export declare type FlatRateLabelTransaction = io.flow.internal.v0.models.FlatRateLabelTransaction;
|
|
24666
25027
|
export declare type FlatRateLabelTransactionType = io.flow.internal.v0.enums.FlatRateLabelTransactionType;
|
|
24667
25028
|
export declare type FlexeWebhook = io.flow.internal.v0.models.FlexeWebhook;
|
|
@@ -24768,9 +25129,22 @@ export declare type GoogleShoppingAccountParameters = io.flow.internal.v0.models
|
|
|
24768
25129
|
export declare type GoogleShoppingSetting = io.flow.internal.v0.models.GoogleShoppingSetting;
|
|
24769
25130
|
export declare type GoogleTagManager = io.flow.internal.v0.models.GoogleTagManager;
|
|
24770
25131
|
export declare type GraphqlServiceTypes = io.flow.internal.v0.enums.GraphqlServiceTypes;
|
|
25132
|
+
export declare type GuaranteedShippingCalibratedOutput = io.flow.internal.v0.models.GuaranteedShippingCalibratedOutput;
|
|
25133
|
+
export declare type GuaranteedShippingCalibratedOutputDeleted = io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputDeleted;
|
|
25134
|
+
export declare type GuaranteedShippingCalibratedOutputUpserted = io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputUpserted;
|
|
25135
|
+
export declare type GuaranteedShippingCalibration = io.flow.internal.v0.models.GuaranteedShippingCalibration;
|
|
25136
|
+
export declare type GuaranteedShippingCalibrationForm = io.flow.internal.v0.models.GuaranteedShippingCalibrationForm;
|
|
25137
|
+
export declare type GuaranteedShippingCalibrationLaneForm = io.flow.internal.v0.models.GuaranteedShippingCalibrationLaneForm;
|
|
24771
25138
|
export declare type GuaranteedShippingPublishedOutput = io.flow.internal.v0.models.GuaranteedShippingPublishedOutput;
|
|
24772
25139
|
export declare type GuaranteedShippingPublishedOutputDeleted = io.flow.internal.v0.models.GuaranteedShippingPublishedOutputDeleted;
|
|
24773
25140
|
export declare type GuaranteedShippingPublishedOutputUpserted = io.flow.internal.v0.models.GuaranteedShippingPublishedOutputUpserted;
|
|
25141
|
+
export declare type GuaranteedShippingSettings = io.flow.internal.v0.models.GuaranteedShippingSettings;
|
|
25142
|
+
export declare type GuaranteedShippingSettingsDeleted = io.flow.internal.v0.models.GuaranteedShippingSettingsDeleted;
|
|
25143
|
+
export declare type GuaranteedShippingSettingsDestinationUpdate = io.flow.internal.v0.models.GuaranteedShippingSettingsDestinationUpdate;
|
|
25144
|
+
export declare type GuaranteedShippingSettingsUpdate = io.flow.internal.v0.models.GuaranteedShippingSettingsUpdate;
|
|
25145
|
+
export declare type GuaranteedShippingSettingsUpdateDeleted = io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateDeleted;
|
|
25146
|
+
export declare type GuaranteedShippingSettingsUpdateUpserted = io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateUpserted;
|
|
25147
|
+
export declare type GuaranteedShippingSettingsUpserted = io.flow.internal.v0.models.GuaranteedShippingSettingsUpserted;
|
|
24774
25148
|
export declare type HarmonizationClassificationStatisticsData = io.flow.internal.v0.models.HarmonizationClassificationStatisticsData;
|
|
24775
25149
|
export declare type HarmonizationClassificationStatisticsPublished = io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished;
|
|
24776
25150
|
export declare type HarmonizationCodesImport = io.flow.internal.v0.models.HarmonizationCodesImport;
|
|
@@ -24827,6 +25201,9 @@ export declare type InvoiceInfoForm = io.flow.internal.v0.models.InvoiceInfoForm
|
|
|
24827
25201
|
export declare type InvoiceLine = io.flow.internal.v0.models.InvoiceLine;
|
|
24828
25202
|
export declare type InvoiceLineItem = io.flow.internal.v0.models.InvoiceLineItem;
|
|
24829
25203
|
export declare type InvoiceTransaction = io.flow.internal.v0.models.InvoiceTransaction;
|
|
25204
|
+
export declare type Issuer = io.flow.internal.v0.models.Issuer;
|
|
25205
|
+
export declare type IssuerDeleted = io.flow.internal.v0.models.IssuerDeleted;
|
|
25206
|
+
export declare type IssuerUpserted = io.flow.internal.v0.models.IssuerUpserted;
|
|
24830
25207
|
export declare type ItemClassification = io.flow.internal.v0.models.ItemClassification;
|
|
24831
25208
|
export declare type ItemClassificationAction = io.flow.internal.v0.enums.ItemClassificationAction;
|
|
24832
25209
|
export declare type ItemClassificationForm = io.flow.internal.v0.models.ItemClassificationForm;
|
|
@@ -24843,6 +25220,11 @@ export declare type ItemHarmonization = io.flow.internal.v0.models.ItemHarmoniza
|
|
|
24843
25220
|
export declare type ItemHarmonizationDeleted = io.flow.internal.v0.models.ItemHarmonizationDeleted;
|
|
24844
25221
|
export declare type ItemHarmonizationStatus = io.flow.internal.v0.enums.ItemHarmonizationStatus;
|
|
24845
25222
|
export declare type ItemHarmonizationUpserted = io.flow.internal.v0.models.ItemHarmonizationUpserted;
|
|
25223
|
+
export declare type ItemHs6Override = io.flow.internal.v0.models.ItemHs6Override;
|
|
25224
|
+
export declare type ItemHs6OverrideForm = io.flow.internal.v0.models.ItemHs6OverrideForm;
|
|
25225
|
+
export declare type ItemHs6OverrideRejection = io.flow.internal.v0.models.ItemHs6OverrideRejection;
|
|
25226
|
+
export declare type ItemHs6OverrideResult = io.flow.internal.v0.models.ItemHs6OverrideResult;
|
|
25227
|
+
export declare type ItemHs6OverridesForm = io.flow.internal.v0.models.ItemHs6OverridesForm;
|
|
24846
25228
|
export declare type ItemQuantityAction = io.flow.internal.v0.enums.ItemQuantityAction;
|
|
24847
25229
|
export declare type ItemQueryResponse = io.flow.internal.v0.models.ItemQueryResponse;
|
|
24848
25230
|
export declare type ItemRestriction = io.flow.internal.v0.models.ItemRestriction;
|
|
@@ -24858,6 +25240,9 @@ export declare type ItemSalesMarginVersion = io.flow.internal.v0.models.ItemSale
|
|
|
24858
25240
|
export declare type ItemSummary = io.flow.internal.v0.models.ItemSummary;
|
|
24859
25241
|
export declare type ItemType = io.flow.internal.v0.enums.ItemType;
|
|
24860
25242
|
export declare type ItemValuesForm = io.flow.internal.v0.models.ItemValuesForm;
|
|
25243
|
+
export declare type JohnStrongItem = io.flow.internal.v0.models.JohnStrongItem;
|
|
25244
|
+
export declare type JohnStrongItemForm = io.flow.internal.v0.models.JohnStrongItemForm;
|
|
25245
|
+
export declare type JohnStrongItemType = io.flow.internal.v0.enums.JohnStrongItemType;
|
|
24861
25246
|
export declare type Journal = io.flow.internal.v0.models.Journal;
|
|
24862
25247
|
export declare type JournalFailure = io.flow.internal.v0.models.JournalFailure;
|
|
24863
25248
|
export declare type JournalOperation = io.flow.internal.v0.enums.JournalOperation;
|
|
@@ -25062,6 +25447,7 @@ export declare type OrderRevenueRegionDataPoint = io.flow.internal.v0.models.Ord
|
|
|
25062
25447
|
export declare type OrderRevenueTimelineChart = io.flow.internal.v0.models.OrderRevenueTimelineChart;
|
|
25063
25448
|
export declare type OrderRevenueTimelineDataPoint = io.flow.internal.v0.models.OrderRevenueTimelineDataPoint;
|
|
25064
25449
|
export declare type OrderServiceChangeCsvForm = io.flow.internal.v0.models.OrderServiceChangeCsvForm;
|
|
25450
|
+
export declare type OrderSettings = io.flow.internal.v0.models.OrderSettings;
|
|
25065
25451
|
export declare type OrderSummary = io.flow.internal.v0.models.OrderSummary;
|
|
25066
25452
|
export declare type OrderTaxAndDutyInclusivitySetting = io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
25067
25453
|
export declare type OrderTaxAndDutyInclusivitySettingDeleted = io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted;
|
|
@@ -25156,6 +25542,9 @@ export declare type OtherRecordOrderSummaryIdentifiers = io.flow.internal.v0.mod
|
|
|
25156
25542
|
export declare type OtherRecordOrganizationSummary = io.flow.internal.v0.models.OtherRecordOrganizationSummary;
|
|
25157
25543
|
export declare type OtherRecordUpserted = io.flow.internal.v0.models.OtherRecordUpserted;
|
|
25158
25544
|
export declare type OtherRecordWithholdings = io.flow.internal.v0.models.OtherRecordWithholdings;
|
|
25545
|
+
export declare type OutboundShippingCost = io.flow.internal.v0.models.OutboundShippingCost;
|
|
25546
|
+
export declare type OutboundShippingCostDeleted = io.flow.internal.v0.models.OutboundShippingCostDeleted;
|
|
25547
|
+
export declare type OutboundShippingCostUpserted = io.flow.internal.v0.models.OutboundShippingCostUpserted;
|
|
25159
25548
|
export declare type OutputStyle = io.flow.internal.v0.enums.OutputStyle;
|
|
25160
25549
|
export declare type Owner = io.flow.internal.v0.enums.Owner;
|
|
25161
25550
|
export declare type Partner = io.flow.internal.v0.models.Partner;
|
|
@@ -25223,6 +25612,8 @@ export declare type PaypalPaymentDeleted = io.flow.internal.v0.models.PaypalPaym
|
|
|
25223
25612
|
export declare type PaypalPaymentUpserted = io.flow.internal.v0.models.PaypalPaymentUpserted;
|
|
25224
25613
|
export declare type PaypalRefundDeleted = io.flow.internal.v0.models.PaypalRefundDeleted;
|
|
25225
25614
|
export declare type PaypalRefundUpserted = io.flow.internal.v0.models.PaypalRefundUpserted;
|
|
25615
|
+
export declare type PcReviewContext = io.flow.internal.v0.models.PcReviewContext;
|
|
25616
|
+
export declare type PcReviewOutput = io.flow.internal.v0.models.PcReviewOutput;
|
|
25226
25617
|
export declare type PendingBankPayment = io.flow.internal.v0.models.PendingBankPayment;
|
|
25227
25618
|
export declare type PendingBankPaymentDetail = io.flow.internal.v0.models.PendingBankPaymentDetail;
|
|
25228
25619
|
export declare type PendingOrder = io.flow.internal.v0.models.PendingOrder;
|
|
@@ -25320,6 +25711,9 @@ export declare type PspRoutingDistributionRevision = io.flow.internal.v0.models.
|
|
|
25320
25711
|
export declare type PspRoutingDistributionRevisionForm = io.flow.internal.v0.models.PspRoutingDistributionRevisionForm;
|
|
25321
25712
|
export declare type PublicHub = io.flow.internal.v0.models.PublicHub;
|
|
25322
25713
|
export declare type PublicHubForm = io.flow.internal.v0.models.PublicHubForm;
|
|
25714
|
+
export declare type PvDecision = io.flow.internal.v0.enums.PvDecision;
|
|
25715
|
+
export declare type PvReviewContext = io.flow.internal.v0.models.PvReviewContext;
|
|
25716
|
+
export declare type PvReviewOutput = io.flow.internal.v0.models.PvReviewOutput;
|
|
25323
25717
|
export declare type Quote = io.flow.internal.v0.models.Quote;
|
|
25324
25718
|
export declare type QuoteDeleted = io.flow.internal.v0.models.QuoteDeleted;
|
|
25325
25719
|
export declare type QuoteUpserted = io.flow.internal.v0.models.QuoteUpserted;
|
|
@@ -25378,6 +25772,8 @@ export declare type RedirectReason = io.flow.internal.v0.enums.RedirectReason;
|
|
|
25378
25772
|
export declare type RegisteredExporterTariffEligibilityData = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData;
|
|
25379
25773
|
export declare type RegisteredExporterTariffEligibilityForm = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
|
|
25380
25774
|
export declare type RejectionReason = io.flow.internal.v0.enums.RejectionReason;
|
|
25775
|
+
export declare type RemediateTaxDutyArm = io.flow.internal.v0.enums.RemediateTaxDutyArm;
|
|
25776
|
+
export declare type RemediateTaxDutyMetadata = io.flow.internal.v0.models.RemediateTaxDutyMetadata;
|
|
25381
25777
|
export declare type RemittanceResponsibility = io.flow.internal.v0.models.RemittanceResponsibility;
|
|
25382
25778
|
export declare type Report = io.flow.internal.v0.models.Report;
|
|
25383
25779
|
export declare type ReportAccount = io.flow.internal.v0.models.ReportAccount;
|
|
@@ -25486,6 +25882,7 @@ export declare type RestrictionRuleEffect = io.flow.internal.v0.models.Restricti
|
|
|
25486
25882
|
export declare type RestrictionRuleEffectDeleted = io.flow.internal.v0.models.RestrictionRuleEffectDeleted;
|
|
25487
25883
|
export declare type RestrictionRuleEffectForm = io.flow.internal.v0.models.RestrictionRuleEffectForm;
|
|
25488
25884
|
export declare type RestrictionRuleEffectUpserted = io.flow.internal.v0.models.RestrictionRuleEffectUpserted;
|
|
25885
|
+
export declare type RestrictionRuleEvaluationMode = io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
|
|
25489
25886
|
export declare type RestrictionRuleExceptionAction = io.flow.internal.v0.enums.RestrictionRuleExceptionAction;
|
|
25490
25887
|
export declare type RestrictionRuleForm = io.flow.internal.v0.models.RestrictionRuleForm;
|
|
25491
25888
|
export declare type RestrictionRuleLaneExemption = io.flow.internal.v0.models.RestrictionRuleLaneExemption;
|
|
@@ -25524,6 +25921,7 @@ export declare type RevenueRecord = io.flow.internal.v0.models.RevenueRecord;
|
|
|
25524
25921
|
export declare type RevenueRecordDeleted = io.flow.internal.v0.models.RevenueRecordDeleted;
|
|
25525
25922
|
export declare type RevenueRecordType = io.flow.internal.v0.enums.RevenueRecordType;
|
|
25526
25923
|
export declare type RevenueRecordUpserted = io.flow.internal.v0.models.RevenueRecordUpserted;
|
|
25924
|
+
export declare type ReviewRequestItem = io.flow.internal.v0.models.ReviewRequestItem;
|
|
25527
25925
|
export declare type RiskCheck = io.flow.internal.v0.enums.RiskCheck;
|
|
25528
25926
|
export declare type RiskEvaluation = io.flow.internal.v0.enums.RiskEvaluation;
|
|
25529
25927
|
export declare type RoutingAccount = io.flow.internal.v0.models.RoutingAccount;
|
|
@@ -25551,6 +25949,9 @@ export declare type SearchTrackingSummary = io.flow.internal.v0.models.SearchTra
|
|
|
25551
25949
|
export declare type SellabilityCheckResult = io.flow.internal.v0.models.SellabilityCheckResult;
|
|
25552
25950
|
export declare type SellabilityCheckStatus = io.flow.internal.v0.enums.SellabilityCheckStatus;
|
|
25553
25951
|
export declare type SellabilityInternalMatchType = io.flow.internal.v0.enums.SellabilityInternalMatchType;
|
|
25952
|
+
export declare type SellabilityPendingVerification = io.flow.internal.v0.models.SellabilityPendingVerification;
|
|
25953
|
+
export declare type SellabilityPendingVerificationDeleted = io.flow.internal.v0.models.SellabilityPendingVerificationDeleted;
|
|
25954
|
+
export declare type SellabilityPendingVerificationUpserted = io.flow.internal.v0.models.SellabilityPendingVerificationUpserted;
|
|
25554
25955
|
export declare type SellabilityStatus = io.flow.internal.v0.enums.SellabilityStatus;
|
|
25555
25956
|
export declare type ServiceFees = io.flow.internal.v0.models.ServiceFees;
|
|
25556
25957
|
export declare type ServiceFeesForm = io.flow.internal.v0.models.ServiceFeesForm;
|
|
@@ -25909,6 +26310,9 @@ export declare type UnclassifiedProductsPurgeRequest = io.flow.internal.v0.model
|
|
|
25909
26310
|
export declare type UnclassifiedProductsSummary = io.flow.internal.v0.models.UnclassifiedProductsSummary;
|
|
25910
26311
|
export declare type UnharmonizedItemsExport = io.flow.internal.v0.models.UnharmonizedItemsExport;
|
|
25911
26312
|
export declare type UnphrasedProductsExport = io.flow.internal.v0.models.UnphrasedProductsExport;
|
|
26313
|
+
export declare type UnserviceableTaxonomyCategory = io.flow.internal.v0.models.UnserviceableTaxonomyCategory;
|
|
26314
|
+
export declare type UnserviceableTaxonomyCategoryDeleted = io.flow.internal.v0.models.UnserviceableTaxonomyCategoryDeleted;
|
|
26315
|
+
export declare type UnserviceableTaxonomyCategoryUpserted = io.flow.internal.v0.models.UnserviceableTaxonomyCategoryUpserted;
|
|
25912
26316
|
export declare type Ups = io.flow.internal.v0.models.Ups;
|
|
25913
26317
|
export declare type UsdSpotRate = io.flow.internal.v0.models.UsdSpotRate;
|
|
25914
26318
|
export declare type UsdSpotRateDeleted = io.flow.internal.v0.models.UsdSpotRateDeleted;
|