@flowio/api-internal-prop-types 9.24.138 → 9.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/lib/api-internal.d.ts +591 -140
- package/lib/api-internal.js +1 -1
- package/package.json +1 -1
- package/src/api-internal.d.ts +591 -140
- package/src/api-internal.js +835 -315
package/lib/api-internal.d.ts
CHANGED
|
@@ -1099,7 +1099,7 @@ declare namespace io.flow.channel.v0.models {
|
|
|
1099
1099
|
declare namespace io.flow.restrictions.v0.enums {
|
|
1100
1100
|
type RestrictedReviewStatus = 'in_review' | 'reviewed';
|
|
1101
1101
|
type RestrictionDecision = 'accept' | 'reject' | 'escalate' | 'review';
|
|
1102
|
-
type RestrictionDecisionReason = 'manual_dispute';
|
|
1102
|
+
type RestrictionDecisionReason = 'manual_dispute' | 'operations_decision';
|
|
1103
1103
|
type RestrictionEnvironment = 'sandbox' | 'production' | 'qa';
|
|
1104
1104
|
type ReviewStatus = 'high_risk_in_review' | 'low_risk_in_review' | 'reviewed';
|
|
1105
1105
|
}
|
|
@@ -4568,6 +4568,8 @@ declare namespace io.flow.label.v0.models {
|
|
|
4568
4568
|
readonly 'updated_at'?: string;
|
|
4569
4569
|
readonly 'direction'?: io.flow.label.v0.enums.Direction;
|
|
4570
4570
|
readonly 'shipping_cost_guarantee'?: io.flow.label.v0.enums.ShippingCostGuarantee;
|
|
4571
|
+
readonly 'delivery_window_days_from'?: number;
|
|
4572
|
+
readonly 'delivery_window_days_to'?: number;
|
|
4571
4573
|
}
|
|
4572
4574
|
|
|
4573
4575
|
interface ShippingLabelDocument {
|
|
@@ -5669,6 +5671,10 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5669
5671
|
readonly 'id': string;
|
|
5670
5672
|
}
|
|
5671
5673
|
|
|
5674
|
+
interface OrderSettings {
|
|
5675
|
+
readonly 'tax_and_duty_inclusivity_setting'?: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
|
|
5676
|
+
}
|
|
5677
|
+
|
|
5672
5678
|
interface OrderTaxAndDutyInclusivitySetting {
|
|
5673
5679
|
readonly 'id': string;
|
|
5674
5680
|
readonly 'organization_id': string;
|
|
@@ -6815,6 +6821,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6815
6821
|
}
|
|
6816
6822
|
|
|
6817
6823
|
interface GraphqlTaxonomyCategory {
|
|
6824
|
+
readonly 'id'?: string;
|
|
6818
6825
|
readonly 'name': string;
|
|
6819
6826
|
readonly 'fullName': string;
|
|
6820
6827
|
}
|
|
@@ -6936,7 +6943,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6936
6943
|
readonly 'created_at': string;
|
|
6937
6944
|
readonly 'updated_at': string;
|
|
6938
6945
|
readonly 'has_variants_that_requires_components'?: boolean;
|
|
6939
|
-
readonly 'category'?: io.flow.
|
|
6946
|
+
readonly 'category'?: io.flow.shopify.external.v0.models.RestTaxonomyCategory;
|
|
6940
6947
|
readonly 'metafields'?: io.flow.shopify.external.v0.models.ProductMetafield[];
|
|
6941
6948
|
}
|
|
6942
6949
|
|
|
@@ -7076,6 +7083,12 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
7076
7083
|
readonly 'variant': io.flow.shopify.external.v0.models.ProductVariant;
|
|
7077
7084
|
}
|
|
7078
7085
|
|
|
7086
|
+
interface RestTaxonomyCategory {
|
|
7087
|
+
readonly 'name': string;
|
|
7088
|
+
readonly 'full_name': string;
|
|
7089
|
+
readonly 'admin_graphql_api_id'?: string;
|
|
7090
|
+
}
|
|
7091
|
+
|
|
7079
7092
|
interface Shop {
|
|
7080
7093
|
readonly 'id': number;
|
|
7081
7094
|
readonly 'domain': string;
|
|
@@ -8516,12 +8529,20 @@ declare namespace io.flow.channel.shopify.internal.v0.models {
|
|
|
8516
8529
|
}
|
|
8517
8530
|
|
|
8518
8531
|
declare namespace io.flow.order.price.v0.enums {
|
|
8532
|
+
type OrderPriceCoefficientType = 'item_shipping';
|
|
8519
8533
|
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';
|
|
8520
8534
|
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
8521
8535
|
type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product' | 'mor_tax';
|
|
8536
|
+
type OrderPriceSubsidyType = 'shipping_subsidy';
|
|
8522
8537
|
}
|
|
8523
8538
|
|
|
8524
8539
|
declare namespace io.flow.order.price.v0.models {
|
|
8540
|
+
interface OrderPriceCoefficient {
|
|
8541
|
+
readonly 'type': io.flow.order.price.v0.enums.OrderPriceCoefficientType;
|
|
8542
|
+
readonly 'value': number;
|
|
8543
|
+
readonly 'price': io.flow.common.v0.models.PriceWithBase;
|
|
8544
|
+
}
|
|
8545
|
+
|
|
8525
8546
|
interface OrderPriceDetail {
|
|
8526
8547
|
readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailKey;
|
|
8527
8548
|
readonly 'currency': string;
|
|
@@ -8556,10 +8577,17 @@ declare namespace io.flow.order.price.v0.models {
|
|
|
8556
8577
|
readonly 'type': io.flow.order.price.v0.enums.OrderPriceFeeType;
|
|
8557
8578
|
}
|
|
8558
8579
|
|
|
8580
|
+
interface OrderPriceSubsidy {
|
|
8581
|
+
readonly 'type': io.flow.order.price.v0.enums.OrderPriceSubsidyType;
|
|
8582
|
+
readonly 'price': io.flow.common.v0.models.PriceWithBase;
|
|
8583
|
+
}
|
|
8584
|
+
|
|
8559
8585
|
interface PurchasePriceBreakdown {
|
|
8560
8586
|
readonly 'total_price': io.flow.common.v0.models.PriceWithBase;
|
|
8561
8587
|
readonly 'product_price': io.flow.common.v0.models.PriceWithBase;
|
|
8562
8588
|
readonly 'fees': io.flow.order.price.v0.models.OrderPriceFee[];
|
|
8589
|
+
readonly 'coefficients'?: io.flow.order.price.v0.models.OrderPriceCoefficient[];
|
|
8590
|
+
readonly 'subsidies'?: io.flow.order.price.v0.models.OrderPriceSubsidy[];
|
|
8563
8591
|
}
|
|
8564
8592
|
}
|
|
8565
8593
|
|
|
@@ -8619,7 +8647,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
8619
8647
|
readonly 'order_updated_at'?: string;
|
|
8620
8648
|
readonly 'order_edit_summary'?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
8621
8649
|
readonly 'payment_source'?: io.flow.channel.internal.v0.enums.OrderPaymentSourceType;
|
|
8622
|
-
readonly 'external_order_summary'?: io.flow.channel.
|
|
8650
|
+
readonly 'external_order_summary'?: io.flow.channel.internal.v0.models.ExternalOrderSummary;
|
|
8623
8651
|
}
|
|
8624
8652
|
|
|
8625
8653
|
interface ChannelOrderAcceptanceDetails {
|
|
@@ -8645,6 +8673,13 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
8645
8673
|
readonly 'rejection_reason'?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
8646
8674
|
}
|
|
8647
8675
|
|
|
8676
|
+
interface ChannelOrderTaxAndDutyInclusivitySetting {
|
|
8677
|
+
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
8678
|
+
readonly 'order_number': string;
|
|
8679
|
+
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
8680
|
+
readonly 'tax_and_duty_inclusivity_setting': io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
|
|
8681
|
+
}
|
|
8682
|
+
|
|
8648
8683
|
interface ChannelOrganizationDomains {
|
|
8649
8684
|
readonly 'internal': string;
|
|
8650
8685
|
readonly 'external': string;
|
|
@@ -8682,6 +8717,12 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
8682
8717
|
readonly 'catalog_products_count'?: number;
|
|
8683
8718
|
}
|
|
8684
8719
|
|
|
8720
|
+
interface ExternalOrderSummary {
|
|
8721
|
+
readonly 'id': string;
|
|
8722
|
+
readonly 'edit_ids': string[];
|
|
8723
|
+
readonly 'created_at'?: string;
|
|
8724
|
+
}
|
|
8725
|
+
|
|
8685
8726
|
interface FlowChannelOrganization {
|
|
8686
8727
|
readonly 'placeholder'?: string;
|
|
8687
8728
|
}
|
|
@@ -9614,7 +9655,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
9614
9655
|
type OrganizationPaymentMethodTag = 'deny';
|
|
9615
9656
|
type PaymentMethodRuleContentKey = 'description';
|
|
9616
9657
|
type PriceFacetBoundary = 'min' | 'max';
|
|
9617
|
-
type PricingType = 'inclusive_pricing';
|
|
9658
|
+
type PricingType = 'inclusive_pricing' | 'inclusive_pricing_with_shipping';
|
|
9618
9659
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
9619
9660
|
type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
|
|
9620
9661
|
}
|
|
@@ -11501,35 +11542,6 @@ declare namespace io.flow.crypto.v0.models {
|
|
|
11501
11542
|
}
|
|
11502
11543
|
}
|
|
11503
11544
|
|
|
11504
|
-
declare namespace io.flow.channel.shopify.v0.enums {
|
|
11505
|
-
type ChannelShopifyOrderStateReasonCode = 'placeholder_reason_code';
|
|
11506
|
-
}
|
|
11507
|
-
|
|
11508
|
-
declare namespace io.flow.channel.shopify.v0.models {
|
|
11509
|
-
interface ChannelShopifyOrderState {
|
|
11510
|
-
readonly 'id': string;
|
|
11511
|
-
readonly 'shopify_order_summary': io.flow.channel.shopify.v0.models.ChannelShopifyOrderSummary;
|
|
11512
|
-
readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
11513
|
-
readonly 'reasons'?: io.flow.channel.shopify.v0.models.ChannelShopifyOrderStateReason[];
|
|
11514
|
-
readonly 'external_order_summary'?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
|
|
11515
|
-
}
|
|
11516
|
-
|
|
11517
|
-
interface ChannelShopifyOrderStateReason {
|
|
11518
|
-
readonly 'code': io.flow.channel.shopify.v0.enums.ChannelShopifyOrderStateReasonCode;
|
|
11519
|
-
readonly 'message': string;
|
|
11520
|
-
}
|
|
11521
|
-
|
|
11522
|
-
interface ChannelShopifyOrderSummary {
|
|
11523
|
-
readonly 'order_id': number;
|
|
11524
|
-
readonly 'shop_id': number;
|
|
11525
|
-
}
|
|
11526
|
-
|
|
11527
|
-
interface ExternalOrderSummary {
|
|
11528
|
-
readonly 'id': string;
|
|
11529
|
-
readonly 'edit_ids': string[];
|
|
11530
|
-
}
|
|
11531
|
-
}
|
|
11532
|
-
|
|
11533
11545
|
declare namespace io.flow.shopify.merchant.config.v0.models {
|
|
11534
11546
|
interface Company {
|
|
11535
11547
|
readonly 'discriminator': 'company';
|
|
@@ -11939,6 +11951,7 @@ declare namespace io.flow.product.v0.models {
|
|
|
11939
11951
|
interface ProductTaxonomyCategory {
|
|
11940
11952
|
readonly 'name': string;
|
|
11941
11953
|
readonly 'full_name': string;
|
|
11954
|
+
readonly 'id'?: string;
|
|
11942
11955
|
}
|
|
11943
11956
|
|
|
11944
11957
|
interface ProductTaxonomyData {
|
|
@@ -12983,7 +12996,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
12983
12996
|
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';
|
|
12984
12997
|
type StatementAttachmentType = 'csv' | 'pdf';
|
|
12985
12998
|
type StatementStatusCode = 'scheduled' | 'sent' | 'failed' | 'paid';
|
|
12986
|
-
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';
|
|
12999
|
+
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';
|
|
12987
13000
|
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';
|
|
12988
13001
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
12989
13002
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
@@ -13085,6 +13098,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
13085
13098
|
readonly 'settlement': io.flow.billing.v0.unions.Settlement;
|
|
13086
13099
|
readonly 'attachments': io.flow.billing.v0.models.Attachment[];
|
|
13087
13100
|
readonly 'created_at': string;
|
|
13101
|
+
readonly 'period'?: io.flow.common.v0.models.DatetimeRange;
|
|
13088
13102
|
}
|
|
13089
13103
|
|
|
13090
13104
|
interface ChannelTransaction {
|
|
@@ -13250,6 +13264,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
13250
13264
|
readonly 'settlement': io.flow.billing.v0.unions.Settlement;
|
|
13251
13265
|
readonly 'attachments': io.flow.billing.v0.models.Attachment[];
|
|
13252
13266
|
readonly 'created_at': string;
|
|
13267
|
+
readonly 'period'?: io.flow.common.v0.models.DatetimeRange;
|
|
13253
13268
|
}
|
|
13254
13269
|
|
|
13255
13270
|
interface StatementStatusForm {
|
|
@@ -14213,6 +14228,14 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
14213
14228
|
readonly 'bank_name': string;
|
|
14214
14229
|
}
|
|
14215
14230
|
|
|
14231
|
+
interface BankAccountInfoKorV2 {
|
|
14232
|
+
readonly 'discriminator': 'kor_v2';
|
|
14233
|
+
readonly 'name': string;
|
|
14234
|
+
readonly 'bank_account_number': string;
|
|
14235
|
+
readonly 'bank_routing_number': string;
|
|
14236
|
+
readonly 'bank_name': string;
|
|
14237
|
+
}
|
|
14238
|
+
|
|
14216
14239
|
interface BankAccountInfoUsa {
|
|
14217
14240
|
readonly 'discriminator': 'usa';
|
|
14218
14241
|
readonly 'routing_number': string;
|
|
@@ -14221,7 +14244,7 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
14221
14244
|
}
|
|
14222
14245
|
|
|
14223
14246
|
declare namespace io.flow.billing.bank.account.v0.unions {
|
|
14224
|
-
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);
|
|
14247
|
+
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);
|
|
14225
14248
|
}
|
|
14226
14249
|
|
|
14227
14250
|
declare namespace io.flow.internal.v0.enums {
|
|
@@ -14232,6 +14255,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14232
14255
|
type AdaptiveShippingOrderGuaranteeState = 'confirmed' | 'voided';
|
|
14233
14256
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
14234
14257
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
14258
|
+
type AiReviewConsumer = 'restrictions' | 'sellability' | 'harmonization';
|
|
14259
|
+
type AiReviewFailureReason = 'item_errored' | 'item_expired' | 'item_unparseable' | 'item_image_fetch_failed' | 'item_undecided' | 'batch_failed' | 'batch_timed_out';
|
|
14260
|
+
type AiReviewType = 'pv_review_general' | 'pv_review_dg_hazmat' | 'pc_review';
|
|
14235
14261
|
type AmruthaItemType = 'physical' | 'digital';
|
|
14236
14262
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
14237
14263
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
@@ -14284,7 +14310,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14284
14310
|
type ClassificationErrorCode = 'generic_error';
|
|
14285
14311
|
type ClassificationFailureReason = 'low_confidence' | 'timeout' | 'missing_hs6_code' | 'invalid_price';
|
|
14286
14312
|
type ClassificationPlatform = 'GlobalE' | 'Flow' | 'FlowOnboarding' | 'Borderfree';
|
|
14287
|
-
type ClassificationScope = 'Item' | 'Product';
|
|
14313
|
+
type ClassificationScope = 'Item' | 'Product' | 'Bucket';
|
|
14288
14314
|
type ClassificationSource = 'sellability';
|
|
14289
14315
|
type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
|
|
14290
14316
|
type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
|
|
@@ -14328,7 +14354,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14328
14354
|
type EmptyAttribute = 'irrelevant';
|
|
14329
14355
|
type ErpFileType = 'vendor';
|
|
14330
14356
|
type EvaluationCheckResult = 'pass' | 'fail';
|
|
14331
|
-
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';
|
|
14357
|
+
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'ai_review_batch_submitted' | 'ai_review_result_upserted' | 'ai_review_result_deleted' | 'ai_review_request_failed' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'fulfillment_status_upserted' | 'fulfillment_status_deleted' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'sales_payment_record_upserted' | 'sales_payment_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'channel_shop_statistics_upserted' | 'channel_shop_statistics_deleted' | 'channel_order_tax_and_duty_inclusivity_setting_upserted' | 'channel_order_tax_and_duty_inclusivity_setting_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'shipping_cost_upserted' | 'shipping_cost_deleted' | 'mor_cost_upserted' | 'mor_cost_deleted' | 'flat_rate_label_reversal_upserted' | 'flat_rate_label_reversal_deleted' | 'flat_rate_label_subsidy_upserted' | 'flat_rate_label_subsidy_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'quote_upserted' | 'quote_deleted' | 'guaranteed_shipping_calibrated_output_upserted' | 'guaranteed_shipping_calibrated_output_deleted' | 'outbound_shipping_cost_upserted' | 'outbound_shipping_cost_deleted' | 'guaranteed_shipping_published_output_upserted' | 'guaranteed_shipping_published_output_deleted' | 'guaranteed_shipping_settings_upserted' | 'guaranteed_shipping_settings_deleted' | 'guaranteed_shipping_settings_update_upserted' | 'guaranteed_shipping_settings_update_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'merchant_override_upserted' | 'merchant_override_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_creation_job_upserted' | 'label_creation_job_deleted' | 'adaptive_shipping_order_guarantee_upserted' | 'adaptive_shipping_order_guarantee_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'partner_request_upserted' | 'partner_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'order_refund_transaction_upserted' | 'order_refund_transaction_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'preonboarding_sellability_result_inserted' | 'preonboarding_sellability_result_updated' | 'preonboarding_sellability_result_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'product_restriction_state_inserted' | 'product_restriction_state_updated' | 'product_restriction_state_deleted' | 'product_sellability_result_inserted' | 'product_sellability_result_updated' | 'product_sellability_result_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restrictions_athena_dailyops_pc_pv_upserted' | 'restrictions_athena_dailyops_pc_pv_deleted' | 'restrictions_athena_dailyops_fs_upserted' | 'restrictions_athena_dailyops_fs_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'taxonomy_category_hs6_ref_upserted' | 'taxonomy_category_hs6_ref_deleted' | 'preonboarding_merchant_upserted' | 'preonboarding_merchant_deleted' | 'unserviceable_taxonomy_category_upserted' | 'unserviceable_taxonomy_category_deleted' | 'sellability_pending_verification_upserted' | 'sellability_pending_verification_deleted' | 'shopify_hs10_codes_upserted' | 'shopify_hs10_codes_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_product_taxonomy_attribute_upserted' | 'shopify_product_taxonomy_attribute_deleted' | 'shopify_product_taxonomy_attribute_value_upserted' | 'shopify_product_taxonomy_attribute_value_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_order_risk_assessment_upserted' | 'shopify_order_risk_assessment_deleted' | 'shopify_order_transaction_upserted' | 'shopify_order_transaction_deleted' | 'shopify_test_order_upserted' | 'shopify_test_order_deleted' | 'shopify_merchant_markets_upserted' | 'shopify_merchant_markets_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'shopify_merchant_plan_upserted' | 'shopify_merchant_plan_deleted' | 'shopify_dispute_upserted' | 'shopify_dispute_deleted' | 'shopify_report_file_upserted' | 'shopify_report_file_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'b2b_tax_transaction_upserted' | 'b2b_tax_transaction_deleted' | 'gabriel_item_upserted' | 'gabriel_item_deleted' | 'chenglin_item_upserted' | 'chenglin_item_deleted' | 'bojana_item_upserted' | 'bojana_item_deleted' | 'raveena_item_upserted' | 'raveena_item_deleted' | 'mahesh_item_upserted' | 'mahesh_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
14332
14358
|
type ExperienceImportType = 'experience_with_settings';
|
|
14333
14359
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
14334
14360
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -14354,9 +14380,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14354
14380
|
type InternalPaymentEntityType = 'authorization' | 'capture' | 'refund' | 'dispute';
|
|
14355
14381
|
type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
|
|
14356
14382
|
type ItemClassificationStatus = 'unknown' | 'manual' | 'manually_accepted' | 'manually_overridden' | 'automatically_accepted' | 'pending';
|
|
14357
|
-
type ItemHarmonizationStatus = 'waiting_for_classification' | 'classified' | 'non_classifiable_not_enough_information' | 'exempt' | 'manual_classification_required';
|
|
14383
|
+
type ItemHarmonizationStatus = 'waiting_for_classification' | 'classified' | 'non_classifiable_not_enough_information' | 'exempt' | 'manual_classification_required' | 'unserviceable_taxonomy';
|
|
14358
14384
|
type ItemQuantityAction = 'fulfillment_ship' | 'fulfillment_cancel' | 'fulfillment_generate_label';
|
|
14359
14385
|
type ItemType = 'standard' | 'multi_product';
|
|
14386
|
+
type JohnStrongItemType = 'physical' | 'digital';
|
|
14360
14387
|
type JournalOperation = 'insert' | 'update' | 'delete';
|
|
14361
14388
|
type KeywordType = 'positive' | 'negative';
|
|
14362
14389
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
@@ -14425,17 +14452,19 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14425
14452
|
type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
|
|
14426
14453
|
type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
|
|
14427
14454
|
type ProductStatus = 'active' | 'archived' | 'draft' | 'unlisted';
|
|
14455
|
+
type PvDecision = 'uphold' | 'remove';
|
|
14428
14456
|
type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
|
|
14429
14457
|
type RateSource = 'calculated' | 'market';
|
|
14430
14458
|
type RaveenaItemType = 'physical' | 'digital';
|
|
14431
14459
|
type RedirectReason = 'three_d_secure';
|
|
14432
14460
|
type RejectionReason = 'merchant_policy' | 'previous_chargebacks' | 'restricted_party_screening' | 'risky_velocity' | 'suspicious_behavior' | 'suspicious_past_activity';
|
|
14461
|
+
type RemediateTaxDutyArm = 'non_lvg' | 'lvg_full_refund';
|
|
14433
14462
|
type ReportFileStatus = 'processing' | 'failed' | 'succeeded';
|
|
14434
14463
|
type ReportFileType = 'stripe_connect_report';
|
|
14435
14464
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
14436
14465
|
type ReportPaymentType = 'credit' | 'debit';
|
|
14437
14466
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
14438
|
-
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';
|
|
14467
|
+
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';
|
|
14439
14468
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
14440
14469
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
14441
14470
|
type ResponsibleParty = 'flow' | 'organization';
|
|
@@ -14449,6 +14478,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14449
14478
|
type RestrictionOrganizationSource = 'smb' | 'enterprise';
|
|
14450
14479
|
type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
|
|
14451
14480
|
type RestrictionRuleCommunityExemption = 'domestic_exemption' | 'intra_eu_exemption';
|
|
14481
|
+
type RestrictionRuleEvaluationMode = 'all_screenings' | 'first_screening_only';
|
|
14452
14482
|
type RestrictionRuleExceptionAction = 'allow' | 'deny';
|
|
14453
14483
|
type RestrictionStateReviewStatus = 'reviewed' | 'in_review';
|
|
14454
14484
|
type RestrictionStatus = 'pending' | 'in_review' | 'escalated' | 'accepted' | 'restricted';
|
|
@@ -14754,6 +14784,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14754
14784
|
readonly 'refund'?: io.flow.payment.v0.models.RefundReference;
|
|
14755
14785
|
readonly 'tax_reversal'?: io.flow.internal.v0.models.TransactionReference;
|
|
14756
14786
|
readonly 'duty_reversal'?: io.flow.internal.v0.models.TransactionReference;
|
|
14787
|
+
readonly 'flat_rate_reversal'?: io.flow.internal.v0.models.TransactionReference;
|
|
14788
|
+
readonly 'flat_rate_subsidy_reversal'?: io.flow.internal.v0.models.TransactionReference;
|
|
14757
14789
|
}
|
|
14758
14790
|
|
|
14759
14791
|
interface ActionQuantity {
|
|
@@ -14761,67 +14793,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14761
14793
|
readonly 'quantity': number;
|
|
14762
14794
|
}
|
|
14763
14795
|
|
|
14764
|
-
interface AdaptivePricingCoefficient {
|
|
14765
|
-
readonly 'coefficients_updated_at': number;
|
|
14766
|
-
readonly 'channel_id': string;
|
|
14767
|
-
readonly 'organization_id': string;
|
|
14768
|
-
readonly 'destination_country': string;
|
|
14769
|
-
readonly 'tax_and_duty_coefficient': number;
|
|
14770
|
-
readonly 'fees_coefficient': number;
|
|
14771
|
-
readonly 'merchant_subsidy': io.flow.common.v0.models.Money;
|
|
14772
|
-
readonly 'created_at': number;
|
|
14773
|
-
}
|
|
14774
|
-
|
|
14775
|
-
interface AdaptivePricingCoefficientDeleted {
|
|
14776
|
-
readonly 'discriminator': 'adaptive_pricing_coefficient_deleted';
|
|
14777
|
-
readonly 'event_id': string;
|
|
14778
|
-
readonly 'timestamp': string;
|
|
14779
|
-
readonly 'organization': string;
|
|
14780
|
-
readonly 'channel_id': string;
|
|
14781
|
-
readonly 'id': string;
|
|
14782
|
-
}
|
|
14783
|
-
|
|
14784
|
-
interface AdaptivePricingCoefficientUpserted {
|
|
14785
|
-
readonly 'discriminator': 'adaptive_pricing_coefficient_upserted';
|
|
14786
|
-
readonly 'event_id': string;
|
|
14787
|
-
readonly 'timestamp': string;
|
|
14788
|
-
readonly 'organization': string;
|
|
14789
|
-
readonly 'channel_id': string;
|
|
14790
|
-
readonly 'adaptive_pricing_coefficient': io.flow.internal.v0.models.AdaptivePricingCoefficient;
|
|
14791
|
-
}
|
|
14792
|
-
|
|
14793
|
-
interface AdaptivePricingDestinationUpdate {
|
|
14794
|
-
readonly 'country': string;
|
|
14795
|
-
readonly 'updated_at': string;
|
|
14796
|
-
readonly 'tax_and_duty_coefficient': number;
|
|
14797
|
-
readonly 'fees_coefficient': number;
|
|
14798
|
-
readonly 'merchant_subsidy': io.flow.common.v0.models.Money;
|
|
14799
|
-
}
|
|
14800
|
-
|
|
14801
|
-
interface AdaptivePricingUpdate {
|
|
14802
|
-
readonly 'channel_id': string;
|
|
14803
|
-
readonly 'organization_id': string;
|
|
14804
|
-
readonly 'destination_updates': io.flow.internal.v0.models.AdaptivePricingDestinationUpdate[];
|
|
14805
|
-
}
|
|
14806
|
-
|
|
14807
|
-
interface AdaptivePricingUpdateDeleted {
|
|
14808
|
-
readonly 'discriminator': 'adaptive_pricing_update_deleted';
|
|
14809
|
-
readonly 'event_id': string;
|
|
14810
|
-
readonly 'timestamp': string;
|
|
14811
|
-
readonly 'organization': string;
|
|
14812
|
-
readonly 'channel_id': string;
|
|
14813
|
-
readonly 'id': string;
|
|
14814
|
-
}
|
|
14815
|
-
|
|
14816
|
-
interface AdaptivePricingUpdateUpserted {
|
|
14817
|
-
readonly 'discriminator': 'adaptive_pricing_update_upserted';
|
|
14818
|
-
readonly 'event_id': string;
|
|
14819
|
-
readonly 'timestamp': string;
|
|
14820
|
-
readonly 'organization': string;
|
|
14821
|
-
readonly 'channel_id': string;
|
|
14822
|
-
readonly 'adaptive_pricing_update': io.flow.internal.v0.models.AdaptivePricingUpdate;
|
|
14823
|
-
}
|
|
14824
|
-
|
|
14825
14796
|
interface AdaptiveShippingOrderGuarantee {
|
|
14826
14797
|
readonly 'id': string;
|
|
14827
14798
|
readonly 'organization_id': string;
|
|
@@ -14847,33 +14818,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14847
14818
|
readonly 'adaptive_shipping_order_guarantee': io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
14848
14819
|
}
|
|
14849
14820
|
|
|
14850
|
-
interface AdaptiveShippingRate {
|
|
14851
|
-
readonly 'id': string;
|
|
14852
|
-
readonly 'organization_id': string;
|
|
14853
|
-
readonly 'channel_id': string;
|
|
14854
|
-
readonly 'destination_country': string;
|
|
14855
|
-
readonly 'coefficient': number;
|
|
14856
|
-
readonly 'flat_rates': io.flow.internal.v0.models.FlatRate[];
|
|
14857
|
-
readonly 'effective_at': string;
|
|
14858
|
-
readonly 'effective_until'?: string;
|
|
14859
|
-
}
|
|
14860
|
-
|
|
14861
|
-
interface AdaptiveShippingRateDeleted {
|
|
14862
|
-
readonly 'discriminator': 'adaptive_shipping_rate_deleted';
|
|
14863
|
-
readonly 'event_id': string;
|
|
14864
|
-
readonly 'timestamp': string;
|
|
14865
|
-
readonly 'organization': string;
|
|
14866
|
-
readonly 'id': string;
|
|
14867
|
-
}
|
|
14868
|
-
|
|
14869
|
-
interface AdaptiveShippingRateUpserted {
|
|
14870
|
-
readonly 'discriminator': 'adaptive_shipping_rate_upserted';
|
|
14871
|
-
readonly 'event_id': string;
|
|
14872
|
-
readonly 'timestamp': string;
|
|
14873
|
-
readonly 'organization': string;
|
|
14874
|
-
readonly 'adaptive_shipping_rate': io.flow.internal.v0.models.AdaptiveShippingRate;
|
|
14875
|
-
}
|
|
14876
|
-
|
|
14877
14821
|
interface AdditionalImportTax {
|
|
14878
14822
|
readonly 'name'?: string;
|
|
14879
14823
|
readonly 'additional_import_tax_value'?: io.flow.common.v0.models.Money;
|
|
@@ -15308,6 +15252,55 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15308
15252
|
readonly 'placeholder'?: boolean;
|
|
15309
15253
|
}
|
|
15310
15254
|
|
|
15255
|
+
interface AiReviewBatchSubmitted {
|
|
15256
|
+
readonly 'discriminator': 'ai_review_batch_submitted';
|
|
15257
|
+
readonly 'event_id': string;
|
|
15258
|
+
readonly 'timestamp': string;
|
|
15259
|
+
readonly 'consumer': io.flow.internal.v0.enums.AiReviewConsumer;
|
|
15260
|
+
readonly 'items': io.flow.internal.v0.models.ReviewRequestItem[];
|
|
15261
|
+
}
|
|
15262
|
+
|
|
15263
|
+
interface AiReviewFailedItem {
|
|
15264
|
+
readonly 'review_id': string;
|
|
15265
|
+
readonly 'organization_id': string;
|
|
15266
|
+
}
|
|
15267
|
+
|
|
15268
|
+
interface AiReviewRequestFailed {
|
|
15269
|
+
readonly 'discriminator': 'ai_review_request_failed';
|
|
15270
|
+
readonly 'event_id': string;
|
|
15271
|
+
readonly 'timestamp': string;
|
|
15272
|
+
readonly 'consumer': io.flow.internal.v0.enums.AiReviewConsumer;
|
|
15273
|
+
readonly 'review_type': io.flow.internal.v0.enums.AiReviewType;
|
|
15274
|
+
readonly 'reason': io.flow.internal.v0.enums.AiReviewFailureReason;
|
|
15275
|
+
readonly 'items': io.flow.internal.v0.models.AiReviewFailedItem[];
|
|
15276
|
+
}
|
|
15277
|
+
|
|
15278
|
+
interface AiReviewResult {
|
|
15279
|
+
readonly 'review_id': string;
|
|
15280
|
+
readonly 'organization_id': string;
|
|
15281
|
+
readonly 'consumer': io.flow.internal.v0.enums.AiReviewConsumer;
|
|
15282
|
+
readonly 'review_type': io.flow.internal.v0.enums.AiReviewType;
|
|
15283
|
+
readonly 'ai_output': io.flow.internal.v0.unions.AiOutput;
|
|
15284
|
+
readonly 'ai_model': string;
|
|
15285
|
+
readonly 'prompt_id': string;
|
|
15286
|
+
readonly 'prompt_version': string;
|
|
15287
|
+
}
|
|
15288
|
+
|
|
15289
|
+
interface AiReviewResultDeleted {
|
|
15290
|
+
readonly 'discriminator': 'ai_review_result_deleted';
|
|
15291
|
+
readonly 'event_id': string;
|
|
15292
|
+
readonly 'timestamp': string;
|
|
15293
|
+
readonly 'id': string;
|
|
15294
|
+
readonly 'organization': string;
|
|
15295
|
+
}
|
|
15296
|
+
|
|
15297
|
+
interface AiReviewResultUpserted {
|
|
15298
|
+
readonly 'discriminator': 'ai_review_result_upserted';
|
|
15299
|
+
readonly 'event_id': string;
|
|
15300
|
+
readonly 'timestamp': string;
|
|
15301
|
+
readonly 'ai_review_result': io.flow.internal.v0.models.AiReviewResult;
|
|
15302
|
+
}
|
|
15303
|
+
|
|
15311
15304
|
interface AllItemsExport {
|
|
15312
15305
|
readonly 'discriminator': 'all_items_export';
|
|
15313
15306
|
readonly 'event_id': string;
|
|
@@ -16615,7 +16608,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16615
16608
|
readonly 'order_updated_at'?: string;
|
|
16616
16609
|
readonly 'order_edit_summary'?: io.flow.internal.v0.models.OrderEditSummary;
|
|
16617
16610
|
readonly 'payment_source'?: io.flow.internal.v0.enums.OrderPaymentSourceType;
|
|
16618
|
-
readonly 'external_order_summary'?: io.flow.
|
|
16611
|
+
readonly 'external_order_summary'?: io.flow.internal.v0.models.ExternalOrderSummary;
|
|
16619
16612
|
}
|
|
16620
16613
|
|
|
16621
16614
|
interface ChannelOrderAcceptanceDeleted {
|
|
@@ -16697,6 +16690,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16697
16690
|
readonly 'channel_order_summary': io.flow.internal.v0.models.ChannelOrderSummary;
|
|
16698
16691
|
}
|
|
16699
16692
|
|
|
16693
|
+
interface ChannelOrderTaxAndDutyInclusivitySetting {
|
|
16694
|
+
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
16695
|
+
readonly 'order_number': string;
|
|
16696
|
+
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
16697
|
+
readonly 'tax_and_duty_inclusivity_setting': io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
|
|
16698
|
+
}
|
|
16699
|
+
|
|
16700
|
+
interface ChannelOrderTaxAndDutyInclusivitySettingDeleted {
|
|
16701
|
+
readonly 'discriminator': 'channel_order_tax_and_duty_inclusivity_setting_deleted';
|
|
16702
|
+
readonly 'event_id': string;
|
|
16703
|
+
readonly 'timestamp': string;
|
|
16704
|
+
readonly 'organization': string;
|
|
16705
|
+
readonly 'id': string;
|
|
16706
|
+
}
|
|
16707
|
+
|
|
16708
|
+
interface ChannelOrderTaxAndDutyInclusivitySettingUpserted {
|
|
16709
|
+
readonly 'discriminator': 'channel_order_tax_and_duty_inclusivity_setting_upserted';
|
|
16710
|
+
readonly 'event_id': string;
|
|
16711
|
+
readonly 'timestamp': string;
|
|
16712
|
+
readonly 'channel_order_tax_and_duty_inclusivity_setting': io.flow.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySetting;
|
|
16713
|
+
}
|
|
16714
|
+
|
|
16700
16715
|
interface ChannelOrganizationDomains {
|
|
16701
16716
|
readonly 'internal': string;
|
|
16702
16717
|
readonly 'external': string;
|
|
@@ -17842,6 +17857,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17842
17857
|
readonly 'destination': io.flow.common.v0.models.Address;
|
|
17843
17858
|
}
|
|
17844
17859
|
|
|
17860
|
+
interface DgClassAssessment {
|
|
17861
|
+
readonly 'dg_class': string;
|
|
17862
|
+
readonly 'decision': io.flow.internal.v0.enums.PvDecision;
|
|
17863
|
+
readonly 'confidence': number;
|
|
17864
|
+
readonly 'reasoning': string;
|
|
17865
|
+
}
|
|
17866
|
+
|
|
17867
|
+
interface DgReviewContext {
|
|
17868
|
+
readonly 'discriminator': 'dg_review_context';
|
|
17869
|
+
readonly 'organization_id': string;
|
|
17870
|
+
readonly 'item_name': string;
|
|
17871
|
+
readonly 'item_description'?: string;
|
|
17872
|
+
readonly 'image_url'?: string;
|
|
17873
|
+
readonly 'hs_code'?: string;
|
|
17874
|
+
readonly 'categories'?: string;
|
|
17875
|
+
readonly 'price'?: string;
|
|
17876
|
+
}
|
|
17877
|
+
|
|
17878
|
+
interface DgReviewOutput {
|
|
17879
|
+
readonly 'discriminator': 'dg_review_output';
|
|
17880
|
+
readonly 'assessments': io.flow.internal.v0.models.DgClassAssessment[];
|
|
17881
|
+
}
|
|
17882
|
+
|
|
17845
17883
|
interface Dhl {
|
|
17846
17884
|
readonly 'discriminator': 'dhl';
|
|
17847
17885
|
readonly 'export_account_number': string;
|
|
@@ -18576,6 +18614,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18576
18614
|
readonly 'fulfilled_via_replacement_order'?: boolean;
|
|
18577
18615
|
}
|
|
18578
18616
|
|
|
18617
|
+
interface ExternalOrderSummary {
|
|
18618
|
+
readonly 'id': string;
|
|
18619
|
+
readonly 'edit_ids': string[];
|
|
18620
|
+
readonly 'created_at'?: string;
|
|
18621
|
+
}
|
|
18622
|
+
|
|
18579
18623
|
interface ExternalRatecardLink {
|
|
18580
18624
|
readonly 'external_ratecard_id': string;
|
|
18581
18625
|
readonly 'flow_ratecard_ids': string[];
|
|
@@ -18883,6 +18927,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18883
18927
|
readonly 'flat_rate_label_reversal': io.flow.internal.v0.models.FlatRateLabelReversal;
|
|
18884
18928
|
}
|
|
18885
18929
|
|
|
18930
|
+
interface FlatRateLabelSubsidy {
|
|
18931
|
+
readonly 'id': string;
|
|
18932
|
+
readonly 'source': io.flow.billing.v0.enums.TransactionSource;
|
|
18933
|
+
readonly 'organization_id': string;
|
|
18934
|
+
readonly 'order_number': string;
|
|
18935
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
18936
|
+
readonly 'tax': io.flow.common.v0.models.Money;
|
|
18937
|
+
}
|
|
18938
|
+
|
|
18939
|
+
interface FlatRateLabelSubsidyDeleted {
|
|
18940
|
+
readonly 'discriminator': 'flat_rate_label_subsidy_deleted';
|
|
18941
|
+
readonly 'event_id': string;
|
|
18942
|
+
readonly 'timestamp': string;
|
|
18943
|
+
readonly 'organization': string;
|
|
18944
|
+
readonly 'id': string;
|
|
18945
|
+
}
|
|
18946
|
+
|
|
18947
|
+
interface FlatRateLabelSubsidyUpserted {
|
|
18948
|
+
readonly 'discriminator': 'flat_rate_label_subsidy_upserted';
|
|
18949
|
+
readonly 'event_id': string;
|
|
18950
|
+
readonly 'timestamp': string;
|
|
18951
|
+
readonly 'organization': string;
|
|
18952
|
+
readonly 'flat_rate_label_subsidy': io.flow.internal.v0.models.FlatRateLabelSubsidy;
|
|
18953
|
+
}
|
|
18954
|
+
|
|
18886
18955
|
interface FlatRateLabelTransaction {
|
|
18887
18956
|
readonly 'discriminator': 'flat_rate_label_transaction';
|
|
18888
18957
|
readonly 'order'?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -19595,6 +19664,49 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19595
19664
|
readonly 'tracker_id': string;
|
|
19596
19665
|
}
|
|
19597
19666
|
|
|
19667
|
+
interface GuaranteedShippingCalibratedOutput {
|
|
19668
|
+
readonly 'id': string;
|
|
19669
|
+
readonly 'organization_id': string;
|
|
19670
|
+
readonly 'channel_id': string;
|
|
19671
|
+
readonly 'destination_country': string;
|
|
19672
|
+
readonly 'coefficient': number;
|
|
19673
|
+
readonly 'flat_rates': io.flow.internal.v0.models.FlatRate[];
|
|
19674
|
+
readonly 'effective_at': string;
|
|
19675
|
+
readonly 'effective_until'?: string;
|
|
19676
|
+
}
|
|
19677
|
+
|
|
19678
|
+
interface GuaranteedShippingCalibratedOutputDeleted {
|
|
19679
|
+
readonly 'discriminator': 'guaranteed_shipping_calibrated_output_deleted';
|
|
19680
|
+
readonly 'event_id': string;
|
|
19681
|
+
readonly 'timestamp': string;
|
|
19682
|
+
readonly 'organization': string;
|
|
19683
|
+
readonly 'id': string;
|
|
19684
|
+
}
|
|
19685
|
+
|
|
19686
|
+
interface GuaranteedShippingCalibratedOutputUpserted {
|
|
19687
|
+
readonly 'discriminator': 'guaranteed_shipping_calibrated_output_upserted';
|
|
19688
|
+
readonly 'event_id': string;
|
|
19689
|
+
readonly 'timestamp': string;
|
|
19690
|
+
readonly 'organization': string;
|
|
19691
|
+
readonly 'guaranteed_shipping_calibrated_output': io.flow.internal.v0.models.GuaranteedShippingCalibratedOutput;
|
|
19692
|
+
}
|
|
19693
|
+
|
|
19694
|
+
interface GuaranteedShippingCalibration {
|
|
19695
|
+
readonly 'channel_id': string;
|
|
19696
|
+
readonly 'organization_id': string;
|
|
19697
|
+
readonly 'destination_country': string;
|
|
19698
|
+
}
|
|
19699
|
+
|
|
19700
|
+
interface GuaranteedShippingCalibrationForm {
|
|
19701
|
+
readonly 'lanes': io.flow.internal.v0.models.GuaranteedShippingCalibrationLaneForm[];
|
|
19702
|
+
}
|
|
19703
|
+
|
|
19704
|
+
interface GuaranteedShippingCalibrationLaneForm {
|
|
19705
|
+
readonly 'channel_id': string;
|
|
19706
|
+
readonly 'organization_id': string;
|
|
19707
|
+
readonly 'destination_country'?: string;
|
|
19708
|
+
}
|
|
19709
|
+
|
|
19598
19710
|
interface GuaranteedShippingPublishedOutput {
|
|
19599
19711
|
readonly 'id': string;
|
|
19600
19712
|
readonly 'organization_id': string;
|
|
@@ -19621,6 +19733,71 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19621
19733
|
readonly 'guaranteed_shipping_published_output': io.flow.internal.v0.models.GuaranteedShippingPublishedOutput;
|
|
19622
19734
|
}
|
|
19623
19735
|
|
|
19736
|
+
interface GuaranteedShippingSettings {
|
|
19737
|
+
readonly 'coefficients_updated_at': number;
|
|
19738
|
+
readonly 'channel_id': string;
|
|
19739
|
+
readonly 'organization_id': string;
|
|
19740
|
+
readonly 'destination_country': string;
|
|
19741
|
+
readonly 'tax_and_duty_coefficient': number;
|
|
19742
|
+
readonly 'fees_coefficient': number;
|
|
19743
|
+
readonly 'merchant_subsidy': io.flow.common.v0.models.Money;
|
|
19744
|
+
readonly 'created_at': number;
|
|
19745
|
+
readonly 'guaranteed_pricing_enabled': boolean;
|
|
19746
|
+
readonly 'guaranteed_shipping_enabled': boolean;
|
|
19747
|
+
}
|
|
19748
|
+
|
|
19749
|
+
interface GuaranteedShippingSettingsDeleted {
|
|
19750
|
+
readonly 'discriminator': 'guaranteed_shipping_settings_deleted';
|
|
19751
|
+
readonly 'event_id': string;
|
|
19752
|
+
readonly 'timestamp': string;
|
|
19753
|
+
readonly 'organization': string;
|
|
19754
|
+
readonly 'channel_id': string;
|
|
19755
|
+
readonly 'id': string;
|
|
19756
|
+
}
|
|
19757
|
+
|
|
19758
|
+
interface GuaranteedShippingSettingsDestinationUpdate {
|
|
19759
|
+
readonly 'country': string;
|
|
19760
|
+
readonly 'updated_at': string;
|
|
19761
|
+
readonly 'tax_and_duty_coefficient': number;
|
|
19762
|
+
readonly 'fees_coefficient': number;
|
|
19763
|
+
readonly 'merchant_subsidy': io.flow.common.v0.models.Money;
|
|
19764
|
+
readonly 'guaranteed_pricing_enabled': boolean;
|
|
19765
|
+
readonly 'guaranteed_shipping_enabled': boolean;
|
|
19766
|
+
}
|
|
19767
|
+
|
|
19768
|
+
interface GuaranteedShippingSettingsUpdate {
|
|
19769
|
+
readonly 'channel_id': string;
|
|
19770
|
+
readonly 'organization_id': string;
|
|
19771
|
+
readonly 'destination_updates': io.flow.internal.v0.models.GuaranteedShippingSettingsDestinationUpdate[];
|
|
19772
|
+
}
|
|
19773
|
+
|
|
19774
|
+
interface GuaranteedShippingSettingsUpdateDeleted {
|
|
19775
|
+
readonly 'discriminator': 'guaranteed_shipping_settings_update_deleted';
|
|
19776
|
+
readonly 'event_id': string;
|
|
19777
|
+
readonly 'timestamp': string;
|
|
19778
|
+
readonly 'organization': string;
|
|
19779
|
+
readonly 'channel_id': string;
|
|
19780
|
+
readonly 'id': string;
|
|
19781
|
+
}
|
|
19782
|
+
|
|
19783
|
+
interface GuaranteedShippingSettingsUpdateUpserted {
|
|
19784
|
+
readonly 'discriminator': 'guaranteed_shipping_settings_update_upserted';
|
|
19785
|
+
readonly 'event_id': string;
|
|
19786
|
+
readonly 'timestamp': string;
|
|
19787
|
+
readonly 'organization': string;
|
|
19788
|
+
readonly 'channel_id': string;
|
|
19789
|
+
readonly 'guaranteed_shipping_settings_update': io.flow.internal.v0.models.GuaranteedShippingSettingsUpdate;
|
|
19790
|
+
}
|
|
19791
|
+
|
|
19792
|
+
interface GuaranteedShippingSettingsUpserted {
|
|
19793
|
+
readonly 'discriminator': 'guaranteed_shipping_settings_upserted';
|
|
19794
|
+
readonly 'event_id': string;
|
|
19795
|
+
readonly 'timestamp': string;
|
|
19796
|
+
readonly 'organization': string;
|
|
19797
|
+
readonly 'channel_id': string;
|
|
19798
|
+
readonly 'guaranteed_shipping_settings': io.flow.internal.v0.models.GuaranteedShippingSettings;
|
|
19799
|
+
}
|
|
19800
|
+
|
|
19624
19801
|
interface HarmonizationClassificationStatisticsData {
|
|
19625
19802
|
readonly 'statistics': io.flow.internal.v0.models.ClassificationStatistics;
|
|
19626
19803
|
}
|
|
@@ -20013,6 +20190,32 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20013
20190
|
readonly 'created_at': string;
|
|
20014
20191
|
}
|
|
20015
20192
|
|
|
20193
|
+
interface Issuer {
|
|
20194
|
+
readonly 'id': string;
|
|
20195
|
+
readonly 'iin': string;
|
|
20196
|
+
readonly 'name'?: string;
|
|
20197
|
+
readonly 'country'?: string;
|
|
20198
|
+
readonly 'brand'?: string;
|
|
20199
|
+
readonly 'type'?: string;
|
|
20200
|
+
readonly 'category'?: string;
|
|
20201
|
+
readonly 'website'?: string;
|
|
20202
|
+
readonly 'phone'?: string;
|
|
20203
|
+
}
|
|
20204
|
+
|
|
20205
|
+
interface IssuerDeleted {
|
|
20206
|
+
readonly 'discriminator': 'issuer_deleted';
|
|
20207
|
+
readonly 'event_id': string;
|
|
20208
|
+
readonly 'timestamp': string;
|
|
20209
|
+
readonly 'issuer': io.flow.internal.v0.models.Issuer;
|
|
20210
|
+
}
|
|
20211
|
+
|
|
20212
|
+
interface IssuerUpserted {
|
|
20213
|
+
readonly 'discriminator': 'issuer_upserted';
|
|
20214
|
+
readonly 'event_id': string;
|
|
20215
|
+
readonly 'timestamp': string;
|
|
20216
|
+
readonly 'issuer': io.flow.internal.v0.models.Issuer;
|
|
20217
|
+
}
|
|
20218
|
+
|
|
20016
20219
|
interface ItemClassification {
|
|
20017
20220
|
readonly 'id'?: string;
|
|
20018
20221
|
readonly 'organization': string;
|
|
@@ -20117,6 +20320,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20117
20320
|
readonly 'tariffs'?: Record<string, io.flow.internal.v0.models.TariffCodeDuty>;
|
|
20118
20321
|
readonly 'decision_source'?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
20119
20322
|
readonly 'classification_scope'?: io.flow.internal.v0.enums.ClassificationScope;
|
|
20323
|
+
readonly 'classification_resource_id'?: string;
|
|
20120
20324
|
readonly 'taxonomy_category_classification_alignment'?: io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;
|
|
20121
20325
|
readonly 'created_at'?: string;
|
|
20122
20326
|
readonly 'updated_at'?: string;
|
|
@@ -20137,6 +20341,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20137
20341
|
readonly 'item_harmonization': io.flow.internal.v0.models.ItemHarmonization;
|
|
20138
20342
|
}
|
|
20139
20343
|
|
|
20344
|
+
interface ItemHs6Override {
|
|
20345
|
+
readonly 'item_number': string;
|
|
20346
|
+
readonly 'hs6': string;
|
|
20347
|
+
}
|
|
20348
|
+
|
|
20349
|
+
interface ItemHs6OverrideForm {
|
|
20350
|
+
readonly 'item_number': string;
|
|
20351
|
+
readonly 'hs6': string;
|
|
20352
|
+
readonly 'hs6_description'?: string;
|
|
20353
|
+
}
|
|
20354
|
+
|
|
20355
|
+
interface ItemHs6OverrideRejection {
|
|
20356
|
+
readonly 'item_number': string;
|
|
20357
|
+
readonly 'message': string;
|
|
20358
|
+
}
|
|
20359
|
+
|
|
20360
|
+
interface ItemHs6OverrideResult {
|
|
20361
|
+
readonly 'applied': io.flow.internal.v0.models.ItemHs6Override[];
|
|
20362
|
+
readonly 'rejected': io.flow.internal.v0.models.ItemHs6OverrideRejection[];
|
|
20363
|
+
}
|
|
20364
|
+
|
|
20365
|
+
interface ItemHs6OverridesForm {
|
|
20366
|
+
readonly 'items': io.flow.internal.v0.models.ItemHs6OverrideForm[];
|
|
20367
|
+
}
|
|
20368
|
+
|
|
20140
20369
|
interface ItemQueryResponse {
|
|
20141
20370
|
readonly 'q': string;
|
|
20142
20371
|
readonly 'items': io.flow.catalog.v0.models.Item[];
|
|
@@ -20235,6 +20464,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20235
20464
|
readonly 'values': string[];
|
|
20236
20465
|
}
|
|
20237
20466
|
|
|
20467
|
+
interface JohnStrongItem {
|
|
20468
|
+
readonly 'id': string;
|
|
20469
|
+
readonly 'number': string;
|
|
20470
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
20471
|
+
readonly 'description'?: string;
|
|
20472
|
+
readonly 'type': io.flow.internal.v0.enums.JohnStrongItemType;
|
|
20473
|
+
readonly 'added_on': string;
|
|
20474
|
+
}
|
|
20475
|
+
|
|
20476
|
+
interface JohnStrongItemForm {
|
|
20477
|
+
readonly 'number': string;
|
|
20478
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
20479
|
+
readonly 'description'?: string;
|
|
20480
|
+
readonly 'type': io.flow.internal.v0.enums.JohnStrongItemType;
|
|
20481
|
+
readonly 'added_on': string;
|
|
20482
|
+
}
|
|
20483
|
+
|
|
20238
20484
|
interface Journal {
|
|
20239
20485
|
readonly 'name': string;
|
|
20240
20486
|
readonly 'queued': number;
|
|
@@ -21466,6 +21712,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21466
21712
|
readonly 'organization_id': string;
|
|
21467
21713
|
readonly 'order_number': string;
|
|
21468
21714
|
readonly 'price': io.flow.common.v0.models.PriceWithBase;
|
|
21715
|
+
readonly 'refunded_at'?: string;
|
|
21469
21716
|
}
|
|
21470
21717
|
|
|
21471
21718
|
interface OrderRefundTransactionDeleted {
|
|
@@ -21515,6 +21762,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21515
21762
|
readonly 'to_service_id': string;
|
|
21516
21763
|
}
|
|
21517
21764
|
|
|
21765
|
+
interface OrderSettings {
|
|
21766
|
+
readonly 'tax_and_duty_inclusivity_setting'?: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
|
|
21767
|
+
}
|
|
21768
|
+
|
|
21518
21769
|
interface OrderSummary {
|
|
21519
21770
|
readonly 'id': string;
|
|
21520
21771
|
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
@@ -22172,6 +22423,35 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22172
22423
|
readonly 'insurance': number;
|
|
22173
22424
|
}
|
|
22174
22425
|
|
|
22426
|
+
interface OutboundShippingCost {
|
|
22427
|
+
readonly 'channel_id': string;
|
|
22428
|
+
readonly 'organization_id': string;
|
|
22429
|
+
readonly 'destination_country': string;
|
|
22430
|
+
readonly 'carrier_service_id': string;
|
|
22431
|
+
readonly 'cost': io.flow.common.v0.models.Money;
|
|
22432
|
+
readonly 'updated_at': number;
|
|
22433
|
+
readonly 'run_id': string;
|
|
22434
|
+
readonly 'model_version': string;
|
|
22435
|
+
}
|
|
22436
|
+
|
|
22437
|
+
interface OutboundShippingCostDeleted {
|
|
22438
|
+
readonly 'discriminator': 'outbound_shipping_cost_deleted';
|
|
22439
|
+
readonly 'event_id': string;
|
|
22440
|
+
readonly 'timestamp': string;
|
|
22441
|
+
readonly 'organization': string;
|
|
22442
|
+
readonly 'channel_id': string;
|
|
22443
|
+
readonly 'id': string;
|
|
22444
|
+
}
|
|
22445
|
+
|
|
22446
|
+
interface OutboundShippingCostUpserted {
|
|
22447
|
+
readonly 'discriminator': 'outbound_shipping_cost_upserted';
|
|
22448
|
+
readonly 'event_id': string;
|
|
22449
|
+
readonly 'timestamp': string;
|
|
22450
|
+
readonly 'organization': string;
|
|
22451
|
+
readonly 'channel_id': string;
|
|
22452
|
+
readonly 'outbound_shipping_cost': io.flow.internal.v0.models.OutboundShippingCost;
|
|
22453
|
+
}
|
|
22454
|
+
|
|
22175
22455
|
interface Partner {
|
|
22176
22456
|
readonly 'id': string;
|
|
22177
22457
|
readonly 'name': string;
|
|
@@ -22670,6 +22950,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22670
22950
|
readonly 'refund': io.flow.internal.v0.models.PaypalInternalRefund;
|
|
22671
22951
|
}
|
|
22672
22952
|
|
|
22953
|
+
interface PcReviewContext {
|
|
22954
|
+
readonly 'discriminator': 'pc_review_context';
|
|
22955
|
+
readonly 'organization_id': string;
|
|
22956
|
+
readonly 'item_name': string;
|
|
22957
|
+
readonly 'item_description'?: string;
|
|
22958
|
+
readonly 'categories'?: string;
|
|
22959
|
+
readonly 'taxonomy_category'?: string;
|
|
22960
|
+
readonly 'image_url'?: string;
|
|
22961
|
+
}
|
|
22962
|
+
|
|
22963
|
+
interface PcReviewOutput {
|
|
22964
|
+
readonly 'discriminator': 'pc_review_output';
|
|
22965
|
+
readonly 'hs_code': string;
|
|
22966
|
+
readonly 'alternates': string[];
|
|
22967
|
+
readonly 'confidence': number;
|
|
22968
|
+
readonly 'reasoning': string;
|
|
22969
|
+
}
|
|
22970
|
+
|
|
22673
22971
|
interface PendingBankPayment {
|
|
22674
22972
|
readonly 'id': string;
|
|
22675
22973
|
readonly 'account': io.flow.internal.v0.models.AccountSummary;
|
|
@@ -22821,6 +23119,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22821
23119
|
readonly 'catalog_size': number;
|
|
22822
23120
|
readonly 'processed_product_count': number;
|
|
22823
23121
|
readonly 'last_request': string;
|
|
23122
|
+
readonly 'screening_mode'?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
22824
23123
|
readonly 'updated_by_user_id': string;
|
|
22825
23124
|
}
|
|
22826
23125
|
|
|
@@ -23285,6 +23584,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23285
23584
|
readonly 'location': io.flow.common.v0.models.Address;
|
|
23286
23585
|
}
|
|
23287
23586
|
|
|
23587
|
+
interface PvReviewContext {
|
|
23588
|
+
readonly 'discriminator': 'pv_review_context';
|
|
23589
|
+
readonly 'organization_id': string;
|
|
23590
|
+
readonly 'item_name': string;
|
|
23591
|
+
readonly 'item_description'?: string;
|
|
23592
|
+
readonly 'image_url'?: string;
|
|
23593
|
+
readonly 'rule_name': string;
|
|
23594
|
+
readonly 'rule_reason_code': string;
|
|
23595
|
+
readonly 'hs_code'?: string;
|
|
23596
|
+
readonly 'categories'?: string;
|
|
23597
|
+
readonly 'price'?: string;
|
|
23598
|
+
readonly 'matching_positive_keywords': string[];
|
|
23599
|
+
readonly 'matching_negative_keywords': string[];
|
|
23600
|
+
}
|
|
23601
|
+
|
|
23602
|
+
interface PvReviewOutput {
|
|
23603
|
+
readonly 'discriminator': 'pv_review_output';
|
|
23604
|
+
readonly 'decision': io.flow.internal.v0.enums.PvDecision;
|
|
23605
|
+
readonly 'confidence': number;
|
|
23606
|
+
readonly 'reasoning': string;
|
|
23607
|
+
}
|
|
23608
|
+
|
|
23288
23609
|
interface Quote {
|
|
23289
23610
|
readonly 'id': string;
|
|
23290
23611
|
readonly 'base': string;
|
|
@@ -23670,6 +23991,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23670
23991
|
readonly 'number': string;
|
|
23671
23992
|
}
|
|
23672
23993
|
|
|
23994
|
+
interface RemediateTaxDutyMetadata {
|
|
23995
|
+
readonly 'discriminator': 'remediate_tax_duty_metadata';
|
|
23996
|
+
readonly 'arm': io.flow.internal.v0.enums.RemediateTaxDutyArm;
|
|
23997
|
+
}
|
|
23998
|
+
|
|
23673
23999
|
interface RemittanceResponsibility {
|
|
23674
24000
|
readonly 'tax': io.flow.internal.v0.enums.ResponsibleParty;
|
|
23675
24001
|
readonly 'duty': io.flow.internal.v0.enums.ResponsibleParty;
|
|
@@ -24150,6 +24476,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24150
24476
|
readonly 'hs_code'?: string;
|
|
24151
24477
|
readonly 'hs_code_source'?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
24152
24478
|
readonly 'classification_scope'?: io.flow.internal.v0.enums.ClassificationScope;
|
|
24479
|
+
readonly 'classification_resource_id'?: string;
|
|
24153
24480
|
readonly 'description': string;
|
|
24154
24481
|
readonly 'category'?: string;
|
|
24155
24482
|
readonly 'categories': string[];
|
|
@@ -24278,6 +24605,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24278
24605
|
readonly 'hs_code'?: string;
|
|
24279
24606
|
readonly 'hs_code_source'?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
24280
24607
|
readonly 'classification_scope'?: io.flow.internal.v0.enums.ClassificationScope;
|
|
24608
|
+
readonly 'classification_resource_id'?: string;
|
|
24281
24609
|
readonly 'url'?: string;
|
|
24282
24610
|
readonly 'reviews': io.flow.internal.v0.models.RestrictionItemReview[];
|
|
24283
24611
|
readonly 'created_at': string;
|
|
@@ -24327,6 +24655,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24327
24655
|
readonly 'attribute_rule_conditions'?: io.flow.internal.v0.models.AttributeRule;
|
|
24328
24656
|
readonly 'keyword_cancelling'?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
24329
24657
|
readonly 'activation_status': io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
24658
|
+
readonly 'evaluation_mode': io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
|
|
24330
24659
|
}
|
|
24331
24660
|
|
|
24332
24661
|
interface RestrictionRuleDecisionForm {
|
|
@@ -24388,6 +24717,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24388
24717
|
readonly 'attribute_rule_conditions'?: io.flow.internal.v0.models.AttributeRule;
|
|
24389
24718
|
readonly 'keyword_cancelling'?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
24390
24719
|
readonly 'activation_status': io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
24720
|
+
readonly 'evaluation_mode': io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
|
|
24391
24721
|
}
|
|
24392
24722
|
|
|
24393
24723
|
interface RestrictionRuleLaneExemption {
|
|
@@ -24687,6 +25017,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24687
25017
|
readonly 'revenue_record': io.flow.internal.v0.models.RevenueRecord;
|
|
24688
25018
|
}
|
|
24689
25019
|
|
|
25020
|
+
interface ReviewRequestItem {
|
|
25021
|
+
readonly 'review_type': io.flow.internal.v0.enums.AiReviewType;
|
|
25022
|
+
readonly 'review_id': string;
|
|
25023
|
+
readonly 'context': io.flow.internal.v0.unions.AiReviewContext;
|
|
25024
|
+
}
|
|
25025
|
+
|
|
24690
25026
|
interface RoutingAccount {
|
|
24691
25027
|
readonly 'discriminator': 'routing_account';
|
|
24692
25028
|
readonly 'processor': io.flow.internal.v0.enums.Processor;
|
|
@@ -24858,6 +25194,41 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24858
25194
|
readonly 'merchant_error'?: io.flow.sellability.v0.models.SellabilityError[];
|
|
24859
25195
|
}
|
|
24860
25196
|
|
|
25197
|
+
interface SellabilityPendingVerification {
|
|
25198
|
+
readonly 'id': string;
|
|
25199
|
+
readonly 'merchant_id': string;
|
|
25200
|
+
readonly 'product_id': string;
|
|
25201
|
+
readonly 'channel': string;
|
|
25202
|
+
readonly 'request_id': string;
|
|
25203
|
+
readonly 'name': string;
|
|
25204
|
+
readonly 'description': string;
|
|
25205
|
+
readonly 'taxonomy_category'?: string;
|
|
25206
|
+
readonly 'hs6_code'?: string;
|
|
25207
|
+
readonly 'price'?: string;
|
|
25208
|
+
readonly 'rule_id': string;
|
|
25209
|
+
readonly 'reason_code': string;
|
|
25210
|
+
readonly 'matching_keywords'?: string;
|
|
25211
|
+
readonly 'status': string;
|
|
25212
|
+
readonly 'agent_decision'?: string;
|
|
25213
|
+
readonly 'agent_reasoning'?: string;
|
|
25214
|
+
readonly 'created_at': string;
|
|
25215
|
+
readonly 'updated_at': string;
|
|
25216
|
+
}
|
|
25217
|
+
|
|
25218
|
+
interface SellabilityPendingVerificationDeleted {
|
|
25219
|
+
readonly 'discriminator': 'sellability_pending_verification_deleted';
|
|
25220
|
+
readonly 'event_id': string;
|
|
25221
|
+
readonly 'timestamp': string;
|
|
25222
|
+
readonly 'id': string;
|
|
25223
|
+
}
|
|
25224
|
+
|
|
25225
|
+
interface SellabilityPendingVerificationUpserted {
|
|
25226
|
+
readonly 'discriminator': 'sellability_pending_verification_upserted';
|
|
25227
|
+
readonly 'event_id': string;
|
|
25228
|
+
readonly 'timestamp': string;
|
|
25229
|
+
readonly 'sellability_pending_verification': io.flow.internal.v0.models.SellabilityPendingVerification;
|
|
25230
|
+
}
|
|
25231
|
+
|
|
24861
25232
|
interface ServiceFees {
|
|
24862
25233
|
readonly 'ratecard': io.flow.internal.v0.models.RatecardInternalSummary;
|
|
24863
25234
|
readonly 'service_fees': io.flow.ratecard.v0.unions.ServiceFee[];
|
|
@@ -26656,6 +27027,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26656
27027
|
interface TaxonomyCategoryHs6Ref {
|
|
26657
27028
|
readonly 'id': string;
|
|
26658
27029
|
readonly 'taxonomy_category': string;
|
|
27030
|
+
readonly 'taxonomy_category_id'?: string;
|
|
26659
27031
|
readonly 'hs6': string;
|
|
26660
27032
|
readonly 'updated_by_user_id': string;
|
|
26661
27033
|
}
|
|
@@ -27185,6 +27557,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27185
27557
|
readonly 'message': string;
|
|
27186
27558
|
}
|
|
27187
27559
|
|
|
27560
|
+
interface UnserviceableTaxonomyCategory {
|
|
27561
|
+
readonly 'id': string;
|
|
27562
|
+
readonly 'taxonomy_category': string;
|
|
27563
|
+
readonly 'taxonomy_category_id'?: string;
|
|
27564
|
+
readonly 'updated_by_user_id': string;
|
|
27565
|
+
}
|
|
27566
|
+
|
|
27567
|
+
interface UnserviceableTaxonomyCategoryDeleted {
|
|
27568
|
+
readonly 'discriminator': 'unserviceable_taxonomy_category_deleted';
|
|
27569
|
+
readonly 'event_id': string;
|
|
27570
|
+
readonly 'timestamp': string;
|
|
27571
|
+
readonly 'id': string;
|
|
27572
|
+
}
|
|
27573
|
+
|
|
27574
|
+
interface UnserviceableTaxonomyCategoryUpserted {
|
|
27575
|
+
readonly 'discriminator': 'unserviceable_taxonomy_category_upserted';
|
|
27576
|
+
readonly 'event_id': string;
|
|
27577
|
+
readonly 'timestamp': string;
|
|
27578
|
+
readonly 'unserviceable_taxonomy_category': io.flow.internal.v0.models.UnserviceableTaxonomyCategory;
|
|
27579
|
+
}
|
|
27580
|
+
|
|
27188
27581
|
interface Ups {
|
|
27189
27582
|
readonly 'discriminator': 'ups';
|
|
27190
27583
|
readonly 'client_id': string;
|
|
@@ -27301,6 +27694,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27301
27694
|
readonly 'direction'?: io.flow.label.v0.enums.Direction;
|
|
27302
27695
|
readonly 'package_dimensions_source': io.flow.label.v0.enums.PackageDimensionsSource;
|
|
27303
27696
|
readonly 'shipping_date_time'?: string;
|
|
27697
|
+
readonly 'delivery_window_days_from'?: number;
|
|
27698
|
+
readonly 'delivery_window_days_to'?: number;
|
|
27304
27699
|
}
|
|
27305
27700
|
|
|
27306
27701
|
interface ViesResult {
|
|
@@ -27353,6 +27748,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27353
27748
|
declare namespace io.flow.internal.v0.unions {
|
|
27354
27749
|
type AdjustmentAmount = (io.flow.internal.v0.models.AdjustmentAmountPercentage | io.flow.internal.v0.models.AdjustmentAmountFixed);
|
|
27355
27750
|
type AdjustmentDetails = (io.flow.internal.v0.models.AdjustmentAmountPercentage | io.flow.internal.v0.models.AdjustmentAmountFixed | io.flow.internal.v0.models.AdjustmentDetailsProcessingTransaction);
|
|
27751
|
+
type AiOutput = (io.flow.internal.v0.models.PvReviewOutput | io.flow.internal.v0.models.DgReviewOutput | io.flow.internal.v0.models.PcReviewOutput);
|
|
27752
|
+
type AiReviewContext = (io.flow.internal.v0.models.PvReviewContext | io.flow.internal.v0.models.DgReviewContext | io.flow.internal.v0.models.PcReviewContext);
|
|
27356
27753
|
type AuthorizationPayload = (io.flow.internal.v0.models.ApplePayAuthorizationPayload | io.flow.internal.v0.models.PaypalAuthorizationPayload);
|
|
27357
27754
|
type AuthorizedOrderCharge = (io.flow.internal.v0.models.AuthorizedShippingCharge);
|
|
27358
27755
|
type CalculatorStamp = (io.flow.internal.v0.models.MessageStamp | io.flow.internal.v0.models.CalculationStep);
|
|
@@ -27380,7 +27777,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
27380
27777
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
27381
27778
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
|
|
27382
27779
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
27383
|
-
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);
|
|
27780
|
+
type Event = (io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.AiReviewBatchSubmitted | io.flow.internal.v0.models.AiReviewResultUpserted | io.flow.internal.v0.models.AiReviewResultDeleted | io.flow.internal.v0.models.AiReviewRequestFailed | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.FulfillmentStatusUpserted | io.flow.internal.v0.models.FulfillmentStatusDeleted | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.SalesPaymentRecordUpserted | io.flow.internal.v0.models.SalesPaymentRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.ChannelShopStatisticsUpserted | io.flow.internal.v0.models.ChannelShopStatisticsDeleted | io.flow.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.ShippingCostUpserted | io.flow.internal.v0.models.ShippingCostDeleted | io.flow.internal.v0.models.MorCostUpserted | io.flow.internal.v0.models.MorCostDeleted | io.flow.internal.v0.models.FlatRateLabelReversalUpserted | io.flow.internal.v0.models.FlatRateLabelReversalDeleted | io.flow.internal.v0.models.FlatRateLabelSubsidyUpserted | io.flow.internal.v0.models.FlatRateLabelSubsidyDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputUpserted | io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputDeleted | io.flow.internal.v0.models.OutboundShippingCostUpserted | io.flow.internal.v0.models.OutboundShippingCostDeleted | io.flow.internal.v0.models.GuaranteedShippingPublishedOutputUpserted | io.flow.internal.v0.models.GuaranteedShippingPublishedOutputDeleted | io.flow.internal.v0.models.GuaranteedShippingSettingsUpserted | io.flow.internal.v0.models.GuaranteedShippingSettingsDeleted | io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateUpserted | io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.MerchantOverrideUpserted | io.flow.internal.v0.models.MerchantOverrideDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelCreationJobUpserted | io.flow.internal.v0.models.LabelCreationJobDeleted | io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted | io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.PartnerRequestUpserted | io.flow.internal.v0.models.PartnerRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.OrderRefundTransactionUpserted | io.flow.internal.v0.models.OrderRefundTransactionDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.PreonboardingSellabilityResultInserted | io.flow.internal.v0.models.PreonboardingSellabilityResultUpdated | io.flow.internal.v0.models.PreonboardingSellabilityResultDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.ProductRestrictionStateInserted | io.flow.internal.v0.models.ProductRestrictionStateUpdated | io.flow.internal.v0.models.ProductRestrictionStateDeleted | io.flow.internal.v0.models.ProductSellabilityResultInserted | io.flow.internal.v0.models.ProductSellabilityResultUpdated | io.flow.internal.v0.models.ProductSellabilityResultDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvUpserted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvDeleted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsUpserted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted | io.flow.internal.v0.models.PreonboardingMerchantUpserted | io.flow.internal.v0.models.PreonboardingMerchantDeleted | io.flow.internal.v0.models.UnserviceableTaxonomyCategoryUpserted | io.flow.internal.v0.models.UnserviceableTaxonomyCategoryDeleted | io.flow.internal.v0.models.SellabilityPendingVerificationUpserted | io.flow.internal.v0.models.SellabilityPendingVerificationDeleted | io.flow.internal.v0.models.ShopifyHs10CodesUpserted | io.flow.internal.v0.models.ShopifyHs10CodesDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.internal.v0.models.ShopifyOrderTransactionUpserted | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted | io.flow.internal.v0.models.ShopifyTestOrderUpserted | io.flow.internal.v0.models.ShopifyTestOrderDeleted | io.flow.internal.v0.models.ShopifyMerchantMarketsUpserted | io.flow.internal.v0.models.ShopifyMerchantMarketsDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.ShopifyMerchantPlanUpserted | io.flow.internal.v0.models.ShopifyMerchantPlanDeleted | io.flow.internal.v0.models.ShopifyDisputeUpserted | io.flow.internal.v0.models.ShopifyDisputeDeleted | io.flow.internal.v0.models.ShopifyReportFileUpserted | io.flow.internal.v0.models.ShopifyReportFileDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.B2BTaxTransactionUpserted | io.flow.internal.v0.models.B2BTaxTransactionDeleted | io.flow.internal.v0.models.GabrielItemUpserted | io.flow.internal.v0.models.GabrielItemDeleted | io.flow.internal.v0.models.ChenglinItemUpserted | io.flow.internal.v0.models.ChenglinItemDeleted | io.flow.internal.v0.models.BojanaItemUpserted | io.flow.internal.v0.models.BojanaItemDeleted | io.flow.internal.v0.models.RaveenaItemUpserted | io.flow.internal.v0.models.RaveenaItemDeleted | io.flow.internal.v0.models.MaheshItemUpserted | io.flow.internal.v0.models.MaheshItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
27384
27781
|
type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
|
|
27385
27782
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
27386
27783
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -27423,7 +27820,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
27423
27820
|
type TariffEligibilityData = (io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData);
|
|
27424
27821
|
type TariffEligibilityForm = (io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm);
|
|
27425
27822
|
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);
|
|
27426
|
-
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);
|
|
27823
|
+
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);
|
|
27427
27824
|
type TaxAmount = (io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount);
|
|
27428
27825
|
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);
|
|
27429
27826
|
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);
|
|
@@ -27437,6 +27834,9 @@ export const accountType: PropTypes.Requireable<io.flow.internal.v0.enums.Accoun
|
|
|
27437
27834
|
export const adaptiveShippingOrderGuaranteeState: PropTypes.Requireable<io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState>;
|
|
27438
27835
|
export const adjustmentTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.AdjustmentTransactionType>;
|
|
27439
27836
|
export const adyenIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.AdyenIntegrationType>;
|
|
27837
|
+
export const aiReviewConsumer: PropTypes.Requireable<io.flow.internal.v0.enums.AiReviewConsumer>;
|
|
27838
|
+
export const aiReviewFailureReason: PropTypes.Requireable<io.flow.internal.v0.enums.AiReviewFailureReason>;
|
|
27839
|
+
export const aiReviewType: PropTypes.Requireable<io.flow.internal.v0.enums.AiReviewType>;
|
|
27440
27840
|
export const amruthaItemType: PropTypes.Requireable<io.flow.internal.v0.enums.AmruthaItemType>;
|
|
27441
27841
|
export const anyDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.AnyDangerousGoods>;
|
|
27442
27842
|
export const apiCallReferenceId: PropTypes.Requireable<io.flow.internal.v0.enums.ApiCallReferenceId>;
|
|
@@ -27562,6 +27962,7 @@ export const itemClassificationStatus: PropTypes.Requireable<io.flow.internal.v0
|
|
|
27562
27962
|
export const itemHarmonizationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ItemHarmonizationStatus>;
|
|
27563
27963
|
export const itemQuantityAction: PropTypes.Requireable<io.flow.internal.v0.enums.ItemQuantityAction>;
|
|
27564
27964
|
export const itemType: PropTypes.Requireable<io.flow.internal.v0.enums.ItemType>;
|
|
27965
|
+
export const johnStrongItemType: PropTypes.Requireable<io.flow.internal.v0.enums.JohnStrongItemType>;
|
|
27565
27966
|
export const journalOperation: PropTypes.Requireable<io.flow.internal.v0.enums.JournalOperation>;
|
|
27566
27967
|
export const keywordType: PropTypes.Requireable<io.flow.internal.v0.enums.KeywordType>;
|
|
27567
27968
|
export const labelBillingStrategy: PropTypes.Requireable<io.flow.internal.v0.enums.LabelBillingStrategy>;
|
|
@@ -27630,11 +28031,13 @@ export const processingTransactionType: PropTypes.Requireable<io.flow.internal.v
|
|
|
27630
28031
|
export const processor: PropTypes.Requireable<io.flow.internal.v0.enums.Processor>;
|
|
27631
28032
|
export const processorEntityStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ProcessorEntityStatus>;
|
|
27632
28033
|
export const productStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ProductStatus>;
|
|
28034
|
+
export const pvDecision: PropTypes.Requireable<io.flow.internal.v0.enums.PvDecision>;
|
|
27633
28035
|
export const rateLevelKey: PropTypes.Requireable<io.flow.internal.v0.enums.RateLevelKey>;
|
|
27634
28036
|
export const rateSource: PropTypes.Requireable<io.flow.internal.v0.enums.RateSource>;
|
|
27635
28037
|
export const raveenaItemType: PropTypes.Requireable<io.flow.internal.v0.enums.RaveenaItemType>;
|
|
27636
28038
|
export const redirectReason: PropTypes.Requireable<io.flow.internal.v0.enums.RedirectReason>;
|
|
27637
28039
|
export const rejectionReason: PropTypes.Requireable<io.flow.internal.v0.enums.RejectionReason>;
|
|
28040
|
+
export const remediateTaxDutyArm: PropTypes.Requireable<io.flow.internal.v0.enums.RemediateTaxDutyArm>;
|
|
27638
28041
|
export const reportFileStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ReportFileStatus>;
|
|
27639
28042
|
export const reportFileType: PropTypes.Requireable<io.flow.internal.v0.enums.ReportFileType>;
|
|
27640
28043
|
export const reportInterval: PropTypes.Requireable<io.flow.internal.v0.enums.ReportInterval>;
|
|
@@ -27654,6 +28057,7 @@ export const restrictionOrganizationChannel: PropTypes.Requireable<io.flow.inter
|
|
|
27654
28057
|
export const restrictionOrganizationSource: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionOrganizationSource>;
|
|
27655
28058
|
export const restrictionRuleActivationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionRuleActivationStatus>;
|
|
27656
28059
|
export const restrictionRuleCommunityExemption: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionRuleCommunityExemption>;
|
|
28060
|
+
export const restrictionRuleEvaluationMode: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionRuleEvaluationMode>;
|
|
27657
28061
|
export const restrictionRuleExceptionAction: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionRuleExceptionAction>;
|
|
27658
28062
|
export const restrictionStateReviewStatus: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionStateReviewStatus>;
|
|
27659
28063
|
export const restrictionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionStatus>;
|
|
@@ -27734,19 +28138,9 @@ export const accountUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models
|
|
|
27734
28138
|
export const accountingPendingOrderMetadata: PropTypes.Requireable<io.flow.internal.v0.models.AccountingPendingOrderMetadata>;
|
|
27735
28139
|
export const accountingReturnMetadata: PropTypes.Requireable<io.flow.internal.v0.models.AccountingReturnMetadata>;
|
|
27736
28140
|
export const actionQuantity: PropTypes.Requireable<io.flow.internal.v0.models.ActionQuantity>;
|
|
27737
|
-
export const adaptivePricingCoefficient: PropTypes.Requireable<io.flow.internal.v0.models.AdaptivePricingCoefficient>;
|
|
27738
|
-
export const adaptivePricingCoefficientDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptivePricingCoefficientDeleted>;
|
|
27739
|
-
export const adaptivePricingCoefficientUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptivePricingCoefficientUpserted>;
|
|
27740
|
-
export const adaptivePricingDestinationUpdate: PropTypes.Requireable<io.flow.internal.v0.models.AdaptivePricingDestinationUpdate>;
|
|
27741
|
-
export const adaptivePricingUpdate: PropTypes.Requireable<io.flow.internal.v0.models.AdaptivePricingUpdate>;
|
|
27742
|
-
export const adaptivePricingUpdateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptivePricingUpdateDeleted>;
|
|
27743
|
-
export const adaptivePricingUpdateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptivePricingUpdateUpserted>;
|
|
27744
28141
|
export const adaptiveShippingOrderGuarantee: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee>;
|
|
27745
28142
|
export const adaptiveShippingOrderGuaranteeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted>;
|
|
27746
28143
|
export const adaptiveShippingOrderGuaranteeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted>;
|
|
27747
|
-
export const adaptiveShippingRate: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingRate>;
|
|
27748
|
-
export const adaptiveShippingRateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingRateDeleted>;
|
|
27749
|
-
export const adaptiveShippingRateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingRateUpserted>;
|
|
27750
28144
|
export const additionalImportTax: PropTypes.Requireable<io.flow.internal.v0.models.AdditionalImportTax>;
|
|
27751
28145
|
export const adjustmentAmountFixed: PropTypes.Requireable<io.flow.internal.v0.models.AdjustmentAmountFixed>;
|
|
27752
28146
|
export const adjustmentAmountPercentage: PropTypes.Requireable<io.flow.internal.v0.models.AdjustmentAmountPercentage>;
|
|
@@ -27800,6 +28194,12 @@ export const afterpayRefund: PropTypes.Requireable<io.flow.internal.v0.models.Af
|
|
|
27800
28194
|
export const afterpayRefundDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AfterpayRefundDeleted>;
|
|
27801
28195
|
export const afterpayRefundUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AfterpayRefundUpserted>;
|
|
27802
28196
|
export const aftershipWebhook: PropTypes.Requireable<io.flow.internal.v0.models.AftershipWebhook>;
|
|
28197
|
+
export const aiReviewBatchSubmitted: PropTypes.Requireable<io.flow.internal.v0.models.AiReviewBatchSubmitted>;
|
|
28198
|
+
export const aiReviewFailedItem: PropTypes.Requireable<io.flow.internal.v0.models.AiReviewFailedItem>;
|
|
28199
|
+
export const aiReviewRequestFailed: PropTypes.Requireable<io.flow.internal.v0.models.AiReviewRequestFailed>;
|
|
28200
|
+
export const aiReviewResult: PropTypes.Requireable<io.flow.internal.v0.models.AiReviewResult>;
|
|
28201
|
+
export const aiReviewResultDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AiReviewResultDeleted>;
|
|
28202
|
+
export const aiReviewResultUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AiReviewResultUpserted>;
|
|
27803
28203
|
export const allItemsExport: PropTypes.Requireable<io.flow.internal.v0.models.AllItemsExport>;
|
|
27804
28204
|
export const allocationItemReference: PropTypes.Requireable<io.flow.internal.v0.models.AllocationItemReference>;
|
|
27805
28205
|
export const allowedLabels: PropTypes.Requireable<io.flow.internal.v0.models.AllowedLabels>;
|
|
@@ -27977,6 +28377,9 @@ export const channelOrderSummary: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
27977
28377
|
export const channelOrderSummaryDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderSummaryDeleted>;
|
|
27978
28378
|
export const channelOrderSummaryFulfillmentDetails: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderSummaryFulfillmentDetails>;
|
|
27979
28379
|
export const channelOrderSummaryUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderSummaryUpserted>;
|
|
28380
|
+
export const channelOrderTaxAndDutyInclusivitySetting: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySetting>;
|
|
28381
|
+
export const channelOrderTaxAndDutyInclusivitySettingDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySettingDeleted>;
|
|
28382
|
+
export const channelOrderTaxAndDutyInclusivitySettingUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderTaxAndDutyInclusivitySettingUpserted>;
|
|
27980
28383
|
export const channelOrganizationDomains: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationDomains>;
|
|
27981
28384
|
export const channelOrganizationIdentifier: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationIdentifier>;
|
|
27982
28385
|
export const channelOrganizationIdentifierDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted>;
|
|
@@ -28125,6 +28528,9 @@ export const deliveredDutyPreference: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
28125
28528
|
export const deliveredDutyPreferenceForm: PropTypes.Requireable<io.flow.internal.v0.models.DeliveredDutyPreferenceForm>;
|
|
28126
28529
|
export const destinationDutyComparison: PropTypes.Requireable<io.flow.internal.v0.models.DestinationDutyComparison>;
|
|
28127
28530
|
export const destinationError: PropTypes.Requireable<io.flow.internal.v0.models.DestinationError>;
|
|
28531
|
+
export const dgClassAssessment: PropTypes.Requireable<io.flow.internal.v0.models.DgClassAssessment>;
|
|
28532
|
+
export const dgReviewContext: PropTypes.Requireable<io.flow.internal.v0.models.DgReviewContext>;
|
|
28533
|
+
export const dgReviewOutput: PropTypes.Requireable<io.flow.internal.v0.models.DgReviewOutput>;
|
|
28128
28534
|
export const dhl: PropTypes.Requireable<io.flow.internal.v0.models.Dhl>;
|
|
28129
28535
|
export const dhlEcommerce: PropTypes.Requireable<io.flow.internal.v0.models.DhlEcommerce>;
|
|
28130
28536
|
export const dimensionEstimateOpsInput: PropTypes.Requireable<io.flow.internal.v0.models.DimensionEstimateOpsInput>;
|
|
@@ -28208,6 +28614,7 @@ export const externalFulfillmentProof: PropTypes.Requireable<io.flow.internal.v0
|
|
|
28208
28614
|
export const externalFulfillmentProofForm: PropTypes.Requireable<io.flow.internal.v0.models.ExternalFulfillmentProofForm>;
|
|
28209
28615
|
export const externalFulfillmentProofTracking: PropTypes.Requireable<io.flow.internal.v0.models.ExternalFulfillmentProofTracking>;
|
|
28210
28616
|
export const externalFulfillmentProofTrackingForm: PropTypes.Requireable<io.flow.internal.v0.models.ExternalFulfillmentProofTrackingForm>;
|
|
28617
|
+
export const externalOrderSummary: PropTypes.Requireable<io.flow.internal.v0.models.ExternalOrderSummary>;
|
|
28211
28618
|
export const externalRatecardLink: PropTypes.Requireable<io.flow.internal.v0.models.ExternalRatecardLink>;
|
|
28212
28619
|
export const externalRatecardLinkResponse: PropTypes.Requireable<io.flow.internal.v0.models.ExternalRatecardLinkResponse>;
|
|
28213
28620
|
export const facebookPixel: PropTypes.Requireable<io.flow.internal.v0.models.FacebookPixel>;
|
|
@@ -28248,6 +28655,9 @@ export const flatRate: PropTypes.Requireable<io.flow.internal.v0.models.FlatRate
|
|
|
28248
28655
|
export const flatRateLabelReversal: PropTypes.Requireable<io.flow.internal.v0.models.FlatRateLabelReversal>;
|
|
28249
28656
|
export const flatRateLabelReversalDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FlatRateLabelReversalDeleted>;
|
|
28250
28657
|
export const flatRateLabelReversalUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FlatRateLabelReversalUpserted>;
|
|
28658
|
+
export const flatRateLabelSubsidy: PropTypes.Requireable<io.flow.internal.v0.models.FlatRateLabelSubsidy>;
|
|
28659
|
+
export const flatRateLabelSubsidyDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FlatRateLabelSubsidyDeleted>;
|
|
28660
|
+
export const flatRateLabelSubsidyUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FlatRateLabelSubsidyUpserted>;
|
|
28251
28661
|
export const flatRateLabelTransaction: PropTypes.Requireable<io.flow.internal.v0.models.FlatRateLabelTransaction>;
|
|
28252
28662
|
export const flexeWebhook: PropTypes.Requireable<io.flow.internal.v0.models.FlexeWebhook>;
|
|
28253
28663
|
export const flowAccount: PropTypes.Requireable<io.flow.internal.v0.models.FlowAccount>;
|
|
@@ -28339,9 +28749,22 @@ export const googleLinker: PropTypes.Requireable<io.flow.internal.v0.models.Goog
|
|
|
28339
28749
|
export const googleShoppingAccountParameters: PropTypes.Requireable<io.flow.internal.v0.models.GoogleShoppingAccountParameters>;
|
|
28340
28750
|
export const googleShoppingSetting: PropTypes.Requireable<io.flow.internal.v0.models.GoogleShoppingSetting>;
|
|
28341
28751
|
export const googleTagManager: PropTypes.Requireable<io.flow.internal.v0.models.GoogleTagManager>;
|
|
28752
|
+
export const guaranteedShippingCalibratedOutput: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingCalibratedOutput>;
|
|
28753
|
+
export const guaranteedShippingCalibratedOutputDeleted: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputDeleted>;
|
|
28754
|
+
export const guaranteedShippingCalibratedOutputUpserted: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputUpserted>;
|
|
28755
|
+
export const guaranteedShippingCalibration: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingCalibration>;
|
|
28756
|
+
export const guaranteedShippingCalibrationForm: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingCalibrationForm>;
|
|
28757
|
+
export const guaranteedShippingCalibrationLaneForm: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingCalibrationLaneForm>;
|
|
28342
28758
|
export const guaranteedShippingPublishedOutput: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingPublishedOutput>;
|
|
28343
28759
|
export const guaranteedShippingPublishedOutputDeleted: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingPublishedOutputDeleted>;
|
|
28344
28760
|
export const guaranteedShippingPublishedOutputUpserted: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingPublishedOutputUpserted>;
|
|
28761
|
+
export const guaranteedShippingSettings: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingSettings>;
|
|
28762
|
+
export const guaranteedShippingSettingsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingSettingsDeleted>;
|
|
28763
|
+
export const guaranteedShippingSettingsDestinationUpdate: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingSettingsDestinationUpdate>;
|
|
28764
|
+
export const guaranteedShippingSettingsUpdate: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingSettingsUpdate>;
|
|
28765
|
+
export const guaranteedShippingSettingsUpdateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateDeleted>;
|
|
28766
|
+
export const guaranteedShippingSettingsUpdateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateUpserted>;
|
|
28767
|
+
export const guaranteedShippingSettingsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingSettingsUpserted>;
|
|
28345
28768
|
export const harmonizationClassificationStatisticsData: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationClassificationStatisticsData>;
|
|
28346
28769
|
export const harmonizationClassificationStatisticsPublished: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished>;
|
|
28347
28770
|
export const harmonizationCodesImport: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationCodesImport>;
|
|
@@ -28388,6 +28811,9 @@ export const invoiceInfoForm: PropTypes.Requireable<io.flow.internal.v0.models.I
|
|
|
28388
28811
|
export const invoiceLine: PropTypes.Requireable<io.flow.internal.v0.models.InvoiceLine>;
|
|
28389
28812
|
export const invoiceLineItem: PropTypes.Requireable<io.flow.internal.v0.models.InvoiceLineItem>;
|
|
28390
28813
|
export const invoiceTransaction: PropTypes.Requireable<io.flow.internal.v0.models.InvoiceTransaction>;
|
|
28814
|
+
export const issuer: PropTypes.Requireable<io.flow.internal.v0.models.Issuer>;
|
|
28815
|
+
export const issuerDeleted: PropTypes.Requireable<io.flow.internal.v0.models.IssuerDeleted>;
|
|
28816
|
+
export const issuerUpserted: PropTypes.Requireable<io.flow.internal.v0.models.IssuerUpserted>;
|
|
28391
28817
|
export const itemClassification: PropTypes.Requireable<io.flow.internal.v0.models.ItemClassification>;
|
|
28392
28818
|
export const itemClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemClassificationForm>;
|
|
28393
28819
|
export const itemClassificationSummary: PropTypes.Requireable<io.flow.internal.v0.models.ItemClassificationSummary>;
|
|
@@ -28401,6 +28827,11 @@ export const itemFormImportRequest: PropTypes.Requireable<io.flow.internal.v0.mo
|
|
|
28401
28827
|
export const itemHarmonization: PropTypes.Requireable<io.flow.internal.v0.models.ItemHarmonization>;
|
|
28402
28828
|
export const itemHarmonizationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ItemHarmonizationDeleted>;
|
|
28403
28829
|
export const itemHarmonizationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ItemHarmonizationUpserted>;
|
|
28830
|
+
export const itemHs6Override: PropTypes.Requireable<io.flow.internal.v0.models.ItemHs6Override>;
|
|
28831
|
+
export const itemHs6OverrideForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemHs6OverrideForm>;
|
|
28832
|
+
export const itemHs6OverrideRejection: PropTypes.Requireable<io.flow.internal.v0.models.ItemHs6OverrideRejection>;
|
|
28833
|
+
export const itemHs6OverrideResult: PropTypes.Requireable<io.flow.internal.v0.models.ItemHs6OverrideResult>;
|
|
28834
|
+
export const itemHs6OverridesForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemHs6OverridesForm>;
|
|
28404
28835
|
export const itemQueryResponse: PropTypes.Requireable<io.flow.internal.v0.models.ItemQueryResponse>;
|
|
28405
28836
|
export const itemRestriction: PropTypes.Requireable<io.flow.internal.v0.models.ItemRestriction>;
|
|
28406
28837
|
export const itemRestrictionPostForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemRestrictionPostForm>;
|
|
@@ -28414,6 +28845,8 @@ export const itemSalesMarginUpserted: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
28414
28845
|
export const itemSalesMarginVersion: PropTypes.Requireable<io.flow.internal.v0.models.ItemSalesMarginVersion>;
|
|
28415
28846
|
export const itemSummary: PropTypes.Requireable<io.flow.internal.v0.models.ItemSummary>;
|
|
28416
28847
|
export const itemValuesForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemValuesForm>;
|
|
28848
|
+
export const johnStrongItem: PropTypes.Requireable<io.flow.internal.v0.models.JohnStrongItem>;
|
|
28849
|
+
export const johnStrongItemForm: PropTypes.Requireable<io.flow.internal.v0.models.JohnStrongItemForm>;
|
|
28417
28850
|
export const journal: PropTypes.Requireable<io.flow.internal.v0.models.Journal>;
|
|
28418
28851
|
export const journalFailure: PropTypes.Requireable<io.flow.internal.v0.models.JournalFailure>;
|
|
28419
28852
|
export const key: PropTypes.Requireable<io.flow.internal.v0.models.Key>;
|
|
@@ -28577,6 +29010,7 @@ export const orderRevenueRegionDataPoint: PropTypes.Requireable<io.flow.internal
|
|
|
28577
29010
|
export const orderRevenueTimelineChart: PropTypes.Requireable<io.flow.internal.v0.models.OrderRevenueTimelineChart>;
|
|
28578
29011
|
export const orderRevenueTimelineDataPoint: PropTypes.Requireable<io.flow.internal.v0.models.OrderRevenueTimelineDataPoint>;
|
|
28579
29012
|
export const orderServiceChangeCsvForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderServiceChangeCsvForm>;
|
|
29013
|
+
export const orderSettings: PropTypes.Requireable<io.flow.internal.v0.models.OrderSettings>;
|
|
28580
29014
|
export const orderSummary: PropTypes.Requireable<io.flow.internal.v0.models.OrderSummary>;
|
|
28581
29015
|
export const orderTaxAndDutyInclusivitySetting: PropTypes.Requireable<io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySetting>;
|
|
28582
29016
|
export const orderTaxAndDutyInclusivitySettingDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted>;
|
|
@@ -28659,6 +29093,9 @@ export const otherRecordOrderSummaryIdentifiers: PropTypes.Requireable<io.flow.i
|
|
|
28659
29093
|
export const otherRecordOrganizationSummary: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordOrganizationSummary>;
|
|
28660
29094
|
export const otherRecordUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordUpserted>;
|
|
28661
29095
|
export const otherRecordWithholdings: PropTypes.Requireable<io.flow.internal.v0.models.OtherRecordWithholdings>;
|
|
29096
|
+
export const outboundShippingCost: PropTypes.Requireable<io.flow.internal.v0.models.OutboundShippingCost>;
|
|
29097
|
+
export const outboundShippingCostDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OutboundShippingCostDeleted>;
|
|
29098
|
+
export const outboundShippingCostUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OutboundShippingCostUpserted>;
|
|
28662
29099
|
export const partner: PropTypes.Requireable<io.flow.internal.v0.models.Partner>;
|
|
28663
29100
|
export const partnerAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.PartnerAuthorization>;
|
|
28664
29101
|
export const partnerAuthorizationForm: PropTypes.Requireable<io.flow.internal.v0.models.PartnerAuthorizationForm>;
|
|
@@ -28718,6 +29155,8 @@ export const paypalPaymentDeleted: PropTypes.Requireable<io.flow.internal.v0.mod
|
|
|
28718
29155
|
export const paypalPaymentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PaypalPaymentUpserted>;
|
|
28719
29156
|
export const paypalRefundDeleted: PropTypes.Requireable<io.flow.internal.v0.models.PaypalRefundDeleted>;
|
|
28720
29157
|
export const paypalRefundUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PaypalRefundUpserted>;
|
|
29158
|
+
export const pcReviewContext: PropTypes.Requireable<io.flow.internal.v0.models.PcReviewContext>;
|
|
29159
|
+
export const pcReviewOutput: PropTypes.Requireable<io.flow.internal.v0.models.PcReviewOutput>;
|
|
28721
29160
|
export const pendingBankPayment: PropTypes.Requireable<io.flow.internal.v0.models.PendingBankPayment>;
|
|
28722
29161
|
export const pendingBankPaymentDetail: PropTypes.Requireable<io.flow.internal.v0.models.PendingBankPaymentDetail>;
|
|
28723
29162
|
export const pendingOrder: PropTypes.Requireable<io.flow.internal.v0.models.PendingOrder>;
|
|
@@ -28795,6 +29234,8 @@ export const pspRoutingDistributionRevision: PropTypes.Requireable<io.flow.inter
|
|
|
28795
29234
|
export const pspRoutingDistributionRevisionForm: PropTypes.Requireable<io.flow.internal.v0.models.PspRoutingDistributionRevisionForm>;
|
|
28796
29235
|
export const publicHub: PropTypes.Requireable<io.flow.internal.v0.models.PublicHub>;
|
|
28797
29236
|
export const publicHubForm: PropTypes.Requireable<io.flow.internal.v0.models.PublicHubForm>;
|
|
29237
|
+
export const pvReviewContext: PropTypes.Requireable<io.flow.internal.v0.models.PvReviewContext>;
|
|
29238
|
+
export const pvReviewOutput: PropTypes.Requireable<io.flow.internal.v0.models.PvReviewOutput>;
|
|
28798
29239
|
export const quote: PropTypes.Requireable<io.flow.internal.v0.models.Quote>;
|
|
28799
29240
|
export const quoteDeleted: PropTypes.Requireable<io.flow.internal.v0.models.QuoteDeleted>;
|
|
28800
29241
|
export const quoteUpserted: PropTypes.Requireable<io.flow.internal.v0.models.QuoteUpserted>;
|
|
@@ -28848,6 +29289,7 @@ export const redirect: PropTypes.Requireable<io.flow.internal.v0.models.Redirect
|
|
|
28848
29289
|
export const redirectActionCompleted: PropTypes.Requireable<io.flow.internal.v0.models.RedirectActionCompleted>;
|
|
28849
29290
|
export const registeredExporterTariffEligibilityData: PropTypes.Requireable<io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData>;
|
|
28850
29291
|
export const registeredExporterTariffEligibilityForm: PropTypes.Requireable<io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm>;
|
|
29292
|
+
export const remediateTaxDutyMetadata: PropTypes.Requireable<io.flow.internal.v0.models.RemediateTaxDutyMetadata>;
|
|
28851
29293
|
export const remittanceResponsibility: PropTypes.Requireable<io.flow.internal.v0.models.RemittanceResponsibility>;
|
|
28852
29294
|
export const report: PropTypes.Requireable<io.flow.internal.v0.models.Report>;
|
|
28853
29295
|
export const reportAccount: PropTypes.Requireable<io.flow.internal.v0.models.ReportAccount>;
|
|
@@ -28969,6 +29411,7 @@ export const returnTriggerReversal: PropTypes.Requireable<io.flow.internal.v0.mo
|
|
|
28969
29411
|
export const revenueRecord: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecord>;
|
|
28970
29412
|
export const revenueRecordDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecordDeleted>;
|
|
28971
29413
|
export const revenueRecordUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecordUpserted>;
|
|
29414
|
+
export const reviewRequestItem: PropTypes.Requireable<io.flow.internal.v0.models.ReviewRequestItem>;
|
|
28972
29415
|
export const routingAccount: PropTypes.Requireable<io.flow.internal.v0.models.RoutingAccount>;
|
|
28973
29416
|
export const routingMerchant: PropTypes.Requireable<io.flow.internal.v0.models.RoutingMerchant>;
|
|
28974
29417
|
export const routingProcessor: PropTypes.Requireable<io.flow.internal.v0.models.RoutingProcessor>;
|
|
@@ -28991,6 +29434,9 @@ export const searchOrderSummary: PropTypes.Requireable<io.flow.internal.v0.model
|
|
|
28991
29434
|
export const searchProviderExport: PropTypes.Requireable<io.flow.internal.v0.models.SearchProviderExport>;
|
|
28992
29435
|
export const searchTrackingSummary: PropTypes.Requireable<io.flow.internal.v0.models.SearchTrackingSummary>;
|
|
28993
29436
|
export const sellabilityCheckResult: PropTypes.Requireable<io.flow.internal.v0.models.SellabilityCheckResult>;
|
|
29437
|
+
export const sellabilityPendingVerification: PropTypes.Requireable<io.flow.internal.v0.models.SellabilityPendingVerification>;
|
|
29438
|
+
export const sellabilityPendingVerificationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.SellabilityPendingVerificationDeleted>;
|
|
29439
|
+
export const sellabilityPendingVerificationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.SellabilityPendingVerificationUpserted>;
|
|
28994
29440
|
export const serviceFees: PropTypes.Requireable<io.flow.internal.v0.models.ServiceFees>;
|
|
28995
29441
|
export const serviceFeesForm: PropTypes.Requireable<io.flow.internal.v0.models.ServiceFeesForm>;
|
|
28996
29442
|
export const sessionOrderData: PropTypes.Requireable<io.flow.internal.v0.models.SessionOrderData>;
|
|
@@ -29297,6 +29743,9 @@ export const unclassifiedProductsPurgeRequest: PropTypes.Requireable<io.flow.int
|
|
|
29297
29743
|
export const unclassifiedProductsSummary: PropTypes.Requireable<io.flow.internal.v0.models.UnclassifiedProductsSummary>;
|
|
29298
29744
|
export const unharmonizedItemsExport: PropTypes.Requireable<io.flow.internal.v0.models.UnharmonizedItemsExport>;
|
|
29299
29745
|
export const unphrasedProductsExport: PropTypes.Requireable<io.flow.internal.v0.models.UnphrasedProductsExport>;
|
|
29746
|
+
export const unserviceableTaxonomyCategory: PropTypes.Requireable<io.flow.internal.v0.models.UnserviceableTaxonomyCategory>;
|
|
29747
|
+
export const unserviceableTaxonomyCategoryDeleted: PropTypes.Requireable<io.flow.internal.v0.models.UnserviceableTaxonomyCategoryDeleted>;
|
|
29748
|
+
export const unserviceableTaxonomyCategoryUpserted: PropTypes.Requireable<io.flow.internal.v0.models.UnserviceableTaxonomyCategoryUpserted>;
|
|
29300
29749
|
export const ups: PropTypes.Requireable<io.flow.internal.v0.models.Ups>;
|
|
29301
29750
|
export const usdSpotRate: PropTypes.Requireable<io.flow.internal.v0.models.UsdSpotRate>;
|
|
29302
29751
|
export const usdSpotRateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.UsdSpotRateDeleted>;
|
|
@@ -29319,6 +29768,8 @@ export const webhook: PropTypes.Requireable<io.flow.internal.v0.models.Webhook>;
|
|
|
29319
29768
|
export const wholeOrderActionForm: PropTypes.Requireable<io.flow.internal.v0.models.WholeOrderActionForm>;
|
|
29320
29769
|
export const adjustmentAmount: PropTypes.Requireable<io.flow.internal.v0.unions.AdjustmentAmount>;
|
|
29321
29770
|
export const adjustmentDetails: PropTypes.Requireable<io.flow.internal.v0.unions.AdjustmentDetails>;
|
|
29771
|
+
export const aiOutput: PropTypes.Requireable<io.flow.internal.v0.unions.AiOutput>;
|
|
29772
|
+
export const aiReviewContext: PropTypes.Requireable<io.flow.internal.v0.unions.AiReviewContext>;
|
|
29322
29773
|
export const authorizationPayload: PropTypes.Requireable<io.flow.internal.v0.unions.AuthorizationPayload>;
|
|
29323
29774
|
export const authorizedOrderCharge: PropTypes.Requireable<io.flow.internal.v0.unions.AuthorizedOrderCharge>;
|
|
29324
29775
|
export const calculatorStamp: PropTypes.Requireable<io.flow.internal.v0.unions.CalculatorStamp>;
|