@flowio/types 11.24.136 → 11.24.138
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 +377 -18
- package/dist/api.d.ts +58 -3
- package/package.json +1 -1
- package/src/api-internal.ts +493 -16
- package/src/api.ts +69 -2
package/dist/api-internal.d.ts
CHANGED
|
@@ -3857,6 +3857,7 @@ declare namespace io.flow.label.v0.enums {
|
|
|
3857
3857
|
type OriginLocationSource = 'public_hub_code' | 'merchant_hub_code_override' | 'shopify' | 'fallback_location';
|
|
3858
3858
|
type PackageDimensionsSource = 'provided' | 'item_dimensions_estimated' | 'dimensions_estimated' | 'default_item_dimensions_estimated';
|
|
3859
3859
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
3860
|
+
type ShippingCostGuarantee = 'guaranteed' | 'non_guaranteed';
|
|
3860
3861
|
type ShippingLabelErrorCode = 'generic_error' | 'cancelled_order' | 'carrier_outage' | 'catalog_issue' | 'invalid_destination' | 'invalid_origin' | 'invalid_shipping_parameters' | 'merchant_error' | 'order_not_found' | 'order_processing' | 'restricted_item' | 'unsupported_lane';
|
|
3861
3862
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
3862
3863
|
}
|
|
@@ -3977,6 +3978,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
3977
3978
|
readonly created_at?: string;
|
|
3978
3979
|
readonly updated_at?: string;
|
|
3979
3980
|
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
3981
|
+
readonly shipping_cost_guarantee?: io.flow.label.v0.enums.ShippingCostGuarantee;
|
|
3980
3982
|
}
|
|
3981
3983
|
interface ShippingLabelDocument {
|
|
3982
3984
|
readonly zpl?: string;
|
|
@@ -4967,6 +4969,11 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
4967
4969
|
readonly origin: string;
|
|
4968
4970
|
readonly destination: string;
|
|
4969
4971
|
}
|
|
4972
|
+
interface ShopifyAdaptivePricingCoefficients {
|
|
4973
|
+
readonly id: string;
|
|
4974
|
+
readonly organization_id: string;
|
|
4975
|
+
readonly destination_coefficients: io.flow.shopify.markets.v0.models.ShopifyAdaptivePricingDestinationCoefficients[];
|
|
4976
|
+
}
|
|
4970
4977
|
interface ShopifyHs10Code {
|
|
4971
4978
|
readonly country_code?: string;
|
|
4972
4979
|
readonly code: string;
|
|
@@ -5067,6 +5074,15 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5067
5074
|
readonly id: string;
|
|
5068
5075
|
readonly response: io.flow.shopify.markets.v0.models.ShopifyWebhookResponse;
|
|
5069
5076
|
}
|
|
5077
|
+
interface ShopifyMerchantMarketCountry {
|
|
5078
|
+
readonly code: string;
|
|
5079
|
+
readonly actively_managing: boolean;
|
|
5080
|
+
}
|
|
5081
|
+
interface ShopifyMerchantMarkets {
|
|
5082
|
+
readonly id: string;
|
|
5083
|
+
readonly organization_id: string;
|
|
5084
|
+
readonly countries: io.flow.shopify.markets.internal.v0.models.ShopifyMerchantMarketCountry[];
|
|
5085
|
+
}
|
|
5070
5086
|
interface ShopifyOrderCancelForm {
|
|
5071
5087
|
readonly note?: string;
|
|
5072
5088
|
}
|
|
@@ -5828,6 +5844,9 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
5828
5844
|
interface Count {
|
|
5829
5845
|
readonly count: number;
|
|
5830
5846
|
}
|
|
5847
|
+
interface GraphqlInferredProductCategory {
|
|
5848
|
+
readonly category?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
|
|
5849
|
+
}
|
|
5831
5850
|
interface GraphqlInventoryItem {
|
|
5832
5851
|
readonly id: string;
|
|
5833
5852
|
readonly tracked: boolean;
|
|
@@ -5878,6 +5897,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
5878
5897
|
readonly updatedAt: string;
|
|
5879
5898
|
readonly hasVariantsThatRequiresComponents?: boolean;
|
|
5880
5899
|
readonly category?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
|
|
5900
|
+
readonly inferredProductCategory?: io.flow.shopify.external.v0.models.GraphqlInferredProductCategory;
|
|
5881
5901
|
readonly metafields?: io.flow.shopify.external.v0.models.GraphqlMetafield[];
|
|
5882
5902
|
}
|
|
5883
5903
|
interface GraphqlProductImage {
|
|
@@ -6723,7 +6743,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
6723
6743
|
type ShopifyOrderValueType = 'string' | 'integer';
|
|
6724
6744
|
type ShopifyTaxExemptions = 'EXEMPT_ALL' | 'CA_STATUS_CARD_EXEMPTION' | 'CA_DIPLOMAT_EXEMPTION' | 'CA_BC_RESELLER_EXEMPTION' | 'CA_MB_RESELLER_EXEMPTION' | 'CA_SK_RESELLER_EXEMPTION' | 'CA_BC_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_MB_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_NS_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_PE_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_SK_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_BC_PRODUCTION_AND_MACHINERY_EXEMPTION' | 'CA_SK_PRODUCTION_AND_MACHINERY_EXEMPTION' | 'CA_BC_SUB_CONTRACTOR_EXEMPTION' | 'CA_SK_SUB_CONTRACTOR_EXEMPTION' | 'CA_BC_CONTRACTOR_EXEMPTION' | 'CA_SK_CONTRACTOR_EXEMPTION' | 'CA_ON_PURCHASE_EXEMPTION' | 'CA_MB_FARMER_EXEMPTION' | 'CA_NS_FARMER_EXEMPTION' | 'CA_SK_FARMER_EXEMPTION';
|
|
6725
6745
|
type ShopifyWebhookFormat = 'json' | 'xml';
|
|
6726
|
-
type ShopifyWebhookTopic = 'customers/redact' | 'customers/data_request' | 'locations/create' | 'locations/update' | 'locations/delete' | 'order_transactions/create' | 'orders/cancelled' | 'orders/create' | 'orders/fulfilled' | 'orders/paid' | 'orders/partially_fulfilled' | 'orders/updated' | 'orders/delete' | 'orders/edited' | 'orders/risk_assessment_changed' | 'products/create' | 'products/delete' | 'products/update' | 'inventory_items/create' | 'inventory_items/update' | 'inventory_items/delete' | 'refunds/create' | 'fulfillment_events/create' | 'fulfillment_events/delete' | 'shop/redact' | 'themes/create' | 'themes/publish' | 'themes/update' | 'bulk_operations/finish' | 'shop/update';
|
|
6746
|
+
type ShopifyWebhookTopic = 'customers/redact' | 'customers/data_request' | 'locations/create' | 'locations/update' | 'locations/delete' | 'order_transactions/create' | 'orders/cancelled' | 'orders/create' | 'orders/fulfilled' | 'orders/paid' | 'orders/partially_fulfilled' | 'orders/updated' | 'orders/delete' | 'orders/edited' | 'orders/risk_assessment_changed' | 'products/create' | 'products/delete' | 'products/update' | 'inventory_items/create' | 'inventory_items/update' | 'inventory_items/delete' | 'refunds/create' | 'fulfillment_events/create' | 'fulfillment_events/delete' | 'shop/redact' | 'themes/create' | 'themes/publish' | 'themes/update' | 'bulk_operations/finish' | 'shop/update' | 'managed_markets_adaptive_pricing/updated';
|
|
6727
6747
|
}
|
|
6728
6748
|
declare namespace io.flow.shopify.markets.v0.models {
|
|
6729
6749
|
interface FulfillmentOrderInternationalDuties {
|
|
@@ -6783,6 +6803,16 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6783
6803
|
interface ShopWrapper {
|
|
6784
6804
|
readonly shop: io.flow.shopify.markets.v0.models.Shop;
|
|
6785
6805
|
}
|
|
6806
|
+
interface ShopifyAdaptivePricingDestinationCoefficients {
|
|
6807
|
+
readonly country: string;
|
|
6808
|
+
readonly updated_at: string;
|
|
6809
|
+
readonly tax_and_duty_coefficient: string;
|
|
6810
|
+
readonly fees_coefficient: string;
|
|
6811
|
+
readonly merchant_subsidy_amount: string;
|
|
6812
|
+
readonly merchant_subsidy_currency: string;
|
|
6813
|
+
readonly adaptive_pricing_enabled: boolean;
|
|
6814
|
+
readonly adaptive_shipping_enabled: boolean;
|
|
6815
|
+
}
|
|
6786
6816
|
interface ShopifyAppliedDiscount {
|
|
6787
6817
|
readonly title?: string;
|
|
6788
6818
|
readonly description?: string;
|
|
@@ -7442,7 +7472,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
7442
7472
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
7443
7473
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
7444
7474
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
7445
|
-
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing' | 'organization_deactivated';
|
|
7475
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing' | 'order_cancelled' | 'organization_deactivated';
|
|
7446
7476
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
7447
7477
|
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
|
|
7448
7478
|
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
@@ -7532,6 +7562,13 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
7532
7562
|
interface ChannelOrganizationTokenBody {
|
|
7533
7563
|
readonly cleartext: string;
|
|
7534
7564
|
}
|
|
7565
|
+
interface ChannelShopStatistics {
|
|
7566
|
+
readonly id: string;
|
|
7567
|
+
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
7568
|
+
readonly initial_catalog_synced_at?: string;
|
|
7569
|
+
readonly catalog_sync_duration?: number;
|
|
7570
|
+
readonly catalog_products_count?: number;
|
|
7571
|
+
}
|
|
7535
7572
|
interface FlowChannelOrganization {
|
|
7536
7573
|
readonly placeholder?: string;
|
|
7537
7574
|
}
|
|
@@ -8102,6 +8139,20 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
8102
8139
|
readonly timestamp: string;
|
|
8103
8140
|
readonly order_tax_and_duty_inclusivity_setting: io.flow.shopify.markets.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
8104
8141
|
}
|
|
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
|
+
}
|
|
8105
8156
|
interface ShopifyIncotermIncludes {
|
|
8106
8157
|
readonly duties: boolean;
|
|
8107
8158
|
readonly taxes: boolean;
|
|
@@ -8208,6 +8259,20 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
8208
8259
|
readonly organization: string;
|
|
8209
8260
|
readonly registration: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
8210
8261
|
}
|
|
8262
|
+
interface ShopifyMerchantMarketsDeleted {
|
|
8263
|
+
readonly discriminator: 'shopify_merchant_markets_deleted';
|
|
8264
|
+
readonly event_id: string;
|
|
8265
|
+
readonly timestamp: string;
|
|
8266
|
+
readonly organization: string;
|
|
8267
|
+
readonly id: string;
|
|
8268
|
+
}
|
|
8269
|
+
interface ShopifyMerchantMarketsUpserted {
|
|
8270
|
+
readonly discriminator: 'shopify_merchant_markets_upserted';
|
|
8271
|
+
readonly event_id: string;
|
|
8272
|
+
readonly timestamp: string;
|
|
8273
|
+
readonly organization: string;
|
|
8274
|
+
readonly shopify_merchant_markets: io.flow.shopify.markets.internal.v0.models.ShopifyMerchantMarkets;
|
|
8275
|
+
}
|
|
8211
8276
|
interface ShopifyOrderRiskAssessmentDeleted {
|
|
8212
8277
|
readonly discriminator: 'shopify_order_risk_assessment_deleted';
|
|
8213
8278
|
readonly event_id: string;
|
|
@@ -8294,7 +8359,7 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
8294
8359
|
}
|
|
8295
8360
|
}
|
|
8296
8361
|
declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
8297
|
-
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;
|
|
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.ShopifyAdaptivePricingCoefficientsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyAdaptivePricingCoefficientsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMerchantMarketsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMerchantMarketsDeleted;
|
|
8298
8363
|
}
|
|
8299
8364
|
declare namespace io.flow.experience.v0.enums {
|
|
8300
8365
|
type AddressFieldName = 'first_name' | 'last_name' | 'street_1' | 'street_2' | 'city' | 'province' | 'postal' | 'country' | 'phone' | 'company' | 'vat_registration_number';
|
|
@@ -9484,6 +9549,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9484
9549
|
readonly rate_level_key?: string;
|
|
9485
9550
|
readonly direction: io.flow.label.v0.enums.Direction;
|
|
9486
9551
|
readonly effective_at: string;
|
|
9552
|
+
readonly effective_until?: string;
|
|
9487
9553
|
readonly origination_zones: io.flow.common.v0.models.Zone[];
|
|
9488
9554
|
readonly service: io.flow.ratecard.v0.models.RatecardServiceSummary;
|
|
9489
9555
|
readonly published_at?: string;
|
|
@@ -9501,6 +9567,9 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9501
9567
|
readonly glbeRatecardMetadataLaneIdentifier?: string;
|
|
9502
9568
|
readonly pickupCenter?: string;
|
|
9503
9569
|
}
|
|
9570
|
+
interface RatecardEffectiveUntilForm {
|
|
9571
|
+
readonly effective_until?: string;
|
|
9572
|
+
}
|
|
9504
9573
|
interface RatecardEstimateForm {
|
|
9505
9574
|
readonly origin_address: io.flow.common.v0.models.Address;
|
|
9506
9575
|
readonly destination_address: io.flow.common.v0.models.Address;
|
|
@@ -10325,6 +10394,7 @@ declare namespace io.flow.product.v0.models {
|
|
|
10325
10394
|
readonly organization_id: string;
|
|
10326
10395
|
readonly number: string;
|
|
10327
10396
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
10397
|
+
readonly inferred_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
10328
10398
|
readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
10329
10399
|
readonly item_numbers: string[];
|
|
10330
10400
|
readonly highest_value_item_number?: string;
|
|
@@ -12279,6 +12349,17 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
12279
12349
|
}
|
|
12280
12350
|
interface BankAccountInfoKor {
|
|
12281
12351
|
readonly discriminator: 'kor';
|
|
12352
|
+
readonly name?: string;
|
|
12353
|
+
readonly address?: io.flow.common.v0.models.Address;
|
|
12354
|
+
readonly phone?: string;
|
|
12355
|
+
readonly email?: string;
|
|
12356
|
+
readonly bank_account_number: string;
|
|
12357
|
+
readonly bank_routing_number?: string;
|
|
12358
|
+
readonly bank_name?: string;
|
|
12359
|
+
readonly bank_address?: io.flow.common.v0.models.Address;
|
|
12360
|
+
}
|
|
12361
|
+
interface BankAccountInfoKorV2 {
|
|
12362
|
+
readonly discriminator: 'kor_v2';
|
|
12282
12363
|
readonly name: string;
|
|
12283
12364
|
readonly bank_account_number: string;
|
|
12284
12365
|
readonly bank_routing_number: string;
|
|
@@ -12291,19 +12372,21 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
12291
12372
|
}
|
|
12292
12373
|
}
|
|
12293
12374
|
declare namespace io.flow.billing.bank.account.v0.unions {
|
|
12294
|
-
type BankAccountInfo = io.flow.billing.bank.account.v0.models.BankAccountInfoUsa | io.flow.billing.bank.account.v0.models.BankAccountInfoCan | io.flow.billing.bank.account.v0.models.BankAccountInfoGbr | io.flow.billing.bank.account.v0.models.BankAccountInfoFra | io.flow.billing.bank.account.v0.models.BankAccountInfoIta | io.flow.billing.bank.account.v0.models.BankAccountInfoKor;
|
|
12375
|
+
type BankAccountInfo = io.flow.billing.bank.account.v0.models.BankAccountInfoUsa | io.flow.billing.bank.account.v0.models.BankAccountInfoCan | io.flow.billing.bank.account.v0.models.BankAccountInfoGbr | io.flow.billing.bank.account.v0.models.BankAccountInfoFra | io.flow.billing.bank.account.v0.models.BankAccountInfoIta | io.flow.billing.bank.account.v0.models.BankAccountInfoKor | io.flow.billing.bank.account.v0.models.BankAccountInfoKorV2;
|
|
12295
12376
|
}
|
|
12296
12377
|
declare namespace io.flow.internal.v0.enums {
|
|
12297
|
-
type AccountCurrencyFilter = 'GBP' | 'CAD' | 'USD';
|
|
12378
|
+
type AccountCurrencyFilter = 'GBP' | 'CAD' | 'USD' | 'KRW';
|
|
12298
12379
|
type AccountPaymentHoldReason = 'fraudulent' | 'frozen' | 'invalid_bank_account';
|
|
12299
12380
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
12300
12381
|
type AccountType = 'channel' | 'organization';
|
|
12382
|
+
type AdaptiveShippingOrderGuaranteeState = 'confirmed' | 'voided';
|
|
12301
12383
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
12302
12384
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
12303
12385
|
type AmruthaItemType = 'physical' | 'digital';
|
|
12304
12386
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
12305
12387
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
12306
12388
|
type ApplicablePreferentialRate = 'baby' | 'children';
|
|
12389
|
+
type AthenaDailyopsIntentLevel = 'low_intent' | 'high_intent';
|
|
12307
12390
|
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';
|
|
12308
12391
|
type B2BFeeMorTaxTriggerType = 'capture' | 'order';
|
|
12309
12392
|
type B2BFeeShippingTaxTriggerType = 'label' | 'trueup';
|
|
@@ -12331,7 +12414,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12331
12414
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
12332
12415
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
12333
12416
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
12334
|
-
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing' | 'organization_deactivated';
|
|
12417
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing' | 'order_cancelled' | 'organization_deactivated';
|
|
12335
12418
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
12336
12419
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
12337
12420
|
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
|
|
@@ -12388,7 +12471,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12388
12471
|
type EmptyAttribute = 'irrelevant';
|
|
12389
12472
|
type ErpFileType = 'vendor';
|
|
12390
12473
|
type EvaluationCheckResult = 'pass' | 'fail';
|
|
12391
|
-
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' | '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' | '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' | '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' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'taxonomy_category_hs6_ref_upserted' | 'taxonomy_category_hs6_ref_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_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' | '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';
|
|
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';
|
|
12392
12475
|
type ExperienceImportType = 'experience_with_settings';
|
|
12393
12476
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
12394
12477
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -12419,7 +12502,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12419
12502
|
type JournalOperation = 'insert' | 'update' | 'delete';
|
|
12420
12503
|
type KeywordType = 'positive' | 'negative';
|
|
12421
12504
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
12422
|
-
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
12423
12505
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
12424
12506
|
type LabelEventMedium = 'webhook' | 'pull' | 'post';
|
|
12425
12507
|
type LabelEventSource = 'aftership' | 'carrier' | 'flow';
|
|
@@ -12432,6 +12514,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12432
12514
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
12433
12515
|
type LogisticsCapability = 'logistics_address_correction';
|
|
12434
12516
|
type LogisticsPayoutResolutionMethod = 'order_combined_shipment' | 'intransit_label_event' | 'shipping_notification';
|
|
12517
|
+
type MaheshItemType = 'physical' | 'digital';
|
|
12435
12518
|
type MailClass = 'standard' | 'express';
|
|
12436
12519
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
12437
12520
|
type ManualTransactionCategory = 'cancelled_order_refund' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit' | 'negative_balance_guarantee' | 'bank_payment_failure' | 'non_fraud_chargeback' | 'v1_migration_neg_balance_settlement';
|
|
@@ -12494,7 +12577,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12494
12577
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
12495
12578
|
type ReportPaymentType = 'credit' | 'debit';
|
|
12496
12579
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
12497
|
-
type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'scheduled_payment_citi' | 'account_quarterly_balances' | 'invariants' | 'payments' | 'reconcile_not_recorded' | 'products_record' | 'disputes' | 'sales_payments_record';
|
|
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';
|
|
12498
12581
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
12499
12582
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
12500
12583
|
type ResponsibleParty = 'flow' | 'organization';
|
|
@@ -12544,7 +12627,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12544
12627
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
12545
12628
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
12546
12629
|
type TariffEligibilityType = 'rex';
|
|
12547
|
-
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults' | 'item_dimensions';
|
|
12630
|
+
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults' | 'item_dimensions' | 'center';
|
|
12548
12631
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
12549
12632
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
12550
12633
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax' | 'refund';
|
|
@@ -12787,13 +12870,48 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12787
12870
|
readonly action: io.flow.internal.v0.enums.ItemQuantityAction;
|
|
12788
12871
|
readonly quantity: number;
|
|
12789
12872
|
}
|
|
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
|
+
interface AdaptiveShippingOrderGuarantee {
|
|
12887
|
+
readonly id: string;
|
|
12888
|
+
readonly organization_id: string;
|
|
12889
|
+
readonly order_number: string;
|
|
12890
|
+
readonly guarantee_state: io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState;
|
|
12891
|
+
readonly label_id?: string;
|
|
12892
|
+
readonly notification_id?: string;
|
|
12893
|
+
}
|
|
12894
|
+
interface AdaptiveShippingOrderGuaranteeDeleted {
|
|
12895
|
+
readonly discriminator: 'adaptive_shipping_order_guarantee_deleted';
|
|
12896
|
+
readonly event_id: string;
|
|
12897
|
+
readonly timestamp: string;
|
|
12898
|
+
readonly organization: string;
|
|
12899
|
+
readonly id: string;
|
|
12900
|
+
}
|
|
12901
|
+
interface AdaptiveShippingOrderGuaranteeUpserted {
|
|
12902
|
+
readonly discriminator: 'adaptive_shipping_order_guarantee_upserted';
|
|
12903
|
+
readonly event_id: string;
|
|
12904
|
+
readonly timestamp: string;
|
|
12905
|
+
readonly organization: string;
|
|
12906
|
+
readonly adaptive_shipping_order_guarantee: io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
12907
|
+
}
|
|
12790
12908
|
interface AdaptiveShippingRate {
|
|
12791
12909
|
readonly id: string;
|
|
12792
12910
|
readonly organization_id: string;
|
|
12911
|
+
readonly channel_id: string;
|
|
12793
12912
|
readonly destination_country: string;
|
|
12794
12913
|
readonly coefficient: number;
|
|
12795
12914
|
readonly flat_rates: io.flow.internal.v0.models.FlatRate[];
|
|
12796
|
-
readonly version_id?: string;
|
|
12797
12915
|
readonly effective_at: string;
|
|
12798
12916
|
readonly effective_until?: string;
|
|
12799
12917
|
}
|
|
@@ -13815,6 +13933,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13815
13933
|
readonly sales_tax_rate: number;
|
|
13816
13934
|
readonly additional_tax?: io.flow.common.v0.models.Money;
|
|
13817
13935
|
readonly additional_tax_rate?: number;
|
|
13936
|
+
readonly fixed_fee?: io.flow.common.v0.models.Money;
|
|
13937
|
+
readonly fixed_fee_tax?: io.flow.common.v0.models.Money;
|
|
13818
13938
|
readonly total: io.flow.common.v0.models.Money;
|
|
13819
13939
|
}
|
|
13820
13940
|
interface CalculationStampingShippingLine {
|
|
@@ -13846,6 +13966,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13846
13966
|
readonly additional_tax_import_included: boolean;
|
|
13847
13967
|
readonly additional_tax?: io.flow.common.v0.models.Money;
|
|
13848
13968
|
readonly additional_import_tax?: io.flow.internal.v0.models.AdditionalImportTax[];
|
|
13969
|
+
readonly fixed_fee?: io.flow.common.v0.models.Money;
|
|
13970
|
+
readonly fixed_fee_tax?: io.flow.common.v0.models.Money;
|
|
13849
13971
|
}
|
|
13850
13972
|
interface CalculatorDtcePostBody {
|
|
13851
13973
|
readonly products: io.flow.internal.v0.models.CalculatorDtceProduct[];
|
|
@@ -14494,6 +14616,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14494
14616
|
readonly domains: io.flow.internal.v0.models.ChannelOrganizationDomains;
|
|
14495
14617
|
readonly tokens: io.flow.internal.v0.models.Tokens;
|
|
14496
14618
|
}
|
|
14619
|
+
interface ChannelShopStatistics {
|
|
14620
|
+
readonly id: string;
|
|
14621
|
+
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
14622
|
+
readonly initial_catalog_synced_at?: string;
|
|
14623
|
+
readonly catalog_sync_duration?: number;
|
|
14624
|
+
readonly catalog_products_count?: number;
|
|
14625
|
+
}
|
|
14626
|
+
interface ChannelShopStatisticsDeleted {
|
|
14627
|
+
readonly discriminator: 'channel_shop_statistics_deleted';
|
|
14628
|
+
readonly event_id: string;
|
|
14629
|
+
readonly timestamp: string;
|
|
14630
|
+
readonly organization: string;
|
|
14631
|
+
readonly id: string;
|
|
14632
|
+
}
|
|
14633
|
+
interface ChannelShopStatisticsUpserted {
|
|
14634
|
+
readonly discriminator: 'channel_shop_statistics_upserted';
|
|
14635
|
+
readonly event_id: string;
|
|
14636
|
+
readonly timestamp: string;
|
|
14637
|
+
readonly organization: string;
|
|
14638
|
+
readonly channel_shop_statistics: io.flow.internal.v0.models.ChannelShopStatistics;
|
|
14639
|
+
}
|
|
14497
14640
|
interface ChannelTransaction {
|
|
14498
14641
|
readonly discriminator: 'channel_transaction';
|
|
14499
14642
|
readonly transaction: io.flow.internal.v0.models.TransactionReference;
|
|
@@ -16185,6 +16328,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16185
16328
|
readonly min_delivery_days?: number;
|
|
16186
16329
|
readonly max_delivery_days?: number;
|
|
16187
16330
|
}
|
|
16331
|
+
interface FlatRateLabelReversal {
|
|
16332
|
+
readonly id: string;
|
|
16333
|
+
readonly organization_id: string;
|
|
16334
|
+
readonly order_number: string;
|
|
16335
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
16336
|
+
readonly tax: io.flow.common.v0.models.Money;
|
|
16337
|
+
}
|
|
16338
|
+
interface FlatRateLabelReversalDeleted {
|
|
16339
|
+
readonly discriminator: 'flat_rate_label_reversal_deleted';
|
|
16340
|
+
readonly event_id: string;
|
|
16341
|
+
readonly timestamp: string;
|
|
16342
|
+
readonly organization: string;
|
|
16343
|
+
readonly id: string;
|
|
16344
|
+
}
|
|
16345
|
+
interface FlatRateLabelReversalUpserted {
|
|
16346
|
+
readonly discriminator: 'flat_rate_label_reversal_upserted';
|
|
16347
|
+
readonly event_id: string;
|
|
16348
|
+
readonly timestamp: string;
|
|
16349
|
+
readonly organization: string;
|
|
16350
|
+
readonly flat_rate_label_reversal: io.flow.internal.v0.models.FlatRateLabelReversal;
|
|
16351
|
+
}
|
|
16188
16352
|
interface FlatRateLabelTransaction {
|
|
16189
16353
|
readonly discriminator: 'flat_rate_label_transaction';
|
|
16190
16354
|
readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -17404,10 +17568,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17404
17568
|
readonly materials: Record<string, string[]>;
|
|
17405
17569
|
readonly constructions: Record<string, string[]>;
|
|
17406
17570
|
}
|
|
17407
|
-
interface LabelCancellationError {
|
|
17408
|
-
readonly code: io.flow.internal.v0.enums.LabelCancellationErrorCode;
|
|
17409
|
-
readonly messages: string[];
|
|
17410
|
-
}
|
|
17411
17571
|
interface LabelCreationJob {
|
|
17412
17572
|
readonly id: string;
|
|
17413
17573
|
readonly reference_id: string;
|
|
@@ -17826,6 +17986,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17826
17986
|
interface LoyaltyProgramRewards {
|
|
17827
17987
|
readonly applied: io.flow.internal.v0.models.LoyaltyProgramReward[];
|
|
17828
17988
|
}
|
|
17989
|
+
interface MaheshItem {
|
|
17990
|
+
readonly id: string;
|
|
17991
|
+
readonly number: string;
|
|
17992
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
17993
|
+
readonly description?: string;
|
|
17994
|
+
readonly type: io.flow.internal.v0.enums.MaheshItemType;
|
|
17995
|
+
readonly added_on: string;
|
|
17996
|
+
}
|
|
17997
|
+
interface MaheshItemForm {
|
|
17998
|
+
readonly number: string;
|
|
17999
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
18000
|
+
readonly description?: string;
|
|
18001
|
+
readonly type: io.flow.internal.v0.enums.MaheshItemType;
|
|
18002
|
+
readonly added_on: string;
|
|
18003
|
+
}
|
|
17829
18004
|
interface MainTransaction {
|
|
17830
18005
|
readonly id: string;
|
|
17831
18006
|
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
@@ -18094,6 +18269,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18094
18269
|
readonly freight: number;
|
|
18095
18270
|
readonly base_amount?: number;
|
|
18096
18271
|
readonly surcharges?: io.flow.internal.v0.models.MerchantSurcharge[];
|
|
18272
|
+
readonly freight_guaranteed?: number;
|
|
18273
|
+
readonly freight_non_guaranteed?: number;
|
|
18097
18274
|
readonly total: number;
|
|
18098
18275
|
readonly tax_refund?: number;
|
|
18099
18276
|
readonly tax_reversal?: number;
|
|
@@ -19561,6 +19738,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19561
19738
|
readonly relative_ranking: number;
|
|
19562
19739
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
19563
19740
|
readonly fingerprint: string;
|
|
19741
|
+
readonly screening_mode?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
19564
19742
|
}
|
|
19565
19743
|
interface PreonboardingClassificationResult {
|
|
19566
19744
|
readonly id: string;
|
|
@@ -19571,13 +19749,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19571
19749
|
readonly probability?: number;
|
|
19572
19750
|
readonly classification_decision: io.flow.internal.v0.enums.PreonboardingClassificationDecision;
|
|
19573
19751
|
readonly classification_type: io.flow.internal.v0.enums.PreonboardingClassificationType;
|
|
19752
|
+
readonly model_id?: string;
|
|
19574
19753
|
}
|
|
19575
19754
|
interface PreonboardingMerchant {
|
|
19755
|
+
readonly id: string;
|
|
19576
19756
|
readonly merchant_id: string;
|
|
19577
19757
|
readonly channel: string;
|
|
19578
19758
|
readonly catalog_size: number;
|
|
19579
19759
|
readonly processed_product_count: number;
|
|
19580
19760
|
readonly last_request: string;
|
|
19761
|
+
readonly updated_by_user_id: string;
|
|
19762
|
+
}
|
|
19763
|
+
interface PreonboardingMerchantDeleted {
|
|
19764
|
+
readonly discriminator: 'preonboarding_merchant_deleted';
|
|
19765
|
+
readonly event_id: string;
|
|
19766
|
+
readonly timestamp: string;
|
|
19767
|
+
readonly id: string;
|
|
19768
|
+
}
|
|
19769
|
+
interface PreonboardingMerchantUpserted {
|
|
19770
|
+
readonly discriminator: 'preonboarding_merchant_upserted';
|
|
19771
|
+
readonly event_id: string;
|
|
19772
|
+
readonly timestamp: string;
|
|
19773
|
+
readonly preonboarding_merchant: io.flow.internal.v0.models.PreonboardingMerchant;
|
|
19581
19774
|
}
|
|
19582
19775
|
interface PreonboardingSellabilityResult {
|
|
19583
19776
|
readonly id?: string;
|
|
@@ -19595,7 +19788,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19595
19788
|
readonly matching_sellability_positive_keywords?: string[];
|
|
19596
19789
|
readonly classification_failure_reason?: io.flow.internal.v0.enums.ClassificationFailureReason;
|
|
19597
19790
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
19791
|
+
readonly inferred_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
19792
|
+
readonly effective_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
19598
19793
|
readonly fingerprint: string;
|
|
19794
|
+
readonly screening_mode?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
19599
19795
|
}
|
|
19600
19796
|
interface PreonboardingSellabilityResultDeleted {
|
|
19601
19797
|
readonly discriminator: 'preonboarding_sellability_result_deleted';
|
|
@@ -20269,6 +20465,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20269
20465
|
readonly type: io.flow.internal.v0.enums.RaveenaItemType;
|
|
20270
20466
|
readonly added_on: string;
|
|
20271
20467
|
}
|
|
20468
|
+
interface RaveenaItemDeleted {
|
|
20469
|
+
readonly discriminator: 'raveena_item_deleted';
|
|
20470
|
+
readonly event_id: string;
|
|
20471
|
+
readonly timestamp: string;
|
|
20472
|
+
readonly id: string;
|
|
20473
|
+
}
|
|
20272
20474
|
interface RaveenaItemForm {
|
|
20273
20475
|
readonly number: string;
|
|
20274
20476
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -20276,6 +20478,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20276
20478
|
readonly type: io.flow.internal.v0.enums.RaveenaItemType;
|
|
20277
20479
|
readonly added_on: string;
|
|
20278
20480
|
}
|
|
20481
|
+
interface RaveenaItemUpserted {
|
|
20482
|
+
readonly discriminator: 'raveena_item_upserted';
|
|
20483
|
+
readonly event_id: string;
|
|
20484
|
+
readonly timestamp: string;
|
|
20485
|
+
readonly item: io.flow.internal.v0.models.RaveenaItem;
|
|
20486
|
+
}
|
|
20279
20487
|
interface RecordReference {
|
|
20280
20488
|
readonly id: string;
|
|
20281
20489
|
}
|
|
@@ -20332,6 +20540,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20332
20540
|
readonly type: string;
|
|
20333
20541
|
readonly routing_number: string;
|
|
20334
20542
|
readonly account_number: string;
|
|
20543
|
+
readonly bank_name?: string;
|
|
20335
20544
|
}
|
|
20336
20545
|
interface ReportFile {
|
|
20337
20546
|
readonly id: string;
|
|
@@ -20458,6 +20667,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20458
20667
|
readonly estimated_duties_and_taxes?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20459
20668
|
readonly td_fx_diff?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20460
20669
|
}
|
|
20670
|
+
interface ReportingFreight {
|
|
20671
|
+
readonly guaranteed?: io.flow.internal.v0.models.ReportingFreightGuaranteed;
|
|
20672
|
+
}
|
|
20673
|
+
interface ReportingFreightGuaranteed {
|
|
20674
|
+
readonly amount: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20675
|
+
readonly coefficient: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20676
|
+
}
|
|
20461
20677
|
interface ReportingFulfillment {
|
|
20462
20678
|
readonly id: string;
|
|
20463
20679
|
readonly sequence_number: number;
|
|
@@ -20546,6 +20762,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20546
20762
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20547
20763
|
readonly freight: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20548
20764
|
readonly freight_breakdown?: io.flow.internal.v0.models.ReportingMerchantFreight;
|
|
20765
|
+
readonly freight_guaranteed?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20766
|
+
readonly freight_non_guaranteed?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20549
20767
|
readonly discount?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20550
20768
|
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20551
20769
|
readonly tax_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
@@ -20705,6 +20923,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20705
20923
|
readonly created_at: string;
|
|
20706
20924
|
readonly updated_at: string;
|
|
20707
20925
|
readonly channel?: string;
|
|
20926
|
+
readonly is_deleted?: boolean;
|
|
20708
20927
|
}
|
|
20709
20928
|
interface RestrictionItemRequestForm {
|
|
20710
20929
|
readonly status?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
@@ -20818,6 +21037,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20818
21037
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
20819
21038
|
readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
20820
21039
|
readonly channel?: string;
|
|
21040
|
+
readonly is_deleted?: boolean;
|
|
20821
21041
|
}
|
|
20822
21042
|
interface RestrictionProductDecisionForm {
|
|
20823
21043
|
readonly rule_decisions: io.flow.internal.v0.models.RestrictionRuleDecisionForm[];
|
|
@@ -20967,6 +21187,69 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20967
21187
|
readonly pending_verification_count: number;
|
|
20968
21188
|
readonly pending_classification_count: number;
|
|
20969
21189
|
}
|
|
21190
|
+
interface RestrictionsAthenaDailyopsFs {
|
|
21191
|
+
readonly id: string;
|
|
21192
|
+
readonly report_date: string;
|
|
21193
|
+
readonly num_products_with_fs_result?: number;
|
|
21194
|
+
readonly num_products_sellable_somewhere_by_fs?: number;
|
|
21195
|
+
readonly num_products_restricted_somewhere_by_fs?: number;
|
|
21196
|
+
readonly num_products_with_false_allows_by_fs?: number;
|
|
21197
|
+
readonly num_products_with_false_restricts_by_fs?: number;
|
|
21198
|
+
readonly daily_num_products_with_fs_result?: number;
|
|
21199
|
+
readonly daily_num_products_sellable_somewhere_by_fs?: number;
|
|
21200
|
+
readonly daily_num_products_restricted_somewhere_by_fs?: number;
|
|
21201
|
+
readonly daily_num_products_with_false_allows_by_fs?: number;
|
|
21202
|
+
readonly daily_num_products_with_false_restricts_by_fs?: number;
|
|
21203
|
+
}
|
|
21204
|
+
interface RestrictionsAthenaDailyopsFsDeleted {
|
|
21205
|
+
readonly discriminator: 'restrictions_athena_dailyops_fs_deleted';
|
|
21206
|
+
readonly event_id: string;
|
|
21207
|
+
readonly timestamp: string;
|
|
21208
|
+
readonly id: string;
|
|
21209
|
+
}
|
|
21210
|
+
interface RestrictionsAthenaDailyopsFsUpserted {
|
|
21211
|
+
readonly discriminator: 'restrictions_athena_dailyops_fs_upserted';
|
|
21212
|
+
readonly event_id: string;
|
|
21213
|
+
readonly timestamp: string;
|
|
21214
|
+
readonly restrictions_athena_dailyops_fs: io.flow.internal.v0.models.RestrictionsAthenaDailyopsFs;
|
|
21215
|
+
}
|
|
21216
|
+
interface RestrictionsAthenaDailyopsPcPv {
|
|
21217
|
+
readonly id: string;
|
|
21218
|
+
readonly report_date: string;
|
|
21219
|
+
readonly intent_level: io.flow.internal.v0.enums.AthenaDailyopsIntentLevel;
|
|
21220
|
+
readonly num_orgs_setup_complete_with_pvs: number;
|
|
21221
|
+
readonly num_products_setup_complete_with_pvs: number;
|
|
21222
|
+
readonly num_orgs_transacting_with_pvs: number;
|
|
21223
|
+
readonly num_products_transacting_with_pvs: number;
|
|
21224
|
+
readonly num_orgs_setup_complete_with_pcs: number;
|
|
21225
|
+
readonly num_products_setup_complete_with_pcs: number;
|
|
21226
|
+
readonly num_orgs_transacting_with_pcs: number;
|
|
21227
|
+
readonly num_products_transacting_with_pcs: number;
|
|
21228
|
+
readonly oldest_pv_product_date_setup_complete?: string;
|
|
21229
|
+
readonly oldest_pv_product_date_transacting?: string;
|
|
21230
|
+
readonly oldest_pc_product_date_setup_complete?: string;
|
|
21231
|
+
readonly oldest_pc_product_date_transacting?: string;
|
|
21232
|
+
readonly oldest_insufficient_details_pv_active?: string;
|
|
21233
|
+
readonly oldest_insufficient_details_pv_transacting?: string;
|
|
21234
|
+
readonly num_pv_inflow_net_new: number;
|
|
21235
|
+
readonly num_pv_outflow_human_decisions: number;
|
|
21236
|
+
readonly num_pv_outflow_auto_review_decisions: number;
|
|
21237
|
+
readonly num_pv_outflow_side_effect_decisions: number;
|
|
21238
|
+
readonly num_pending_decisions_transacting: number;
|
|
21239
|
+
readonly pv_decisions_setup_complete: number;
|
|
21240
|
+
}
|
|
21241
|
+
interface RestrictionsAthenaDailyopsPcPvDeleted {
|
|
21242
|
+
readonly discriminator: 'restrictions_athena_dailyops_pc_pv_deleted';
|
|
21243
|
+
readonly event_id: string;
|
|
21244
|
+
readonly timestamp: string;
|
|
21245
|
+
readonly id: string;
|
|
21246
|
+
}
|
|
21247
|
+
interface RestrictionsAthenaDailyopsPcPvUpserted {
|
|
21248
|
+
readonly discriminator: 'restrictions_athena_dailyops_pc_pv_upserted';
|
|
21249
|
+
readonly event_id: string;
|
|
21250
|
+
readonly timestamp: string;
|
|
21251
|
+
readonly restrictions_athena_dailyops_pc_pv: io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPv;
|
|
21252
|
+
}
|
|
20970
21253
|
interface RestrictionsDailyops {
|
|
20971
21254
|
readonly id: string;
|
|
20972
21255
|
readonly report_date: string;
|
|
@@ -21139,6 +21422,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21139
21422
|
readonly tax?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21140
21423
|
readonly duty?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21141
21424
|
readonly fees: io.flow.internal.v0.models.ReportingFees;
|
|
21425
|
+
readonly freight?: io.flow.internal.v0.models.ReportingFreight;
|
|
21142
21426
|
readonly conversion_rate: io.flow.internal.v0.models.ReportingConversionRates;
|
|
21143
21427
|
readonly payment_is: io.flow.internal.v0.models.PaymentIs;
|
|
21144
21428
|
readonly price_inclusivity?: io.flow.internal.v0.models.PriceInclusivity;
|
|
@@ -21353,6 +21637,25 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21353
21637
|
readonly line_items?: io.flow.common.v0.models.LineItemForm[];
|
|
21354
21638
|
readonly include_unpublished?: boolean;
|
|
21355
21639
|
}
|
|
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
|
+
}
|
|
21356
21659
|
interface ShopifyAddress {
|
|
21357
21660
|
readonly address1: string;
|
|
21358
21661
|
readonly city: string;
|
|
@@ -21701,6 +22004,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21701
22004
|
readonly weight: number;
|
|
21702
22005
|
readonly weight_unit: io.flow.internal.v0.enums.ShopifyWeightUnit;
|
|
21703
22006
|
}
|
|
22007
|
+
interface ShopifyMerchantMarketCountry {
|
|
22008
|
+
readonly code: string;
|
|
22009
|
+
readonly actively_managing: boolean;
|
|
22010
|
+
}
|
|
22011
|
+
interface ShopifyMerchantMarkets {
|
|
22012
|
+
readonly id: string;
|
|
22013
|
+
readonly organization_id: string;
|
|
22014
|
+
readonly countries: io.flow.internal.v0.models.ShopifyMerchantMarketCountry[];
|
|
22015
|
+
}
|
|
22016
|
+
interface ShopifyMerchantMarketsDeleted {
|
|
22017
|
+
readonly discriminator: 'shopify_merchant_markets_deleted';
|
|
22018
|
+
readonly event_id: string;
|
|
22019
|
+
readonly timestamp: string;
|
|
22020
|
+
readonly organization: string;
|
|
22021
|
+
readonly id: string;
|
|
22022
|
+
}
|
|
22023
|
+
interface ShopifyMerchantMarketsUpserted {
|
|
22024
|
+
readonly discriminator: 'shopify_merchant_markets_upserted';
|
|
22025
|
+
readonly event_id: string;
|
|
22026
|
+
readonly timestamp: string;
|
|
22027
|
+
readonly organization: string;
|
|
22028
|
+
readonly shopify_merchant_markets: io.flow.internal.v0.models.ShopifyMerchantMarkets;
|
|
22029
|
+
}
|
|
21704
22030
|
interface ShopifyMerchantPlan {
|
|
21705
22031
|
readonly id: string;
|
|
21706
22032
|
readonly authorization: io.flow.payment.v0.models.AuthorizationReference;
|
|
@@ -23408,7 +23734,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23408
23734
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
23409
23735
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
|
|
23410
23736
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
23411
|
-
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.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.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.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.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.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.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.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;
|
|
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;
|
|
23412
23738
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
23413
23739
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
23414
23740
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -23493,6 +23819,12 @@ export declare type AccountUpsertedV2 = io.flow.internal.v0.models.AccountUpsert
|
|
|
23493
23819
|
export declare type AccountingPendingOrderMetadata = io.flow.internal.v0.models.AccountingPendingOrderMetadata;
|
|
23494
23820
|
export declare type AccountingReturnMetadata = io.flow.internal.v0.models.AccountingReturnMetadata;
|
|
23495
23821
|
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
|
+
export declare type AdaptiveShippingOrderGuarantee = io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
23825
|
+
export declare type AdaptiveShippingOrderGuaranteeDeleted = io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted;
|
|
23826
|
+
export declare type AdaptiveShippingOrderGuaranteeState = io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState;
|
|
23827
|
+
export declare type AdaptiveShippingOrderGuaranteeUpserted = io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted;
|
|
23496
23828
|
export declare type AdaptiveShippingRate = io.flow.internal.v0.models.AdaptiveShippingRate;
|
|
23497
23829
|
export declare type AdaptiveShippingRateDeleted = io.flow.internal.v0.models.AdaptiveShippingRateDeleted;
|
|
23498
23830
|
export declare type AdaptiveShippingRateUpserted = io.flow.internal.v0.models.AdaptiveShippingRateUpserted;
|
|
@@ -23564,6 +23896,7 @@ export declare type ApiCallReferenceId = io.flow.internal.v0.enums.ApiCallRefere
|
|
|
23564
23896
|
export declare type ApplePayAuthorizationPayload = io.flow.internal.v0.models.ApplePayAuthorizationPayload;
|
|
23565
23897
|
export declare type ApplicablePreferentialRate = io.flow.internal.v0.enums.ApplicablePreferentialRate;
|
|
23566
23898
|
export declare type ApplyAtValueForm = io.flow.internal.v0.models.ApplyAtValueForm;
|
|
23899
|
+
export declare type AthenaDailyopsIntentLevel = io.flow.internal.v0.enums.AthenaDailyopsIntentLevel;
|
|
23567
23900
|
export declare type AttemptStatistics = io.flow.internal.v0.models.AttemptStatistics;
|
|
23568
23901
|
export declare type AttributeLabel = io.flow.internal.v0.models.AttributeLabel;
|
|
23569
23902
|
export declare type AttributeRule = io.flow.internal.v0.models.AttributeRule;
|
|
@@ -23793,6 +24126,9 @@ export declare type ChannelRateMetadataRate = io.flow.internal.v0.models.Channel
|
|
|
23793
24126
|
export declare type ChannelService = io.flow.internal.v0.enums.ChannelService;
|
|
23794
24127
|
export declare type ChannelShop = io.flow.internal.v0.models.ChannelShop;
|
|
23795
24128
|
export declare type ChannelShopForm = io.flow.internal.v0.models.ChannelShopForm;
|
|
24129
|
+
export declare type ChannelShopStatistics = io.flow.internal.v0.models.ChannelShopStatistics;
|
|
24130
|
+
export declare type ChannelShopStatisticsDeleted = io.flow.internal.v0.models.ChannelShopStatisticsDeleted;
|
|
24131
|
+
export declare type ChannelShopStatisticsUpserted = io.flow.internal.v0.models.ChannelShopStatisticsUpserted;
|
|
23796
24132
|
export declare type ChannelTransaction = io.flow.internal.v0.models.ChannelTransaction;
|
|
23797
24133
|
export declare type ChannelTransactionDeleted = io.flow.internal.v0.models.ChannelTransactionDeleted;
|
|
23798
24134
|
export declare type ChannelTransactionRate = io.flow.internal.v0.models.ChannelTransactionRate;
|
|
@@ -24120,6 +24456,9 @@ export declare type FiservMerchant = io.flow.internal.v0.models.FiservMerchant;
|
|
|
24120
24456
|
export declare type FiservMerchantModificationForm = io.flow.internal.v0.models.FiservMerchantModificationForm;
|
|
24121
24457
|
export declare type FiservMerchantPutForm = io.flow.internal.v0.models.FiservMerchantPutForm;
|
|
24122
24458
|
export declare type FlatRate = io.flow.internal.v0.models.FlatRate;
|
|
24459
|
+
export declare type FlatRateLabelReversal = io.flow.internal.v0.models.FlatRateLabelReversal;
|
|
24460
|
+
export declare type FlatRateLabelReversalDeleted = io.flow.internal.v0.models.FlatRateLabelReversalDeleted;
|
|
24461
|
+
export declare type FlatRateLabelReversalUpserted = io.flow.internal.v0.models.FlatRateLabelReversalUpserted;
|
|
24123
24462
|
export declare type FlatRateLabelTransaction = io.flow.internal.v0.models.FlatRateLabelTransaction;
|
|
24124
24463
|
export declare type FlatRateLabelTransactionType = io.flow.internal.v0.enums.FlatRateLabelTransactionType;
|
|
24125
24464
|
export declare type FlexeWebhook = io.flow.internal.v0.models.FlexeWebhook;
|
|
@@ -24328,8 +24667,6 @@ export declare type LabProjectSettingsFormAcceptance = io.flow.internal.v0.model
|
|
|
24328
24667
|
export declare type LabelAliases = io.flow.internal.v0.models.LabelAliases;
|
|
24329
24668
|
export declare type LabelAssociation = io.flow.internal.v0.models.LabelAssociation;
|
|
24330
24669
|
export declare type LabelBillingStrategy = io.flow.internal.v0.enums.LabelBillingStrategy;
|
|
24331
|
-
export declare type LabelCancellationError = io.flow.internal.v0.models.LabelCancellationError;
|
|
24332
|
-
export declare type LabelCancellationErrorCode = io.flow.internal.v0.enums.LabelCancellationErrorCode;
|
|
24333
24670
|
export declare type LabelCreationJob = io.flow.internal.v0.models.LabelCreationJob;
|
|
24334
24671
|
export declare type LabelCreationJobDeleted = io.flow.internal.v0.models.LabelCreationJobDeleted;
|
|
24335
24672
|
export declare type LabelCreationJobSummary = io.flow.internal.v0.models.LabelCreationJobSummary;
|
|
@@ -24396,6 +24733,9 @@ export declare type LoyaltyProgram = io.flow.internal.v0.models.LoyaltyProgram;
|
|
|
24396
24733
|
export declare type LoyaltyProgramMessage = io.flow.internal.v0.models.LoyaltyProgramMessage;
|
|
24397
24734
|
export declare type LoyaltyProgramReward = io.flow.internal.v0.models.LoyaltyProgramReward;
|
|
24398
24735
|
export declare type LoyaltyProgramRewards = io.flow.internal.v0.models.LoyaltyProgramRewards;
|
|
24736
|
+
export declare type MaheshItem = io.flow.internal.v0.models.MaheshItem;
|
|
24737
|
+
export declare type MaheshItemForm = io.flow.internal.v0.models.MaheshItemForm;
|
|
24738
|
+
export declare type MaheshItemType = io.flow.internal.v0.enums.MaheshItemType;
|
|
24399
24739
|
export declare type MailClass = io.flow.internal.v0.enums.MailClass;
|
|
24400
24740
|
export declare type MainTransaction = io.flow.internal.v0.models.MainTransaction;
|
|
24401
24741
|
export declare type MainTransactionDeleted = io.flow.internal.v0.models.MainTransactionDeleted;
|
|
@@ -24701,6 +25041,8 @@ export declare type PreonboardingClassificationRequest = io.flow.internal.v0.mod
|
|
|
24701
25041
|
export declare type PreonboardingClassificationResult = io.flow.internal.v0.models.PreonboardingClassificationResult;
|
|
24702
25042
|
export declare type PreonboardingClassificationType = io.flow.internal.v0.enums.PreonboardingClassificationType;
|
|
24703
25043
|
export declare type PreonboardingMerchant = io.flow.internal.v0.models.PreonboardingMerchant;
|
|
25044
|
+
export declare type PreonboardingMerchantDeleted = io.flow.internal.v0.models.PreonboardingMerchantDeleted;
|
|
25045
|
+
export declare type PreonboardingMerchantUpserted = io.flow.internal.v0.models.PreonboardingMerchantUpserted;
|
|
24704
25046
|
export declare type PreonboardingRequestStatus = io.flow.internal.v0.enums.PreonboardingRequestStatus;
|
|
24705
25047
|
export declare type PreonboardingSellabilityResult = io.flow.internal.v0.models.PreonboardingSellabilityResult;
|
|
24706
25048
|
export declare type PreonboardingSellabilityResultDeleted = io.flow.internal.v0.models.PreonboardingSellabilityResultDeleted;
|
|
@@ -24820,8 +25162,10 @@ export declare type RatecardServiceFeesOverrideForm = io.flow.internal.v0.models
|
|
|
24820
25162
|
export declare type RatesChanged = io.flow.internal.v0.models.RatesChanged;
|
|
24821
25163
|
export declare type RatesNamesSummary = io.flow.internal.v0.models.RatesNamesSummary;
|
|
24822
25164
|
export declare type RaveenaItem = io.flow.internal.v0.models.RaveenaItem;
|
|
25165
|
+
export declare type RaveenaItemDeleted = io.flow.internal.v0.models.RaveenaItemDeleted;
|
|
24823
25166
|
export declare type RaveenaItemForm = io.flow.internal.v0.models.RaveenaItemForm;
|
|
24824
25167
|
export declare type RaveenaItemType = io.flow.internal.v0.enums.RaveenaItemType;
|
|
25168
|
+
export declare type RaveenaItemUpserted = io.flow.internal.v0.models.RaveenaItemUpserted;
|
|
24825
25169
|
export declare type RecordReference = io.flow.internal.v0.models.RecordReference;
|
|
24826
25170
|
export declare type Redirect = io.flow.internal.v0.models.Redirect;
|
|
24827
25171
|
export declare type RedirectActionCompleted = io.flow.internal.v0.models.RedirectActionCompleted;
|
|
@@ -24863,6 +25207,8 @@ export declare type ReportingDebugMissingSubsidies = io.flow.internal.v0.models.
|
|
|
24863
25207
|
export declare type ReportingDestination = io.flow.internal.v0.models.ReportingDestination;
|
|
24864
25208
|
export declare type ReportingDetails = io.flow.internal.v0.models.ReportingDetails;
|
|
24865
25209
|
export declare type ReportingFees = io.flow.internal.v0.models.ReportingFees;
|
|
25210
|
+
export declare type ReportingFreight = io.flow.internal.v0.models.ReportingFreight;
|
|
25211
|
+
export declare type ReportingFreightGuaranteed = io.flow.internal.v0.models.ReportingFreightGuaranteed;
|
|
24866
25212
|
export declare type ReportingFulfillment = io.flow.internal.v0.models.ReportingFulfillment;
|
|
24867
25213
|
export declare type ReportingFulfillmentHas = io.flow.internal.v0.models.ReportingFulfillmentHas;
|
|
24868
25214
|
export declare type ReportingFulfillmentIs = io.flow.internal.v0.models.ReportingFulfillmentIs;
|
|
@@ -24945,6 +25291,12 @@ export declare type RestrictionRuleUpserted = io.flow.internal.v0.models.Restric
|
|
|
24945
25291
|
export declare type RestrictionStateReviewStatus = io.flow.internal.v0.enums.RestrictionStateReviewStatus;
|
|
24946
25292
|
export declare type RestrictionStatus = io.flow.internal.v0.enums.RestrictionStatus;
|
|
24947
25293
|
export declare type RestrictionSummaryCounts = io.flow.internal.v0.models.RestrictionSummaryCounts;
|
|
25294
|
+
export declare type RestrictionsAthenaDailyopsFs = io.flow.internal.v0.models.RestrictionsAthenaDailyopsFs;
|
|
25295
|
+
export declare type RestrictionsAthenaDailyopsFsDeleted = io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsDeleted;
|
|
25296
|
+
export declare type RestrictionsAthenaDailyopsFsUpserted = io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsUpserted;
|
|
25297
|
+
export declare type RestrictionsAthenaDailyopsPcPv = io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPv;
|
|
25298
|
+
export declare type RestrictionsAthenaDailyopsPcPvDeleted = io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvDeleted;
|
|
25299
|
+
export declare type RestrictionsAthenaDailyopsPcPvUpserted = io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvUpserted;
|
|
24948
25300
|
export declare type RestrictionsDailyops = io.flow.internal.v0.models.RestrictionsDailyops;
|
|
24949
25301
|
export declare type RestrictionsDailyopsDeleted = io.flow.internal.v0.models.RestrictionsDailyopsDeleted;
|
|
24950
25302
|
export declare type RestrictionsDailyopsUpserted = io.flow.internal.v0.models.RestrictionsDailyopsUpserted;
|
|
@@ -25004,6 +25356,9 @@ export declare type ShippingPricing = io.flow.internal.v0.models.ShippingPricing
|
|
|
25004
25356
|
export declare type ShippingRateEstimateAvailableInternal = io.flow.internal.v0.models.ShippingRateEstimateAvailableInternal;
|
|
25005
25357
|
export declare type ShippingRateEstimateInternal = io.flow.internal.v0.models.ShippingRateEstimateInternal;
|
|
25006
25358
|
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;
|
|
25007
25362
|
export declare type ShopifyAddress = io.flow.internal.v0.models.ShopifyAddress;
|
|
25008
25363
|
export declare type ShopifyCallbackError = io.flow.internal.v0.models.ShopifyCallbackError;
|
|
25009
25364
|
export declare type ShopifyCallbackErrorCode = io.flow.internal.v0.enums.ShopifyCallbackErrorCode;
|
|
@@ -25070,6 +25425,10 @@ export declare type ShopifyMarketsWebhookRegistration = io.flow.internal.v0.mode
|
|
|
25070
25425
|
export declare type ShopifyMarketsWebhookRegistrationDeleted = io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted;
|
|
25071
25426
|
export declare type ShopifyMarketsWebhookRegistrationUpserted = io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted;
|
|
25072
25427
|
export declare type ShopifyMeasurements = io.flow.internal.v0.models.ShopifyMeasurements;
|
|
25428
|
+
export declare type ShopifyMerchantMarketCountry = io.flow.internal.v0.models.ShopifyMerchantMarketCountry;
|
|
25429
|
+
export declare type ShopifyMerchantMarkets = io.flow.internal.v0.models.ShopifyMerchantMarkets;
|
|
25430
|
+
export declare type ShopifyMerchantMarketsDeleted = io.flow.internal.v0.models.ShopifyMerchantMarketsDeleted;
|
|
25431
|
+
export declare type ShopifyMerchantMarketsUpserted = io.flow.internal.v0.models.ShopifyMerchantMarketsUpserted;
|
|
25073
25432
|
export declare type ShopifyMerchantPlan = io.flow.internal.v0.models.ShopifyMerchantPlan;
|
|
25074
25433
|
export declare type ShopifyMerchantPlanDeleted = io.flow.internal.v0.models.ShopifyMerchantPlanDeleted;
|
|
25075
25434
|
export declare type ShopifyMerchantPlanUpserted = io.flow.internal.v0.models.ShopifyMerchantPlanUpserted;
|