@flowio/types 11.24.139 → 11.24.140
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 +454 -125
- package/dist/api.d.ts +47 -36
- package/package.json +1 -1
- package/src/api-internal.ts +597 -158
- package/src/api.ts +54 -41
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
|
}
|
|
@@ -4956,6 +4956,9 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
4956
4956
|
interface MarketsOrderSummary {
|
|
4957
4957
|
readonly id: string;
|
|
4958
4958
|
}
|
|
4959
|
+
interface OrderSettings {
|
|
4960
|
+
readonly tax_and_duty_inclusivity_setting?: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
|
|
4961
|
+
}
|
|
4959
4962
|
interface OrderTaxAndDutyInclusivitySetting {
|
|
4960
4963
|
readonly id: string;
|
|
4961
4964
|
readonly organization_id: string;
|
|
@@ -5962,6 +5965,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
5962
5965
|
readonly inventoryItem: io.flow.shopify.external.v0.models.GraphqlInventoryItem;
|
|
5963
5966
|
}
|
|
5964
5967
|
interface GraphqlTaxonomyCategory {
|
|
5968
|
+
readonly id?: string;
|
|
5965
5969
|
readonly name: string;
|
|
5966
5970
|
readonly fullName: string;
|
|
5967
5971
|
}
|
|
@@ -6070,7 +6074,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6070
6074
|
readonly created_at: string;
|
|
6071
6075
|
readonly updated_at: string;
|
|
6072
6076
|
readonly has_variants_that_requires_components?: boolean;
|
|
6073
|
-
readonly category?: io.flow.
|
|
6077
|
+
readonly category?: io.flow.shopify.external.v0.models.RestTaxonomyCategory;
|
|
6074
6078
|
readonly metafields?: io.flow.shopify.external.v0.models.ProductMetafield[];
|
|
6075
6079
|
}
|
|
6076
6080
|
interface ProductDelete {
|
|
@@ -6184,6 +6188,11 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6184
6188
|
interface ResponseVariant {
|
|
6185
6189
|
readonly variant: io.flow.shopify.external.v0.models.ProductVariant;
|
|
6186
6190
|
}
|
|
6191
|
+
interface RestTaxonomyCategory {
|
|
6192
|
+
readonly name: string;
|
|
6193
|
+
readonly full_name: string;
|
|
6194
|
+
readonly admin_graphql_api_id?: string;
|
|
6195
|
+
}
|
|
6187
6196
|
interface Shop {
|
|
6188
6197
|
readonly id: number;
|
|
6189
6198
|
readonly domain: string;
|
|
@@ -7472,11 +7481,18 @@ declare namespace io.flow.channel.shopify.internal.v0.models {
|
|
|
7472
7481
|
}
|
|
7473
7482
|
}
|
|
7474
7483
|
declare namespace io.flow.order.price.v0.enums {
|
|
7484
|
+
type OrderPriceCoefficientType = 'item_shipping';
|
|
7475
7485
|
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
7486
|
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
7477
7487
|
type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product' | 'mor_tax';
|
|
7488
|
+
type OrderPriceSubsidyType = 'shipping_subsidy';
|
|
7478
7489
|
}
|
|
7479
7490
|
declare namespace io.flow.order.price.v0.models {
|
|
7491
|
+
interface OrderPriceCoefficient {
|
|
7492
|
+
readonly type: io.flow.order.price.v0.enums.OrderPriceCoefficientType;
|
|
7493
|
+
readonly value: number;
|
|
7494
|
+
readonly price: io.flow.common.v0.models.PriceWithBase;
|
|
7495
|
+
}
|
|
7480
7496
|
interface OrderPriceDetail {
|
|
7481
7497
|
readonly key: io.flow.order.price.v0.enums.OrderPriceDetailKey;
|
|
7482
7498
|
readonly currency: string;
|
|
@@ -7507,10 +7523,16 @@ declare namespace io.flow.order.price.v0.models {
|
|
|
7507
7523
|
readonly value: io.flow.common.v0.models.PriceWithBase;
|
|
7508
7524
|
readonly type: io.flow.order.price.v0.enums.OrderPriceFeeType;
|
|
7509
7525
|
}
|
|
7526
|
+
interface OrderPriceSubsidy {
|
|
7527
|
+
readonly type: io.flow.order.price.v0.enums.OrderPriceSubsidyType;
|
|
7528
|
+
readonly price: io.flow.common.v0.models.PriceWithBase;
|
|
7529
|
+
}
|
|
7510
7530
|
interface PurchasePriceBreakdown {
|
|
7511
7531
|
readonly total_price: io.flow.common.v0.models.PriceWithBase;
|
|
7512
7532
|
readonly product_price: io.flow.common.v0.models.PriceWithBase;
|
|
7513
7533
|
readonly fees: io.flow.order.price.v0.models.OrderPriceFee[];
|
|
7534
|
+
readonly coefficients?: io.flow.order.price.v0.models.OrderPriceCoefficient[];
|
|
7535
|
+
readonly subsidies?: io.flow.order.price.v0.models.OrderPriceSubsidy[];
|
|
7514
7536
|
}
|
|
7515
7537
|
}
|
|
7516
7538
|
declare namespace io.flow.channel.internal.v0.enums {
|
|
@@ -7563,7 +7585,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
7563
7585
|
readonly order_updated_at?: string;
|
|
7564
7586
|
readonly order_edit_summary?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
7565
7587
|
readonly payment_source?: io.flow.channel.internal.v0.enums.OrderPaymentSourceType;
|
|
7566
|
-
readonly external_order_summary?: io.flow.channel.
|
|
7588
|
+
readonly external_order_summary?: io.flow.channel.internal.v0.models.ExternalOrderSummary;
|
|
7567
7589
|
}
|
|
7568
7590
|
interface ChannelOrderAcceptanceDetails {
|
|
7569
7591
|
readonly order_acceptance: io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
|
|
@@ -7614,6 +7636,11 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
7614
7636
|
readonly catalog_sync_duration?: number;
|
|
7615
7637
|
readonly catalog_products_count?: number;
|
|
7616
7638
|
}
|
|
7639
|
+
interface ExternalOrderSummary {
|
|
7640
|
+
readonly id: string;
|
|
7641
|
+
readonly edit_ids: string[];
|
|
7642
|
+
readonly created_at?: string;
|
|
7643
|
+
}
|
|
7617
7644
|
interface FlowChannelOrganization {
|
|
7618
7645
|
readonly placeholder?: string;
|
|
7619
7646
|
}
|
|
@@ -8416,7 +8443,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
8416
8443
|
type OrganizationPaymentMethodTag = 'deny';
|
|
8417
8444
|
type PaymentMethodRuleContentKey = 'description';
|
|
8418
8445
|
type PriceFacetBoundary = 'min' | 'max';
|
|
8419
|
-
type PricingType = 'inclusive_pricing';
|
|
8446
|
+
type PricingType = 'inclusive_pricing' | 'inclusive_pricing_with_shipping';
|
|
8420
8447
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
8421
8448
|
type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
|
|
8422
8449
|
}
|
|
@@ -10039,30 +10066,6 @@ declare namespace io.flow.crypto.v0.models {
|
|
|
10039
10066
|
readonly object: io.flow.crypto.v0.models.Refund;
|
|
10040
10067
|
}
|
|
10041
10068
|
}
|
|
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
10069
|
declare namespace io.flow.shopify.merchant.config.v0.models {
|
|
10067
10070
|
interface Company {
|
|
10068
10071
|
readonly discriminator: 'company';
|
|
@@ -10415,6 +10418,7 @@ declare namespace io.flow.product.v0.models {
|
|
|
10415
10418
|
interface ProductTaxonomyCategory {
|
|
10416
10419
|
readonly name: string;
|
|
10417
10420
|
readonly full_name: string;
|
|
10421
|
+
readonly id?: string;
|
|
10418
10422
|
}
|
|
10419
10423
|
interface ProductTaxonomyData {
|
|
10420
10424
|
readonly key: string;
|
|
@@ -11321,7 +11325,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
11321
11325
|
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
11326
|
type StatementAttachmentType = 'csv' | 'pdf';
|
|
11323
11327
|
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';
|
|
11328
|
+
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
11329
|
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
11330
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
11327
11331
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
@@ -11406,6 +11410,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11406
11410
|
readonly settlement: io.flow.billing.v0.unions.Settlement;
|
|
11407
11411
|
readonly attachments: io.flow.billing.v0.models.Attachment[];
|
|
11408
11412
|
readonly created_at: string;
|
|
11413
|
+
readonly period?: io.flow.common.v0.models.DatetimeRange;
|
|
11409
11414
|
}
|
|
11410
11415
|
interface ChannelTransaction {
|
|
11411
11416
|
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
@@ -11550,6 +11555,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11550
11555
|
readonly settlement: io.flow.billing.v0.unions.Settlement;
|
|
11551
11556
|
readonly attachments: io.flow.billing.v0.models.Attachment[];
|
|
11552
11557
|
readonly created_at: string;
|
|
11558
|
+
readonly period?: io.flow.common.v0.models.DatetimeRange;
|
|
11553
11559
|
}
|
|
11554
11560
|
interface StatementStatusForm {
|
|
11555
11561
|
readonly code: io.flow.billing.v0.enums.StatementStatusCode;
|
|
@@ -12374,6 +12380,13 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
12374
12380
|
readonly bank_routing_number: string;
|
|
12375
12381
|
readonly bank_name: string;
|
|
12376
12382
|
}
|
|
12383
|
+
interface BankAccountInfoKorV2 {
|
|
12384
|
+
readonly discriminator: 'kor_v2';
|
|
12385
|
+
readonly name: string;
|
|
12386
|
+
readonly bank_account_number: string;
|
|
12387
|
+
readonly bank_routing_number: string;
|
|
12388
|
+
readonly bank_name: string;
|
|
12389
|
+
}
|
|
12377
12390
|
interface BankAccountInfoUsa {
|
|
12378
12391
|
readonly discriminator: 'usa';
|
|
12379
12392
|
readonly routing_number: string;
|
|
@@ -12381,7 +12394,7 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
12381
12394
|
}
|
|
12382
12395
|
}
|
|
12383
12396
|
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;
|
|
12397
|
+
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
12398
|
}
|
|
12386
12399
|
declare namespace io.flow.internal.v0.enums {
|
|
12387
12400
|
type AccountCurrencyFilter = 'GBP' | 'CAD' | 'USD' | 'KRW';
|
|
@@ -12391,6 +12404,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12391
12404
|
type AdaptiveShippingOrderGuaranteeState = 'confirmed' | 'voided';
|
|
12392
12405
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
12393
12406
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
12407
|
+
type AiReviewConsumer = 'restrictions' | 'sellability' | 'harmonization';
|
|
12408
|
+
type AiReviewFailureReason = 'item_errored' | 'item_expired' | 'item_unparseable' | 'item_image_fetch_failed' | 'item_undecided' | 'batch_failed' | 'batch_timed_out';
|
|
12409
|
+
type AiReviewType = 'pv_review_general' | 'pv_review_dg_hazmat' | 'pc_review';
|
|
12394
12410
|
type AmruthaItemType = 'physical' | 'digital';
|
|
12395
12411
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
12396
12412
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
@@ -12443,7 +12459,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12443
12459
|
type ClassificationErrorCode = 'generic_error';
|
|
12444
12460
|
type ClassificationFailureReason = 'low_confidence' | 'timeout' | 'missing_hs6_code' | 'invalid_price';
|
|
12445
12461
|
type ClassificationPlatform = 'GlobalE' | 'Flow' | 'FlowOnboarding' | 'Borderfree';
|
|
12446
|
-
type ClassificationScope = 'Item' | 'Product';
|
|
12462
|
+
type ClassificationScope = 'Item' | 'Product' | 'Bucket';
|
|
12447
12463
|
type ClassificationSource = 'sellability';
|
|
12448
12464
|
type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
|
|
12449
12465
|
type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
|
|
@@ -12487,7 +12503,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12487
12503
|
type EmptyAttribute = 'irrelevant';
|
|
12488
12504
|
type ErpFileType = 'vendor';
|
|
12489
12505
|
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';
|
|
12506
|
+
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' | '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
12507
|
type ExperienceImportType = 'experience_with_settings';
|
|
12492
12508
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
12493
12509
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -12513,7 +12529,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12513
12529
|
type InternalPaymentEntityType = 'authorization' | 'capture' | 'refund' | 'dispute';
|
|
12514
12530
|
type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
|
|
12515
12531
|
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';
|
|
12532
|
+
type ItemHarmonizationStatus = 'waiting_for_classification' | 'classified' | 'non_classifiable_not_enough_information' | 'exempt' | 'manual_classification_required' | 'unserviceable_taxonomy';
|
|
12517
12533
|
type ItemQuantityAction = 'fulfillment_ship' | 'fulfillment_cancel' | 'fulfillment_generate_label';
|
|
12518
12534
|
type ItemType = 'standard' | 'multi_product';
|
|
12519
12535
|
type JournalOperation = 'insert' | 'update' | 'delete';
|
|
@@ -12584,17 +12600,19 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12584
12600
|
type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
|
|
12585
12601
|
type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
|
|
12586
12602
|
type ProductStatus = 'active' | 'archived' | 'draft' | 'unlisted';
|
|
12603
|
+
type PvDecision = 'uphold' | 'remove';
|
|
12587
12604
|
type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
|
|
12588
12605
|
type RateSource = 'calculated' | 'market';
|
|
12589
12606
|
type RaveenaItemType = 'physical' | 'digital';
|
|
12590
12607
|
type RedirectReason = 'three_d_secure';
|
|
12591
12608
|
type RejectionReason = 'merchant_policy' | 'previous_chargebacks' | 'restricted_party_screening' | 'risky_velocity' | 'suspicious_behavior' | 'suspicious_past_activity';
|
|
12609
|
+
type RemediateTaxDutyArm = 'non_lvg' | 'lvg_full_refund';
|
|
12592
12610
|
type ReportFileStatus = 'processing' | 'failed' | 'succeeded';
|
|
12593
12611
|
type ReportFileType = 'stripe_connect_report';
|
|
12594
12612
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
12595
12613
|
type ReportPaymentType = 'credit' | 'debit';
|
|
12596
12614
|
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';
|
|
12615
|
+
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
12616
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
12599
12617
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
12600
12618
|
type ResponsibleParty = 'flow' | 'organization';
|
|
@@ -12608,6 +12626,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12608
12626
|
type RestrictionOrganizationSource = 'smb' | 'enterprise';
|
|
12609
12627
|
type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
|
|
12610
12628
|
type RestrictionRuleCommunityExemption = 'domestic_exemption' | 'intra_eu_exemption';
|
|
12629
|
+
type RestrictionRuleEvaluationMode = 'all_screenings' | 'first_screening_only';
|
|
12611
12630
|
type RestrictionRuleExceptionAction = 'allow' | 'deny';
|
|
12612
12631
|
type RestrictionStateReviewStatus = 'reviewed' | 'in_review';
|
|
12613
12632
|
type RestrictionStatus = 'pending' | 'in_review' | 'escalated' | 'accepted' | 'restricted';
|
|
@@ -12882,65 +12901,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12882
12901
|
readonly refund?: io.flow.payment.v0.models.RefundReference;
|
|
12883
12902
|
readonly tax_reversal?: io.flow.internal.v0.models.TransactionReference;
|
|
12884
12903
|
readonly duty_reversal?: io.flow.internal.v0.models.TransactionReference;
|
|
12904
|
+
readonly flat_rate_reversal?: io.flow.internal.v0.models.TransactionReference;
|
|
12905
|
+
readonly flat_rate_subsidy_reversal?: io.flow.internal.v0.models.TransactionReference;
|
|
12885
12906
|
}
|
|
12886
12907
|
interface ActionQuantity {
|
|
12887
12908
|
readonly action: io.flow.internal.v0.enums.ItemQuantityAction;
|
|
12888
12909
|
readonly quantity: number;
|
|
12889
12910
|
}
|
|
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
12911
|
interface AdaptiveShippingOrderGuarantee {
|
|
12945
12912
|
readonly id: string;
|
|
12946
12913
|
readonly organization_id: string;
|
|
@@ -12963,30 +12930,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12963
12930
|
readonly organization: string;
|
|
12964
12931
|
readonly adaptive_shipping_order_guarantee: io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
12965
12932
|
}
|
|
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
12933
|
interface AdditionalImportTax {
|
|
12991
12934
|
readonly name?: string;
|
|
12992
12935
|
readonly additional_import_tax_value?: io.flow.common.v0.models.Money;
|
|
@@ -13368,6 +13311,49 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13368
13311
|
interface AftershipWebhook {
|
|
13369
13312
|
readonly placeholder?: boolean;
|
|
13370
13313
|
}
|
|
13314
|
+
interface AiReviewBatchSubmitted {
|
|
13315
|
+
readonly discriminator: 'ai_review_batch_submitted';
|
|
13316
|
+
readonly event_id: string;
|
|
13317
|
+
readonly timestamp: string;
|
|
13318
|
+
readonly consumer: io.flow.internal.v0.enums.AiReviewConsumer;
|
|
13319
|
+
readonly items: io.flow.internal.v0.models.ReviewRequestItem[];
|
|
13320
|
+
}
|
|
13321
|
+
interface AiReviewFailedItem {
|
|
13322
|
+
readonly review_id: string;
|
|
13323
|
+
readonly organization_id: string;
|
|
13324
|
+
}
|
|
13325
|
+
interface AiReviewRequestFailed {
|
|
13326
|
+
readonly discriminator: 'ai_review_request_failed';
|
|
13327
|
+
readonly event_id: string;
|
|
13328
|
+
readonly timestamp: string;
|
|
13329
|
+
readonly consumer: io.flow.internal.v0.enums.AiReviewConsumer;
|
|
13330
|
+
readonly review_type: io.flow.internal.v0.enums.AiReviewType;
|
|
13331
|
+
readonly reason: io.flow.internal.v0.enums.AiReviewFailureReason;
|
|
13332
|
+
readonly items: io.flow.internal.v0.models.AiReviewFailedItem[];
|
|
13333
|
+
}
|
|
13334
|
+
interface AiReviewResult {
|
|
13335
|
+
readonly review_id: string;
|
|
13336
|
+
readonly organization_id: string;
|
|
13337
|
+
readonly consumer: io.flow.internal.v0.enums.AiReviewConsumer;
|
|
13338
|
+
readonly review_type: io.flow.internal.v0.enums.AiReviewType;
|
|
13339
|
+
readonly ai_output: io.flow.internal.v0.unions.AiOutput;
|
|
13340
|
+
readonly ai_model: string;
|
|
13341
|
+
readonly prompt_id: string;
|
|
13342
|
+
readonly prompt_version: string;
|
|
13343
|
+
}
|
|
13344
|
+
interface AiReviewResultDeleted {
|
|
13345
|
+
readonly discriminator: 'ai_review_result_deleted';
|
|
13346
|
+
readonly event_id: string;
|
|
13347
|
+
readonly timestamp: string;
|
|
13348
|
+
readonly id: string;
|
|
13349
|
+
readonly organization: string;
|
|
13350
|
+
}
|
|
13351
|
+
interface AiReviewResultUpserted {
|
|
13352
|
+
readonly discriminator: 'ai_review_result_upserted';
|
|
13353
|
+
readonly event_id: string;
|
|
13354
|
+
readonly timestamp: string;
|
|
13355
|
+
readonly ai_review_result: io.flow.internal.v0.models.AiReviewResult;
|
|
13356
|
+
}
|
|
13371
13357
|
interface AllItemsExport {
|
|
13372
13358
|
readonly discriminator: 'all_items_export';
|
|
13373
13359
|
readonly event_id: string;
|
|
@@ -14510,7 +14496,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14510
14496
|
readonly order_updated_at?: string;
|
|
14511
14497
|
readonly order_edit_summary?: io.flow.internal.v0.models.OrderEditSummary;
|
|
14512
14498
|
readonly payment_source?: io.flow.internal.v0.enums.OrderPaymentSourceType;
|
|
14513
|
-
readonly external_order_summary?: io.flow.
|
|
14499
|
+
readonly external_order_summary?: io.flow.internal.v0.models.ExternalOrderSummary;
|
|
14514
14500
|
}
|
|
14515
14501
|
interface ChannelOrderAcceptanceDeleted {
|
|
14516
14502
|
readonly discriminator: 'channel_order_acceptance_deleted';
|
|
@@ -15577,6 +15563,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15577
15563
|
readonly error: string;
|
|
15578
15564
|
readonly destination: io.flow.common.v0.models.Address;
|
|
15579
15565
|
}
|
|
15566
|
+
interface DgClassAssessment {
|
|
15567
|
+
readonly dg_class: string;
|
|
15568
|
+
readonly decision: io.flow.internal.v0.enums.PvDecision;
|
|
15569
|
+
readonly confidence: number;
|
|
15570
|
+
readonly reasoning: string;
|
|
15571
|
+
}
|
|
15572
|
+
interface DgReviewContext {
|
|
15573
|
+
readonly discriminator: 'dg_review_context';
|
|
15574
|
+
readonly organization_id: string;
|
|
15575
|
+
readonly item_name: string;
|
|
15576
|
+
readonly item_description?: string;
|
|
15577
|
+
readonly image_url?: string;
|
|
15578
|
+
readonly hs_code?: string;
|
|
15579
|
+
readonly categories?: string;
|
|
15580
|
+
readonly price?: string;
|
|
15581
|
+
}
|
|
15582
|
+
interface DgReviewOutput {
|
|
15583
|
+
readonly discriminator: 'dg_review_output';
|
|
15584
|
+
readonly assessments: io.flow.internal.v0.models.DgClassAssessment[];
|
|
15585
|
+
}
|
|
15580
15586
|
interface Dhl {
|
|
15581
15587
|
readonly discriminator: 'dhl';
|
|
15582
15588
|
readonly export_account_number: string;
|
|
@@ -16228,6 +16234,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16228
16234
|
readonly carrier_tracking_number?: string;
|
|
16229
16235
|
readonly fulfilled_via_replacement_order?: boolean;
|
|
16230
16236
|
}
|
|
16237
|
+
interface ExternalOrderSummary {
|
|
16238
|
+
readonly id: string;
|
|
16239
|
+
readonly edit_ids: string[];
|
|
16240
|
+
readonly created_at?: string;
|
|
16241
|
+
}
|
|
16231
16242
|
interface ExternalRatecardLink {
|
|
16232
16243
|
readonly external_ratecard_id: string;
|
|
16233
16244
|
readonly flow_ratecard_ids: string[];
|
|
@@ -16495,6 +16506,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16495
16506
|
readonly organization: string;
|
|
16496
16507
|
readonly flat_rate_label_reversal: io.flow.internal.v0.models.FlatRateLabelReversal;
|
|
16497
16508
|
}
|
|
16509
|
+
interface FlatRateLabelSubsidy {
|
|
16510
|
+
readonly id: string;
|
|
16511
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
16512
|
+
readonly organization_id: string;
|
|
16513
|
+
readonly order_number: string;
|
|
16514
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
16515
|
+
readonly tax: io.flow.common.v0.models.Money;
|
|
16516
|
+
}
|
|
16517
|
+
interface FlatRateLabelSubsidyDeleted {
|
|
16518
|
+
readonly discriminator: 'flat_rate_label_subsidy_deleted';
|
|
16519
|
+
readonly event_id: string;
|
|
16520
|
+
readonly timestamp: string;
|
|
16521
|
+
readonly organization: string;
|
|
16522
|
+
readonly id: string;
|
|
16523
|
+
}
|
|
16524
|
+
interface FlatRateLabelSubsidyUpserted {
|
|
16525
|
+
readonly discriminator: 'flat_rate_label_subsidy_upserted';
|
|
16526
|
+
readonly event_id: string;
|
|
16527
|
+
readonly timestamp: string;
|
|
16528
|
+
readonly organization: string;
|
|
16529
|
+
readonly flat_rate_label_subsidy: io.flow.internal.v0.models.FlatRateLabelSubsidy;
|
|
16530
|
+
}
|
|
16498
16531
|
interface FlatRateLabelTransaction {
|
|
16499
16532
|
readonly discriminator: 'flat_rate_label_transaction';
|
|
16500
16533
|
readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -17116,6 +17149,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17116
17149
|
readonly discriminator: 'google_tag_manager';
|
|
17117
17150
|
readonly tracker_id: string;
|
|
17118
17151
|
}
|
|
17152
|
+
interface GuaranteedShippingCalibratedOutput {
|
|
17153
|
+
readonly id: string;
|
|
17154
|
+
readonly organization_id: string;
|
|
17155
|
+
readonly channel_id: string;
|
|
17156
|
+
readonly destination_country: string;
|
|
17157
|
+
readonly coefficient: number;
|
|
17158
|
+
readonly flat_rates: io.flow.internal.v0.models.FlatRate[];
|
|
17159
|
+
readonly effective_at: string;
|
|
17160
|
+
readonly effective_until?: string;
|
|
17161
|
+
}
|
|
17162
|
+
interface GuaranteedShippingCalibratedOutputDeleted {
|
|
17163
|
+
readonly discriminator: 'guaranteed_shipping_calibrated_output_deleted';
|
|
17164
|
+
readonly event_id: string;
|
|
17165
|
+
readonly timestamp: string;
|
|
17166
|
+
readonly organization: string;
|
|
17167
|
+
readonly id: string;
|
|
17168
|
+
}
|
|
17169
|
+
interface GuaranteedShippingCalibratedOutputUpserted {
|
|
17170
|
+
readonly discriminator: 'guaranteed_shipping_calibrated_output_upserted';
|
|
17171
|
+
readonly event_id: string;
|
|
17172
|
+
readonly timestamp: string;
|
|
17173
|
+
readonly organization: string;
|
|
17174
|
+
readonly guaranteed_shipping_calibrated_output: io.flow.internal.v0.models.GuaranteedShippingCalibratedOutput;
|
|
17175
|
+
}
|
|
17119
17176
|
interface GuaranteedShippingPublishedOutput {
|
|
17120
17177
|
readonly id: string;
|
|
17121
17178
|
readonly organization_id: string;
|
|
@@ -17139,6 +17196,60 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17139
17196
|
readonly organization: string;
|
|
17140
17197
|
readonly guaranteed_shipping_published_output: io.flow.internal.v0.models.GuaranteedShippingPublishedOutput;
|
|
17141
17198
|
}
|
|
17199
|
+
interface GuaranteedShippingSettings {
|
|
17200
|
+
readonly coefficients_updated_at: number;
|
|
17201
|
+
readonly channel_id: string;
|
|
17202
|
+
readonly organization_id: string;
|
|
17203
|
+
readonly destination_country: string;
|
|
17204
|
+
readonly tax_and_duty_coefficient: number;
|
|
17205
|
+
readonly fees_coefficient: number;
|
|
17206
|
+
readonly merchant_subsidy: io.flow.common.v0.models.Money;
|
|
17207
|
+
readonly created_at: number;
|
|
17208
|
+
}
|
|
17209
|
+
interface GuaranteedShippingSettingsDeleted {
|
|
17210
|
+
readonly discriminator: 'guaranteed_shipping_settings_deleted';
|
|
17211
|
+
readonly event_id: string;
|
|
17212
|
+
readonly timestamp: string;
|
|
17213
|
+
readonly organization: string;
|
|
17214
|
+
readonly channel_id: string;
|
|
17215
|
+
readonly id: string;
|
|
17216
|
+
}
|
|
17217
|
+
interface GuaranteedShippingSettingsDestinationUpdate {
|
|
17218
|
+
readonly country: string;
|
|
17219
|
+
readonly updated_at: string;
|
|
17220
|
+
readonly tax_and_duty_coefficient: number;
|
|
17221
|
+
readonly fees_coefficient: number;
|
|
17222
|
+
readonly merchant_subsidy: io.flow.common.v0.models.Money;
|
|
17223
|
+
}
|
|
17224
|
+
interface GuaranteedShippingSettingsUpdate {
|
|
17225
|
+
readonly channel_id: string;
|
|
17226
|
+
readonly organization_id: string;
|
|
17227
|
+
readonly destination_updates: io.flow.internal.v0.models.GuaranteedShippingSettingsDestinationUpdate[];
|
|
17228
|
+
}
|
|
17229
|
+
interface GuaranteedShippingSettingsUpdateDeleted {
|
|
17230
|
+
readonly discriminator: 'guaranteed_shipping_settings_update_deleted';
|
|
17231
|
+
readonly event_id: string;
|
|
17232
|
+
readonly timestamp: string;
|
|
17233
|
+
readonly organization: string;
|
|
17234
|
+
readonly channel_id: string;
|
|
17235
|
+
readonly id: string;
|
|
17236
|
+
}
|
|
17237
|
+
interface GuaranteedShippingSettingsUpdateUpserted {
|
|
17238
|
+
readonly discriminator: 'guaranteed_shipping_settings_update_upserted';
|
|
17239
|
+
readonly event_id: string;
|
|
17240
|
+
readonly timestamp: string;
|
|
17241
|
+
readonly organization: string;
|
|
17242
|
+
readonly channel_id: string;
|
|
17243
|
+
readonly guaranteed_shipping_settings_update: io.flow.internal.v0.models.GuaranteedShippingSettingsUpdate;
|
|
17244
|
+
}
|
|
17245
|
+
interface GuaranteedShippingSettingsUpserted {
|
|
17246
|
+
readonly discriminator: 'guaranteed_shipping_settings_upserted';
|
|
17247
|
+
readonly event_id: string;
|
|
17248
|
+
readonly timestamp: string;
|
|
17249
|
+
readonly organization: string;
|
|
17250
|
+
readonly channel_id: string;
|
|
17251
|
+
readonly guaranteed_shipping_settings: io.flow.internal.v0.models.GuaranteedShippingSettings;
|
|
17252
|
+
}
|
|
17142
17253
|
interface HarmonizationClassificationStatisticsData {
|
|
17143
17254
|
readonly statistics: io.flow.internal.v0.models.ClassificationStatistics;
|
|
17144
17255
|
}
|
|
@@ -17485,6 +17596,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17485
17596
|
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
17486
17597
|
readonly created_at: string;
|
|
17487
17598
|
}
|
|
17599
|
+
interface Issuer {
|
|
17600
|
+
readonly id: string;
|
|
17601
|
+
readonly iin: string;
|
|
17602
|
+
readonly name?: string;
|
|
17603
|
+
readonly country?: string;
|
|
17604
|
+
readonly brand?: string;
|
|
17605
|
+
readonly type?: string;
|
|
17606
|
+
readonly category?: string;
|
|
17607
|
+
readonly website?: string;
|
|
17608
|
+
readonly phone?: string;
|
|
17609
|
+
}
|
|
17610
|
+
interface IssuerDeleted {
|
|
17611
|
+
readonly discriminator: 'issuer_deleted';
|
|
17612
|
+
readonly event_id: string;
|
|
17613
|
+
readonly timestamp: string;
|
|
17614
|
+
readonly issuer: io.flow.internal.v0.models.Issuer;
|
|
17615
|
+
}
|
|
17616
|
+
interface IssuerUpserted {
|
|
17617
|
+
readonly discriminator: 'issuer_upserted';
|
|
17618
|
+
readonly event_id: string;
|
|
17619
|
+
readonly timestamp: string;
|
|
17620
|
+
readonly issuer: io.flow.internal.v0.models.Issuer;
|
|
17621
|
+
}
|
|
17488
17622
|
interface ItemClassification {
|
|
17489
17623
|
readonly id?: string;
|
|
17490
17624
|
readonly organization: string;
|
|
@@ -17596,6 +17730,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17596
17730
|
readonly timestamp: string;
|
|
17597
17731
|
readonly item_harmonization: io.flow.internal.v0.models.ItemHarmonization;
|
|
17598
17732
|
}
|
|
17733
|
+
interface ItemHs6Override {
|
|
17734
|
+
readonly item_number: string;
|
|
17735
|
+
readonly hs6: string;
|
|
17736
|
+
}
|
|
17737
|
+
interface ItemHs6OverrideForm {
|
|
17738
|
+
readonly item_number: string;
|
|
17739
|
+
readonly hs6: string;
|
|
17740
|
+
readonly hs6_description?: string;
|
|
17741
|
+
}
|
|
17742
|
+
interface ItemHs6OverrideRejection {
|
|
17743
|
+
readonly item_number: string;
|
|
17744
|
+
readonly message: string;
|
|
17745
|
+
}
|
|
17746
|
+
interface ItemHs6OverrideResult {
|
|
17747
|
+
readonly applied: io.flow.internal.v0.models.ItemHs6Override[];
|
|
17748
|
+
readonly rejected: io.flow.internal.v0.models.ItemHs6OverrideRejection[];
|
|
17749
|
+
}
|
|
17750
|
+
interface ItemHs6OverridesForm {
|
|
17751
|
+
readonly items: io.flow.internal.v0.models.ItemHs6OverrideForm[];
|
|
17752
|
+
}
|
|
17599
17753
|
interface ItemQueryResponse {
|
|
17600
17754
|
readonly q: string;
|
|
17601
17755
|
readonly items: io.flow.catalog.v0.models.Item[];
|
|
@@ -18798,6 +18952,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18798
18952
|
readonly from_service_id: string;
|
|
18799
18953
|
readonly to_service_id: string;
|
|
18800
18954
|
}
|
|
18955
|
+
interface OrderSettings {
|
|
18956
|
+
readonly tax_and_duty_inclusivity_setting?: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
|
|
18957
|
+
}
|
|
18801
18958
|
interface OrderSummary {
|
|
18802
18959
|
readonly id: string;
|
|
18803
18960
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
@@ -19373,6 +19530,32 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19373
19530
|
readonly freight: number;
|
|
19374
19531
|
readonly insurance: number;
|
|
19375
19532
|
}
|
|
19533
|
+
interface OutboundShippingCost {
|
|
19534
|
+
readonly channel_id: string;
|
|
19535
|
+
readonly organization_id: string;
|
|
19536
|
+
readonly destination_country: string;
|
|
19537
|
+
readonly carrier_service_id: string;
|
|
19538
|
+
readonly cost: io.flow.common.v0.models.Money;
|
|
19539
|
+
readonly updated_at: number;
|
|
19540
|
+
readonly run_id: string;
|
|
19541
|
+
readonly model_version: string;
|
|
19542
|
+
}
|
|
19543
|
+
interface OutboundShippingCostDeleted {
|
|
19544
|
+
readonly discriminator: 'outbound_shipping_cost_deleted';
|
|
19545
|
+
readonly event_id: string;
|
|
19546
|
+
readonly timestamp: string;
|
|
19547
|
+
readonly organization: string;
|
|
19548
|
+
readonly channel_id: string;
|
|
19549
|
+
readonly id: string;
|
|
19550
|
+
}
|
|
19551
|
+
interface OutboundShippingCostUpserted {
|
|
19552
|
+
readonly discriminator: 'outbound_shipping_cost_upserted';
|
|
19553
|
+
readonly event_id: string;
|
|
19554
|
+
readonly timestamp: string;
|
|
19555
|
+
readonly organization: string;
|
|
19556
|
+
readonly channel_id: string;
|
|
19557
|
+
readonly outbound_shipping_cost: io.flow.internal.v0.models.OutboundShippingCost;
|
|
19558
|
+
}
|
|
19376
19559
|
interface Partner {
|
|
19377
19560
|
readonly id: string;
|
|
19378
19561
|
readonly name: string;
|
|
@@ -19812,6 +19995,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19812
19995
|
readonly timestamp: string;
|
|
19813
19996
|
readonly refund: io.flow.internal.v0.models.PaypalInternalRefund;
|
|
19814
19997
|
}
|
|
19998
|
+
interface PcReviewContext {
|
|
19999
|
+
readonly discriminator: 'pc_review_context';
|
|
20000
|
+
readonly organization_id: string;
|
|
20001
|
+
readonly item_name: string;
|
|
20002
|
+
readonly item_description?: string;
|
|
20003
|
+
readonly categories?: string;
|
|
20004
|
+
readonly taxonomy_category?: string;
|
|
20005
|
+
readonly image_url?: string;
|
|
20006
|
+
}
|
|
20007
|
+
interface PcReviewOutput {
|
|
20008
|
+
readonly discriminator: 'pc_review_output';
|
|
20009
|
+
readonly hs_code: string;
|
|
20010
|
+
readonly alternates: string[];
|
|
20011
|
+
readonly confidence: number;
|
|
20012
|
+
readonly reasoning: string;
|
|
20013
|
+
}
|
|
19815
20014
|
interface PendingBankPayment {
|
|
19816
20015
|
readonly id: string;
|
|
19817
20016
|
readonly account: io.flow.internal.v0.models.AccountSummary;
|
|
@@ -19944,6 +20143,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19944
20143
|
readonly catalog_size: number;
|
|
19945
20144
|
readonly processed_product_count: number;
|
|
19946
20145
|
readonly last_request: string;
|
|
20146
|
+
readonly screening_mode?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
19947
20147
|
readonly updated_by_user_id: string;
|
|
19948
20148
|
}
|
|
19949
20149
|
interface PreonboardingMerchantDeleted {
|
|
@@ -20350,6 +20550,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20350
20550
|
readonly contact: io.flow.common.v0.models.Contact;
|
|
20351
20551
|
readonly location: io.flow.common.v0.models.Address;
|
|
20352
20552
|
}
|
|
20553
|
+
interface PvReviewContext {
|
|
20554
|
+
readonly discriminator: 'pv_review_context';
|
|
20555
|
+
readonly organization_id: string;
|
|
20556
|
+
readonly item_name: string;
|
|
20557
|
+
readonly item_description?: string;
|
|
20558
|
+
readonly image_url?: string;
|
|
20559
|
+
readonly rule_name: string;
|
|
20560
|
+
readonly rule_reason_code: string;
|
|
20561
|
+
readonly hs_code?: string;
|
|
20562
|
+
readonly categories?: string;
|
|
20563
|
+
readonly price?: string;
|
|
20564
|
+
readonly matching_positive_keywords: string[];
|
|
20565
|
+
readonly matching_negative_keywords: string[];
|
|
20566
|
+
}
|
|
20567
|
+
interface PvReviewOutput {
|
|
20568
|
+
readonly discriminator: 'pv_review_output';
|
|
20569
|
+
readonly decision: io.flow.internal.v0.enums.PvDecision;
|
|
20570
|
+
readonly confidence: number;
|
|
20571
|
+
readonly reasoning: string;
|
|
20572
|
+
}
|
|
20353
20573
|
interface Quote {
|
|
20354
20574
|
readonly id: string;
|
|
20355
20575
|
readonly base: string;
|
|
@@ -20682,6 +20902,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20682
20902
|
readonly discriminator: 'rex';
|
|
20683
20903
|
readonly number: string;
|
|
20684
20904
|
}
|
|
20905
|
+
interface RemediateTaxDutyMetadata {
|
|
20906
|
+
readonly discriminator: 'remediate_tax_duty_metadata';
|
|
20907
|
+
readonly arm: io.flow.internal.v0.enums.RemediateTaxDutyArm;
|
|
20908
|
+
}
|
|
20685
20909
|
interface RemittanceResponsibility {
|
|
20686
20910
|
readonly tax: io.flow.internal.v0.enums.ResponsibleParty;
|
|
20687
20911
|
readonly duty: io.flow.internal.v0.enums.ResponsibleParty;
|
|
@@ -21258,6 +21482,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21258
21482
|
readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
|
|
21259
21483
|
readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
21260
21484
|
readonly activation_status: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
21485
|
+
readonly evaluation_mode: io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
|
|
21261
21486
|
}
|
|
21262
21487
|
interface RestrictionRuleDecisionForm {
|
|
21263
21488
|
readonly rule_id: string;
|
|
@@ -21312,6 +21537,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21312
21537
|
readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
|
|
21313
21538
|
readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
21314
21539
|
readonly activation_status: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
21540
|
+
readonly evaluation_mode: io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
|
|
21315
21541
|
}
|
|
21316
21542
|
interface RestrictionRuleLaneExemption {
|
|
21317
21543
|
readonly id: string;
|
|
@@ -21578,6 +21804,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21578
21804
|
readonly organization: string;
|
|
21579
21805
|
readonly revenue_record: io.flow.internal.v0.models.RevenueRecord;
|
|
21580
21806
|
}
|
|
21807
|
+
interface ReviewRequestItem {
|
|
21808
|
+
readonly review_type: io.flow.internal.v0.enums.AiReviewType;
|
|
21809
|
+
readonly review_id: string;
|
|
21810
|
+
readonly context: io.flow.internal.v0.unions.AiReviewContext;
|
|
21811
|
+
}
|
|
21581
21812
|
interface RoutingAccount {
|
|
21582
21813
|
readonly discriminator: 'routing_account';
|
|
21583
21814
|
readonly processor: io.flow.internal.v0.enums.Processor;
|
|
@@ -21727,6 +21958,38 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21727
21958
|
readonly current_error?: io.flow.sellability.v0.models.SellabilityError[];
|
|
21728
21959
|
readonly merchant_error?: io.flow.sellability.v0.models.SellabilityError[];
|
|
21729
21960
|
}
|
|
21961
|
+
interface SellabilityPendingVerification {
|
|
21962
|
+
readonly id: string;
|
|
21963
|
+
readonly merchant_id: string;
|
|
21964
|
+
readonly product_id: string;
|
|
21965
|
+
readonly channel: string;
|
|
21966
|
+
readonly request_id: string;
|
|
21967
|
+
readonly name: string;
|
|
21968
|
+
readonly description: string;
|
|
21969
|
+
readonly taxonomy_category?: string;
|
|
21970
|
+
readonly hs6_code?: string;
|
|
21971
|
+
readonly price?: string;
|
|
21972
|
+
readonly rule_id: string;
|
|
21973
|
+
readonly reason_code: string;
|
|
21974
|
+
readonly matching_keywords?: string;
|
|
21975
|
+
readonly status: string;
|
|
21976
|
+
readonly agent_decision?: string;
|
|
21977
|
+
readonly agent_reasoning?: string;
|
|
21978
|
+
readonly created_at: string;
|
|
21979
|
+
readonly updated_at: string;
|
|
21980
|
+
}
|
|
21981
|
+
interface SellabilityPendingVerificationDeleted {
|
|
21982
|
+
readonly discriminator: 'sellability_pending_verification_deleted';
|
|
21983
|
+
readonly event_id: string;
|
|
21984
|
+
readonly timestamp: string;
|
|
21985
|
+
readonly id: string;
|
|
21986
|
+
}
|
|
21987
|
+
interface SellabilityPendingVerificationUpserted {
|
|
21988
|
+
readonly discriminator: 'sellability_pending_verification_upserted';
|
|
21989
|
+
readonly event_id: string;
|
|
21990
|
+
readonly timestamp: string;
|
|
21991
|
+
readonly sellability_pending_verification: io.flow.internal.v0.models.SellabilityPendingVerification;
|
|
21992
|
+
}
|
|
21730
21993
|
interface ServiceFees {
|
|
21731
21994
|
readonly ratecard: io.flow.internal.v0.models.RatecardInternalSummary;
|
|
21732
21995
|
readonly service_fees: io.flow.ratecard.v0.unions.ServiceFee[];
|
|
@@ -23292,6 +23555,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23292
23555
|
interface TaxonomyCategoryHs6Ref {
|
|
23293
23556
|
readonly id: string;
|
|
23294
23557
|
readonly taxonomy_category: string;
|
|
23558
|
+
readonly taxonomy_category_id?: string;
|
|
23295
23559
|
readonly hs6: string;
|
|
23296
23560
|
readonly updated_by_user_id: string;
|
|
23297
23561
|
}
|
|
@@ -23748,6 +24012,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23748
24012
|
interface UnphrasedProductsExport {
|
|
23749
24013
|
readonly message: string;
|
|
23750
24014
|
}
|
|
24015
|
+
interface UnserviceableTaxonomyCategory {
|
|
24016
|
+
readonly id: string;
|
|
24017
|
+
readonly taxonomy_category: string;
|
|
24018
|
+
readonly taxonomy_category_id?: string;
|
|
24019
|
+
readonly updated_by_user_id: string;
|
|
24020
|
+
}
|
|
24021
|
+
interface UnserviceableTaxonomyCategoryDeleted {
|
|
24022
|
+
readonly discriminator: 'unserviceable_taxonomy_category_deleted';
|
|
24023
|
+
readonly event_id: string;
|
|
24024
|
+
readonly timestamp: string;
|
|
24025
|
+
readonly id: string;
|
|
24026
|
+
}
|
|
24027
|
+
interface UnserviceableTaxonomyCategoryUpserted {
|
|
24028
|
+
readonly discriminator: 'unserviceable_taxonomy_category_upserted';
|
|
24029
|
+
readonly event_id: string;
|
|
24030
|
+
readonly timestamp: string;
|
|
24031
|
+
readonly unserviceable_taxonomy_category: io.flow.internal.v0.models.UnserviceableTaxonomyCategory;
|
|
24032
|
+
}
|
|
23751
24033
|
interface Ups {
|
|
23752
24034
|
readonly discriminator: 'ups';
|
|
23753
24035
|
readonly client_id: string;
|
|
@@ -23896,6 +24178,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23896
24178
|
declare namespace io.flow.internal.v0.unions {
|
|
23897
24179
|
type AdjustmentAmount = io.flow.internal.v0.models.AdjustmentAmountPercentage | io.flow.internal.v0.models.AdjustmentAmountFixed;
|
|
23898
24180
|
type AdjustmentDetails = io.flow.internal.v0.models.AdjustmentAmountPercentage | io.flow.internal.v0.models.AdjustmentAmountFixed | io.flow.internal.v0.models.AdjustmentDetailsProcessingTransaction;
|
|
24181
|
+
type AiOutput = io.flow.internal.v0.models.PvReviewOutput | io.flow.internal.v0.models.DgReviewOutput | io.flow.internal.v0.models.PcReviewOutput;
|
|
24182
|
+
type AiReviewContext = io.flow.internal.v0.models.PvReviewContext | io.flow.internal.v0.models.DgReviewContext | io.flow.internal.v0.models.PcReviewContext;
|
|
23899
24183
|
type AuthorizationPayload = io.flow.internal.v0.models.ApplePayAuthorizationPayload | io.flow.internal.v0.models.PaypalAuthorizationPayload;
|
|
23900
24184
|
type AuthorizedOrderCharge = io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
23901
24185
|
type CalculatorStamp = io.flow.internal.v0.models.MessageStamp | io.flow.internal.v0.models.CalculationStep;
|
|
@@ -23921,7 +24205,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23921
24205
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
23922
24206
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
|
|
23923
24207
|
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;
|
|
24208
|
+
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.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
24209
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
23926
24210
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
23927
24211
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -23964,7 +24248,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23964
24248
|
type TariffEligibilityData = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData;
|
|
23965
24249
|
type TariffEligibilityForm = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
|
|
23966
24250
|
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;
|
|
24251
|
+
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
24252
|
type TaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
23969
24253
|
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
24254
|
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 +24290,10 @@ export declare type AccountUpsertedV2 = io.flow.internal.v0.models.AccountUpsert
|
|
|
24006
24290
|
export declare type AccountingPendingOrderMetadata = io.flow.internal.v0.models.AccountingPendingOrderMetadata;
|
|
24007
24291
|
export declare type AccountingReturnMetadata = io.flow.internal.v0.models.AccountingReturnMetadata;
|
|
24008
24292
|
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
24293
|
export declare type AdaptiveShippingOrderGuarantee = io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
24017
24294
|
export declare type AdaptiveShippingOrderGuaranteeDeleted = io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted;
|
|
24018
24295
|
export declare type AdaptiveShippingOrderGuaranteeState = io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState;
|
|
24019
24296
|
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
24297
|
export declare type AdditionalImportTax = io.flow.internal.v0.models.AdditionalImportTax;
|
|
24024
24298
|
export declare type AdjustmentAmount = io.flow.internal.v0.unions.AdjustmentAmount;
|
|
24025
24299
|
export declare type AdjustmentAmountFixed = io.flow.internal.v0.models.AdjustmentAmountFixed;
|
|
@@ -24077,6 +24351,17 @@ export declare type AfterpayRefund = io.flow.internal.v0.models.AfterpayRefund;
|
|
|
24077
24351
|
export declare type AfterpayRefundDeleted = io.flow.internal.v0.models.AfterpayRefundDeleted;
|
|
24078
24352
|
export declare type AfterpayRefundUpserted = io.flow.internal.v0.models.AfterpayRefundUpserted;
|
|
24079
24353
|
export declare type AftershipWebhook = io.flow.internal.v0.models.AftershipWebhook;
|
|
24354
|
+
export declare type AiOutput = io.flow.internal.v0.unions.AiOutput;
|
|
24355
|
+
export declare type AiReviewBatchSubmitted = io.flow.internal.v0.models.AiReviewBatchSubmitted;
|
|
24356
|
+
export declare type AiReviewConsumer = io.flow.internal.v0.enums.AiReviewConsumer;
|
|
24357
|
+
export declare type AiReviewContext = io.flow.internal.v0.unions.AiReviewContext;
|
|
24358
|
+
export declare type AiReviewFailedItem = io.flow.internal.v0.models.AiReviewFailedItem;
|
|
24359
|
+
export declare type AiReviewFailureReason = io.flow.internal.v0.enums.AiReviewFailureReason;
|
|
24360
|
+
export declare type AiReviewRequestFailed = io.flow.internal.v0.models.AiReviewRequestFailed;
|
|
24361
|
+
export declare type AiReviewResult = io.flow.internal.v0.models.AiReviewResult;
|
|
24362
|
+
export declare type AiReviewResultDeleted = io.flow.internal.v0.models.AiReviewResultDeleted;
|
|
24363
|
+
export declare type AiReviewResultUpserted = io.flow.internal.v0.models.AiReviewResultUpserted;
|
|
24364
|
+
export declare type AiReviewType = io.flow.internal.v0.enums.AiReviewType;
|
|
24080
24365
|
export declare type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
|
|
24081
24366
|
export declare type AllocationItemReference = io.flow.internal.v0.models.AllocationItemReference;
|
|
24082
24367
|
export declare type AllowedLabels = io.flow.internal.v0.models.AllowedLabels;
|
|
@@ -24493,6 +24778,9 @@ export declare type DeliveredDutyPreferenceForm = io.flow.internal.v0.models.Del
|
|
|
24493
24778
|
export declare type DeminimisAdjustmentType = io.flow.internal.v0.enums.DeminimisAdjustmentType;
|
|
24494
24779
|
export declare type DestinationDutyComparison = io.flow.internal.v0.models.DestinationDutyComparison;
|
|
24495
24780
|
export declare type DestinationError = io.flow.internal.v0.models.DestinationError;
|
|
24781
|
+
export declare type DgClassAssessment = io.flow.internal.v0.models.DgClassAssessment;
|
|
24782
|
+
export declare type DgReviewContext = io.flow.internal.v0.models.DgReviewContext;
|
|
24783
|
+
export declare type DgReviewOutput = io.flow.internal.v0.models.DgReviewOutput;
|
|
24496
24784
|
export declare type Dhl = io.flow.internal.v0.models.Dhl;
|
|
24497
24785
|
export declare type DhlEcommerce = io.flow.internal.v0.models.DhlEcommerce;
|
|
24498
24786
|
export declare type DimensionEstimateOpsInput = io.flow.internal.v0.models.DimensionEstimateOpsInput;
|
|
@@ -24611,6 +24899,7 @@ export declare type ExternalFulfillmentProof = io.flow.internal.v0.models.Extern
|
|
|
24611
24899
|
export declare type ExternalFulfillmentProofForm = io.flow.internal.v0.models.ExternalFulfillmentProofForm;
|
|
24612
24900
|
export declare type ExternalFulfillmentProofTracking = io.flow.internal.v0.models.ExternalFulfillmentProofTracking;
|
|
24613
24901
|
export declare type ExternalFulfillmentProofTrackingForm = io.flow.internal.v0.models.ExternalFulfillmentProofTrackingForm;
|
|
24902
|
+
export declare type ExternalOrderSummary = io.flow.internal.v0.models.ExternalOrderSummary;
|
|
24614
24903
|
export declare type ExternalRatecardLink = io.flow.internal.v0.models.ExternalRatecardLink;
|
|
24615
24904
|
export declare type ExternalRatecardLinkResponse = io.flow.internal.v0.models.ExternalRatecardLinkResponse;
|
|
24616
24905
|
export declare type FacebookPixel = io.flow.internal.v0.models.FacebookPixel;
|
|
@@ -24662,6 +24951,9 @@ export declare type FlatRateLabelGuaranteeStatus = io.flow.internal.v0.enums.Fla
|
|
|
24662
24951
|
export declare type FlatRateLabelReversal = io.flow.internal.v0.models.FlatRateLabelReversal;
|
|
24663
24952
|
export declare type FlatRateLabelReversalDeleted = io.flow.internal.v0.models.FlatRateLabelReversalDeleted;
|
|
24664
24953
|
export declare type FlatRateLabelReversalUpserted = io.flow.internal.v0.models.FlatRateLabelReversalUpserted;
|
|
24954
|
+
export declare type FlatRateLabelSubsidy = io.flow.internal.v0.models.FlatRateLabelSubsidy;
|
|
24955
|
+
export declare type FlatRateLabelSubsidyDeleted = io.flow.internal.v0.models.FlatRateLabelSubsidyDeleted;
|
|
24956
|
+
export declare type FlatRateLabelSubsidyUpserted = io.flow.internal.v0.models.FlatRateLabelSubsidyUpserted;
|
|
24665
24957
|
export declare type FlatRateLabelTransaction = io.flow.internal.v0.models.FlatRateLabelTransaction;
|
|
24666
24958
|
export declare type FlatRateLabelTransactionType = io.flow.internal.v0.enums.FlatRateLabelTransactionType;
|
|
24667
24959
|
export declare type FlexeWebhook = io.flow.internal.v0.models.FlexeWebhook;
|
|
@@ -24768,9 +25060,19 @@ export declare type GoogleShoppingAccountParameters = io.flow.internal.v0.models
|
|
|
24768
25060
|
export declare type GoogleShoppingSetting = io.flow.internal.v0.models.GoogleShoppingSetting;
|
|
24769
25061
|
export declare type GoogleTagManager = io.flow.internal.v0.models.GoogleTagManager;
|
|
24770
25062
|
export declare type GraphqlServiceTypes = io.flow.internal.v0.enums.GraphqlServiceTypes;
|
|
25063
|
+
export declare type GuaranteedShippingCalibratedOutput = io.flow.internal.v0.models.GuaranteedShippingCalibratedOutput;
|
|
25064
|
+
export declare type GuaranteedShippingCalibratedOutputDeleted = io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputDeleted;
|
|
25065
|
+
export declare type GuaranteedShippingCalibratedOutputUpserted = io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputUpserted;
|
|
24771
25066
|
export declare type GuaranteedShippingPublishedOutput = io.flow.internal.v0.models.GuaranteedShippingPublishedOutput;
|
|
24772
25067
|
export declare type GuaranteedShippingPublishedOutputDeleted = io.flow.internal.v0.models.GuaranteedShippingPublishedOutputDeleted;
|
|
24773
25068
|
export declare type GuaranteedShippingPublishedOutputUpserted = io.flow.internal.v0.models.GuaranteedShippingPublishedOutputUpserted;
|
|
25069
|
+
export declare type GuaranteedShippingSettings = io.flow.internal.v0.models.GuaranteedShippingSettings;
|
|
25070
|
+
export declare type GuaranteedShippingSettingsDeleted = io.flow.internal.v0.models.GuaranteedShippingSettingsDeleted;
|
|
25071
|
+
export declare type GuaranteedShippingSettingsDestinationUpdate = io.flow.internal.v0.models.GuaranteedShippingSettingsDestinationUpdate;
|
|
25072
|
+
export declare type GuaranteedShippingSettingsUpdate = io.flow.internal.v0.models.GuaranteedShippingSettingsUpdate;
|
|
25073
|
+
export declare type GuaranteedShippingSettingsUpdateDeleted = io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateDeleted;
|
|
25074
|
+
export declare type GuaranteedShippingSettingsUpdateUpserted = io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateUpserted;
|
|
25075
|
+
export declare type GuaranteedShippingSettingsUpserted = io.flow.internal.v0.models.GuaranteedShippingSettingsUpserted;
|
|
24774
25076
|
export declare type HarmonizationClassificationStatisticsData = io.flow.internal.v0.models.HarmonizationClassificationStatisticsData;
|
|
24775
25077
|
export declare type HarmonizationClassificationStatisticsPublished = io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished;
|
|
24776
25078
|
export declare type HarmonizationCodesImport = io.flow.internal.v0.models.HarmonizationCodesImport;
|
|
@@ -24827,6 +25129,9 @@ export declare type InvoiceInfoForm = io.flow.internal.v0.models.InvoiceInfoForm
|
|
|
24827
25129
|
export declare type InvoiceLine = io.flow.internal.v0.models.InvoiceLine;
|
|
24828
25130
|
export declare type InvoiceLineItem = io.flow.internal.v0.models.InvoiceLineItem;
|
|
24829
25131
|
export declare type InvoiceTransaction = io.flow.internal.v0.models.InvoiceTransaction;
|
|
25132
|
+
export declare type Issuer = io.flow.internal.v0.models.Issuer;
|
|
25133
|
+
export declare type IssuerDeleted = io.flow.internal.v0.models.IssuerDeleted;
|
|
25134
|
+
export declare type IssuerUpserted = io.flow.internal.v0.models.IssuerUpserted;
|
|
24830
25135
|
export declare type ItemClassification = io.flow.internal.v0.models.ItemClassification;
|
|
24831
25136
|
export declare type ItemClassificationAction = io.flow.internal.v0.enums.ItemClassificationAction;
|
|
24832
25137
|
export declare type ItemClassificationForm = io.flow.internal.v0.models.ItemClassificationForm;
|
|
@@ -24843,6 +25148,11 @@ export declare type ItemHarmonization = io.flow.internal.v0.models.ItemHarmoniza
|
|
|
24843
25148
|
export declare type ItemHarmonizationDeleted = io.flow.internal.v0.models.ItemHarmonizationDeleted;
|
|
24844
25149
|
export declare type ItemHarmonizationStatus = io.flow.internal.v0.enums.ItemHarmonizationStatus;
|
|
24845
25150
|
export declare type ItemHarmonizationUpserted = io.flow.internal.v0.models.ItemHarmonizationUpserted;
|
|
25151
|
+
export declare type ItemHs6Override = io.flow.internal.v0.models.ItemHs6Override;
|
|
25152
|
+
export declare type ItemHs6OverrideForm = io.flow.internal.v0.models.ItemHs6OverrideForm;
|
|
25153
|
+
export declare type ItemHs6OverrideRejection = io.flow.internal.v0.models.ItemHs6OverrideRejection;
|
|
25154
|
+
export declare type ItemHs6OverrideResult = io.flow.internal.v0.models.ItemHs6OverrideResult;
|
|
25155
|
+
export declare type ItemHs6OverridesForm = io.flow.internal.v0.models.ItemHs6OverridesForm;
|
|
24846
25156
|
export declare type ItemQuantityAction = io.flow.internal.v0.enums.ItemQuantityAction;
|
|
24847
25157
|
export declare type ItemQueryResponse = io.flow.internal.v0.models.ItemQueryResponse;
|
|
24848
25158
|
export declare type ItemRestriction = io.flow.internal.v0.models.ItemRestriction;
|
|
@@ -25062,6 +25372,7 @@ export declare type OrderRevenueRegionDataPoint = io.flow.internal.v0.models.Ord
|
|
|
25062
25372
|
export declare type OrderRevenueTimelineChart = io.flow.internal.v0.models.OrderRevenueTimelineChart;
|
|
25063
25373
|
export declare type OrderRevenueTimelineDataPoint = io.flow.internal.v0.models.OrderRevenueTimelineDataPoint;
|
|
25064
25374
|
export declare type OrderServiceChangeCsvForm = io.flow.internal.v0.models.OrderServiceChangeCsvForm;
|
|
25375
|
+
export declare type OrderSettings = io.flow.internal.v0.models.OrderSettings;
|
|
25065
25376
|
export declare type OrderSummary = io.flow.internal.v0.models.OrderSummary;
|
|
25066
25377
|
export declare type OrderTaxAndDutyInclusivitySetting = io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
25067
25378
|
export declare type OrderTaxAndDutyInclusivitySettingDeleted = io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted;
|
|
@@ -25156,6 +25467,9 @@ export declare type OtherRecordOrderSummaryIdentifiers = io.flow.internal.v0.mod
|
|
|
25156
25467
|
export declare type OtherRecordOrganizationSummary = io.flow.internal.v0.models.OtherRecordOrganizationSummary;
|
|
25157
25468
|
export declare type OtherRecordUpserted = io.flow.internal.v0.models.OtherRecordUpserted;
|
|
25158
25469
|
export declare type OtherRecordWithholdings = io.flow.internal.v0.models.OtherRecordWithholdings;
|
|
25470
|
+
export declare type OutboundShippingCost = io.flow.internal.v0.models.OutboundShippingCost;
|
|
25471
|
+
export declare type OutboundShippingCostDeleted = io.flow.internal.v0.models.OutboundShippingCostDeleted;
|
|
25472
|
+
export declare type OutboundShippingCostUpserted = io.flow.internal.v0.models.OutboundShippingCostUpserted;
|
|
25159
25473
|
export declare type OutputStyle = io.flow.internal.v0.enums.OutputStyle;
|
|
25160
25474
|
export declare type Owner = io.flow.internal.v0.enums.Owner;
|
|
25161
25475
|
export declare type Partner = io.flow.internal.v0.models.Partner;
|
|
@@ -25223,6 +25537,8 @@ export declare type PaypalPaymentDeleted = io.flow.internal.v0.models.PaypalPaym
|
|
|
25223
25537
|
export declare type PaypalPaymentUpserted = io.flow.internal.v0.models.PaypalPaymentUpserted;
|
|
25224
25538
|
export declare type PaypalRefundDeleted = io.flow.internal.v0.models.PaypalRefundDeleted;
|
|
25225
25539
|
export declare type PaypalRefundUpserted = io.flow.internal.v0.models.PaypalRefundUpserted;
|
|
25540
|
+
export declare type PcReviewContext = io.flow.internal.v0.models.PcReviewContext;
|
|
25541
|
+
export declare type PcReviewOutput = io.flow.internal.v0.models.PcReviewOutput;
|
|
25226
25542
|
export declare type PendingBankPayment = io.flow.internal.v0.models.PendingBankPayment;
|
|
25227
25543
|
export declare type PendingBankPaymentDetail = io.flow.internal.v0.models.PendingBankPaymentDetail;
|
|
25228
25544
|
export declare type PendingOrder = io.flow.internal.v0.models.PendingOrder;
|
|
@@ -25320,6 +25636,9 @@ export declare type PspRoutingDistributionRevision = io.flow.internal.v0.models.
|
|
|
25320
25636
|
export declare type PspRoutingDistributionRevisionForm = io.flow.internal.v0.models.PspRoutingDistributionRevisionForm;
|
|
25321
25637
|
export declare type PublicHub = io.flow.internal.v0.models.PublicHub;
|
|
25322
25638
|
export declare type PublicHubForm = io.flow.internal.v0.models.PublicHubForm;
|
|
25639
|
+
export declare type PvDecision = io.flow.internal.v0.enums.PvDecision;
|
|
25640
|
+
export declare type PvReviewContext = io.flow.internal.v0.models.PvReviewContext;
|
|
25641
|
+
export declare type PvReviewOutput = io.flow.internal.v0.models.PvReviewOutput;
|
|
25323
25642
|
export declare type Quote = io.flow.internal.v0.models.Quote;
|
|
25324
25643
|
export declare type QuoteDeleted = io.flow.internal.v0.models.QuoteDeleted;
|
|
25325
25644
|
export declare type QuoteUpserted = io.flow.internal.v0.models.QuoteUpserted;
|
|
@@ -25378,6 +25697,8 @@ export declare type RedirectReason = io.flow.internal.v0.enums.RedirectReason;
|
|
|
25378
25697
|
export declare type RegisteredExporterTariffEligibilityData = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData;
|
|
25379
25698
|
export declare type RegisteredExporterTariffEligibilityForm = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
|
|
25380
25699
|
export declare type RejectionReason = io.flow.internal.v0.enums.RejectionReason;
|
|
25700
|
+
export declare type RemediateTaxDutyArm = io.flow.internal.v0.enums.RemediateTaxDutyArm;
|
|
25701
|
+
export declare type RemediateTaxDutyMetadata = io.flow.internal.v0.models.RemediateTaxDutyMetadata;
|
|
25381
25702
|
export declare type RemittanceResponsibility = io.flow.internal.v0.models.RemittanceResponsibility;
|
|
25382
25703
|
export declare type Report = io.flow.internal.v0.models.Report;
|
|
25383
25704
|
export declare type ReportAccount = io.flow.internal.v0.models.ReportAccount;
|
|
@@ -25486,6 +25807,7 @@ export declare type RestrictionRuleEffect = io.flow.internal.v0.models.Restricti
|
|
|
25486
25807
|
export declare type RestrictionRuleEffectDeleted = io.flow.internal.v0.models.RestrictionRuleEffectDeleted;
|
|
25487
25808
|
export declare type RestrictionRuleEffectForm = io.flow.internal.v0.models.RestrictionRuleEffectForm;
|
|
25488
25809
|
export declare type RestrictionRuleEffectUpserted = io.flow.internal.v0.models.RestrictionRuleEffectUpserted;
|
|
25810
|
+
export declare type RestrictionRuleEvaluationMode = io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
|
|
25489
25811
|
export declare type RestrictionRuleExceptionAction = io.flow.internal.v0.enums.RestrictionRuleExceptionAction;
|
|
25490
25812
|
export declare type RestrictionRuleForm = io.flow.internal.v0.models.RestrictionRuleForm;
|
|
25491
25813
|
export declare type RestrictionRuleLaneExemption = io.flow.internal.v0.models.RestrictionRuleLaneExemption;
|
|
@@ -25524,6 +25846,7 @@ export declare type RevenueRecord = io.flow.internal.v0.models.RevenueRecord;
|
|
|
25524
25846
|
export declare type RevenueRecordDeleted = io.flow.internal.v0.models.RevenueRecordDeleted;
|
|
25525
25847
|
export declare type RevenueRecordType = io.flow.internal.v0.enums.RevenueRecordType;
|
|
25526
25848
|
export declare type RevenueRecordUpserted = io.flow.internal.v0.models.RevenueRecordUpserted;
|
|
25849
|
+
export declare type ReviewRequestItem = io.flow.internal.v0.models.ReviewRequestItem;
|
|
25527
25850
|
export declare type RiskCheck = io.flow.internal.v0.enums.RiskCheck;
|
|
25528
25851
|
export declare type RiskEvaluation = io.flow.internal.v0.enums.RiskEvaluation;
|
|
25529
25852
|
export declare type RoutingAccount = io.flow.internal.v0.models.RoutingAccount;
|
|
@@ -25551,6 +25874,9 @@ export declare type SearchTrackingSummary = io.flow.internal.v0.models.SearchTra
|
|
|
25551
25874
|
export declare type SellabilityCheckResult = io.flow.internal.v0.models.SellabilityCheckResult;
|
|
25552
25875
|
export declare type SellabilityCheckStatus = io.flow.internal.v0.enums.SellabilityCheckStatus;
|
|
25553
25876
|
export declare type SellabilityInternalMatchType = io.flow.internal.v0.enums.SellabilityInternalMatchType;
|
|
25877
|
+
export declare type SellabilityPendingVerification = io.flow.internal.v0.models.SellabilityPendingVerification;
|
|
25878
|
+
export declare type SellabilityPendingVerificationDeleted = io.flow.internal.v0.models.SellabilityPendingVerificationDeleted;
|
|
25879
|
+
export declare type SellabilityPendingVerificationUpserted = io.flow.internal.v0.models.SellabilityPendingVerificationUpserted;
|
|
25554
25880
|
export declare type SellabilityStatus = io.flow.internal.v0.enums.SellabilityStatus;
|
|
25555
25881
|
export declare type ServiceFees = io.flow.internal.v0.models.ServiceFees;
|
|
25556
25882
|
export declare type ServiceFeesForm = io.flow.internal.v0.models.ServiceFeesForm;
|
|
@@ -25909,6 +26235,9 @@ export declare type UnclassifiedProductsPurgeRequest = io.flow.internal.v0.model
|
|
|
25909
26235
|
export declare type UnclassifiedProductsSummary = io.flow.internal.v0.models.UnclassifiedProductsSummary;
|
|
25910
26236
|
export declare type UnharmonizedItemsExport = io.flow.internal.v0.models.UnharmonizedItemsExport;
|
|
25911
26237
|
export declare type UnphrasedProductsExport = io.flow.internal.v0.models.UnphrasedProductsExport;
|
|
26238
|
+
export declare type UnserviceableTaxonomyCategory = io.flow.internal.v0.models.UnserviceableTaxonomyCategory;
|
|
26239
|
+
export declare type UnserviceableTaxonomyCategoryDeleted = io.flow.internal.v0.models.UnserviceableTaxonomyCategoryDeleted;
|
|
26240
|
+
export declare type UnserviceableTaxonomyCategoryUpserted = io.flow.internal.v0.models.UnserviceableTaxonomyCategoryUpserted;
|
|
25912
26241
|
export declare type Ups = io.flow.internal.v0.models.Ups;
|
|
25913
26242
|
export declare type UsdSpotRate = io.flow.internal.v0.models.UsdSpotRate;
|
|
25914
26243
|
export declare type UsdSpotRateDeleted = io.flow.internal.v0.models.UsdSpotRateDeleted;
|