@flowio/types 11.24.138 → 11.24.140
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +734 -197
- package/dist/api.d.ts +120 -73
- package/package.json +1 -1
- package/src/api-internal.ts +951 -238
- package/src/api.ts +151 -82
package/dist/api-internal.d.ts
CHANGED
|
@@ -929,6 +929,8 @@ declare namespace io.flow.channel.v0.models {
|
|
|
929
929
|
}
|
|
930
930
|
declare namespace io.flow.restrictions.v0.enums {
|
|
931
931
|
type RestrictedReviewStatus = 'in_review' | 'reviewed';
|
|
932
|
+
type RestrictionDecision = 'accept' | 'reject' | 'escalate' | 'review';
|
|
933
|
+
type RestrictionDecisionReason = 'manual_dispute' | 'operations_decision';
|
|
932
934
|
type RestrictionEnvironment = 'sandbox' | 'production' | 'qa';
|
|
933
935
|
type ReviewStatus = 'high_risk_in_review' | 'low_risk_in_review' | 'reviewed';
|
|
934
936
|
}
|
|
@@ -966,6 +968,16 @@ declare namespace io.flow.restrictions.v0.models {
|
|
|
966
968
|
readonly reasons: string[];
|
|
967
969
|
readonly review_status: io.flow.restrictions.v0.enums.RestrictedReviewStatus;
|
|
968
970
|
}
|
|
971
|
+
interface RestrictionDecisionsForm {
|
|
972
|
+
readonly organization_id: string;
|
|
973
|
+
readonly rule_decisions: io.flow.restrictions.v0.models.RestrictionRuleDecisionForm[];
|
|
974
|
+
}
|
|
975
|
+
interface RestrictionRuleDecisionForm {
|
|
976
|
+
readonly product_id: string;
|
|
977
|
+
readonly reason_code: string;
|
|
978
|
+
readonly decision: io.flow.restrictions.v0.enums.RestrictionDecision;
|
|
979
|
+
readonly decision_reason: io.flow.restrictions.v0.enums.RestrictionDecisionReason;
|
|
980
|
+
}
|
|
969
981
|
}
|
|
970
982
|
declare namespace io.flow.fulfillment.v0.enums {
|
|
971
983
|
type CenterCapability = 'international' | 'domestic' | 'crossdock' | 'commercial_invoice';
|
|
@@ -4007,6 +4019,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
4007
4019
|
readonly id?: string;
|
|
4008
4020
|
readonly ratecard: io.flow.label.v0.models.ShippingLabelRatecardSummary;
|
|
4009
4021
|
readonly weight_break?: number;
|
|
4022
|
+
readonly dim_factor?: number;
|
|
4010
4023
|
}
|
|
4011
4024
|
interface ShippingLabelPackage {
|
|
4012
4025
|
readonly dimensions: io.flow.common.v0.models.Dimension;
|
|
@@ -4943,6 +4956,9 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
4943
4956
|
interface MarketsOrderSummary {
|
|
4944
4957
|
readonly id: string;
|
|
4945
4958
|
}
|
|
4959
|
+
interface OrderSettings {
|
|
4960
|
+
readonly tax_and_duty_inclusivity_setting?: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
|
|
4961
|
+
}
|
|
4946
4962
|
interface OrderTaxAndDutyInclusivitySetting {
|
|
4947
4963
|
readonly id: string;
|
|
4948
4964
|
readonly organization_id: string;
|
|
@@ -4969,11 +4985,6 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
4969
4985
|
readonly origin: string;
|
|
4970
4986
|
readonly destination: string;
|
|
4971
4987
|
}
|
|
4972
|
-
interface ShopifyAdaptivePricingCoefficients {
|
|
4973
|
-
readonly id: string;
|
|
4974
|
-
readonly organization_id: string;
|
|
4975
|
-
readonly destination_coefficients: io.flow.shopify.markets.v0.models.ShopifyAdaptivePricingDestinationCoefficients[];
|
|
4976
|
-
}
|
|
4977
4988
|
interface ShopifyHs10Code {
|
|
4978
4989
|
readonly country_code?: string;
|
|
4979
4990
|
readonly code: string;
|
|
@@ -5077,6 +5088,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5077
5088
|
interface ShopifyMerchantMarketCountry {
|
|
5078
5089
|
readonly code: string;
|
|
5079
5090
|
readonly actively_managing: boolean;
|
|
5091
|
+
readonly enabled: boolean;
|
|
5080
5092
|
}
|
|
5081
5093
|
interface ShopifyMerchantMarkets {
|
|
5082
5094
|
readonly id: string;
|
|
@@ -5179,6 +5191,39 @@ declare namespace io.flow.consumer.invoice.v0.models {
|
|
|
5179
5191
|
readonly order?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
5180
5192
|
readonly voids_b2b_invoice?: boolean;
|
|
5181
5193
|
}
|
|
5194
|
+
interface B2BCreditNote {
|
|
5195
|
+
readonly id: string;
|
|
5196
|
+
readonly number: string;
|
|
5197
|
+
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
5198
|
+
readonly date: string;
|
|
5199
|
+
readonly key: string;
|
|
5200
|
+
readonly debit_note: io.flow.consumer.invoice.v0.models.B2BDebitNoteReference;
|
|
5201
|
+
readonly order?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
5202
|
+
readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
5203
|
+
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
5204
|
+
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
5205
|
+
readonly attributes: Record<string, string>;
|
|
5206
|
+
readonly voids_b2b_debit_note?: boolean;
|
|
5207
|
+
}
|
|
5208
|
+
interface B2BDebitNote {
|
|
5209
|
+
readonly id: string;
|
|
5210
|
+
readonly number: string;
|
|
5211
|
+
readonly buyer: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
5212
|
+
readonly seller: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
5213
|
+
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
5214
|
+
readonly date: string;
|
|
5215
|
+
readonly key: string;
|
|
5216
|
+
readonly order: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
5217
|
+
readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
5218
|
+
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
5219
|
+
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
5220
|
+
readonly attributes: Record<string, string>;
|
|
5221
|
+
}
|
|
5222
|
+
interface B2BDebitNoteReference {
|
|
5223
|
+
readonly id: string;
|
|
5224
|
+
readonly key: string;
|
|
5225
|
+
readonly number: string;
|
|
5226
|
+
}
|
|
5182
5227
|
interface B2BInvoice {
|
|
5183
5228
|
readonly id: string;
|
|
5184
5229
|
readonly number: string;
|
|
@@ -5920,6 +5965,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
5920
5965
|
readonly inventoryItem: io.flow.shopify.external.v0.models.GraphqlInventoryItem;
|
|
5921
5966
|
}
|
|
5922
5967
|
interface GraphqlTaxonomyCategory {
|
|
5968
|
+
readonly id?: string;
|
|
5923
5969
|
readonly name: string;
|
|
5924
5970
|
readonly fullName: string;
|
|
5925
5971
|
}
|
|
@@ -6028,7 +6074,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6028
6074
|
readonly created_at: string;
|
|
6029
6075
|
readonly updated_at: string;
|
|
6030
6076
|
readonly has_variants_that_requires_components?: boolean;
|
|
6031
|
-
readonly category?: io.flow.
|
|
6077
|
+
readonly category?: io.flow.shopify.external.v0.models.RestTaxonomyCategory;
|
|
6032
6078
|
readonly metafields?: io.flow.shopify.external.v0.models.ProductMetafield[];
|
|
6033
6079
|
}
|
|
6034
6080
|
interface ProductDelete {
|
|
@@ -6142,6 +6188,11 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6142
6188
|
interface ResponseVariant {
|
|
6143
6189
|
readonly variant: io.flow.shopify.external.v0.models.ProductVariant;
|
|
6144
6190
|
}
|
|
6191
|
+
interface RestTaxonomyCategory {
|
|
6192
|
+
readonly name: string;
|
|
6193
|
+
readonly full_name: string;
|
|
6194
|
+
readonly admin_graphql_api_id?: string;
|
|
6195
|
+
}
|
|
6145
6196
|
interface Shop {
|
|
6146
6197
|
readonly id: number;
|
|
6147
6198
|
readonly domain: string;
|
|
@@ -6803,8 +6854,8 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6803
6854
|
interface ShopWrapper {
|
|
6804
6855
|
readonly shop: io.flow.shopify.markets.v0.models.Shop;
|
|
6805
6856
|
}
|
|
6806
|
-
interface
|
|
6807
|
-
readonly
|
|
6857
|
+
interface ShopifyAdaptivePricingDestination {
|
|
6858
|
+
readonly country_code: string;
|
|
6808
6859
|
readonly updated_at: string;
|
|
6809
6860
|
readonly tax_and_duty_coefficient: string;
|
|
6810
6861
|
readonly fees_coefficient: string;
|
|
@@ -6813,6 +6864,9 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6813
6864
|
readonly adaptive_pricing_enabled: boolean;
|
|
6814
6865
|
readonly adaptive_shipping_enabled: boolean;
|
|
6815
6866
|
}
|
|
6867
|
+
interface ShopifyAdaptivePricingDestinationsWrapper {
|
|
6868
|
+
readonly destinations: io.flow.shopify.markets.v0.models.ShopifyAdaptivePricingDestination[];
|
|
6869
|
+
}
|
|
6816
6870
|
interface ShopifyAppliedDiscount {
|
|
6817
6871
|
readonly title?: string;
|
|
6818
6872
|
readonly description?: string;
|
|
@@ -7427,11 +7481,18 @@ declare namespace io.flow.channel.shopify.internal.v0.models {
|
|
|
7427
7481
|
}
|
|
7428
7482
|
}
|
|
7429
7483
|
declare namespace io.flow.order.price.v0.enums {
|
|
7484
|
+
type OrderPriceCoefficientType = 'item_shipping';
|
|
7430
7485
|
type OrderPriceDetailComponentKey = 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge' | 'tip';
|
|
7431
7486
|
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
7432
7487
|
type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product' | 'mor_tax';
|
|
7488
|
+
type OrderPriceSubsidyType = 'shipping_subsidy';
|
|
7433
7489
|
}
|
|
7434
7490
|
declare namespace io.flow.order.price.v0.models {
|
|
7491
|
+
interface OrderPriceCoefficient {
|
|
7492
|
+
readonly type: io.flow.order.price.v0.enums.OrderPriceCoefficientType;
|
|
7493
|
+
readonly value: number;
|
|
7494
|
+
readonly price: io.flow.common.v0.models.PriceWithBase;
|
|
7495
|
+
}
|
|
7435
7496
|
interface OrderPriceDetail {
|
|
7436
7497
|
readonly key: io.flow.order.price.v0.enums.OrderPriceDetailKey;
|
|
7437
7498
|
readonly currency: string;
|
|
@@ -7462,10 +7523,16 @@ declare namespace io.flow.order.price.v0.models {
|
|
|
7462
7523
|
readonly value: io.flow.common.v0.models.PriceWithBase;
|
|
7463
7524
|
readonly type: io.flow.order.price.v0.enums.OrderPriceFeeType;
|
|
7464
7525
|
}
|
|
7526
|
+
interface OrderPriceSubsidy {
|
|
7527
|
+
readonly type: io.flow.order.price.v0.enums.OrderPriceSubsidyType;
|
|
7528
|
+
readonly price: io.flow.common.v0.models.PriceWithBase;
|
|
7529
|
+
}
|
|
7465
7530
|
interface PurchasePriceBreakdown {
|
|
7466
7531
|
readonly total_price: io.flow.common.v0.models.PriceWithBase;
|
|
7467
7532
|
readonly product_price: io.flow.common.v0.models.PriceWithBase;
|
|
7468
7533
|
readonly fees: io.flow.order.price.v0.models.OrderPriceFee[];
|
|
7534
|
+
readonly coefficients?: io.flow.order.price.v0.models.OrderPriceCoefficient[];
|
|
7535
|
+
readonly subsidies?: io.flow.order.price.v0.models.OrderPriceSubsidy[];
|
|
7469
7536
|
}
|
|
7470
7537
|
}
|
|
7471
7538
|
declare namespace io.flow.channel.internal.v0.enums {
|
|
@@ -7518,7 +7585,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
7518
7585
|
readonly order_updated_at?: string;
|
|
7519
7586
|
readonly order_edit_summary?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
7520
7587
|
readonly payment_source?: io.flow.channel.internal.v0.enums.OrderPaymentSourceType;
|
|
7521
|
-
readonly external_order_summary?: io.flow.channel.
|
|
7588
|
+
readonly external_order_summary?: io.flow.channel.internal.v0.models.ExternalOrderSummary;
|
|
7522
7589
|
}
|
|
7523
7590
|
interface ChannelOrderAcceptanceDetails {
|
|
7524
7591
|
readonly order_acceptance: io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
|
|
@@ -7569,6 +7636,11 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
7569
7636
|
readonly catalog_sync_duration?: number;
|
|
7570
7637
|
readonly catalog_products_count?: number;
|
|
7571
7638
|
}
|
|
7639
|
+
interface ExternalOrderSummary {
|
|
7640
|
+
readonly id: string;
|
|
7641
|
+
readonly edit_ids: string[];
|
|
7642
|
+
readonly created_at?: string;
|
|
7643
|
+
}
|
|
7572
7644
|
interface FlowChannelOrganization {
|
|
7573
7645
|
readonly placeholder?: string;
|
|
7574
7646
|
}
|
|
@@ -7981,6 +8053,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
7981
8053
|
readonly created_at?: string;
|
|
7982
8054
|
readonly status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
7983
8055
|
readonly type?: io.flow.common.v0.enums.OrganizationType;
|
|
8056
|
+
readonly channel?: io.flow.common.v0.models.ChannelReference;
|
|
7984
8057
|
}
|
|
7985
8058
|
interface OrganizationDefaults {
|
|
7986
8059
|
readonly country: string;
|
|
@@ -7992,6 +8065,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
7992
8065
|
interface OrganizationReference {
|
|
7993
8066
|
readonly discriminator: 'organization_reference';
|
|
7994
8067
|
readonly id: string;
|
|
8068
|
+
readonly channel?: io.flow.common.v0.models.ChannelReference;
|
|
7995
8069
|
}
|
|
7996
8070
|
interface OrganizationSummary {
|
|
7997
8071
|
readonly id: string;
|
|
@@ -8139,20 +8213,6 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
8139
8213
|
readonly timestamp: string;
|
|
8140
8214
|
readonly order_tax_and_duty_inclusivity_setting: io.flow.shopify.markets.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
8141
8215
|
}
|
|
8142
|
-
interface ShopifyAdaptivePricingCoefficientsDeleted {
|
|
8143
|
-
readonly discriminator: 'shopify_adaptive_pricing_coefficients_deleted';
|
|
8144
|
-
readonly event_id: string;
|
|
8145
|
-
readonly timestamp: string;
|
|
8146
|
-
readonly organization: string;
|
|
8147
|
-
readonly id: string;
|
|
8148
|
-
}
|
|
8149
|
-
interface ShopifyAdaptivePricingCoefficientsUpserted {
|
|
8150
|
-
readonly discriminator: 'shopify_adaptive_pricing_coefficients_upserted';
|
|
8151
|
-
readonly event_id: string;
|
|
8152
|
-
readonly timestamp: string;
|
|
8153
|
-
readonly organization: string;
|
|
8154
|
-
readonly shopify_adaptive_pricing_coefficients: io.flow.shopify.markets.internal.v0.models.ShopifyAdaptivePricingCoefficients;
|
|
8155
|
-
}
|
|
8156
8216
|
interface ShopifyIncotermIncludes {
|
|
8157
8217
|
readonly duties: boolean;
|
|
8158
8218
|
readonly taxes: boolean;
|
|
@@ -8359,7 +8419,7 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
8359
8419
|
}
|
|
8360
8420
|
}
|
|
8361
8421
|
declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
8362
|
-
type ShopifyMarketsInternalEvent = io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.
|
|
8422
|
+
type ShopifyMarketsInternalEvent = io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMerchantMarketsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMerchantMarketsDeleted;
|
|
8363
8423
|
}
|
|
8364
8424
|
declare namespace io.flow.experience.v0.enums {
|
|
8365
8425
|
type AddressFieldName = 'first_name' | 'last_name' | 'street_1' | 'street_2' | 'city' | 'province' | 'postal' | 'country' | 'phone' | 'company' | 'vat_registration_number';
|
|
@@ -8383,7 +8443,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
8383
8443
|
type OrganizationPaymentMethodTag = 'deny';
|
|
8384
8444
|
type PaymentMethodRuleContentKey = 'description';
|
|
8385
8445
|
type PriceFacetBoundary = 'min' | 'max';
|
|
8386
|
-
type PricingType = 'inclusive_pricing';
|
|
8446
|
+
type PricingType = 'inclusive_pricing' | 'inclusive_pricing_with_shipping';
|
|
8387
8447
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
8388
8448
|
type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
|
|
8389
8449
|
}
|
|
@@ -9490,6 +9550,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9490
9550
|
interface LaneSummary {
|
|
9491
9551
|
readonly id: string;
|
|
9492
9552
|
readonly ratecard: io.flow.ratecard.v0.models.RatecardSummary;
|
|
9553
|
+
readonly dim_factor: number;
|
|
9493
9554
|
}
|
|
9494
9555
|
interface LargePackageServiceFee {
|
|
9495
9556
|
readonly discriminator: 'large_package_service_fee';
|
|
@@ -9557,6 +9618,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9557
9618
|
readonly glbe_shipping_method_id?: string;
|
|
9558
9619
|
readonly glbe_proposition_name?: string;
|
|
9559
9620
|
readonly channel_revenue_share_percentage?: number;
|
|
9621
|
+
readonly channel_id?: string;
|
|
9560
9622
|
}
|
|
9561
9623
|
interface RatecardCarrierSummary {
|
|
9562
9624
|
readonly id: string;
|
|
@@ -9649,6 +9711,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9649
9711
|
readonly glbe_shipping_method_id?: string;
|
|
9650
9712
|
readonly glbe_proposition_name?: string;
|
|
9651
9713
|
readonly channel_revenue_share_percentage?: number;
|
|
9714
|
+
readonly channel_id?: string;
|
|
9652
9715
|
readonly data?: io.flow.ratecard.v0.models.RatecardData;
|
|
9653
9716
|
}
|
|
9654
9717
|
interface RatecardLane {
|
|
@@ -9681,32 +9744,13 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9681
9744
|
readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9682
9745
|
readonly distance_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9683
9746
|
}
|
|
9684
|
-
interface RatecardLaneImportForm {
|
|
9685
|
-
readonly ratecard_owner: io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
9686
|
-
readonly service: string;
|
|
9687
|
-
readonly currency: string;
|
|
9688
|
-
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
9689
|
-
readonly origin: io.flow.common.v0.models.Zone;
|
|
9690
|
-
readonly destination: io.flow.common.v0.models.Zone;
|
|
9691
|
-
readonly shipment_window: io.flow.ratecard.v0.models.ShipmentWindow;
|
|
9692
|
-
readonly dim_factor: number;
|
|
9693
|
-
readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9694
|
-
readonly distance_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9695
|
-
readonly rates: io.flow.ratecard.v0.models.RatecardRateForm[];
|
|
9696
|
-
}
|
|
9697
9747
|
interface RatecardLaneVersion {
|
|
9698
9748
|
readonly id: string;
|
|
9699
9749
|
readonly timestamp: string;
|
|
9700
9750
|
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
9701
9751
|
readonly ratecard_lane: io.flow.ratecard.v0.models.RatecardLane;
|
|
9702
9752
|
}
|
|
9703
|
-
interface RatecardLanesImportRequestData {
|
|
9704
|
-
readonly id: string;
|
|
9705
|
-
readonly source_url: string;
|
|
9706
|
-
readonly filename?: string;
|
|
9707
|
-
}
|
|
9708
9753
|
interface RatecardRate {
|
|
9709
|
-
readonly id: string;
|
|
9710
9754
|
readonly amount: number;
|
|
9711
9755
|
readonly weight: number;
|
|
9712
9756
|
}
|
|
@@ -9714,12 +9758,6 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9714
9758
|
readonly amount: number;
|
|
9715
9759
|
readonly weight: number;
|
|
9716
9760
|
}
|
|
9717
|
-
interface RatecardRateVersion {
|
|
9718
|
-
readonly id: string;
|
|
9719
|
-
readonly timestamp: string;
|
|
9720
|
-
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
9721
|
-
readonly ratecard_rate: io.flow.ratecard.v0.models.RatecardRate;
|
|
9722
|
-
}
|
|
9723
9761
|
interface RatecardReference {
|
|
9724
9762
|
readonly id: string;
|
|
9725
9763
|
}
|
|
@@ -10028,30 +10066,6 @@ declare namespace io.flow.crypto.v0.models {
|
|
|
10028
10066
|
readonly object: io.flow.crypto.v0.models.Refund;
|
|
10029
10067
|
}
|
|
10030
10068
|
}
|
|
10031
|
-
declare namespace io.flow.channel.shopify.v0.enums {
|
|
10032
|
-
type ChannelShopifyOrderStateReasonCode = 'placeholder_reason_code';
|
|
10033
|
-
}
|
|
10034
|
-
declare namespace io.flow.channel.shopify.v0.models {
|
|
10035
|
-
interface ChannelShopifyOrderState {
|
|
10036
|
-
readonly id: string;
|
|
10037
|
-
readonly shopify_order_summary: io.flow.channel.shopify.v0.models.ChannelShopifyOrderSummary;
|
|
10038
|
-
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
10039
|
-
readonly reasons?: io.flow.channel.shopify.v0.models.ChannelShopifyOrderStateReason[];
|
|
10040
|
-
readonly external_order_summary?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
|
|
10041
|
-
}
|
|
10042
|
-
interface ChannelShopifyOrderStateReason {
|
|
10043
|
-
readonly code: io.flow.channel.shopify.v0.enums.ChannelShopifyOrderStateReasonCode;
|
|
10044
|
-
readonly message: string;
|
|
10045
|
-
}
|
|
10046
|
-
interface ChannelShopifyOrderSummary {
|
|
10047
|
-
readonly order_id: number;
|
|
10048
|
-
readonly shop_id: number;
|
|
10049
|
-
}
|
|
10050
|
-
interface ExternalOrderSummary {
|
|
10051
|
-
readonly id: string;
|
|
10052
|
-
readonly edit_ids: string[];
|
|
10053
|
-
}
|
|
10054
|
-
}
|
|
10055
10069
|
declare namespace io.flow.shopify.merchant.config.v0.models {
|
|
10056
10070
|
interface Company {
|
|
10057
10071
|
readonly discriminator: 'company';
|
|
@@ -10404,6 +10418,7 @@ declare namespace io.flow.product.v0.models {
|
|
|
10404
10418
|
interface ProductTaxonomyCategory {
|
|
10405
10419
|
readonly name: string;
|
|
10406
10420
|
readonly full_name: string;
|
|
10421
|
+
readonly id?: string;
|
|
10407
10422
|
}
|
|
10408
10423
|
interface ProductTaxonomyData {
|
|
10409
10424
|
readonly key: string;
|
|
@@ -10771,6 +10786,7 @@ declare namespace io.flow.merchant.onboarding.v0.unions {
|
|
|
10771
10786
|
declare namespace io.flow.catalog.v0.enums {
|
|
10772
10787
|
type AdjustmentReasonKey = 'duty_deminimis' | 'vat_deminimis';
|
|
10773
10788
|
type AttributeIntent = 'brand' | 'color' | 'countries_of_origin' | 'product_id' | 'fulfillment_method' | 'hazardous' | 'price' | 'size' | 'sku' | 'taxability' | 'consumer_url' | 'gtin' | 'mpn' | 'facet' | 'eccn' | 'returnable' | 'searchable' | 'barcode' | 'min_days_to_ship' | 'max_days_to_ship' | 'commercial_invoice_item_number' | 'include_in_product_feeds';
|
|
10789
|
+
type CpscAttribute = 'certification_id' | 'citation_codes' | 'manufactured_date' | 'manufactured_location' | 'product_test_date' | 'test_lab_name' | 'point_of_contact' | 'certification_version' | 'certification_product_id' | 'certificate_type' | 'lab_type' | 'taxonomy_reference';
|
|
10774
10790
|
type FulfillmentMethodType = 'fulfillment_method';
|
|
10775
10791
|
type FulfillmentMethodValue = 'digital' | 'physical';
|
|
10776
10792
|
type ImageTag = 'thumbnail' | 'checkout';
|
|
@@ -11308,9 +11324,9 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
11308
11324
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
11309
11325
|
type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance' | 'unfulfilled_amount_greater_than_negative_balance' | 'account_payment_hold';
|
|
11310
11326
|
type StatementAttachmentType = 'csv' | 'pdf';
|
|
11311
|
-
type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
11312
|
-
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';
|
|
11313
|
-
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';
|
|
11327
|
+
type StatementStatusCode = 'scheduled' | 'sent' | 'failed' | 'paid';
|
|
11328
|
+
type TaxDutyTransactionReasonCode = 'post_capture' | 'post_fulfilment' | 'manual_payment_or_gift_card' | 'order_edit' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'us_inbound_tax_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'wyol_shipment_lvg' | 'full_refund_without_shipment' | 'unfulfilled_order_above_de_min' | 'order_cancellation_without_capture';
|
|
11329
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'duty_refund' | 'non_l4l_tax_duty_fx' | 'merchant_payout' | 'merchant_refund' | 'ge_revenue_share' | 'merchant_fee' | 'b2b_tax' | 'b2b_tax_refund' | 'b2b_fee_mor_tax' | 'b2b_fee_shipping_tax' | 'flat_rate_label' | 'flat_rate_label_subsidy';
|
|
11314
11330
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
11315
11331
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
11316
11332
|
}
|
|
@@ -11394,6 +11410,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11394
11410
|
readonly settlement: io.flow.billing.v0.unions.Settlement;
|
|
11395
11411
|
readonly attachments: io.flow.billing.v0.models.Attachment[];
|
|
11396
11412
|
readonly created_at: string;
|
|
11413
|
+
readonly period?: io.flow.common.v0.models.DatetimeRange;
|
|
11397
11414
|
}
|
|
11398
11415
|
interface ChannelTransaction {
|
|
11399
11416
|
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
@@ -11484,6 +11501,10 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11484
11501
|
readonly timestamp: string;
|
|
11485
11502
|
readonly reason: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
11486
11503
|
}
|
|
11504
|
+
interface PayoutStatusPaid {
|
|
11505
|
+
readonly code: 'paid';
|
|
11506
|
+
readonly timestamp: string;
|
|
11507
|
+
}
|
|
11487
11508
|
interface PayoutStatusScheduled {
|
|
11488
11509
|
readonly code: 'scheduled';
|
|
11489
11510
|
readonly placeholder?: string;
|
|
@@ -11534,6 +11555,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11534
11555
|
readonly settlement: io.flow.billing.v0.unions.Settlement;
|
|
11535
11556
|
readonly attachments: io.flow.billing.v0.models.Attachment[];
|
|
11536
11557
|
readonly created_at: string;
|
|
11558
|
+
readonly period?: io.flow.common.v0.models.DatetimeRange;
|
|
11537
11559
|
}
|
|
11538
11560
|
interface StatementStatusForm {
|
|
11539
11561
|
readonly code: io.flow.billing.v0.enums.StatementStatusCode;
|
|
@@ -11630,6 +11652,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11630
11652
|
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
11631
11653
|
readonly carrier: io.flow.billing.v0.models.TransactionMetadataShippingLabelCarrier;
|
|
11632
11654
|
readonly revenue_share_percentage?: number;
|
|
11655
|
+
readonly actual?: io.flow.billing.v0.models.TransactionMetadataTrueupData;
|
|
11633
11656
|
}
|
|
11634
11657
|
interface TransactionMetadataShippingLabelCarrier {
|
|
11635
11658
|
readonly id: string;
|
|
@@ -11736,7 +11759,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11736
11759
|
}
|
|
11737
11760
|
declare namespace io.flow.billing.v0.unions {
|
|
11738
11761
|
type BankAccountForm = io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple;
|
|
11739
|
-
type PayoutStatus = io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed;
|
|
11762
|
+
type PayoutStatus = io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed | io.flow.billing.v0.models.PayoutStatusPaid;
|
|
11740
11763
|
type Settlement = io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout;
|
|
11741
11764
|
type TransactionMetadata = io.flow.billing.v0.models.TransactionMetadataShippingLabel | io.flow.billing.v0.models.TransactionMetadataChannel | io.flow.billing.v0.models.TransactionMetadataTrueup | io.flow.billing.v0.models.TransactionMetadataTrueupBase | io.flow.billing.v0.models.TransactionMetadataTrueupSurcharge | io.flow.billing.v0.models.TransactionMetadataCarrierCharge | io.flow.billing.v0.models.TransactionMetadataManual | io.flow.billing.v0.models.TransactionMetadataFailedPayout | io.flow.billing.v0.models.TransactionMetadataPaymentTransaction | io.flow.billing.v0.models.TransactionMetadataTaxDuty | io.flow.billing.v0.models.TransactionMetadataMerchantFee | io.flow.billing.v0.models.TransactionMetadataFlatRateLabel;
|
|
11742
11765
|
}
|
|
@@ -12158,6 +12181,7 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
12158
12181
|
readonly price: io.flow.common.v0.models.Money;
|
|
12159
12182
|
readonly description: string;
|
|
12160
12183
|
readonly taxonomy_category: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
12184
|
+
readonly inferred_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
12161
12185
|
readonly mode: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
12162
12186
|
readonly catalog_size?: number;
|
|
12163
12187
|
readonly relative_ranking?: number;
|
|
@@ -12300,6 +12324,7 @@ declare namespace io.flow.organization.v0.models {
|
|
|
12300
12324
|
readonly province?: string;
|
|
12301
12325
|
readonly self_billing_agreement_effective_at: string;
|
|
12302
12326
|
readonly self_billing_agreement_expires_at?: string;
|
|
12327
|
+
readonly legal_name?: string;
|
|
12303
12328
|
}
|
|
12304
12329
|
interface OrganizationVersion {
|
|
12305
12330
|
readonly id: string;
|
|
@@ -12324,6 +12349,7 @@ declare namespace io.flow.organization.v0.models {
|
|
|
12324
12349
|
readonly country: string;
|
|
12325
12350
|
readonly tax_code: string;
|
|
12326
12351
|
readonly province?: string;
|
|
12352
|
+
readonly legal_name?: string;
|
|
12327
12353
|
}
|
|
12328
12354
|
}
|
|
12329
12355
|
declare namespace io.flow.billing.bank.account.v0.models {
|
|
@@ -12349,14 +12375,10 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
12349
12375
|
}
|
|
12350
12376
|
interface BankAccountInfoKor {
|
|
12351
12377
|
readonly discriminator: 'kor';
|
|
12352
|
-
readonly name
|
|
12353
|
-
readonly address?: io.flow.common.v0.models.Address;
|
|
12354
|
-
readonly phone?: string;
|
|
12355
|
-
readonly email?: string;
|
|
12378
|
+
readonly name: string;
|
|
12356
12379
|
readonly bank_account_number: string;
|
|
12357
|
-
readonly bank_routing_number
|
|
12358
|
-
readonly bank_name
|
|
12359
|
-
readonly bank_address?: io.flow.common.v0.models.Address;
|
|
12380
|
+
readonly bank_routing_number: string;
|
|
12381
|
+
readonly bank_name: string;
|
|
12360
12382
|
}
|
|
12361
12383
|
interface BankAccountInfoKorV2 {
|
|
12362
12384
|
readonly discriminator: 'kor_v2';
|
|
@@ -12382,24 +12404,27 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12382
12404
|
type AdaptiveShippingOrderGuaranteeState = 'confirmed' | 'voided';
|
|
12383
12405
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
12384
12406
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
12407
|
+
type AiReviewConsumer = 'restrictions' | 'sellability' | 'harmonization';
|
|
12408
|
+
type AiReviewFailureReason = 'item_errored' | 'item_expired' | 'item_unparseable' | 'item_image_fetch_failed' | 'item_undecided' | 'batch_failed' | 'batch_timed_out';
|
|
12409
|
+
type AiReviewType = 'pv_review_general' | 'pv_review_dg_hazmat' | 'pc_review';
|
|
12385
12410
|
type AmruthaItemType = 'physical' | 'digital';
|
|
12386
12411
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
12387
12412
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
12388
12413
|
type ApplicablePreferentialRate = 'baby' | 'children';
|
|
12389
12414
|
type AthenaDailyopsIntentLevel = 'low_intent' | 'high_intent';
|
|
12390
12415
|
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-b186129720f0446eb452a68518437c95' | 'prr-36e1603f56e54eb889792637c29eed40' | 'prr-7ead2cc4bf2840a3a9b50d222eb0ed7e' | 'prr-ec2f3d608b7e43a49de88ac40e6b50a8' | 'prr-04ed078c39ca4447b171f767d71a481d' | 'prr-bb664a76d6d64a17843e720e6ccd401a' | 'prr-8ce63afcd48641eb9d44e04117348a96' | 'prr-76544617791b4ce8af96b3a7879474c6' | 'prr-566cc67167944bc4bd08167aa9c0beba' | 'prr-74e1320efb7741cf9ace400b69800f9b';
|
|
12391
|
-
type B2BFeeMorTaxTriggerType = 'capture' | 'order';
|
|
12416
|
+
type B2BFeeMorTaxTriggerType = 'capture' | 'order' | 'settings';
|
|
12392
12417
|
type B2BFeeShippingTaxTriggerType = 'label' | 'trueup';
|
|
12393
12418
|
type B2BTaxLedgerDocumentType = 'b2b_invoice' | 'b2b_credit_memo' | 'mor_invoice' | 'mor_credit_memo' | 'label_invoice' | 'label_credit_memo';
|
|
12394
12419
|
type B2BTaxRateType = 'basic' | 'preferential' | 'exempt';
|
|
12395
12420
|
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
12396
12421
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
12397
|
-
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
12422
|
+
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed' | 'paid';
|
|
12398
12423
|
type BillingAllocationKey = 'freight_cost' | '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' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
|
|
12399
12424
|
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_number_offboarded_accounts' | 'negative_balance_number_active_accounts_with_balance_over_1000' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_total_offboarded_accounts' | 'negative_balance_single_account_max' | 'negative_balance_single_active_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction' | 'negative_balance_scheduled_count' | 'negative_balance_scheduled_total' | 'negative_balance_sent_count' | 'negative_balance_sent_total' | 'negative_balance_failed_count' | 'negative_balance_failed_total' | 'negative_debit_success_rate' | 'current_attempt_merchant_count' | 'current_attempt_amount_total' | 'current_attempt_failed_merchant_count' | 'current_attempt_failed_amount_total' | 'current_attempt_success_ratio' | 'first_attempt_merchant_count' | 'first_attempt_amount_total' | 'first_attempt_failed_merchant_count' | 'first_attempt_failed_amount_total' | 'first_attempt_success_ratio' | 'second_attempt_merchant_count' | 'second_attempt_amount_total' | 'second_attempt_failed_merchant_count' | 'second_attempt_failed_amount_total' | 'second_attempt_success_ratio' | 'third_attempt_merchant_count' | 'third_attempt_amount_total' | 'third_attempt_failed_merchant_count' | 'third_attempt_failed_amount_total' | 'third_attempt_success_ratio' | 'fourth_plus_attempt_merchant_count' | 'fourth_plus_attempt_amount_total' | 'fourth_plus_attempt_failed_merchant_count' | 'fourth_plus_attempt_failed_amount_total' | 'fourth_plus_attempt_success_ratio' | 'ge_revenue_share_standard_transactions_count' | 'ge_revenue_share_standard_transactions_total' | 'ge_revenue_share_standard_transactions_percentage' | 'ge_revenue_share_shopify_plus_transactions_count' | 'ge_revenue_share_shopify_plus_transactions_total' | 'ge_revenue_share_shopify_plus_transactions_percentage' | 'non_l4l_tax_duty_fx_transactions_count' | 'non_l4l_tax_duty_fx_transactions_total' | 'non_l4l_tax_duty_fx_transactions_percentage' | 'sp_adjustment_transactions_count' | 'sp_adjustment_transactions_total' | 'sp_billable_label_transactions_count' | 'sp_billable_label_transactions_count_for_unique_orders' | 'sp_billable_label_transactions_total' | 'capture_transactions_standard_count' | 'capture_transactions_standard_total' | 'capture_transactions_shopify_plus_count' | 'capture_transactions_shopify_plus_total' | 'sp_capture_transactions_count' | 'sp_capture_transactions_total' | 'sp_carrier_charge_transactions_count' | 'sp_carrier_charge_transactions_total' | 'sp_channel_transactions_count' | 'sp_channel_transactions_total' | 'sp_duty_transactions_count' | 'sp_duty_transactions_total' | 'sp_manual_transactions_count' | 'sp_manual_transactions_total' | 'sp_refund_transactions_count' | 'sp_refund_transactions_total' | 'sp_reversal_transactions_count' | 'sp_reversal_transactions_total' | 'sp_revenue_share_label_transactions_count' | 'sp_revenue_share_label_transactions_count_for_unique_orders' | 'sp_revenue_share_label_transactions_total' | 'sp_tax_transactions_count' | 'sp_tax_transactions_total' | 'sp_transfer_transactions_count' | 'sp_transfer_transactions_total' | 'sp_trueup_transactions_count' | 'sp_trueup_transactions_total';
|
|
12400
12425
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
|
|
12401
12426
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
12402
|
-
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'non_l4l_tax_duty_fx' | 'tax_refund' | 'duty_refund' | 'ge_revenue_share' | 'merchant_fee' | 'merchant_payout' | 'merchant_refund' | 'b2b_tax' | 'b2b_tax_refund' | 'b2b_fee_mor_tax' | 'b2b_fee_shipping_tax' | 'flat_rate_label';
|
|
12427
|
+
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'non_l4l_tax_duty_fx' | 'tax_refund' | 'duty_refund' | 'ge_revenue_share' | 'merchant_fee' | 'merchant_payout' | 'merchant_refund' | 'b2b_tax' | 'b2b_tax_refund' | 'b2b_fee_mor_tax' | 'b2b_fee_shipping_tax' | 'flat_rate_label' | 'flat_rate_label_subsidy';
|
|
12403
12428
|
type BojanaItemType = 'physical' | 'digital';
|
|
12404
12429
|
type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
|
|
12405
12430
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
@@ -12434,7 +12459,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12434
12459
|
type ClassificationErrorCode = 'generic_error';
|
|
12435
12460
|
type ClassificationFailureReason = 'low_confidence' | 'timeout' | 'missing_hs6_code' | 'invalid_price';
|
|
12436
12461
|
type ClassificationPlatform = 'GlobalE' | 'Flow' | 'FlowOnboarding' | 'Borderfree';
|
|
12437
|
-
type ClassificationScope = 'Item' | 'Product';
|
|
12462
|
+
type ClassificationScope = 'Item' | 'Product' | 'Bucket';
|
|
12438
12463
|
type ClassificationSource = 'sellability';
|
|
12439
12464
|
type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
|
|
12440
12465
|
type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
|
|
@@ -12443,6 +12468,13 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12443
12468
|
type ComplianceType = 'weee';
|
|
12444
12469
|
type ConnectReportPaymentTransferType = 'ManagedMarketsRefundDebit' | 'ManagedMarketsDutiesAndTaxesAdjustmentDebit' | 'ManagedMarketsDisputedAmountDebit';
|
|
12445
12470
|
type ConnectReportTransferTransferType = 'ManagedMarketsChargeCredit' | 'ManagedMarketsDisputeWonAmountCredit' | 'ManagedMarketsDutiesAndTaxesAdjustmentCredit';
|
|
12471
|
+
type CpscCertificateType = 'GCC' | 'CPC';
|
|
12472
|
+
type CpscFileType = 'GeRegistered' | 'PreRegistered';
|
|
12473
|
+
type CpscLabType = 'ITL' | 'LAB' | 'NOL';
|
|
12474
|
+
type CpscLotNumberAssignedBy = 'Seller' | 'Manufacturer';
|
|
12475
|
+
type CpscPointOfContactType = 'Importer' | 'Manufacturer' | 'Laboratory' | 'Broker' | 'Other';
|
|
12476
|
+
type CpscPrimaryProductIdType = 'GTIN' | 'UPC' | 'SKU' | 'Model Number' | 'Serial Number' | 'Registered Number' | 'Alternate Identifier';
|
|
12477
|
+
type CpscYesNo = 'Y' | 'N';
|
|
12446
12478
|
type CrossdockTrackingStatus = 'notified' | 'received' | 'shipped';
|
|
12447
12479
|
type DebugAccountingTransactionType = 'fulfillment';
|
|
12448
12480
|
type DeliveredDutyOptionMessageType = 'warning' | 'notification';
|
|
@@ -12471,7 +12503,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12471
12503
|
type EmptyAttribute = 'irrelevant';
|
|
12472
12504
|
type ErpFileType = 'vendor';
|
|
12473
12505
|
type EvaluationCheckResult = 'pass' | 'fail';
|
|
12474
|
-
type EventType = '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' | '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' | '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_lanes_import_request' | '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_adaptive_pricing_coefficients_upserted' | 'shopify_adaptive_pricing_coefficients_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' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
12506
|
+
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'ai_review_batch_submitted' | 'ai_review_result_upserted' | 'ai_review_result_deleted' | 'ai_review_request_failed' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'fulfillment_status_upserted' | 'fulfillment_status_deleted' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'sales_payment_record_upserted' | 'sales_payment_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'channel_shop_statistics_upserted' | 'channel_shop_statistics_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'shipping_cost_upserted' | 'shipping_cost_deleted' | 'mor_cost_upserted' | 'mor_cost_deleted' | 'flat_rate_label_reversal_upserted' | 'flat_rate_label_reversal_deleted' | 'flat_rate_label_subsidy_upserted' | 'flat_rate_label_subsidy_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'quote_upserted' | 'quote_deleted' | 'guaranteed_shipping_calibrated_output_upserted' | 'guaranteed_shipping_calibrated_output_deleted' | 'outbound_shipping_cost_upserted' | 'outbound_shipping_cost_deleted' | 'guaranteed_shipping_published_output_upserted' | 'guaranteed_shipping_published_output_deleted' | 'guaranteed_shipping_settings_upserted' | 'guaranteed_shipping_settings_deleted' | 'guaranteed_shipping_settings_update_upserted' | 'guaranteed_shipping_settings_update_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'merchant_override_upserted' | 'merchant_override_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_creation_job_upserted' | 'label_creation_job_deleted' | 'adaptive_shipping_order_guarantee_upserted' | 'adaptive_shipping_order_guarantee_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'partner_request_upserted' | 'partner_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'order_refund_transaction_upserted' | 'order_refund_transaction_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'preonboarding_sellability_result_inserted' | 'preonboarding_sellability_result_updated' | 'preonboarding_sellability_result_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'product_restriction_state_inserted' | 'product_restriction_state_updated' | 'product_restriction_state_deleted' | 'product_sellability_result_inserted' | 'product_sellability_result_updated' | 'product_sellability_result_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restrictions_athena_dailyops_pc_pv_upserted' | 'restrictions_athena_dailyops_pc_pv_deleted' | 'restrictions_athena_dailyops_fs_upserted' | 'restrictions_athena_dailyops_fs_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'taxonomy_category_hs6_ref_upserted' | 'taxonomy_category_hs6_ref_deleted' | 'preonboarding_merchant_upserted' | 'preonboarding_merchant_deleted' | 'unserviceable_taxonomy_category_upserted' | 'unserviceable_taxonomy_category_deleted' | 'sellability_pending_verification_upserted' | 'sellability_pending_verification_deleted' | 'shopify_hs10_codes_upserted' | 'shopify_hs10_codes_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_product_taxonomy_attribute_upserted' | 'shopify_product_taxonomy_attribute_deleted' | 'shopify_product_taxonomy_attribute_value_upserted' | 'shopify_product_taxonomy_attribute_value_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_order_risk_assessment_upserted' | 'shopify_order_risk_assessment_deleted' | 'shopify_order_transaction_upserted' | 'shopify_order_transaction_deleted' | 'shopify_test_order_upserted' | 'shopify_test_order_deleted' | 'shopify_merchant_markets_upserted' | 'shopify_merchant_markets_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'shopify_merchant_plan_upserted' | 'shopify_merchant_plan_deleted' | 'shopify_dispute_upserted' | 'shopify_dispute_deleted' | 'shopify_report_file_upserted' | 'shopify_report_file_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'b2b_tax_transaction_upserted' | 'b2b_tax_transaction_deleted' | 'gabriel_item_upserted' | 'gabriel_item_deleted' | 'chenglin_item_upserted' | 'chenglin_item_deleted' | 'bojana_item_upserted' | 'bojana_item_deleted' | 'raveena_item_upserted' | 'raveena_item_deleted' | 'mahesh_item_upserted' | 'mahesh_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
12475
12507
|
type ExperienceImportType = 'experience_with_settings';
|
|
12476
12508
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
12477
12509
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -12481,7 +12513,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12481
12513
|
type FeatureType = 'boolean' | 'decimal' | 'string';
|
|
12482
12514
|
type FeesSource = 'settings' | 'authorization_bundle';
|
|
12483
12515
|
type FileType = 'pdf';
|
|
12484
|
-
type
|
|
12516
|
+
type FlatRateLabelGuaranteeStatus = 'active' | 'void';
|
|
12517
|
+
type FlatRateLabelTransactionType = 'adjustment' | 'reversal' | 'fee' | 'subsidy';
|
|
12485
12518
|
type FraudProvider = 'flow' | 'forter' | 'paypal' | 'riskified' | 'rps' | 'other' | 'none';
|
|
12486
12519
|
type FraudProviderStatus = 'active' | 'archived';
|
|
12487
12520
|
type FraudReviewResponsibleParty = 'flow' | 'organization';
|
|
@@ -12496,7 +12529,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12496
12529
|
type InternalPaymentEntityType = 'authorization' | 'capture' | 'refund' | 'dispute';
|
|
12497
12530
|
type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
|
|
12498
12531
|
type ItemClassificationStatus = 'unknown' | 'manual' | 'manually_accepted' | 'manually_overridden' | 'automatically_accepted' | 'pending';
|
|
12499
|
-
type ItemHarmonizationStatus = 'waiting_for_classification' | 'classified' | 'non_classifiable_not_enough_information' | 'exempt' | 'manual_classification_required';
|
|
12532
|
+
type ItemHarmonizationStatus = 'waiting_for_classification' | 'classified' | 'non_classifiable_not_enough_information' | 'exempt' | 'manual_classification_required' | 'unserviceable_taxonomy';
|
|
12500
12533
|
type ItemQuantityAction = 'fulfillment_ship' | 'fulfillment_cancel' | 'fulfillment_generate_label';
|
|
12501
12534
|
type ItemType = 'standard' | 'multi_product';
|
|
12502
12535
|
type JournalOperation = 'insert' | 'update' | 'delete';
|
|
@@ -12567,17 +12600,19 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12567
12600
|
type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
|
|
12568
12601
|
type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
|
|
12569
12602
|
type ProductStatus = 'active' | 'archived' | 'draft' | 'unlisted';
|
|
12603
|
+
type PvDecision = 'uphold' | 'remove';
|
|
12570
12604
|
type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
|
|
12571
12605
|
type RateSource = 'calculated' | 'market';
|
|
12572
12606
|
type RaveenaItemType = 'physical' | 'digital';
|
|
12573
12607
|
type RedirectReason = 'three_d_secure';
|
|
12574
12608
|
type RejectionReason = 'merchant_policy' | 'previous_chargebacks' | 'restricted_party_screening' | 'risky_velocity' | 'suspicious_behavior' | 'suspicious_past_activity';
|
|
12609
|
+
type RemediateTaxDutyArm = 'non_lvg' | 'lvg_full_refund';
|
|
12575
12610
|
type ReportFileStatus = 'processing' | 'failed' | 'succeeded';
|
|
12576
12611
|
type ReportFileType = 'stripe_connect_report';
|
|
12577
12612
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
12578
12613
|
type ReportPaymentType = 'credit' | 'debit';
|
|
12579
12614
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
12580
|
-
type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'scheduled_payment_citi' | 'scheduled_payment_citi_krw' | 'scheduled_payment_citi_krw_txt' | 'account_quarterly_balances' | 'invariants' | 'payments' | 'reconcile_not_recorded' | 'products_record' | 'disputes' | 'sales_payments_record';
|
|
12615
|
+
type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'scheduled_payment_citi' | 'scheduled_payment_citi_krw' | 'scheduled_payment_citi_krw_txt' | 'scheduled_payment_citi_uk_xml' | 'account_quarterly_balances' | 'invariants' | 'payments' | 'reconcile_not_recorded' | 'products_record' | 'disputes' | 'sales_payments_record';
|
|
12581
12616
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
12582
12617
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
12583
12618
|
type ResponsibleParty = 'flow' | 'organization';
|
|
@@ -12587,10 +12622,11 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12587
12622
|
type RestrictionAttributeOperator = 'and' | 'or';
|
|
12588
12623
|
type RestrictionAttributeResult = 'pending_classification' | 'pending_verification' | 'accepted' | 'restricted';
|
|
12589
12624
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
12590
|
-
type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox' | 'enterprise-qa' | 'cafe24' | 'cafe24-sandbox';
|
|
12625
|
+
type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox' | 'enterprise-qa' | 'globale' | 'globale-sandbox' | 'cafe24' | 'cafe24-sandbox';
|
|
12591
12626
|
type RestrictionOrganizationSource = 'smb' | 'enterprise';
|
|
12592
12627
|
type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
|
|
12593
12628
|
type RestrictionRuleCommunityExemption = 'domestic_exemption' | 'intra_eu_exemption';
|
|
12629
|
+
type RestrictionRuleEvaluationMode = 'all_screenings' | 'first_screening_only';
|
|
12594
12630
|
type RestrictionRuleExceptionAction = 'allow' | 'deny';
|
|
12595
12631
|
type RestrictionStateReviewStatus = 'reviewed' | 'in_review';
|
|
12596
12632
|
type RestrictionStatus = 'pending' | 'in_review' | 'escalated' | 'accepted' | 'restricted';
|
|
@@ -12865,24 +12901,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12865
12901
|
readonly refund?: io.flow.payment.v0.models.RefundReference;
|
|
12866
12902
|
readonly tax_reversal?: io.flow.internal.v0.models.TransactionReference;
|
|
12867
12903
|
readonly duty_reversal?: io.flow.internal.v0.models.TransactionReference;
|
|
12904
|
+
readonly flat_rate_reversal?: io.flow.internal.v0.models.TransactionReference;
|
|
12905
|
+
readonly flat_rate_subsidy_reversal?: io.flow.internal.v0.models.TransactionReference;
|
|
12868
12906
|
}
|
|
12869
12907
|
interface ActionQuantity {
|
|
12870
12908
|
readonly action: io.flow.internal.v0.enums.ItemQuantityAction;
|
|
12871
12909
|
readonly quantity: number;
|
|
12872
12910
|
}
|
|
12873
|
-
interface AdaptivePricingDestinationUpdate {
|
|
12874
|
-
readonly country_code: string;
|
|
12875
|
-
readonly updated_at: string;
|
|
12876
|
-
readonly tax_and_duty_coefficient: number;
|
|
12877
|
-
readonly fees_coefficient: number;
|
|
12878
|
-
readonly merchant_subsidy_amount: number;
|
|
12879
|
-
readonly merchant_subsidy_currency: string;
|
|
12880
|
-
}
|
|
12881
|
-
interface AdaptivePricingUpdate {
|
|
12882
|
-
readonly channel_id: string;
|
|
12883
|
-
readonly organization_id: string;
|
|
12884
|
-
readonly destination_updates: io.flow.internal.v0.models.AdaptivePricingDestinationUpdate[];
|
|
12885
|
-
}
|
|
12886
12911
|
interface AdaptiveShippingOrderGuarantee {
|
|
12887
12912
|
readonly id: string;
|
|
12888
12913
|
readonly organization_id: string;
|
|
@@ -12905,30 +12930,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12905
12930
|
readonly organization: string;
|
|
12906
12931
|
readonly adaptive_shipping_order_guarantee: io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
12907
12932
|
}
|
|
12908
|
-
interface AdaptiveShippingRate {
|
|
12909
|
-
readonly id: string;
|
|
12910
|
-
readonly organization_id: string;
|
|
12911
|
-
readonly channel_id: string;
|
|
12912
|
-
readonly destination_country: string;
|
|
12913
|
-
readonly coefficient: number;
|
|
12914
|
-
readonly flat_rates: io.flow.internal.v0.models.FlatRate[];
|
|
12915
|
-
readonly effective_at: string;
|
|
12916
|
-
readonly effective_until?: string;
|
|
12917
|
-
}
|
|
12918
|
-
interface AdaptiveShippingRateDeleted {
|
|
12919
|
-
readonly discriminator: 'adaptive_shipping_rate_deleted';
|
|
12920
|
-
readonly event_id: string;
|
|
12921
|
-
readonly timestamp: string;
|
|
12922
|
-
readonly organization: string;
|
|
12923
|
-
readonly id: string;
|
|
12924
|
-
}
|
|
12925
|
-
interface AdaptiveShippingRateUpserted {
|
|
12926
|
-
readonly discriminator: 'adaptive_shipping_rate_upserted';
|
|
12927
|
-
readonly event_id: string;
|
|
12928
|
-
readonly timestamp: string;
|
|
12929
|
-
readonly organization: string;
|
|
12930
|
-
readonly adaptive_shipping_rate: io.flow.internal.v0.models.AdaptiveShippingRate;
|
|
12931
|
-
}
|
|
12932
12933
|
interface AdditionalImportTax {
|
|
12933
12934
|
readonly name?: string;
|
|
12934
12935
|
readonly additional_import_tax_value?: io.flow.common.v0.models.Money;
|
|
@@ -13310,6 +13311,49 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13310
13311
|
interface AftershipWebhook {
|
|
13311
13312
|
readonly placeholder?: boolean;
|
|
13312
13313
|
}
|
|
13314
|
+
interface AiReviewBatchSubmitted {
|
|
13315
|
+
readonly discriminator: 'ai_review_batch_submitted';
|
|
13316
|
+
readonly event_id: string;
|
|
13317
|
+
readonly timestamp: string;
|
|
13318
|
+
readonly consumer: io.flow.internal.v0.enums.AiReviewConsumer;
|
|
13319
|
+
readonly items: io.flow.internal.v0.models.ReviewRequestItem[];
|
|
13320
|
+
}
|
|
13321
|
+
interface AiReviewFailedItem {
|
|
13322
|
+
readonly review_id: string;
|
|
13323
|
+
readonly organization_id: string;
|
|
13324
|
+
}
|
|
13325
|
+
interface AiReviewRequestFailed {
|
|
13326
|
+
readonly discriminator: 'ai_review_request_failed';
|
|
13327
|
+
readonly event_id: string;
|
|
13328
|
+
readonly timestamp: string;
|
|
13329
|
+
readonly consumer: io.flow.internal.v0.enums.AiReviewConsumer;
|
|
13330
|
+
readonly review_type: io.flow.internal.v0.enums.AiReviewType;
|
|
13331
|
+
readonly reason: io.flow.internal.v0.enums.AiReviewFailureReason;
|
|
13332
|
+
readonly items: io.flow.internal.v0.models.AiReviewFailedItem[];
|
|
13333
|
+
}
|
|
13334
|
+
interface AiReviewResult {
|
|
13335
|
+
readonly review_id: string;
|
|
13336
|
+
readonly organization_id: string;
|
|
13337
|
+
readonly consumer: io.flow.internal.v0.enums.AiReviewConsumer;
|
|
13338
|
+
readonly review_type: io.flow.internal.v0.enums.AiReviewType;
|
|
13339
|
+
readonly ai_output: io.flow.internal.v0.unions.AiOutput;
|
|
13340
|
+
readonly ai_model: string;
|
|
13341
|
+
readonly prompt_id: string;
|
|
13342
|
+
readonly prompt_version: string;
|
|
13343
|
+
}
|
|
13344
|
+
interface AiReviewResultDeleted {
|
|
13345
|
+
readonly discriminator: 'ai_review_result_deleted';
|
|
13346
|
+
readonly event_id: string;
|
|
13347
|
+
readonly timestamp: string;
|
|
13348
|
+
readonly id: string;
|
|
13349
|
+
readonly organization: string;
|
|
13350
|
+
}
|
|
13351
|
+
interface AiReviewResultUpserted {
|
|
13352
|
+
readonly discriminator: 'ai_review_result_upserted';
|
|
13353
|
+
readonly event_id: string;
|
|
13354
|
+
readonly timestamp: string;
|
|
13355
|
+
readonly ai_review_result: io.flow.internal.v0.models.AiReviewResult;
|
|
13356
|
+
}
|
|
13313
13357
|
interface AllItemsExport {
|
|
13314
13358
|
readonly discriminator: 'all_items_export';
|
|
13315
13359
|
readonly event_id: string;
|
|
@@ -13535,6 +13579,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13535
13579
|
readonly expected_delivery_by?: string;
|
|
13536
13580
|
readonly attributes?: Record<string, string>;
|
|
13537
13581
|
readonly total: io.flow.common.v0.models.Price;
|
|
13582
|
+
readonly created_at?: string;
|
|
13583
|
+
readonly failed_on?: string;
|
|
13538
13584
|
}
|
|
13539
13585
|
interface BankPaymentDeletedV2 {
|
|
13540
13586
|
readonly discriminator: 'bank_payment_deleted_v2';
|
|
@@ -13788,6 +13834,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13788
13834
|
readonly b2b_fee_mor_tax: io.flow.common.v0.models.Price;
|
|
13789
13835
|
readonly b2b_fee_shipping_tax: io.flow.common.v0.models.Price;
|
|
13790
13836
|
readonly flat_rate_label: io.flow.common.v0.models.Price;
|
|
13837
|
+
readonly flat_rate_label_subsidy: io.flow.common.v0.models.Price;
|
|
13791
13838
|
}
|
|
13792
13839
|
interface BillingStatementUpserted {
|
|
13793
13840
|
readonly discriminator: 'billing_statement_upserted';
|
|
@@ -14449,7 +14496,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14449
14496
|
readonly order_updated_at?: string;
|
|
14450
14497
|
readonly order_edit_summary?: io.flow.internal.v0.models.OrderEditSummary;
|
|
14451
14498
|
readonly payment_source?: io.flow.internal.v0.enums.OrderPaymentSourceType;
|
|
14452
|
-
readonly external_order_summary?: io.flow.
|
|
14499
|
+
readonly external_order_summary?: io.flow.internal.v0.models.ExternalOrderSummary;
|
|
14453
14500
|
}
|
|
14454
14501
|
interface ChannelOrderAcceptanceDeleted {
|
|
14455
14502
|
readonly discriminator: 'channel_order_acceptance_deleted';
|
|
@@ -15085,6 +15132,90 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15085
15132
|
readonly items: io.flow.common.v0.models.CatalogItemSummary[];
|
|
15086
15133
|
readonly product_harmonization: io.flow.internal.v0.models.ClassificationProductHarmonization;
|
|
15087
15134
|
}
|
|
15135
|
+
interface CpscProductRegistration {
|
|
15136
|
+
readonly product_update: boolean;
|
|
15137
|
+
readonly current_version_id?: string;
|
|
15138
|
+
readonly new_version_id: string;
|
|
15139
|
+
readonly primary_product_id: string;
|
|
15140
|
+
readonly primary_product_id_type: io.flow.internal.v0.enums.CpscPrimaryProductIdType;
|
|
15141
|
+
readonly gtin?: string;
|
|
15142
|
+
readonly upc?: string;
|
|
15143
|
+
readonly sku?: string;
|
|
15144
|
+
readonly model_number?: string;
|
|
15145
|
+
readonly serial_number?: string;
|
|
15146
|
+
readonly registered_number?: string;
|
|
15147
|
+
readonly alternate_identifier?: string;
|
|
15148
|
+
readonly certificate_type: io.flow.internal.v0.enums.CpscCertificateType;
|
|
15149
|
+
readonly product_name: string;
|
|
15150
|
+
readonly trade_brand_name?: string;
|
|
15151
|
+
readonly product_description?: string;
|
|
15152
|
+
readonly product_color?: string;
|
|
15153
|
+
readonly product_style?: string;
|
|
15154
|
+
readonly manufacturer_is_new?: io.flow.internal.v0.enums.CpscYesNo;
|
|
15155
|
+
readonly manufacturer_gln?: string;
|
|
15156
|
+
readonly manufacturer_alternate_id?: string;
|
|
15157
|
+
readonly manufacturer_name?: string;
|
|
15158
|
+
readonly small_batch_manufacturer_cpsc_id?: string;
|
|
15159
|
+
readonly manufacturer_address_line_1?: string;
|
|
15160
|
+
readonly manufacturer_address_line_2?: string;
|
|
15161
|
+
readonly manufacturer_apt_suite_number?: string;
|
|
15162
|
+
readonly manufacturer_city?: string;
|
|
15163
|
+
readonly manufacturer_state_province?: string;
|
|
15164
|
+
readonly manufacturer_country?: string;
|
|
15165
|
+
readonly manufacturer_zip_postal_code?: string;
|
|
15166
|
+
readonly manufacturer_phone?: string;
|
|
15167
|
+
readonly manufacturer_email?: string;
|
|
15168
|
+
readonly manufacture_date: string;
|
|
15169
|
+
readonly production_start_date?: string;
|
|
15170
|
+
readonly production_end_date?: string;
|
|
15171
|
+
readonly lot_number?: string;
|
|
15172
|
+
readonly lot_number_assigned_by?: io.flow.internal.v0.enums.CpscLotNumberAssignedBy;
|
|
15173
|
+
readonly lab_1_type: io.flow.internal.v0.enums.CpscLabType;
|
|
15174
|
+
readonly lab_1_is_new?: io.flow.internal.v0.enums.CpscYesNo;
|
|
15175
|
+
readonly lab_1_cpsc_id?: string;
|
|
15176
|
+
readonly lab_1_alternate_id?: string;
|
|
15177
|
+
readonly lab_1_gln?: string;
|
|
15178
|
+
readonly lab_1_name?: string;
|
|
15179
|
+
readonly lab_1_address_line_1?: string;
|
|
15180
|
+
readonly lab_1_address_line_2?: string;
|
|
15181
|
+
readonly lab_1_apt_suite_number?: string;
|
|
15182
|
+
readonly lab_1_city?: string;
|
|
15183
|
+
readonly lab_1_state_province?: string;
|
|
15184
|
+
readonly lab_1_country?: string;
|
|
15185
|
+
readonly lab_1_zip_postal_code?: string;
|
|
15186
|
+
readonly lab_1_phone?: string;
|
|
15187
|
+
readonly lab_1_email?: string;
|
|
15188
|
+
readonly lab_1_citation_codes: string;
|
|
15189
|
+
readonly lab_1_test_report_id?: string;
|
|
15190
|
+
readonly lab_1_test_url?: string;
|
|
15191
|
+
readonly lab_1_test_report_access_key?: string;
|
|
15192
|
+
readonly lab_1_is_component?: boolean;
|
|
15193
|
+
readonly lab_1_component_description?: string;
|
|
15194
|
+
readonly last_test_date?: string;
|
|
15195
|
+
readonly poc_for_test_records: io.flow.internal.v0.enums.CpscPointOfContactType;
|
|
15196
|
+
readonly poc_is_new?: io.flow.internal.v0.enums.CpscYesNo;
|
|
15197
|
+
readonly poc_alternate_id?: string;
|
|
15198
|
+
readonly poc_gln?: string;
|
|
15199
|
+
readonly poc_name?: string;
|
|
15200
|
+
readonly poc_address_line_1?: string;
|
|
15201
|
+
readonly poc_address_line_2?: string;
|
|
15202
|
+
readonly poc_apt_suite_number?: string;
|
|
15203
|
+
readonly poc_city?: string;
|
|
15204
|
+
readonly poc_state_province?: string;
|
|
15205
|
+
readonly poc_country?: string;
|
|
15206
|
+
readonly poc_zip_postal_code?: string;
|
|
15207
|
+
readonly poc_phone?: string;
|
|
15208
|
+
readonly poc_email?: string;
|
|
15209
|
+
}
|
|
15210
|
+
interface CpscQueueEnvelope {
|
|
15211
|
+
readonly messageType: string[];
|
|
15212
|
+
readonly message: io.flow.internal.v0.models.CpscQueueMessage;
|
|
15213
|
+
}
|
|
15214
|
+
interface CpscQueueMessage {
|
|
15215
|
+
readonly filePath: string;
|
|
15216
|
+
readonly merchantId: string;
|
|
15217
|
+
readonly fileType: io.flow.internal.v0.enums.CpscFileType;
|
|
15218
|
+
}
|
|
15088
15219
|
interface CryptoAccount {
|
|
15089
15220
|
readonly discriminator: 'crypto_account';
|
|
15090
15221
|
readonly id: string;
|
|
@@ -15432,6 +15563,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15432
15563
|
readonly error: string;
|
|
15433
15564
|
readonly destination: io.flow.common.v0.models.Address;
|
|
15434
15565
|
}
|
|
15566
|
+
interface DgClassAssessment {
|
|
15567
|
+
readonly dg_class: string;
|
|
15568
|
+
readonly decision: io.flow.internal.v0.enums.PvDecision;
|
|
15569
|
+
readonly confidence: number;
|
|
15570
|
+
readonly reasoning: string;
|
|
15571
|
+
}
|
|
15572
|
+
interface DgReviewContext {
|
|
15573
|
+
readonly discriminator: 'dg_review_context';
|
|
15574
|
+
readonly organization_id: string;
|
|
15575
|
+
readonly item_name: string;
|
|
15576
|
+
readonly item_description?: string;
|
|
15577
|
+
readonly image_url?: string;
|
|
15578
|
+
readonly hs_code?: string;
|
|
15579
|
+
readonly categories?: string;
|
|
15580
|
+
readonly price?: string;
|
|
15581
|
+
}
|
|
15582
|
+
interface DgReviewOutput {
|
|
15583
|
+
readonly discriminator: 'dg_review_output';
|
|
15584
|
+
readonly assessments: io.flow.internal.v0.models.DgClassAssessment[];
|
|
15585
|
+
}
|
|
15435
15586
|
interface Dhl {
|
|
15436
15587
|
readonly discriminator: 'dhl';
|
|
15437
15588
|
readonly export_account_number: string;
|
|
@@ -16083,6 +16234,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16083
16234
|
readonly carrier_tracking_number?: string;
|
|
16084
16235
|
readonly fulfilled_via_replacement_order?: boolean;
|
|
16085
16236
|
}
|
|
16237
|
+
interface ExternalOrderSummary {
|
|
16238
|
+
readonly id: string;
|
|
16239
|
+
readonly edit_ids: string[];
|
|
16240
|
+
readonly created_at?: string;
|
|
16241
|
+
}
|
|
16086
16242
|
interface ExternalRatecardLink {
|
|
16087
16243
|
readonly external_ratecard_id: string;
|
|
16088
16244
|
readonly flow_ratecard_ids: string[];
|
|
@@ -16219,6 +16375,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16219
16375
|
readonly transfer?: io.flow.internal.v0.models.Fee;
|
|
16220
16376
|
readonly negative_balance?: io.flow.internal.v0.models.Fee;
|
|
16221
16377
|
readonly sp?: io.flow.internal.v0.models.Fee;
|
|
16378
|
+
readonly revenue_share?: io.flow.internal.v0.models.Fee;
|
|
16222
16379
|
}
|
|
16223
16380
|
interface FinanceBankAccount {
|
|
16224
16381
|
readonly id: string;
|
|
@@ -16349,6 +16506,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16349
16506
|
readonly organization: string;
|
|
16350
16507
|
readonly flat_rate_label_reversal: io.flow.internal.v0.models.FlatRateLabelReversal;
|
|
16351
16508
|
}
|
|
16509
|
+
interface FlatRateLabelSubsidy {
|
|
16510
|
+
readonly id: string;
|
|
16511
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
16512
|
+
readonly organization_id: string;
|
|
16513
|
+
readonly order_number: string;
|
|
16514
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
16515
|
+
readonly tax: io.flow.common.v0.models.Money;
|
|
16516
|
+
}
|
|
16517
|
+
interface FlatRateLabelSubsidyDeleted {
|
|
16518
|
+
readonly discriminator: 'flat_rate_label_subsidy_deleted';
|
|
16519
|
+
readonly event_id: string;
|
|
16520
|
+
readonly timestamp: string;
|
|
16521
|
+
readonly organization: string;
|
|
16522
|
+
readonly id: string;
|
|
16523
|
+
}
|
|
16524
|
+
interface FlatRateLabelSubsidyUpserted {
|
|
16525
|
+
readonly discriminator: 'flat_rate_label_subsidy_upserted';
|
|
16526
|
+
readonly event_id: string;
|
|
16527
|
+
readonly timestamp: string;
|
|
16528
|
+
readonly organization: string;
|
|
16529
|
+
readonly flat_rate_label_subsidy: io.flow.internal.v0.models.FlatRateLabelSubsidy;
|
|
16530
|
+
}
|
|
16352
16531
|
interface FlatRateLabelTransaction {
|
|
16353
16532
|
readonly discriminator: 'flat_rate_label_transaction';
|
|
16354
16533
|
readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -16970,6 +17149,107 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16970
17149
|
readonly discriminator: 'google_tag_manager';
|
|
16971
17150
|
readonly tracker_id: string;
|
|
16972
17151
|
}
|
|
17152
|
+
interface GuaranteedShippingCalibratedOutput {
|
|
17153
|
+
readonly id: string;
|
|
17154
|
+
readonly organization_id: string;
|
|
17155
|
+
readonly channel_id: string;
|
|
17156
|
+
readonly destination_country: string;
|
|
17157
|
+
readonly coefficient: number;
|
|
17158
|
+
readonly flat_rates: io.flow.internal.v0.models.FlatRate[];
|
|
17159
|
+
readonly effective_at: string;
|
|
17160
|
+
readonly effective_until?: string;
|
|
17161
|
+
}
|
|
17162
|
+
interface GuaranteedShippingCalibratedOutputDeleted {
|
|
17163
|
+
readonly discriminator: 'guaranteed_shipping_calibrated_output_deleted';
|
|
17164
|
+
readonly event_id: string;
|
|
17165
|
+
readonly timestamp: string;
|
|
17166
|
+
readonly organization: string;
|
|
17167
|
+
readonly id: string;
|
|
17168
|
+
}
|
|
17169
|
+
interface GuaranteedShippingCalibratedOutputUpserted {
|
|
17170
|
+
readonly discriminator: 'guaranteed_shipping_calibrated_output_upserted';
|
|
17171
|
+
readonly event_id: string;
|
|
17172
|
+
readonly timestamp: string;
|
|
17173
|
+
readonly organization: string;
|
|
17174
|
+
readonly guaranteed_shipping_calibrated_output: io.flow.internal.v0.models.GuaranteedShippingCalibratedOutput;
|
|
17175
|
+
}
|
|
17176
|
+
interface GuaranteedShippingPublishedOutput {
|
|
17177
|
+
readonly id: string;
|
|
17178
|
+
readonly organization_id: string;
|
|
17179
|
+
readonly channel_id: string;
|
|
17180
|
+
readonly destination_country: string;
|
|
17181
|
+
readonly coefficient: number;
|
|
17182
|
+
readonly flat_rates: io.flow.internal.v0.models.FlatRate[];
|
|
17183
|
+
readonly inputs_updated_at: number;
|
|
17184
|
+
}
|
|
17185
|
+
interface GuaranteedShippingPublishedOutputDeleted {
|
|
17186
|
+
readonly discriminator: 'guaranteed_shipping_published_output_deleted';
|
|
17187
|
+
readonly event_id: string;
|
|
17188
|
+
readonly timestamp: string;
|
|
17189
|
+
readonly organization: string;
|
|
17190
|
+
readonly id: string;
|
|
17191
|
+
}
|
|
17192
|
+
interface GuaranteedShippingPublishedOutputUpserted {
|
|
17193
|
+
readonly discriminator: 'guaranteed_shipping_published_output_upserted';
|
|
17194
|
+
readonly event_id: string;
|
|
17195
|
+
readonly timestamp: string;
|
|
17196
|
+
readonly organization: string;
|
|
17197
|
+
readonly guaranteed_shipping_published_output: io.flow.internal.v0.models.GuaranteedShippingPublishedOutput;
|
|
17198
|
+
}
|
|
17199
|
+
interface GuaranteedShippingSettings {
|
|
17200
|
+
readonly coefficients_updated_at: number;
|
|
17201
|
+
readonly channel_id: string;
|
|
17202
|
+
readonly organization_id: string;
|
|
17203
|
+
readonly destination_country: string;
|
|
17204
|
+
readonly tax_and_duty_coefficient: number;
|
|
17205
|
+
readonly fees_coefficient: number;
|
|
17206
|
+
readonly merchant_subsidy: io.flow.common.v0.models.Money;
|
|
17207
|
+
readonly created_at: number;
|
|
17208
|
+
}
|
|
17209
|
+
interface GuaranteedShippingSettingsDeleted {
|
|
17210
|
+
readonly discriminator: 'guaranteed_shipping_settings_deleted';
|
|
17211
|
+
readonly event_id: string;
|
|
17212
|
+
readonly timestamp: string;
|
|
17213
|
+
readonly organization: string;
|
|
17214
|
+
readonly channel_id: string;
|
|
17215
|
+
readonly id: string;
|
|
17216
|
+
}
|
|
17217
|
+
interface GuaranteedShippingSettingsDestinationUpdate {
|
|
17218
|
+
readonly country: string;
|
|
17219
|
+
readonly updated_at: string;
|
|
17220
|
+
readonly tax_and_duty_coefficient: number;
|
|
17221
|
+
readonly fees_coefficient: number;
|
|
17222
|
+
readonly merchant_subsidy: io.flow.common.v0.models.Money;
|
|
17223
|
+
}
|
|
17224
|
+
interface GuaranteedShippingSettingsUpdate {
|
|
17225
|
+
readonly channel_id: string;
|
|
17226
|
+
readonly organization_id: string;
|
|
17227
|
+
readonly destination_updates: io.flow.internal.v0.models.GuaranteedShippingSettingsDestinationUpdate[];
|
|
17228
|
+
}
|
|
17229
|
+
interface GuaranteedShippingSettingsUpdateDeleted {
|
|
17230
|
+
readonly discriminator: 'guaranteed_shipping_settings_update_deleted';
|
|
17231
|
+
readonly event_id: string;
|
|
17232
|
+
readonly timestamp: string;
|
|
17233
|
+
readonly organization: string;
|
|
17234
|
+
readonly channel_id: string;
|
|
17235
|
+
readonly id: string;
|
|
17236
|
+
}
|
|
17237
|
+
interface GuaranteedShippingSettingsUpdateUpserted {
|
|
17238
|
+
readonly discriminator: 'guaranteed_shipping_settings_update_upserted';
|
|
17239
|
+
readonly event_id: string;
|
|
17240
|
+
readonly timestamp: string;
|
|
17241
|
+
readonly organization: string;
|
|
17242
|
+
readonly channel_id: string;
|
|
17243
|
+
readonly guaranteed_shipping_settings_update: io.flow.internal.v0.models.GuaranteedShippingSettingsUpdate;
|
|
17244
|
+
}
|
|
17245
|
+
interface GuaranteedShippingSettingsUpserted {
|
|
17246
|
+
readonly discriminator: 'guaranteed_shipping_settings_upserted';
|
|
17247
|
+
readonly event_id: string;
|
|
17248
|
+
readonly timestamp: string;
|
|
17249
|
+
readonly organization: string;
|
|
17250
|
+
readonly channel_id: string;
|
|
17251
|
+
readonly guaranteed_shipping_settings: io.flow.internal.v0.models.GuaranteedShippingSettings;
|
|
17252
|
+
}
|
|
16973
17253
|
interface HarmonizationClassificationStatisticsData {
|
|
16974
17254
|
readonly statistics: io.flow.internal.v0.models.ClassificationStatistics;
|
|
16975
17255
|
}
|
|
@@ -17316,6 +17596,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17316
17596
|
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
17317
17597
|
readonly created_at: string;
|
|
17318
17598
|
}
|
|
17599
|
+
interface Issuer {
|
|
17600
|
+
readonly id: string;
|
|
17601
|
+
readonly iin: string;
|
|
17602
|
+
readonly name?: string;
|
|
17603
|
+
readonly country?: string;
|
|
17604
|
+
readonly brand?: string;
|
|
17605
|
+
readonly type?: string;
|
|
17606
|
+
readonly category?: string;
|
|
17607
|
+
readonly website?: string;
|
|
17608
|
+
readonly phone?: string;
|
|
17609
|
+
}
|
|
17610
|
+
interface IssuerDeleted {
|
|
17611
|
+
readonly discriminator: 'issuer_deleted';
|
|
17612
|
+
readonly event_id: string;
|
|
17613
|
+
readonly timestamp: string;
|
|
17614
|
+
readonly issuer: io.flow.internal.v0.models.Issuer;
|
|
17615
|
+
}
|
|
17616
|
+
interface IssuerUpserted {
|
|
17617
|
+
readonly discriminator: 'issuer_upserted';
|
|
17618
|
+
readonly event_id: string;
|
|
17619
|
+
readonly timestamp: string;
|
|
17620
|
+
readonly issuer: io.flow.internal.v0.models.Issuer;
|
|
17621
|
+
}
|
|
17319
17622
|
interface ItemClassification {
|
|
17320
17623
|
readonly id?: string;
|
|
17321
17624
|
readonly organization: string;
|
|
@@ -17427,6 +17730,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17427
17730
|
readonly timestamp: string;
|
|
17428
17731
|
readonly item_harmonization: io.flow.internal.v0.models.ItemHarmonization;
|
|
17429
17732
|
}
|
|
17733
|
+
interface ItemHs6Override {
|
|
17734
|
+
readonly item_number: string;
|
|
17735
|
+
readonly hs6: string;
|
|
17736
|
+
}
|
|
17737
|
+
interface ItemHs6OverrideForm {
|
|
17738
|
+
readonly item_number: string;
|
|
17739
|
+
readonly hs6: string;
|
|
17740
|
+
readonly hs6_description?: string;
|
|
17741
|
+
}
|
|
17742
|
+
interface ItemHs6OverrideRejection {
|
|
17743
|
+
readonly item_number: string;
|
|
17744
|
+
readonly message: string;
|
|
17745
|
+
}
|
|
17746
|
+
interface ItemHs6OverrideResult {
|
|
17747
|
+
readonly applied: io.flow.internal.v0.models.ItemHs6Override[];
|
|
17748
|
+
readonly rejected: io.flow.internal.v0.models.ItemHs6OverrideRejection[];
|
|
17749
|
+
}
|
|
17750
|
+
interface ItemHs6OverridesForm {
|
|
17751
|
+
readonly items: io.flow.internal.v0.models.ItemHs6OverrideForm[];
|
|
17752
|
+
}
|
|
17430
17753
|
interface ItemQueryResponse {
|
|
17431
17754
|
readonly q: string;
|
|
17432
17755
|
readonly items: io.flow.catalog.v0.models.Item[];
|
|
@@ -17994,6 +18317,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17994
18317
|
readonly type: io.flow.internal.v0.enums.MaheshItemType;
|
|
17995
18318
|
readonly added_on: string;
|
|
17996
18319
|
}
|
|
18320
|
+
interface MaheshItemDeleted {
|
|
18321
|
+
readonly discriminator: 'mahesh_item_deleted';
|
|
18322
|
+
readonly event_id: string;
|
|
18323
|
+
readonly timestamp: string;
|
|
18324
|
+
readonly id: string;
|
|
18325
|
+
}
|
|
17997
18326
|
interface MaheshItemForm {
|
|
17998
18327
|
readonly number: string;
|
|
17999
18328
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -18001,6 +18330,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18001
18330
|
readonly type: io.flow.internal.v0.enums.MaheshItemType;
|
|
18002
18331
|
readonly added_on: string;
|
|
18003
18332
|
}
|
|
18333
|
+
interface MaheshItemUpserted {
|
|
18334
|
+
readonly discriminator: 'mahesh_item_upserted';
|
|
18335
|
+
readonly event_id: string;
|
|
18336
|
+
readonly timestamp: string;
|
|
18337
|
+
readonly item: io.flow.internal.v0.models.MaheshItem;
|
|
18338
|
+
}
|
|
18004
18339
|
interface MainTransaction {
|
|
18005
18340
|
readonly id: string;
|
|
18006
18341
|
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
@@ -18013,6 +18348,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18013
18348
|
readonly channel_statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
18014
18349
|
readonly created_at: string;
|
|
18015
18350
|
readonly original_at?: string;
|
|
18351
|
+
readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
18016
18352
|
}
|
|
18017
18353
|
interface MainTransactionDeleted {
|
|
18018
18354
|
readonly discriminator: 'main_transaction_deleted';
|
|
@@ -18271,10 +18607,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18271
18607
|
readonly surcharges?: io.flow.internal.v0.models.MerchantSurcharge[];
|
|
18272
18608
|
readonly freight_guaranteed?: number;
|
|
18273
18609
|
readonly freight_non_guaranteed?: number;
|
|
18610
|
+
readonly freight_subsidy?: number;
|
|
18274
18611
|
readonly total: number;
|
|
18275
18612
|
readonly tax_refund?: number;
|
|
18276
18613
|
readonly tax_reversal?: number;
|
|
18277
18614
|
readonly duty_reversal?: number;
|
|
18615
|
+
readonly flat_rate_reversal?: number;
|
|
18616
|
+
readonly flat_rate_subsidy_reversal?: number;
|
|
18278
18617
|
readonly tax_reversal_for_lvg_order?: boolean;
|
|
18279
18618
|
readonly duty_reversal_for_lvg_order?: boolean;
|
|
18280
18619
|
}
|
|
@@ -18613,6 +18952,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18613
18952
|
readonly from_service_id: string;
|
|
18614
18953
|
readonly to_service_id: string;
|
|
18615
18954
|
}
|
|
18955
|
+
interface OrderSettings {
|
|
18956
|
+
readonly tax_and_duty_inclusivity_setting?: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
|
|
18957
|
+
}
|
|
18616
18958
|
interface OrderSummary {
|
|
18617
18959
|
readonly id: string;
|
|
18618
18960
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
@@ -19167,6 +19509,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19167
19509
|
readonly organization: io.flow.internal.v0.models.OtherRecordOrganizationSummary;
|
|
19168
19510
|
readonly number: string;
|
|
19169
19511
|
readonly identifiers: io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers;
|
|
19512
|
+
readonly destination_province?: string;
|
|
19170
19513
|
}
|
|
19171
19514
|
interface OtherRecordOrderSummaryIdentifiers {
|
|
19172
19515
|
readonly shopify_order_id?: string;
|
|
@@ -19187,6 +19530,32 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19187
19530
|
readonly freight: number;
|
|
19188
19531
|
readonly insurance: number;
|
|
19189
19532
|
}
|
|
19533
|
+
interface OutboundShippingCost {
|
|
19534
|
+
readonly channel_id: string;
|
|
19535
|
+
readonly organization_id: string;
|
|
19536
|
+
readonly destination_country: string;
|
|
19537
|
+
readonly carrier_service_id: string;
|
|
19538
|
+
readonly cost: io.flow.common.v0.models.Money;
|
|
19539
|
+
readonly updated_at: number;
|
|
19540
|
+
readonly run_id: string;
|
|
19541
|
+
readonly model_version: string;
|
|
19542
|
+
}
|
|
19543
|
+
interface OutboundShippingCostDeleted {
|
|
19544
|
+
readonly discriminator: 'outbound_shipping_cost_deleted';
|
|
19545
|
+
readonly event_id: string;
|
|
19546
|
+
readonly timestamp: string;
|
|
19547
|
+
readonly organization: string;
|
|
19548
|
+
readonly channel_id: string;
|
|
19549
|
+
readonly id: string;
|
|
19550
|
+
}
|
|
19551
|
+
interface OutboundShippingCostUpserted {
|
|
19552
|
+
readonly discriminator: 'outbound_shipping_cost_upserted';
|
|
19553
|
+
readonly event_id: string;
|
|
19554
|
+
readonly timestamp: string;
|
|
19555
|
+
readonly organization: string;
|
|
19556
|
+
readonly channel_id: string;
|
|
19557
|
+
readonly outbound_shipping_cost: io.flow.internal.v0.models.OutboundShippingCost;
|
|
19558
|
+
}
|
|
19190
19559
|
interface Partner {
|
|
19191
19560
|
readonly id: string;
|
|
19192
19561
|
readonly name: string;
|
|
@@ -19626,6 +19995,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19626
19995
|
readonly timestamp: string;
|
|
19627
19996
|
readonly refund: io.flow.internal.v0.models.PaypalInternalRefund;
|
|
19628
19997
|
}
|
|
19998
|
+
interface PcReviewContext {
|
|
19999
|
+
readonly discriminator: 'pc_review_context';
|
|
20000
|
+
readonly organization_id: string;
|
|
20001
|
+
readonly item_name: string;
|
|
20002
|
+
readonly item_description?: string;
|
|
20003
|
+
readonly categories?: string;
|
|
20004
|
+
readonly taxonomy_category?: string;
|
|
20005
|
+
readonly image_url?: string;
|
|
20006
|
+
}
|
|
20007
|
+
interface PcReviewOutput {
|
|
20008
|
+
readonly discriminator: 'pc_review_output';
|
|
20009
|
+
readonly hs_code: string;
|
|
20010
|
+
readonly alternates: string[];
|
|
20011
|
+
readonly confidence: number;
|
|
20012
|
+
readonly reasoning: string;
|
|
20013
|
+
}
|
|
19629
20014
|
interface PendingBankPayment {
|
|
19630
20015
|
readonly id: string;
|
|
19631
20016
|
readonly account: io.flow.internal.v0.models.AccountSummary;
|
|
@@ -19758,6 +20143,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19758
20143
|
readonly catalog_size: number;
|
|
19759
20144
|
readonly processed_product_count: number;
|
|
19760
20145
|
readonly last_request: string;
|
|
20146
|
+
readonly screening_mode?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
19761
20147
|
readonly updated_by_user_id: string;
|
|
19762
20148
|
}
|
|
19763
20149
|
interface PreonboardingMerchantDeleted {
|
|
@@ -19792,6 +20178,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19792
20178
|
readonly effective_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
19793
20179
|
readonly fingerprint: string;
|
|
19794
20180
|
readonly screening_mode?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
20181
|
+
readonly created_at?: string;
|
|
19795
20182
|
}
|
|
19796
20183
|
interface PreonboardingSellabilityResultDeleted {
|
|
19797
20184
|
readonly discriminator: 'preonboarding_sellability_result_deleted';
|
|
@@ -20163,6 +20550,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20163
20550
|
readonly contact: io.flow.common.v0.models.Contact;
|
|
20164
20551
|
readonly location: io.flow.common.v0.models.Address;
|
|
20165
20552
|
}
|
|
20553
|
+
interface PvReviewContext {
|
|
20554
|
+
readonly discriminator: 'pv_review_context';
|
|
20555
|
+
readonly organization_id: string;
|
|
20556
|
+
readonly item_name: string;
|
|
20557
|
+
readonly item_description?: string;
|
|
20558
|
+
readonly image_url?: string;
|
|
20559
|
+
readonly rule_name: string;
|
|
20560
|
+
readonly rule_reason_code: string;
|
|
20561
|
+
readonly hs_code?: string;
|
|
20562
|
+
readonly categories?: string;
|
|
20563
|
+
readonly price?: string;
|
|
20564
|
+
readonly matching_positive_keywords: string[];
|
|
20565
|
+
readonly matching_negative_keywords: string[];
|
|
20566
|
+
}
|
|
20567
|
+
interface PvReviewOutput {
|
|
20568
|
+
readonly discriminator: 'pv_review_output';
|
|
20569
|
+
readonly decision: io.flow.internal.v0.enums.PvDecision;
|
|
20570
|
+
readonly confidence: number;
|
|
20571
|
+
readonly reasoning: string;
|
|
20572
|
+
}
|
|
20166
20573
|
interface Quote {
|
|
20167
20574
|
readonly id: string;
|
|
20168
20575
|
readonly base: string;
|
|
@@ -20379,13 +20786,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20379
20786
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
20380
20787
|
readonly number: string;
|
|
20381
20788
|
}
|
|
20382
|
-
interface RatecardLanesImportRequest {
|
|
20383
|
-
readonly discriminator: 'ratecard_lanes_import_request';
|
|
20384
|
-
readonly event_id: string;
|
|
20385
|
-
readonly timestamp: string;
|
|
20386
|
-
readonly organization: string;
|
|
20387
|
-
readonly data: io.flow.ratecard.v0.models.RatecardLanesImportRequestData;
|
|
20388
|
-
}
|
|
20389
20789
|
interface RatecardRateLevelDeleted {
|
|
20390
20790
|
readonly discriminator: 'ratecard_rate_level_deleted';
|
|
20391
20791
|
readonly event_id: string;
|
|
@@ -20438,13 +20838,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20438
20838
|
readonly organization: string;
|
|
20439
20839
|
readonly fee: io.flow.internal.v0.models.RatecardInternalServiceFee;
|
|
20440
20840
|
}
|
|
20441
|
-
interface RatecardServiceFeesOverride {
|
|
20442
|
-
readonly ratecard: io.flow.internal.v0.models.RatecardInternalSummary;
|
|
20443
|
-
readonly service_fees: io.flow.ratecard.v0.unions.ServiceFee[];
|
|
20444
|
-
}
|
|
20445
|
-
interface RatecardServiceFeesOverrideForm {
|
|
20446
|
-
readonly service_fees: io.flow.ratecard.v0.unions.ServiceFee[];
|
|
20447
|
-
}
|
|
20448
20841
|
interface RatesChanged {
|
|
20449
20842
|
readonly event_id: string;
|
|
20450
20843
|
readonly timestamp: string;
|
|
@@ -20509,6 +20902,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20509
20902
|
readonly discriminator: 'rex';
|
|
20510
20903
|
readonly number: string;
|
|
20511
20904
|
}
|
|
20905
|
+
interface RemediateTaxDutyMetadata {
|
|
20906
|
+
readonly discriminator: 'remediate_tax_duty_metadata';
|
|
20907
|
+
readonly arm: io.flow.internal.v0.enums.RemediateTaxDutyArm;
|
|
20908
|
+
}
|
|
20512
20909
|
interface RemittanceResponsibility {
|
|
20513
20910
|
readonly tax: io.flow.internal.v0.enums.ResponsibleParty;
|
|
20514
20911
|
readonly duty: io.flow.internal.v0.enums.ResponsibleParty;
|
|
@@ -20555,7 +20952,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20555
20952
|
readonly source_type?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
20556
20953
|
readonly order_payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
20557
20954
|
readonly amount_range?: io.flow.internal.v0.models.ReportAmountRange;
|
|
20558
|
-
readonly
|
|
20955
|
+
readonly account_currencies?: io.flow.internal.v0.enums.AccountCurrencyFilter[];
|
|
20559
20956
|
readonly channel_id?: string;
|
|
20560
20957
|
}
|
|
20561
20958
|
interface ReportForm {
|
|
@@ -20669,11 +21066,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20669
21066
|
}
|
|
20670
21067
|
interface ReportingFreight {
|
|
20671
21068
|
readonly guaranteed?: io.flow.internal.v0.models.ReportingFreightGuaranteed;
|
|
21069
|
+
readonly subsidy?: io.flow.internal.v0.models.ReportingFreightSubsidy;
|
|
20672
21070
|
}
|
|
20673
21071
|
interface ReportingFreightGuaranteed {
|
|
20674
21072
|
readonly amount: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20675
21073
|
readonly coefficient: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20676
21074
|
}
|
|
21075
|
+
interface ReportingFreightSubsidy {
|
|
21076
|
+
readonly amount: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21077
|
+
}
|
|
20677
21078
|
interface ReportingFulfillment {
|
|
20678
21079
|
readonly id: string;
|
|
20679
21080
|
readonly sequence_number: number;
|
|
@@ -20711,13 +21112,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20711
21112
|
readonly partial_refund?: boolean;
|
|
20712
21113
|
}
|
|
20713
21114
|
interface ReportingFx {
|
|
20714
|
-
readonly shipping: io.flow.internal.v0.models.
|
|
20715
|
-
readonly fees: io.flow.internal.v0.models.
|
|
20716
|
-
readonly product: io.flow.internal.v0.models.
|
|
20717
|
-
readonly tax: io.flow.internal.v0.models.
|
|
20718
|
-
readonly duty: io.flow.internal.v0.models.
|
|
20719
|
-
readonly tips?: io.flow.internal.v0.models.
|
|
20720
|
-
readonly total: io.flow.internal.v0.models.
|
|
21115
|
+
readonly shipping: io.flow.internal.v0.models.ReportingFxValue;
|
|
21116
|
+
readonly fees: io.flow.internal.v0.models.ReportingFxValue;
|
|
21117
|
+
readonly product: io.flow.internal.v0.models.ReportingFxValue;
|
|
21118
|
+
readonly tax: io.flow.internal.v0.models.ReportingFxValue;
|
|
21119
|
+
readonly duty: io.flow.internal.v0.models.ReportingFxValue;
|
|
21120
|
+
readonly tips?: io.flow.internal.v0.models.ReportingFxValue;
|
|
21121
|
+
readonly total: io.flow.internal.v0.models.ReportingFxValue;
|
|
21122
|
+
}
|
|
21123
|
+
interface ReportingFxValue {
|
|
21124
|
+
readonly usd: number;
|
|
21125
|
+
readonly merchant?: number;
|
|
20721
21126
|
}
|
|
20722
21127
|
interface ReportingMerchantBreakdown {
|
|
20723
21128
|
readonly subsidies: io.flow.internal.v0.models.ReportingMerchantSubsidies;
|
|
@@ -20764,12 +21169,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20764
21169
|
readonly freight_breakdown?: io.flow.internal.v0.models.ReportingMerchantFreight;
|
|
20765
21170
|
readonly freight_guaranteed?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20766
21171
|
readonly freight_non_guaranteed?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21172
|
+
readonly freight_subsidy?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20767
21173
|
readonly discount?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20768
21174
|
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20769
21175
|
readonly tax_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20770
21176
|
readonly duty_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20771
21177
|
readonly tax_reversal?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20772
21178
|
readonly duty_reversal?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21179
|
+
readonly flat_rate_reversal?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21180
|
+
readonly flat_rate_subsidy_reversal?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20773
21181
|
readonly tax_reversal_for_lvg_order?: boolean;
|
|
20774
21182
|
readonly duty_reversal_for_lvg_order?: boolean;
|
|
20775
21183
|
}
|
|
@@ -20923,7 +21331,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20923
21331
|
readonly created_at: string;
|
|
20924
21332
|
readonly updated_at: string;
|
|
20925
21333
|
readonly channel?: string;
|
|
20926
|
-
readonly is_deleted?: boolean;
|
|
20927
21334
|
}
|
|
20928
21335
|
interface RestrictionItemRequestForm {
|
|
20929
21336
|
readonly status?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
@@ -21037,7 +21444,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21037
21444
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
21038
21445
|
readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
21039
21446
|
readonly channel?: string;
|
|
21040
|
-
readonly is_deleted?: boolean;
|
|
21041
21447
|
}
|
|
21042
21448
|
interface RestrictionProductDecisionForm {
|
|
21043
21449
|
readonly rule_decisions: io.flow.internal.v0.models.RestrictionRuleDecisionForm[];
|
|
@@ -21076,6 +21482,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21076
21482
|
readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
|
|
21077
21483
|
readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
21078
21484
|
readonly activation_status: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
21485
|
+
readonly evaluation_mode: io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
|
|
21079
21486
|
}
|
|
21080
21487
|
interface RestrictionRuleDecisionForm {
|
|
21081
21488
|
readonly rule_id: string;
|
|
@@ -21130,6 +21537,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21130
21537
|
readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
|
|
21131
21538
|
readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
21132
21539
|
readonly activation_status: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
21540
|
+
readonly evaluation_mode: io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
|
|
21133
21541
|
}
|
|
21134
21542
|
interface RestrictionRuleLaneExemption {
|
|
21135
21543
|
readonly id: string;
|
|
@@ -21396,6 +21804,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21396
21804
|
readonly organization: string;
|
|
21397
21805
|
readonly revenue_record: io.flow.internal.v0.models.RevenueRecord;
|
|
21398
21806
|
}
|
|
21807
|
+
interface ReviewRequestItem {
|
|
21808
|
+
readonly review_type: io.flow.internal.v0.enums.AiReviewType;
|
|
21809
|
+
readonly review_id: string;
|
|
21810
|
+
readonly context: io.flow.internal.v0.unions.AiReviewContext;
|
|
21811
|
+
}
|
|
21399
21812
|
interface RoutingAccount {
|
|
21400
21813
|
readonly discriminator: 'routing_account';
|
|
21401
21814
|
readonly processor: io.flow.internal.v0.enums.Processor;
|
|
@@ -21427,11 +21840,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21427
21840
|
readonly payment_is: io.flow.internal.v0.models.PaymentIs;
|
|
21428
21841
|
readonly price_inclusivity?: io.flow.internal.v0.models.PriceInclusivity;
|
|
21429
21842
|
readonly destination_country: string;
|
|
21843
|
+
readonly destination_province?: string;
|
|
21430
21844
|
readonly fulfilled_at?: string;
|
|
21431
21845
|
readonly reconciliation?: io.flow.internal.v0.models.ReportingReconciliation;
|
|
21432
21846
|
readonly is_eu_destination?: boolean;
|
|
21433
21847
|
readonly debug_url?: string;
|
|
21434
21848
|
}
|
|
21849
|
+
interface SalesPaymentRecordDeleted {
|
|
21850
|
+
readonly discriminator: 'sales_payment_record_deleted';
|
|
21851
|
+
readonly event_id: string;
|
|
21852
|
+
readonly timestamp: string;
|
|
21853
|
+
readonly organization: string;
|
|
21854
|
+
readonly id: string;
|
|
21855
|
+
}
|
|
21856
|
+
interface SalesPaymentRecordUpserted {
|
|
21857
|
+
readonly discriminator: 'sales_payment_record_upserted';
|
|
21858
|
+
readonly event_id: string;
|
|
21859
|
+
readonly timestamp: string;
|
|
21860
|
+
readonly organization: string;
|
|
21861
|
+
readonly sales_payment_record: io.flow.internal.v0.models.SalesPaymentRecord;
|
|
21862
|
+
}
|
|
21435
21863
|
interface SandboxSetup {
|
|
21436
21864
|
readonly requested_by: string;
|
|
21437
21865
|
}
|
|
@@ -21530,6 +21958,45 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21530
21958
|
readonly current_error?: io.flow.sellability.v0.models.SellabilityError[];
|
|
21531
21959
|
readonly merchant_error?: io.flow.sellability.v0.models.SellabilityError[];
|
|
21532
21960
|
}
|
|
21961
|
+
interface SellabilityPendingVerification {
|
|
21962
|
+
readonly id: string;
|
|
21963
|
+
readonly merchant_id: string;
|
|
21964
|
+
readonly product_id: string;
|
|
21965
|
+
readonly channel: string;
|
|
21966
|
+
readonly request_id: string;
|
|
21967
|
+
readonly name: string;
|
|
21968
|
+
readonly description: string;
|
|
21969
|
+
readonly taxonomy_category?: string;
|
|
21970
|
+
readonly hs6_code?: string;
|
|
21971
|
+
readonly price?: string;
|
|
21972
|
+
readonly rule_id: string;
|
|
21973
|
+
readonly reason_code: string;
|
|
21974
|
+
readonly matching_keywords?: string;
|
|
21975
|
+
readonly status: string;
|
|
21976
|
+
readonly agent_decision?: string;
|
|
21977
|
+
readonly agent_reasoning?: string;
|
|
21978
|
+
readonly created_at: string;
|
|
21979
|
+
readonly updated_at: string;
|
|
21980
|
+
}
|
|
21981
|
+
interface SellabilityPendingVerificationDeleted {
|
|
21982
|
+
readonly discriminator: 'sellability_pending_verification_deleted';
|
|
21983
|
+
readonly event_id: string;
|
|
21984
|
+
readonly timestamp: string;
|
|
21985
|
+
readonly id: string;
|
|
21986
|
+
}
|
|
21987
|
+
interface SellabilityPendingVerificationUpserted {
|
|
21988
|
+
readonly discriminator: 'sellability_pending_verification_upserted';
|
|
21989
|
+
readonly event_id: string;
|
|
21990
|
+
readonly timestamp: string;
|
|
21991
|
+
readonly sellability_pending_verification: io.flow.internal.v0.models.SellabilityPendingVerification;
|
|
21992
|
+
}
|
|
21993
|
+
interface ServiceFees {
|
|
21994
|
+
readonly ratecard: io.flow.internal.v0.models.RatecardInternalSummary;
|
|
21995
|
+
readonly service_fees: io.flow.ratecard.v0.unions.ServiceFee[];
|
|
21996
|
+
}
|
|
21997
|
+
interface ServiceFeesForm {
|
|
21998
|
+
readonly service_fees: io.flow.ratecard.v0.unions.ServiceFee[];
|
|
21999
|
+
}
|
|
21533
22000
|
interface SessionOrderData {
|
|
21534
22001
|
readonly id: string;
|
|
21535
22002
|
readonly session: io.flow.common.v0.models.SessionReference;
|
|
@@ -21558,6 +22025,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21558
22025
|
readonly rate_level_key?: string;
|
|
21559
22026
|
readonly cost_estimate_source: io.flow.label.v0.enums.CostEstimateSource;
|
|
21560
22027
|
readonly cost: io.flow.common.v0.models.Money;
|
|
22028
|
+
readonly dim_factor: number;
|
|
21561
22029
|
}
|
|
21562
22030
|
interface ShippingCostDeleted {
|
|
21563
22031
|
readonly discriminator: 'shipping_cost_deleted';
|
|
@@ -21637,25 +22105,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21637
22105
|
readonly line_items?: io.flow.common.v0.models.LineItemForm[];
|
|
21638
22106
|
readonly include_unpublished?: boolean;
|
|
21639
22107
|
}
|
|
21640
|
-
interface ShopifyAdaptivePricingCoefficients {
|
|
21641
|
-
readonly id: string;
|
|
21642
|
-
readonly organization_id: string;
|
|
21643
|
-
readonly destination_coefficients: io.flow.shopify.markets.v0.models.ShopifyAdaptivePricingDestinationCoefficients[];
|
|
21644
|
-
}
|
|
21645
|
-
interface ShopifyAdaptivePricingCoefficientsDeleted {
|
|
21646
|
-
readonly discriminator: 'shopify_adaptive_pricing_coefficients_deleted';
|
|
21647
|
-
readonly event_id: string;
|
|
21648
|
-
readonly timestamp: string;
|
|
21649
|
-
readonly organization: string;
|
|
21650
|
-
readonly id: string;
|
|
21651
|
-
}
|
|
21652
|
-
interface ShopifyAdaptivePricingCoefficientsUpserted {
|
|
21653
|
-
readonly discriminator: 'shopify_adaptive_pricing_coefficients_upserted';
|
|
21654
|
-
readonly event_id: string;
|
|
21655
|
-
readonly timestamp: string;
|
|
21656
|
-
readonly organization: string;
|
|
21657
|
-
readonly shopify_adaptive_pricing_coefficients: io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficients;
|
|
21658
|
-
}
|
|
21659
22108
|
interface ShopifyAddress {
|
|
21660
22109
|
readonly address1: string;
|
|
21661
22110
|
readonly city: string;
|
|
@@ -21688,6 +22137,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21688
22137
|
readonly name?: string;
|
|
21689
22138
|
readonly phone?: string;
|
|
21690
22139
|
}
|
|
22140
|
+
interface ShopifyCost {
|
|
22141
|
+
readonly subtotal: io.flow.internal.v0.models.ShopifyMoney;
|
|
22142
|
+
readonly tax: io.flow.internal.v0.models.ShopifyMoney;
|
|
22143
|
+
readonly total: io.flow.internal.v0.models.ShopifyMoney;
|
|
22144
|
+
}
|
|
21691
22145
|
interface ShopifyDispute {
|
|
21692
22146
|
readonly id: string;
|
|
21693
22147
|
readonly organization_id: string;
|
|
@@ -22007,6 +22461,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22007
22461
|
interface ShopifyMerchantMarketCountry {
|
|
22008
22462
|
readonly code: string;
|
|
22009
22463
|
readonly actively_managing: boolean;
|
|
22464
|
+
readonly enabled: boolean;
|
|
22010
22465
|
}
|
|
22011
22466
|
interface ShopifyMerchantMarkets {
|
|
22012
22467
|
readonly id: string;
|
|
@@ -22314,7 +22769,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22314
22769
|
}
|
|
22315
22770
|
interface ShopifyShipmentRateAvailable {
|
|
22316
22771
|
readonly carrier_service_id: string;
|
|
22317
|
-
readonly total_charges: io.flow.internal.v0.models.
|
|
22772
|
+
readonly total_charges: io.flow.internal.v0.models.ShopifyCost;
|
|
22318
22773
|
readonly charges: io.flow.internal.v0.models.ShopifyShipmentRateCharge[];
|
|
22319
22774
|
readonly shipment_options: io.flow.internal.v0.models.ShopifyShipmentRateOption[];
|
|
22320
22775
|
readonly expected_delivery_date?: string;
|
|
@@ -22323,11 +22778,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22323
22778
|
}
|
|
22324
22779
|
interface ShopifyShipmentRateCharge {
|
|
22325
22780
|
readonly code: io.flow.internal.v0.enums.ShopifyChargeCode;
|
|
22326
|
-
readonly cost: io.flow.internal.v0.models.
|
|
22781
|
+
readonly cost: io.flow.internal.v0.models.ShopifyCost;
|
|
22327
22782
|
}
|
|
22328
22783
|
interface ShopifyShipmentRateOption {
|
|
22329
22784
|
readonly code: io.flow.internal.v0.enums.ShopifyShipmentOptionCode;
|
|
22330
|
-
readonly cost: io.flow.internal.v0.models.
|
|
22785
|
+
readonly cost: io.flow.internal.v0.models.ShopifyCost;
|
|
22331
22786
|
readonly optional?: boolean;
|
|
22332
22787
|
}
|
|
22333
22788
|
interface ShopifyShipmentRatePackage {
|
|
@@ -22366,11 +22821,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22366
22821
|
readonly carrier_account_reference_id: string;
|
|
22367
22822
|
readonly byoa: boolean;
|
|
22368
22823
|
}
|
|
22369
|
-
interface ShopifyShipmentRateTotalCharges {
|
|
22370
|
-
readonly subtotal: io.flow.internal.v0.models.ShopifyMoney;
|
|
22371
|
-
readonly tax: io.flow.internal.v0.models.ShopifyMoney;
|
|
22372
|
-
readonly total: io.flow.internal.v0.models.ShopifyMoney;
|
|
22373
|
-
}
|
|
22374
22824
|
interface ShopifyShipmentRateUnavailable {
|
|
22375
22825
|
readonly carrier_service_id: string;
|
|
22376
22826
|
readonly reasons: io.flow.internal.v0.models.ShopifyShipmentRateReason[];
|
|
@@ -23105,6 +23555,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23105
23555
|
interface TaxonomyCategoryHs6Ref {
|
|
23106
23556
|
readonly id: string;
|
|
23107
23557
|
readonly taxonomy_category: string;
|
|
23558
|
+
readonly taxonomy_category_id?: string;
|
|
23108
23559
|
readonly hs6: string;
|
|
23109
23560
|
readonly updated_by_user_id: string;
|
|
23110
23561
|
}
|
|
@@ -23561,6 +24012,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23561
24012
|
interface UnphrasedProductsExport {
|
|
23562
24013
|
readonly message: string;
|
|
23563
24014
|
}
|
|
24015
|
+
interface UnserviceableTaxonomyCategory {
|
|
24016
|
+
readonly id: string;
|
|
24017
|
+
readonly taxonomy_category: string;
|
|
24018
|
+
readonly taxonomy_category_id?: string;
|
|
24019
|
+
readonly updated_by_user_id: string;
|
|
24020
|
+
}
|
|
24021
|
+
interface UnserviceableTaxonomyCategoryDeleted {
|
|
24022
|
+
readonly discriminator: 'unserviceable_taxonomy_category_deleted';
|
|
24023
|
+
readonly event_id: string;
|
|
24024
|
+
readonly timestamp: string;
|
|
24025
|
+
readonly id: string;
|
|
24026
|
+
}
|
|
24027
|
+
interface UnserviceableTaxonomyCategoryUpserted {
|
|
24028
|
+
readonly discriminator: 'unserviceable_taxonomy_category_upserted';
|
|
24029
|
+
readonly event_id: string;
|
|
24030
|
+
readonly timestamp: string;
|
|
24031
|
+
readonly unserviceable_taxonomy_category: io.flow.internal.v0.models.UnserviceableTaxonomyCategory;
|
|
24032
|
+
}
|
|
23564
24033
|
interface Ups {
|
|
23565
24034
|
readonly discriminator: 'ups';
|
|
23566
24035
|
readonly client_id: string;
|
|
@@ -23709,6 +24178,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23709
24178
|
declare namespace io.flow.internal.v0.unions {
|
|
23710
24179
|
type AdjustmentAmount = io.flow.internal.v0.models.AdjustmentAmountPercentage | io.flow.internal.v0.models.AdjustmentAmountFixed;
|
|
23711
24180
|
type AdjustmentDetails = io.flow.internal.v0.models.AdjustmentAmountPercentage | io.flow.internal.v0.models.AdjustmentAmountFixed | io.flow.internal.v0.models.AdjustmentDetailsProcessingTransaction;
|
|
24181
|
+
type AiOutput = io.flow.internal.v0.models.PvReviewOutput | io.flow.internal.v0.models.DgReviewOutput | io.flow.internal.v0.models.PcReviewOutput;
|
|
24182
|
+
type AiReviewContext = io.flow.internal.v0.models.PvReviewContext | io.flow.internal.v0.models.DgReviewContext | io.flow.internal.v0.models.PcReviewContext;
|
|
23712
24183
|
type AuthorizationPayload = io.flow.internal.v0.models.ApplePayAuthorizationPayload | io.flow.internal.v0.models.PaypalAuthorizationPayload;
|
|
23713
24184
|
type AuthorizedOrderCharge = io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
23714
24185
|
type CalculatorStamp = io.flow.internal.v0.models.MessageStamp | io.flow.internal.v0.models.CalculationStep;
|
|
@@ -23734,7 +24205,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23734
24205
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
23735
24206
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
|
|
23736
24207
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
23737
|
-
type Event = 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.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.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.RatecardLanesImportRequest | 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.ShopifyAdaptivePricingCoefficientsUpserted | io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsDeleted | 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.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
24208
|
+
type Event = io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.AiReviewBatchSubmitted | io.flow.internal.v0.models.AiReviewResultUpserted | io.flow.internal.v0.models.AiReviewResultDeleted | io.flow.internal.v0.models.AiReviewRequestFailed | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.FulfillmentStatusUpserted | io.flow.internal.v0.models.FulfillmentStatusDeleted | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.SalesPaymentRecordUpserted | io.flow.internal.v0.models.SalesPaymentRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.ChannelShopStatisticsUpserted | io.flow.internal.v0.models.ChannelShopStatisticsDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.ShippingCostUpserted | io.flow.internal.v0.models.ShippingCostDeleted | io.flow.internal.v0.models.MorCostUpserted | io.flow.internal.v0.models.MorCostDeleted | io.flow.internal.v0.models.FlatRateLabelReversalUpserted | io.flow.internal.v0.models.FlatRateLabelReversalDeleted | io.flow.internal.v0.models.FlatRateLabelSubsidyUpserted | io.flow.internal.v0.models.FlatRateLabelSubsidyDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputUpserted | io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputDeleted | io.flow.internal.v0.models.OutboundShippingCostUpserted | io.flow.internal.v0.models.OutboundShippingCostDeleted | io.flow.internal.v0.models.GuaranteedShippingPublishedOutputUpserted | io.flow.internal.v0.models.GuaranteedShippingPublishedOutputDeleted | io.flow.internal.v0.models.GuaranteedShippingSettingsUpserted | io.flow.internal.v0.models.GuaranteedShippingSettingsDeleted | io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateUpserted | io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.MerchantOverrideUpserted | io.flow.internal.v0.models.MerchantOverrideDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelCreationJobUpserted | io.flow.internal.v0.models.LabelCreationJobDeleted | io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted | io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.PartnerRequestUpserted | io.flow.internal.v0.models.PartnerRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.OrderRefundTransactionUpserted | io.flow.internal.v0.models.OrderRefundTransactionDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.PreonboardingSellabilityResultInserted | io.flow.internal.v0.models.PreonboardingSellabilityResultUpdated | io.flow.internal.v0.models.PreonboardingSellabilityResultDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.ProductRestrictionStateInserted | io.flow.internal.v0.models.ProductRestrictionStateUpdated | io.flow.internal.v0.models.ProductRestrictionStateDeleted | io.flow.internal.v0.models.ProductSellabilityResultInserted | io.flow.internal.v0.models.ProductSellabilityResultUpdated | io.flow.internal.v0.models.ProductSellabilityResultDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvUpserted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvDeleted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsUpserted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted | io.flow.internal.v0.models.PreonboardingMerchantUpserted | io.flow.internal.v0.models.PreonboardingMerchantDeleted | io.flow.internal.v0.models.UnserviceableTaxonomyCategoryUpserted | io.flow.internal.v0.models.UnserviceableTaxonomyCategoryDeleted | io.flow.internal.v0.models.SellabilityPendingVerificationUpserted | io.flow.internal.v0.models.SellabilityPendingVerificationDeleted | io.flow.internal.v0.models.ShopifyHs10CodesUpserted | io.flow.internal.v0.models.ShopifyHs10CodesDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.internal.v0.models.ShopifyOrderTransactionUpserted | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted | io.flow.internal.v0.models.ShopifyTestOrderUpserted | io.flow.internal.v0.models.ShopifyTestOrderDeleted | io.flow.internal.v0.models.ShopifyMerchantMarketsUpserted | io.flow.internal.v0.models.ShopifyMerchantMarketsDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.ShopifyMerchantPlanUpserted | io.flow.internal.v0.models.ShopifyMerchantPlanDeleted | io.flow.internal.v0.models.ShopifyDisputeUpserted | io.flow.internal.v0.models.ShopifyDisputeDeleted | io.flow.internal.v0.models.ShopifyReportFileUpserted | io.flow.internal.v0.models.ShopifyReportFileDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.B2BTaxTransactionUpserted | io.flow.internal.v0.models.B2BTaxTransactionDeleted | io.flow.internal.v0.models.GabrielItemUpserted | io.flow.internal.v0.models.GabrielItemDeleted | io.flow.internal.v0.models.ChenglinItemUpserted | io.flow.internal.v0.models.ChenglinItemDeleted | io.flow.internal.v0.models.BojanaItemUpserted | io.flow.internal.v0.models.BojanaItemDeleted | io.flow.internal.v0.models.RaveenaItemUpserted | io.flow.internal.v0.models.RaveenaItemDeleted | io.flow.internal.v0.models.MaheshItemUpserted | io.flow.internal.v0.models.MaheshItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
23738
24209
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
23739
24210
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
23740
24211
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -23777,7 +24248,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23777
24248
|
type TariffEligibilityData = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData;
|
|
23778
24249
|
type TariffEligibilityForm = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
|
|
23779
24250
|
type TaskData = io.flow.internal.v0.models.TaskProcessQueuedEvent | io.flow.internal.v0.models.TaskSummarizeCode | io.flow.internal.v0.models.TaskItemUpserted | io.flow.internal.v0.models.TaskImport;
|
|
23780
|
-
type TaskMetadata = io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingPendingOrderMetadata | io.flow.internal.v0.models.TaxDutyReasonCodeMetadata | io.flow.internal.v0.models.AccountingReturnMetadata | io.flow.internal.v0.models.NonL4LTaxDutyFxFeeMetadata | io.flow.internal.v0.models.ChannelTransactionTriggerMetadata | io.flow.internal.v0.models.B2BFeeMorTaxTriggerMetadata | io.flow.internal.v0.models.B2BFeeShippingTaxTriggerMetadata;
|
|
24251
|
+
type TaskMetadata = io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingPendingOrderMetadata | io.flow.internal.v0.models.TaxDutyReasonCodeMetadata | io.flow.internal.v0.models.AccountingReturnMetadata | io.flow.internal.v0.models.NonL4LTaxDutyFxFeeMetadata | io.flow.internal.v0.models.ChannelTransactionTriggerMetadata | io.flow.internal.v0.models.B2BFeeMorTaxTriggerMetadata | io.flow.internal.v0.models.B2BFeeShippingTaxTriggerMetadata | io.flow.internal.v0.models.RemediateTaxDutyMetadata;
|
|
23781
24252
|
type TaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
23782
24253
|
type Tracker = io.flow.internal.v0.models.GoogleAnalytics | io.flow.internal.v0.models.GoogleGlobalSiteTag | io.flow.internal.v0.models.GoogleTagManager | io.flow.internal.v0.models.FacebookPixel | io.flow.internal.v0.models.SnapchatPixel;
|
|
23783
24254
|
type Transaction = io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction | io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction | io.flow.internal.v0.models.GeRevenueShareTransaction | io.flow.internal.v0.models.MerchantFeeTransaction | io.flow.internal.v0.models.FlatRateLabelTransaction;
|
|
@@ -23819,15 +24290,10 @@ export declare type AccountUpsertedV2 = io.flow.internal.v0.models.AccountUpsert
|
|
|
23819
24290
|
export declare type AccountingPendingOrderMetadata = io.flow.internal.v0.models.AccountingPendingOrderMetadata;
|
|
23820
24291
|
export declare type AccountingReturnMetadata = io.flow.internal.v0.models.AccountingReturnMetadata;
|
|
23821
24292
|
export declare type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
|
|
23822
|
-
export declare type AdaptivePricingDestinationUpdate = io.flow.internal.v0.models.AdaptivePricingDestinationUpdate;
|
|
23823
|
-
export declare type AdaptivePricingUpdate = io.flow.internal.v0.models.AdaptivePricingUpdate;
|
|
23824
24293
|
export declare type AdaptiveShippingOrderGuarantee = io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
23825
24294
|
export declare type AdaptiveShippingOrderGuaranteeDeleted = io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted;
|
|
23826
24295
|
export declare type AdaptiveShippingOrderGuaranteeState = io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState;
|
|
23827
24296
|
export declare type AdaptiveShippingOrderGuaranteeUpserted = io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted;
|
|
23828
|
-
export declare type AdaptiveShippingRate = io.flow.internal.v0.models.AdaptiveShippingRate;
|
|
23829
|
-
export declare type AdaptiveShippingRateDeleted = io.flow.internal.v0.models.AdaptiveShippingRateDeleted;
|
|
23830
|
-
export declare type AdaptiveShippingRateUpserted = io.flow.internal.v0.models.AdaptiveShippingRateUpserted;
|
|
23831
24297
|
export declare type AdditionalImportTax = io.flow.internal.v0.models.AdditionalImportTax;
|
|
23832
24298
|
export declare type AdjustmentAmount = io.flow.internal.v0.unions.AdjustmentAmount;
|
|
23833
24299
|
export declare type AdjustmentAmountFixed = io.flow.internal.v0.models.AdjustmentAmountFixed;
|
|
@@ -23885,6 +24351,17 @@ export declare type AfterpayRefund = io.flow.internal.v0.models.AfterpayRefund;
|
|
|
23885
24351
|
export declare type AfterpayRefundDeleted = io.flow.internal.v0.models.AfterpayRefundDeleted;
|
|
23886
24352
|
export declare type AfterpayRefundUpserted = io.flow.internal.v0.models.AfterpayRefundUpserted;
|
|
23887
24353
|
export declare type AftershipWebhook = io.flow.internal.v0.models.AftershipWebhook;
|
|
24354
|
+
export declare type AiOutput = io.flow.internal.v0.unions.AiOutput;
|
|
24355
|
+
export declare type AiReviewBatchSubmitted = io.flow.internal.v0.models.AiReviewBatchSubmitted;
|
|
24356
|
+
export declare type AiReviewConsumer = io.flow.internal.v0.enums.AiReviewConsumer;
|
|
24357
|
+
export declare type AiReviewContext = io.flow.internal.v0.unions.AiReviewContext;
|
|
24358
|
+
export declare type AiReviewFailedItem = io.flow.internal.v0.models.AiReviewFailedItem;
|
|
24359
|
+
export declare type AiReviewFailureReason = io.flow.internal.v0.enums.AiReviewFailureReason;
|
|
24360
|
+
export declare type AiReviewRequestFailed = io.flow.internal.v0.models.AiReviewRequestFailed;
|
|
24361
|
+
export declare type AiReviewResult = io.flow.internal.v0.models.AiReviewResult;
|
|
24362
|
+
export declare type AiReviewResultDeleted = io.flow.internal.v0.models.AiReviewResultDeleted;
|
|
24363
|
+
export declare type AiReviewResultUpserted = io.flow.internal.v0.models.AiReviewResultUpserted;
|
|
24364
|
+
export declare type AiReviewType = io.flow.internal.v0.enums.AiReviewType;
|
|
23888
24365
|
export declare type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
|
|
23889
24366
|
export declare type AllocationItemReference = io.flow.internal.v0.models.AllocationItemReference;
|
|
23890
24367
|
export declare type AllowedLabels = io.flow.internal.v0.models.AllowedLabels;
|
|
@@ -24231,6 +24708,16 @@ export declare type ConsoleLabelRequestForm = io.flow.internal.v0.models.Console
|
|
|
24231
24708
|
export declare type ConsoleLabelValidationForm = io.flow.internal.v0.unions.ConsoleLabelValidationForm;
|
|
24232
24709
|
export declare type ConsoleMarkUnresolvableForm = io.flow.internal.v0.models.ConsoleMarkUnresolvableForm;
|
|
24233
24710
|
export declare type CourthouseProductSummary = io.flow.internal.v0.models.CourthouseProductSummary;
|
|
24711
|
+
export declare type CpscCertificateType = io.flow.internal.v0.enums.CpscCertificateType;
|
|
24712
|
+
export declare type CpscFileType = io.flow.internal.v0.enums.CpscFileType;
|
|
24713
|
+
export declare type CpscLabType = io.flow.internal.v0.enums.CpscLabType;
|
|
24714
|
+
export declare type CpscLotNumberAssignedBy = io.flow.internal.v0.enums.CpscLotNumberAssignedBy;
|
|
24715
|
+
export declare type CpscPointOfContactType = io.flow.internal.v0.enums.CpscPointOfContactType;
|
|
24716
|
+
export declare type CpscPrimaryProductIdType = io.flow.internal.v0.enums.CpscPrimaryProductIdType;
|
|
24717
|
+
export declare type CpscProductRegistration = io.flow.internal.v0.models.CpscProductRegistration;
|
|
24718
|
+
export declare type CpscQueueEnvelope = io.flow.internal.v0.models.CpscQueueEnvelope;
|
|
24719
|
+
export declare type CpscQueueMessage = io.flow.internal.v0.models.CpscQueueMessage;
|
|
24720
|
+
export declare type CpscYesNo = io.flow.internal.v0.enums.CpscYesNo;
|
|
24234
24721
|
export declare type CrossdockTrackingStatus = io.flow.internal.v0.enums.CrossdockTrackingStatus;
|
|
24235
24722
|
export declare type CryptoAccount = io.flow.internal.v0.models.CryptoAccount;
|
|
24236
24723
|
export declare type CryptoAccountModificationForm = io.flow.internal.v0.models.CryptoAccountModificationForm;
|
|
@@ -24291,6 +24778,9 @@ export declare type DeliveredDutyPreferenceForm = io.flow.internal.v0.models.Del
|
|
|
24291
24778
|
export declare type DeminimisAdjustmentType = io.flow.internal.v0.enums.DeminimisAdjustmentType;
|
|
24292
24779
|
export declare type DestinationDutyComparison = io.flow.internal.v0.models.DestinationDutyComparison;
|
|
24293
24780
|
export declare type DestinationError = io.flow.internal.v0.models.DestinationError;
|
|
24781
|
+
export declare type DgClassAssessment = io.flow.internal.v0.models.DgClassAssessment;
|
|
24782
|
+
export declare type DgReviewContext = io.flow.internal.v0.models.DgReviewContext;
|
|
24783
|
+
export declare type DgReviewOutput = io.flow.internal.v0.models.DgReviewOutput;
|
|
24294
24784
|
export declare type Dhl = io.flow.internal.v0.models.Dhl;
|
|
24295
24785
|
export declare type DhlEcommerce = io.flow.internal.v0.models.DhlEcommerce;
|
|
24296
24786
|
export declare type DimensionEstimateOpsInput = io.flow.internal.v0.models.DimensionEstimateOpsInput;
|
|
@@ -24409,6 +24899,7 @@ export declare type ExternalFulfillmentProof = io.flow.internal.v0.models.Extern
|
|
|
24409
24899
|
export declare type ExternalFulfillmentProofForm = io.flow.internal.v0.models.ExternalFulfillmentProofForm;
|
|
24410
24900
|
export declare type ExternalFulfillmentProofTracking = io.flow.internal.v0.models.ExternalFulfillmentProofTracking;
|
|
24411
24901
|
export declare type ExternalFulfillmentProofTrackingForm = io.flow.internal.v0.models.ExternalFulfillmentProofTrackingForm;
|
|
24902
|
+
export declare type ExternalOrderSummary = io.flow.internal.v0.models.ExternalOrderSummary;
|
|
24412
24903
|
export declare type ExternalRatecardLink = io.flow.internal.v0.models.ExternalRatecardLink;
|
|
24413
24904
|
export declare type ExternalRatecardLinkResponse = io.flow.internal.v0.models.ExternalRatecardLinkResponse;
|
|
24414
24905
|
export declare type FacebookPixel = io.flow.internal.v0.models.FacebookPixel;
|
|
@@ -24456,9 +24947,13 @@ export declare type FiservMerchant = io.flow.internal.v0.models.FiservMerchant;
|
|
|
24456
24947
|
export declare type FiservMerchantModificationForm = io.flow.internal.v0.models.FiservMerchantModificationForm;
|
|
24457
24948
|
export declare type FiservMerchantPutForm = io.flow.internal.v0.models.FiservMerchantPutForm;
|
|
24458
24949
|
export declare type FlatRate = io.flow.internal.v0.models.FlatRate;
|
|
24950
|
+
export declare type FlatRateLabelGuaranteeStatus = io.flow.internal.v0.enums.FlatRateLabelGuaranteeStatus;
|
|
24459
24951
|
export declare type FlatRateLabelReversal = io.flow.internal.v0.models.FlatRateLabelReversal;
|
|
24460
24952
|
export declare type FlatRateLabelReversalDeleted = io.flow.internal.v0.models.FlatRateLabelReversalDeleted;
|
|
24461
24953
|
export declare type FlatRateLabelReversalUpserted = io.flow.internal.v0.models.FlatRateLabelReversalUpserted;
|
|
24954
|
+
export declare type FlatRateLabelSubsidy = io.flow.internal.v0.models.FlatRateLabelSubsidy;
|
|
24955
|
+
export declare type FlatRateLabelSubsidyDeleted = io.flow.internal.v0.models.FlatRateLabelSubsidyDeleted;
|
|
24956
|
+
export declare type FlatRateLabelSubsidyUpserted = io.flow.internal.v0.models.FlatRateLabelSubsidyUpserted;
|
|
24462
24957
|
export declare type FlatRateLabelTransaction = io.flow.internal.v0.models.FlatRateLabelTransaction;
|
|
24463
24958
|
export declare type FlatRateLabelTransactionType = io.flow.internal.v0.enums.FlatRateLabelTransactionType;
|
|
24464
24959
|
export declare type FlexeWebhook = io.flow.internal.v0.models.FlexeWebhook;
|
|
@@ -24565,6 +25060,19 @@ export declare type GoogleShoppingAccountParameters = io.flow.internal.v0.models
|
|
|
24565
25060
|
export declare type GoogleShoppingSetting = io.flow.internal.v0.models.GoogleShoppingSetting;
|
|
24566
25061
|
export declare type GoogleTagManager = io.flow.internal.v0.models.GoogleTagManager;
|
|
24567
25062
|
export declare type GraphqlServiceTypes = io.flow.internal.v0.enums.GraphqlServiceTypes;
|
|
25063
|
+
export declare type GuaranteedShippingCalibratedOutput = io.flow.internal.v0.models.GuaranteedShippingCalibratedOutput;
|
|
25064
|
+
export declare type GuaranteedShippingCalibratedOutputDeleted = io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputDeleted;
|
|
25065
|
+
export declare type GuaranteedShippingCalibratedOutputUpserted = io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputUpserted;
|
|
25066
|
+
export declare type GuaranteedShippingPublishedOutput = io.flow.internal.v0.models.GuaranteedShippingPublishedOutput;
|
|
25067
|
+
export declare type GuaranteedShippingPublishedOutputDeleted = io.flow.internal.v0.models.GuaranteedShippingPublishedOutputDeleted;
|
|
25068
|
+
export declare type GuaranteedShippingPublishedOutputUpserted = io.flow.internal.v0.models.GuaranteedShippingPublishedOutputUpserted;
|
|
25069
|
+
export declare type GuaranteedShippingSettings = io.flow.internal.v0.models.GuaranteedShippingSettings;
|
|
25070
|
+
export declare type GuaranteedShippingSettingsDeleted = io.flow.internal.v0.models.GuaranteedShippingSettingsDeleted;
|
|
25071
|
+
export declare type GuaranteedShippingSettingsDestinationUpdate = io.flow.internal.v0.models.GuaranteedShippingSettingsDestinationUpdate;
|
|
25072
|
+
export declare type GuaranteedShippingSettingsUpdate = io.flow.internal.v0.models.GuaranteedShippingSettingsUpdate;
|
|
25073
|
+
export declare type GuaranteedShippingSettingsUpdateDeleted = io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateDeleted;
|
|
25074
|
+
export declare type GuaranteedShippingSettingsUpdateUpserted = io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateUpserted;
|
|
25075
|
+
export declare type GuaranteedShippingSettingsUpserted = io.flow.internal.v0.models.GuaranteedShippingSettingsUpserted;
|
|
24568
25076
|
export declare type HarmonizationClassificationStatisticsData = io.flow.internal.v0.models.HarmonizationClassificationStatisticsData;
|
|
24569
25077
|
export declare type HarmonizationClassificationStatisticsPublished = io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished;
|
|
24570
25078
|
export declare type HarmonizationCodesImport = io.flow.internal.v0.models.HarmonizationCodesImport;
|
|
@@ -24621,6 +25129,9 @@ export declare type InvoiceInfoForm = io.flow.internal.v0.models.InvoiceInfoForm
|
|
|
24621
25129
|
export declare type InvoiceLine = io.flow.internal.v0.models.InvoiceLine;
|
|
24622
25130
|
export declare type InvoiceLineItem = io.flow.internal.v0.models.InvoiceLineItem;
|
|
24623
25131
|
export declare type InvoiceTransaction = io.flow.internal.v0.models.InvoiceTransaction;
|
|
25132
|
+
export declare type Issuer = io.flow.internal.v0.models.Issuer;
|
|
25133
|
+
export declare type IssuerDeleted = io.flow.internal.v0.models.IssuerDeleted;
|
|
25134
|
+
export declare type IssuerUpserted = io.flow.internal.v0.models.IssuerUpserted;
|
|
24624
25135
|
export declare type ItemClassification = io.flow.internal.v0.models.ItemClassification;
|
|
24625
25136
|
export declare type ItemClassificationAction = io.flow.internal.v0.enums.ItemClassificationAction;
|
|
24626
25137
|
export declare type ItemClassificationForm = io.flow.internal.v0.models.ItemClassificationForm;
|
|
@@ -24637,6 +25148,11 @@ export declare type ItemHarmonization = io.flow.internal.v0.models.ItemHarmoniza
|
|
|
24637
25148
|
export declare type ItemHarmonizationDeleted = io.flow.internal.v0.models.ItemHarmonizationDeleted;
|
|
24638
25149
|
export declare type ItemHarmonizationStatus = io.flow.internal.v0.enums.ItemHarmonizationStatus;
|
|
24639
25150
|
export declare type ItemHarmonizationUpserted = io.flow.internal.v0.models.ItemHarmonizationUpserted;
|
|
25151
|
+
export declare type ItemHs6Override = io.flow.internal.v0.models.ItemHs6Override;
|
|
25152
|
+
export declare type ItemHs6OverrideForm = io.flow.internal.v0.models.ItemHs6OverrideForm;
|
|
25153
|
+
export declare type ItemHs6OverrideRejection = io.flow.internal.v0.models.ItemHs6OverrideRejection;
|
|
25154
|
+
export declare type ItemHs6OverrideResult = io.flow.internal.v0.models.ItemHs6OverrideResult;
|
|
25155
|
+
export declare type ItemHs6OverridesForm = io.flow.internal.v0.models.ItemHs6OverridesForm;
|
|
24640
25156
|
export declare type ItemQuantityAction = io.flow.internal.v0.enums.ItemQuantityAction;
|
|
24641
25157
|
export declare type ItemQueryResponse = io.flow.internal.v0.models.ItemQueryResponse;
|
|
24642
25158
|
export declare type ItemRestriction = io.flow.internal.v0.models.ItemRestriction;
|
|
@@ -24734,8 +25250,10 @@ export declare type LoyaltyProgramMessage = io.flow.internal.v0.models.LoyaltyPr
|
|
|
24734
25250
|
export declare type LoyaltyProgramReward = io.flow.internal.v0.models.LoyaltyProgramReward;
|
|
24735
25251
|
export declare type LoyaltyProgramRewards = io.flow.internal.v0.models.LoyaltyProgramRewards;
|
|
24736
25252
|
export declare type MaheshItem = io.flow.internal.v0.models.MaheshItem;
|
|
25253
|
+
export declare type MaheshItemDeleted = io.flow.internal.v0.models.MaheshItemDeleted;
|
|
24737
25254
|
export declare type MaheshItemForm = io.flow.internal.v0.models.MaheshItemForm;
|
|
24738
25255
|
export declare type MaheshItemType = io.flow.internal.v0.enums.MaheshItemType;
|
|
25256
|
+
export declare type MaheshItemUpserted = io.flow.internal.v0.models.MaheshItemUpserted;
|
|
24739
25257
|
export declare type MailClass = io.flow.internal.v0.enums.MailClass;
|
|
24740
25258
|
export declare type MainTransaction = io.flow.internal.v0.models.MainTransaction;
|
|
24741
25259
|
export declare type MainTransactionDeleted = io.flow.internal.v0.models.MainTransactionDeleted;
|
|
@@ -24854,6 +25372,7 @@ export declare type OrderRevenueRegionDataPoint = io.flow.internal.v0.models.Ord
|
|
|
24854
25372
|
export declare type OrderRevenueTimelineChart = io.flow.internal.v0.models.OrderRevenueTimelineChart;
|
|
24855
25373
|
export declare type OrderRevenueTimelineDataPoint = io.flow.internal.v0.models.OrderRevenueTimelineDataPoint;
|
|
24856
25374
|
export declare type OrderServiceChangeCsvForm = io.flow.internal.v0.models.OrderServiceChangeCsvForm;
|
|
25375
|
+
export declare type OrderSettings = io.flow.internal.v0.models.OrderSettings;
|
|
24857
25376
|
export declare type OrderSummary = io.flow.internal.v0.models.OrderSummary;
|
|
24858
25377
|
export declare type OrderTaxAndDutyInclusivitySetting = io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
24859
25378
|
export declare type OrderTaxAndDutyInclusivitySettingDeleted = io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted;
|
|
@@ -24948,6 +25467,9 @@ export declare type OtherRecordOrderSummaryIdentifiers = io.flow.internal.v0.mod
|
|
|
24948
25467
|
export declare type OtherRecordOrganizationSummary = io.flow.internal.v0.models.OtherRecordOrganizationSummary;
|
|
24949
25468
|
export declare type OtherRecordUpserted = io.flow.internal.v0.models.OtherRecordUpserted;
|
|
24950
25469
|
export declare type OtherRecordWithholdings = io.flow.internal.v0.models.OtherRecordWithholdings;
|
|
25470
|
+
export declare type OutboundShippingCost = io.flow.internal.v0.models.OutboundShippingCost;
|
|
25471
|
+
export declare type OutboundShippingCostDeleted = io.flow.internal.v0.models.OutboundShippingCostDeleted;
|
|
25472
|
+
export declare type OutboundShippingCostUpserted = io.flow.internal.v0.models.OutboundShippingCostUpserted;
|
|
24951
25473
|
export declare type OutputStyle = io.flow.internal.v0.enums.OutputStyle;
|
|
24952
25474
|
export declare type Owner = io.flow.internal.v0.enums.Owner;
|
|
24953
25475
|
export declare type Partner = io.flow.internal.v0.models.Partner;
|
|
@@ -25015,6 +25537,8 @@ export declare type PaypalPaymentDeleted = io.flow.internal.v0.models.PaypalPaym
|
|
|
25015
25537
|
export declare type PaypalPaymentUpserted = io.flow.internal.v0.models.PaypalPaymentUpserted;
|
|
25016
25538
|
export declare type PaypalRefundDeleted = io.flow.internal.v0.models.PaypalRefundDeleted;
|
|
25017
25539
|
export declare type PaypalRefundUpserted = io.flow.internal.v0.models.PaypalRefundUpserted;
|
|
25540
|
+
export declare type PcReviewContext = io.flow.internal.v0.models.PcReviewContext;
|
|
25541
|
+
export declare type PcReviewOutput = io.flow.internal.v0.models.PcReviewOutput;
|
|
25018
25542
|
export declare type PendingBankPayment = io.flow.internal.v0.models.PendingBankPayment;
|
|
25019
25543
|
export declare type PendingBankPaymentDetail = io.flow.internal.v0.models.PendingBankPaymentDetail;
|
|
25020
25544
|
export declare type PendingOrder = io.flow.internal.v0.models.PendingOrder;
|
|
@@ -25112,6 +25636,9 @@ export declare type PspRoutingDistributionRevision = io.flow.internal.v0.models.
|
|
|
25112
25636
|
export declare type PspRoutingDistributionRevisionForm = io.flow.internal.v0.models.PspRoutingDistributionRevisionForm;
|
|
25113
25637
|
export declare type PublicHub = io.flow.internal.v0.models.PublicHub;
|
|
25114
25638
|
export declare type PublicHubForm = io.flow.internal.v0.models.PublicHubForm;
|
|
25639
|
+
export declare type PvDecision = io.flow.internal.v0.enums.PvDecision;
|
|
25640
|
+
export declare type PvReviewContext = io.flow.internal.v0.models.PvReviewContext;
|
|
25641
|
+
export declare type PvReviewOutput = io.flow.internal.v0.models.PvReviewOutput;
|
|
25115
25642
|
export declare type Quote = io.flow.internal.v0.models.Quote;
|
|
25116
25643
|
export declare type QuoteDeleted = io.flow.internal.v0.models.QuoteDeleted;
|
|
25117
25644
|
export declare type QuoteUpserted = io.flow.internal.v0.models.QuoteUpserted;
|
|
@@ -25148,7 +25675,6 @@ export declare type RatecardDimensionEstimateDeleted = io.flow.internal.v0.model
|
|
|
25148
25675
|
export declare type RatecardDimensionEstimateUpserted = io.flow.internal.v0.models.RatecardDimensionEstimateUpserted;
|
|
25149
25676
|
export declare type RatecardInternalServiceFee = io.flow.internal.v0.models.RatecardInternalServiceFee;
|
|
25150
25677
|
export declare type RatecardInternalSummary = io.flow.internal.v0.models.RatecardInternalSummary;
|
|
25151
|
-
export declare type RatecardLanesImportRequest = io.flow.internal.v0.models.RatecardLanesImportRequest;
|
|
25152
25678
|
export declare type RatecardRateLevelDeleted = io.flow.internal.v0.models.RatecardRateLevelDeleted;
|
|
25153
25679
|
export declare type RatecardRateLevelOrganizationDeleted = io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted;
|
|
25154
25680
|
export declare type RatecardRateLevelOrganizationUpserted = io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted;
|
|
@@ -25157,8 +25683,6 @@ export declare type RatecardRateLevelRatecardUpserted = io.flow.internal.v0.mode
|
|
|
25157
25683
|
export declare type RatecardRateLevelUpserted = io.flow.internal.v0.models.RatecardRateLevelUpserted;
|
|
25158
25684
|
export declare type RatecardServiceFeeDeleted = io.flow.internal.v0.models.RatecardServiceFeeDeleted;
|
|
25159
25685
|
export declare type RatecardServiceFeeUpserted = io.flow.internal.v0.models.RatecardServiceFeeUpserted;
|
|
25160
|
-
export declare type RatecardServiceFeesOverride = io.flow.internal.v0.models.RatecardServiceFeesOverride;
|
|
25161
|
-
export declare type RatecardServiceFeesOverrideForm = io.flow.internal.v0.models.RatecardServiceFeesOverrideForm;
|
|
25162
25686
|
export declare type RatesChanged = io.flow.internal.v0.models.RatesChanged;
|
|
25163
25687
|
export declare type RatesNamesSummary = io.flow.internal.v0.models.RatesNamesSummary;
|
|
25164
25688
|
export declare type RaveenaItem = io.flow.internal.v0.models.RaveenaItem;
|
|
@@ -25173,6 +25697,8 @@ export declare type RedirectReason = io.flow.internal.v0.enums.RedirectReason;
|
|
|
25173
25697
|
export declare type RegisteredExporterTariffEligibilityData = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData;
|
|
25174
25698
|
export declare type RegisteredExporterTariffEligibilityForm = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
|
|
25175
25699
|
export declare type RejectionReason = io.flow.internal.v0.enums.RejectionReason;
|
|
25700
|
+
export declare type RemediateTaxDutyArm = io.flow.internal.v0.enums.RemediateTaxDutyArm;
|
|
25701
|
+
export declare type RemediateTaxDutyMetadata = io.flow.internal.v0.models.RemediateTaxDutyMetadata;
|
|
25176
25702
|
export declare type RemittanceResponsibility = io.flow.internal.v0.models.RemittanceResponsibility;
|
|
25177
25703
|
export declare type Report = io.flow.internal.v0.models.Report;
|
|
25178
25704
|
export declare type ReportAccount = io.flow.internal.v0.models.ReportAccount;
|
|
@@ -25209,11 +25735,13 @@ export declare type ReportingDetails = io.flow.internal.v0.models.ReportingDetai
|
|
|
25209
25735
|
export declare type ReportingFees = io.flow.internal.v0.models.ReportingFees;
|
|
25210
25736
|
export declare type ReportingFreight = io.flow.internal.v0.models.ReportingFreight;
|
|
25211
25737
|
export declare type ReportingFreightGuaranteed = io.flow.internal.v0.models.ReportingFreightGuaranteed;
|
|
25738
|
+
export declare type ReportingFreightSubsidy = io.flow.internal.v0.models.ReportingFreightSubsidy;
|
|
25212
25739
|
export declare type ReportingFulfillment = io.flow.internal.v0.models.ReportingFulfillment;
|
|
25213
25740
|
export declare type ReportingFulfillmentHas = io.flow.internal.v0.models.ReportingFulfillmentHas;
|
|
25214
25741
|
export declare type ReportingFulfillmentIs = io.flow.internal.v0.models.ReportingFulfillmentIs;
|
|
25215
25742
|
export declare type ReportingFulfillmentIsVirtual = io.flow.internal.v0.enums.ReportingFulfillmentIsVirtual;
|
|
25216
25743
|
export declare type ReportingFx = io.flow.internal.v0.models.ReportingFx;
|
|
25744
|
+
export declare type ReportingFxValue = io.flow.internal.v0.models.ReportingFxValue;
|
|
25217
25745
|
export declare type ReportingMerchantBreakdown = io.flow.internal.v0.models.ReportingMerchantBreakdown;
|
|
25218
25746
|
export declare type ReportingMerchantFees = io.flow.internal.v0.models.ReportingMerchantFees;
|
|
25219
25747
|
export declare type ReportingMerchantFreight = io.flow.internal.v0.models.ReportingMerchantFreight;
|
|
@@ -25279,6 +25807,7 @@ export declare type RestrictionRuleEffect = io.flow.internal.v0.models.Restricti
|
|
|
25279
25807
|
export declare type RestrictionRuleEffectDeleted = io.flow.internal.v0.models.RestrictionRuleEffectDeleted;
|
|
25280
25808
|
export declare type RestrictionRuleEffectForm = io.flow.internal.v0.models.RestrictionRuleEffectForm;
|
|
25281
25809
|
export declare type RestrictionRuleEffectUpserted = io.flow.internal.v0.models.RestrictionRuleEffectUpserted;
|
|
25810
|
+
export declare type RestrictionRuleEvaluationMode = io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
|
|
25282
25811
|
export declare type RestrictionRuleExceptionAction = io.flow.internal.v0.enums.RestrictionRuleExceptionAction;
|
|
25283
25812
|
export declare type RestrictionRuleForm = io.flow.internal.v0.models.RestrictionRuleForm;
|
|
25284
25813
|
export declare type RestrictionRuleLaneExemption = io.flow.internal.v0.models.RestrictionRuleLaneExemption;
|
|
@@ -25317,6 +25846,7 @@ export declare type RevenueRecord = io.flow.internal.v0.models.RevenueRecord;
|
|
|
25317
25846
|
export declare type RevenueRecordDeleted = io.flow.internal.v0.models.RevenueRecordDeleted;
|
|
25318
25847
|
export declare type RevenueRecordType = io.flow.internal.v0.enums.RevenueRecordType;
|
|
25319
25848
|
export declare type RevenueRecordUpserted = io.flow.internal.v0.models.RevenueRecordUpserted;
|
|
25849
|
+
export declare type ReviewRequestItem = io.flow.internal.v0.models.ReviewRequestItem;
|
|
25320
25850
|
export declare type RiskCheck = io.flow.internal.v0.enums.RiskCheck;
|
|
25321
25851
|
export declare type RiskEvaluation = io.flow.internal.v0.enums.RiskEvaluation;
|
|
25322
25852
|
export declare type RoutingAccount = io.flow.internal.v0.models.RoutingAccount;
|
|
@@ -25324,6 +25854,8 @@ export declare type RoutingEntity = io.flow.internal.v0.unions.RoutingEntity;
|
|
|
25324
25854
|
export declare type RoutingMerchant = io.flow.internal.v0.models.RoutingMerchant;
|
|
25325
25855
|
export declare type RoutingProcessor = io.flow.internal.v0.models.RoutingProcessor;
|
|
25326
25856
|
export declare type SalesPaymentRecord = io.flow.internal.v0.models.SalesPaymentRecord;
|
|
25857
|
+
export declare type SalesPaymentRecordDeleted = io.flow.internal.v0.models.SalesPaymentRecordDeleted;
|
|
25858
|
+
export declare type SalesPaymentRecordUpserted = io.flow.internal.v0.models.SalesPaymentRecordUpserted;
|
|
25327
25859
|
export declare type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
|
|
25328
25860
|
export declare type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
|
|
25329
25861
|
export declare type ScheduledPayment = io.flow.internal.v0.models.ScheduledPayment;
|
|
@@ -25342,7 +25874,12 @@ export declare type SearchTrackingSummary = io.flow.internal.v0.models.SearchTra
|
|
|
25342
25874
|
export declare type SellabilityCheckResult = io.flow.internal.v0.models.SellabilityCheckResult;
|
|
25343
25875
|
export declare type SellabilityCheckStatus = io.flow.internal.v0.enums.SellabilityCheckStatus;
|
|
25344
25876
|
export declare type SellabilityInternalMatchType = io.flow.internal.v0.enums.SellabilityInternalMatchType;
|
|
25877
|
+
export declare type SellabilityPendingVerification = io.flow.internal.v0.models.SellabilityPendingVerification;
|
|
25878
|
+
export declare type SellabilityPendingVerificationDeleted = io.flow.internal.v0.models.SellabilityPendingVerificationDeleted;
|
|
25879
|
+
export declare type SellabilityPendingVerificationUpserted = io.flow.internal.v0.models.SellabilityPendingVerificationUpserted;
|
|
25345
25880
|
export declare type SellabilityStatus = io.flow.internal.v0.enums.SellabilityStatus;
|
|
25881
|
+
export declare type ServiceFees = io.flow.internal.v0.models.ServiceFees;
|
|
25882
|
+
export declare type ServiceFeesForm = io.flow.internal.v0.models.ServiceFeesForm;
|
|
25346
25883
|
export declare type SessionOrderData = io.flow.internal.v0.models.SessionOrderData;
|
|
25347
25884
|
export declare type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
|
|
25348
25885
|
export declare type SfExpress = io.flow.internal.v0.models.SfExpress;
|
|
@@ -25356,9 +25893,6 @@ export declare type ShippingPricing = io.flow.internal.v0.models.ShippingPricing
|
|
|
25356
25893
|
export declare type ShippingRateEstimateAvailableInternal = io.flow.internal.v0.models.ShippingRateEstimateAvailableInternal;
|
|
25357
25894
|
export declare type ShippingRateEstimateInternal = io.flow.internal.v0.models.ShippingRateEstimateInternal;
|
|
25358
25895
|
export declare type ShippingRateEstimateRequestInternal = io.flow.internal.v0.models.ShippingRateEstimateRequestInternal;
|
|
25359
|
-
export declare type ShopifyAdaptivePricingCoefficients = io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficients;
|
|
25360
|
-
export declare type ShopifyAdaptivePricingCoefficientsDeleted = io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsDeleted;
|
|
25361
|
-
export declare type ShopifyAdaptivePricingCoefficientsUpserted = io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsUpserted;
|
|
25362
25896
|
export declare type ShopifyAddress = io.flow.internal.v0.models.ShopifyAddress;
|
|
25363
25897
|
export declare type ShopifyCallbackError = io.flow.internal.v0.models.ShopifyCallbackError;
|
|
25364
25898
|
export declare type ShopifyCallbackErrorCode = io.flow.internal.v0.enums.ShopifyCallbackErrorCode;
|
|
@@ -25368,6 +25902,7 @@ export declare type ShopifyChannelOrganizationToken = io.flow.internal.v0.models
|
|
|
25368
25902
|
export declare type ShopifyChannelOrganizationTokens = io.flow.internal.v0.models.ShopifyChannelOrganizationTokens;
|
|
25369
25903
|
export declare type ShopifyChargeCode = io.flow.internal.v0.enums.ShopifyChargeCode;
|
|
25370
25904
|
export declare type ShopifyContactDetails = io.flow.internal.v0.models.ShopifyContactDetails;
|
|
25905
|
+
export declare type ShopifyCost = io.flow.internal.v0.models.ShopifyCost;
|
|
25371
25906
|
export declare type ShopifyDeliveryMethodType = io.flow.internal.v0.enums.ShopifyDeliveryMethodType;
|
|
25372
25907
|
export declare type ShopifyDimensionUnit = io.flow.internal.v0.enums.ShopifyDimensionUnit;
|
|
25373
25908
|
export declare type ShopifyDispute = io.flow.internal.v0.models.ShopifyDispute;
|
|
@@ -25496,7 +26031,6 @@ export declare type ShopifyShipmentRateRequest = io.flow.internal.v0.models.Shop
|
|
|
25496
26031
|
export declare type ShopifyShipmentRateResponse = io.flow.internal.v0.models.ShopifyShipmentRateResponse;
|
|
25497
26032
|
export declare type ShopifyShipmentRateShipment = io.flow.internal.v0.models.ShopifyShipmentRateShipment;
|
|
25498
26033
|
export declare type ShopifyShipmentRateShipper = io.flow.internal.v0.models.ShopifyShipmentRateShipper;
|
|
25499
|
-
export declare type ShopifyShipmentRateTotalCharges = io.flow.internal.v0.models.ShopifyShipmentRateTotalCharges;
|
|
25500
26034
|
export declare type ShopifyShipmentRateUnavailable = io.flow.internal.v0.models.ShopifyShipmentRateUnavailable;
|
|
25501
26035
|
export declare type ShopifyShippingLocation = io.flow.internal.v0.models.ShopifyShippingLocation;
|
|
25502
26036
|
export declare type ShopifyShopStatistics = io.flow.internal.v0.models.ShopifyShopStatistics;
|
|
@@ -25701,6 +26235,9 @@ export declare type UnclassifiedProductsPurgeRequest = io.flow.internal.v0.model
|
|
|
25701
26235
|
export declare type UnclassifiedProductsSummary = io.flow.internal.v0.models.UnclassifiedProductsSummary;
|
|
25702
26236
|
export declare type UnharmonizedItemsExport = io.flow.internal.v0.models.UnharmonizedItemsExport;
|
|
25703
26237
|
export declare type UnphrasedProductsExport = io.flow.internal.v0.models.UnphrasedProductsExport;
|
|
26238
|
+
export declare type UnserviceableTaxonomyCategory = io.flow.internal.v0.models.UnserviceableTaxonomyCategory;
|
|
26239
|
+
export declare type UnserviceableTaxonomyCategoryDeleted = io.flow.internal.v0.models.UnserviceableTaxonomyCategoryDeleted;
|
|
26240
|
+
export declare type UnserviceableTaxonomyCategoryUpserted = io.flow.internal.v0.models.UnserviceableTaxonomyCategoryUpserted;
|
|
25704
26241
|
export declare type Ups = io.flow.internal.v0.models.Ups;
|
|
25705
26242
|
export declare type UsdSpotRate = io.flow.internal.v0.models.UsdSpotRate;
|
|
25706
26243
|
export declare type UsdSpotRateDeleted = io.flow.internal.v0.models.UsdSpotRateDeleted;
|