@flowio/types 11.24.138 → 11.24.139
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 +338 -130
- package/dist/api.d.ts +81 -45
- package/package.json +1 -1
- package/src/api-internal.ts +430 -156
- package/src/api.ts +107 -51
package/dist/api-internal.d.ts
CHANGED
|
@@ -929,6 +929,8 @@ declare namespace io.flow.channel.v0.models {
|
|
|
929
929
|
}
|
|
930
930
|
declare namespace io.flow.restrictions.v0.enums {
|
|
931
931
|
type RestrictedReviewStatus = 'in_review' | 'reviewed';
|
|
932
|
+
type RestrictionDecision = 'accept' | 'reject' | 'escalate' | 'review';
|
|
933
|
+
type RestrictionDecisionReason = 'manual_dispute';
|
|
932
934
|
type RestrictionEnvironment = 'sandbox' | 'production' | 'qa';
|
|
933
935
|
type ReviewStatus = 'high_risk_in_review' | 'low_risk_in_review' | 'reviewed';
|
|
934
936
|
}
|
|
@@ -966,6 +968,16 @@ declare namespace io.flow.restrictions.v0.models {
|
|
|
966
968
|
readonly reasons: string[];
|
|
967
969
|
readonly review_status: io.flow.restrictions.v0.enums.RestrictedReviewStatus;
|
|
968
970
|
}
|
|
971
|
+
interface RestrictionDecisionsForm {
|
|
972
|
+
readonly organization_id: string;
|
|
973
|
+
readonly rule_decisions: io.flow.restrictions.v0.models.RestrictionRuleDecisionForm[];
|
|
974
|
+
}
|
|
975
|
+
interface RestrictionRuleDecisionForm {
|
|
976
|
+
readonly product_id: string;
|
|
977
|
+
readonly reason_code: string;
|
|
978
|
+
readonly decision: io.flow.restrictions.v0.enums.RestrictionDecision;
|
|
979
|
+
readonly decision_reason: io.flow.restrictions.v0.enums.RestrictionDecisionReason;
|
|
980
|
+
}
|
|
969
981
|
}
|
|
970
982
|
declare namespace io.flow.fulfillment.v0.enums {
|
|
971
983
|
type CenterCapability = 'international' | 'domestic' | 'crossdock' | 'commercial_invoice';
|
|
@@ -4007,6 +4019,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
4007
4019
|
readonly id?: string;
|
|
4008
4020
|
readonly ratecard: io.flow.label.v0.models.ShippingLabelRatecardSummary;
|
|
4009
4021
|
readonly weight_break?: number;
|
|
4022
|
+
readonly dim_factor?: number;
|
|
4010
4023
|
}
|
|
4011
4024
|
interface ShippingLabelPackage {
|
|
4012
4025
|
readonly dimensions: io.flow.common.v0.models.Dimension;
|
|
@@ -4969,11 +4982,6 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
4969
4982
|
readonly origin: string;
|
|
4970
4983
|
readonly destination: string;
|
|
4971
4984
|
}
|
|
4972
|
-
interface ShopifyAdaptivePricingCoefficients {
|
|
4973
|
-
readonly id: string;
|
|
4974
|
-
readonly organization_id: string;
|
|
4975
|
-
readonly destination_coefficients: io.flow.shopify.markets.v0.models.ShopifyAdaptivePricingDestinationCoefficients[];
|
|
4976
|
-
}
|
|
4977
4985
|
interface ShopifyHs10Code {
|
|
4978
4986
|
readonly country_code?: string;
|
|
4979
4987
|
readonly code: string;
|
|
@@ -5077,6 +5085,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5077
5085
|
interface ShopifyMerchantMarketCountry {
|
|
5078
5086
|
readonly code: string;
|
|
5079
5087
|
readonly actively_managing: boolean;
|
|
5088
|
+
readonly enabled: boolean;
|
|
5080
5089
|
}
|
|
5081
5090
|
interface ShopifyMerchantMarkets {
|
|
5082
5091
|
readonly id: string;
|
|
@@ -5179,6 +5188,39 @@ declare namespace io.flow.consumer.invoice.v0.models {
|
|
|
5179
5188
|
readonly order?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
5180
5189
|
readonly voids_b2b_invoice?: boolean;
|
|
5181
5190
|
}
|
|
5191
|
+
interface B2BCreditNote {
|
|
5192
|
+
readonly id: string;
|
|
5193
|
+
readonly number: string;
|
|
5194
|
+
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
5195
|
+
readonly date: string;
|
|
5196
|
+
readonly key: string;
|
|
5197
|
+
readonly debit_note: io.flow.consumer.invoice.v0.models.B2BDebitNoteReference;
|
|
5198
|
+
readonly order?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
5199
|
+
readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
5200
|
+
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
5201
|
+
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
5202
|
+
readonly attributes: Record<string, string>;
|
|
5203
|
+
readonly voids_b2b_debit_note?: boolean;
|
|
5204
|
+
}
|
|
5205
|
+
interface B2BDebitNote {
|
|
5206
|
+
readonly id: string;
|
|
5207
|
+
readonly number: string;
|
|
5208
|
+
readonly buyer: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
5209
|
+
readonly seller: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
5210
|
+
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
5211
|
+
readonly date: string;
|
|
5212
|
+
readonly key: string;
|
|
5213
|
+
readonly order: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
5214
|
+
readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
5215
|
+
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
5216
|
+
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
5217
|
+
readonly attributes: Record<string, string>;
|
|
5218
|
+
}
|
|
5219
|
+
interface B2BDebitNoteReference {
|
|
5220
|
+
readonly id: string;
|
|
5221
|
+
readonly key: string;
|
|
5222
|
+
readonly number: string;
|
|
5223
|
+
}
|
|
5182
5224
|
interface B2BInvoice {
|
|
5183
5225
|
readonly id: string;
|
|
5184
5226
|
readonly number: string;
|
|
@@ -6803,8 +6845,8 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6803
6845
|
interface ShopWrapper {
|
|
6804
6846
|
readonly shop: io.flow.shopify.markets.v0.models.Shop;
|
|
6805
6847
|
}
|
|
6806
|
-
interface
|
|
6807
|
-
readonly
|
|
6848
|
+
interface ShopifyAdaptivePricingDestination {
|
|
6849
|
+
readonly country_code: string;
|
|
6808
6850
|
readonly updated_at: string;
|
|
6809
6851
|
readonly tax_and_duty_coefficient: string;
|
|
6810
6852
|
readonly fees_coefficient: string;
|
|
@@ -6813,6 +6855,9 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6813
6855
|
readonly adaptive_pricing_enabled: boolean;
|
|
6814
6856
|
readonly adaptive_shipping_enabled: boolean;
|
|
6815
6857
|
}
|
|
6858
|
+
interface ShopifyAdaptivePricingDestinationsWrapper {
|
|
6859
|
+
readonly destinations: io.flow.shopify.markets.v0.models.ShopifyAdaptivePricingDestination[];
|
|
6860
|
+
}
|
|
6816
6861
|
interface ShopifyAppliedDiscount {
|
|
6817
6862
|
readonly title?: string;
|
|
6818
6863
|
readonly description?: string;
|
|
@@ -7981,6 +8026,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
7981
8026
|
readonly created_at?: string;
|
|
7982
8027
|
readonly status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
7983
8028
|
readonly type?: io.flow.common.v0.enums.OrganizationType;
|
|
8029
|
+
readonly channel?: io.flow.common.v0.models.ChannelReference;
|
|
7984
8030
|
}
|
|
7985
8031
|
interface OrganizationDefaults {
|
|
7986
8032
|
readonly country: string;
|
|
@@ -7992,6 +8038,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
7992
8038
|
interface OrganizationReference {
|
|
7993
8039
|
readonly discriminator: 'organization_reference';
|
|
7994
8040
|
readonly id: string;
|
|
8041
|
+
readonly channel?: io.flow.common.v0.models.ChannelReference;
|
|
7995
8042
|
}
|
|
7996
8043
|
interface OrganizationSummary {
|
|
7997
8044
|
readonly id: string;
|
|
@@ -8139,20 +8186,6 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
8139
8186
|
readonly timestamp: string;
|
|
8140
8187
|
readonly order_tax_and_duty_inclusivity_setting: io.flow.shopify.markets.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
8141
8188
|
}
|
|
8142
|
-
interface ShopifyAdaptivePricingCoefficientsDeleted {
|
|
8143
|
-
readonly discriminator: 'shopify_adaptive_pricing_coefficients_deleted';
|
|
8144
|
-
readonly event_id: string;
|
|
8145
|
-
readonly timestamp: string;
|
|
8146
|
-
readonly organization: string;
|
|
8147
|
-
readonly id: string;
|
|
8148
|
-
}
|
|
8149
|
-
interface ShopifyAdaptivePricingCoefficientsUpserted {
|
|
8150
|
-
readonly discriminator: 'shopify_adaptive_pricing_coefficients_upserted';
|
|
8151
|
-
readonly event_id: string;
|
|
8152
|
-
readonly timestamp: string;
|
|
8153
|
-
readonly organization: string;
|
|
8154
|
-
readonly shopify_adaptive_pricing_coefficients: io.flow.shopify.markets.internal.v0.models.ShopifyAdaptivePricingCoefficients;
|
|
8155
|
-
}
|
|
8156
8189
|
interface ShopifyIncotermIncludes {
|
|
8157
8190
|
readonly duties: boolean;
|
|
8158
8191
|
readonly taxes: boolean;
|
|
@@ -8359,7 +8392,7 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
8359
8392
|
}
|
|
8360
8393
|
}
|
|
8361
8394
|
declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
8362
|
-
type ShopifyMarketsInternalEvent = io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.
|
|
8395
|
+
type ShopifyMarketsInternalEvent = io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMerchantMarketsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMerchantMarketsDeleted;
|
|
8363
8396
|
}
|
|
8364
8397
|
declare namespace io.flow.experience.v0.enums {
|
|
8365
8398
|
type AddressFieldName = 'first_name' | 'last_name' | 'street_1' | 'street_2' | 'city' | 'province' | 'postal' | 'country' | 'phone' | 'company' | 'vat_registration_number';
|
|
@@ -9490,6 +9523,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9490
9523
|
interface LaneSummary {
|
|
9491
9524
|
readonly id: string;
|
|
9492
9525
|
readonly ratecard: io.flow.ratecard.v0.models.RatecardSummary;
|
|
9526
|
+
readonly dim_factor: number;
|
|
9493
9527
|
}
|
|
9494
9528
|
interface LargePackageServiceFee {
|
|
9495
9529
|
readonly discriminator: 'large_package_service_fee';
|
|
@@ -9557,6 +9591,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9557
9591
|
readonly glbe_shipping_method_id?: string;
|
|
9558
9592
|
readonly glbe_proposition_name?: string;
|
|
9559
9593
|
readonly channel_revenue_share_percentage?: number;
|
|
9594
|
+
readonly channel_id?: string;
|
|
9560
9595
|
}
|
|
9561
9596
|
interface RatecardCarrierSummary {
|
|
9562
9597
|
readonly id: string;
|
|
@@ -9649,6 +9684,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9649
9684
|
readonly glbe_shipping_method_id?: string;
|
|
9650
9685
|
readonly glbe_proposition_name?: string;
|
|
9651
9686
|
readonly channel_revenue_share_percentage?: number;
|
|
9687
|
+
readonly channel_id?: string;
|
|
9652
9688
|
readonly data?: io.flow.ratecard.v0.models.RatecardData;
|
|
9653
9689
|
}
|
|
9654
9690
|
interface RatecardLane {
|
|
@@ -9681,32 +9717,13 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9681
9717
|
readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9682
9718
|
readonly distance_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9683
9719
|
}
|
|
9684
|
-
interface RatecardLaneImportForm {
|
|
9685
|
-
readonly ratecard_owner: io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
9686
|
-
readonly service: string;
|
|
9687
|
-
readonly currency: string;
|
|
9688
|
-
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
9689
|
-
readonly origin: io.flow.common.v0.models.Zone;
|
|
9690
|
-
readonly destination: io.flow.common.v0.models.Zone;
|
|
9691
|
-
readonly shipment_window: io.flow.ratecard.v0.models.ShipmentWindow;
|
|
9692
|
-
readonly dim_factor: number;
|
|
9693
|
-
readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9694
|
-
readonly distance_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9695
|
-
readonly rates: io.flow.ratecard.v0.models.RatecardRateForm[];
|
|
9696
|
-
}
|
|
9697
9720
|
interface RatecardLaneVersion {
|
|
9698
9721
|
readonly id: string;
|
|
9699
9722
|
readonly timestamp: string;
|
|
9700
9723
|
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
9701
9724
|
readonly ratecard_lane: io.flow.ratecard.v0.models.RatecardLane;
|
|
9702
9725
|
}
|
|
9703
|
-
interface RatecardLanesImportRequestData {
|
|
9704
|
-
readonly id: string;
|
|
9705
|
-
readonly source_url: string;
|
|
9706
|
-
readonly filename?: string;
|
|
9707
|
-
}
|
|
9708
9726
|
interface RatecardRate {
|
|
9709
|
-
readonly id: string;
|
|
9710
9727
|
readonly amount: number;
|
|
9711
9728
|
readonly weight: number;
|
|
9712
9729
|
}
|
|
@@ -9714,12 +9731,6 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9714
9731
|
readonly amount: number;
|
|
9715
9732
|
readonly weight: number;
|
|
9716
9733
|
}
|
|
9717
|
-
interface RatecardRateVersion {
|
|
9718
|
-
readonly id: string;
|
|
9719
|
-
readonly timestamp: string;
|
|
9720
|
-
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
9721
|
-
readonly ratecard_rate: io.flow.ratecard.v0.models.RatecardRate;
|
|
9722
|
-
}
|
|
9723
9734
|
interface RatecardReference {
|
|
9724
9735
|
readonly id: string;
|
|
9725
9736
|
}
|
|
@@ -10771,6 +10782,7 @@ declare namespace io.flow.merchant.onboarding.v0.unions {
|
|
|
10771
10782
|
declare namespace io.flow.catalog.v0.enums {
|
|
10772
10783
|
type AdjustmentReasonKey = 'duty_deminimis' | 'vat_deminimis';
|
|
10773
10784
|
type AttributeIntent = 'brand' | 'color' | 'countries_of_origin' | 'product_id' | 'fulfillment_method' | 'hazardous' | 'price' | 'size' | 'sku' | 'taxability' | 'consumer_url' | 'gtin' | 'mpn' | 'facet' | 'eccn' | 'returnable' | 'searchable' | 'barcode' | 'min_days_to_ship' | 'max_days_to_ship' | 'commercial_invoice_item_number' | 'include_in_product_feeds';
|
|
10785
|
+
type CpscAttribute = 'certification_id' | 'citation_codes' | 'manufactured_date' | 'manufactured_location' | 'product_test_date' | 'test_lab_name' | 'point_of_contact' | 'certification_version' | 'certification_product_id' | 'certificate_type' | 'lab_type' | 'taxonomy_reference';
|
|
10774
10786
|
type FulfillmentMethodType = 'fulfillment_method';
|
|
10775
10787
|
type FulfillmentMethodValue = 'digital' | 'physical';
|
|
10776
10788
|
type ImageTag = 'thumbnail' | 'checkout';
|
|
@@ -11308,9 +11320,9 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
11308
11320
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
11309
11321
|
type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance' | 'unfulfilled_amount_greater_than_negative_balance' | 'account_payment_hold';
|
|
11310
11322
|
type StatementAttachmentType = 'csv' | 'pdf';
|
|
11311
|
-
type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
11323
|
+
type StatementStatusCode = 'scheduled' | 'sent' | 'failed' | 'paid';
|
|
11312
11324
|
type TaxDutyTransactionReasonCode = 'post_capture' | 'post_fulfilment' | 'manual_payment_or_gift_card' | 'order_edit' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'us_inbound_tax_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'full_refund_without_shipment' | 'unfulfilled_order_above_de_min' | 'order_cancellation_without_capture';
|
|
11313
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'duty_refund' | 'non_l4l_tax_duty_fx' | 'merchant_payout' | 'merchant_refund' | 'ge_revenue_share' | 'merchant_fee' | 'b2b_tax' | 'b2b_tax_refund' | 'b2b_fee_mor_tax' | 'b2b_fee_shipping_tax' | 'flat_rate_label';
|
|
11325
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'duty_refund' | 'non_l4l_tax_duty_fx' | 'merchant_payout' | 'merchant_refund' | 'ge_revenue_share' | 'merchant_fee' | 'b2b_tax' | 'b2b_tax_refund' | 'b2b_fee_mor_tax' | 'b2b_fee_shipping_tax' | 'flat_rate_label' | 'flat_rate_label_subsidy';
|
|
11314
11326
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
11315
11327
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
11316
11328
|
}
|
|
@@ -11484,6 +11496,10 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11484
11496
|
readonly timestamp: string;
|
|
11485
11497
|
readonly reason: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
11486
11498
|
}
|
|
11499
|
+
interface PayoutStatusPaid {
|
|
11500
|
+
readonly code: 'paid';
|
|
11501
|
+
readonly timestamp: string;
|
|
11502
|
+
}
|
|
11487
11503
|
interface PayoutStatusScheduled {
|
|
11488
11504
|
readonly code: 'scheduled';
|
|
11489
11505
|
readonly placeholder?: string;
|
|
@@ -11630,6 +11646,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11630
11646
|
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
11631
11647
|
readonly carrier: io.flow.billing.v0.models.TransactionMetadataShippingLabelCarrier;
|
|
11632
11648
|
readonly revenue_share_percentage?: number;
|
|
11649
|
+
readonly actual?: io.flow.billing.v0.models.TransactionMetadataTrueupData;
|
|
11633
11650
|
}
|
|
11634
11651
|
interface TransactionMetadataShippingLabelCarrier {
|
|
11635
11652
|
readonly id: string;
|
|
@@ -11736,7 +11753,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11736
11753
|
}
|
|
11737
11754
|
declare namespace io.flow.billing.v0.unions {
|
|
11738
11755
|
type BankAccountForm = io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple;
|
|
11739
|
-
type PayoutStatus = io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed;
|
|
11756
|
+
type PayoutStatus = io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed | io.flow.billing.v0.models.PayoutStatusPaid;
|
|
11740
11757
|
type Settlement = io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout;
|
|
11741
11758
|
type TransactionMetadata = io.flow.billing.v0.models.TransactionMetadataShippingLabel | io.flow.billing.v0.models.TransactionMetadataChannel | io.flow.billing.v0.models.TransactionMetadataTrueup | io.flow.billing.v0.models.TransactionMetadataTrueupBase | io.flow.billing.v0.models.TransactionMetadataTrueupSurcharge | io.flow.billing.v0.models.TransactionMetadataCarrierCharge | io.flow.billing.v0.models.TransactionMetadataManual | io.flow.billing.v0.models.TransactionMetadataFailedPayout | io.flow.billing.v0.models.TransactionMetadataPaymentTransaction | io.flow.billing.v0.models.TransactionMetadataTaxDuty | io.flow.billing.v0.models.TransactionMetadataMerchantFee | io.flow.billing.v0.models.TransactionMetadataFlatRateLabel;
|
|
11742
11759
|
}
|
|
@@ -12158,6 +12175,7 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
12158
12175
|
readonly price: io.flow.common.v0.models.Money;
|
|
12159
12176
|
readonly description: string;
|
|
12160
12177
|
readonly taxonomy_category: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
12178
|
+
readonly inferred_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
12161
12179
|
readonly mode: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
12162
12180
|
readonly catalog_size?: number;
|
|
12163
12181
|
readonly relative_ranking?: number;
|
|
@@ -12300,6 +12318,7 @@ declare namespace io.flow.organization.v0.models {
|
|
|
12300
12318
|
readonly province?: string;
|
|
12301
12319
|
readonly self_billing_agreement_effective_at: string;
|
|
12302
12320
|
readonly self_billing_agreement_expires_at?: string;
|
|
12321
|
+
readonly legal_name?: string;
|
|
12303
12322
|
}
|
|
12304
12323
|
interface OrganizationVersion {
|
|
12305
12324
|
readonly id: string;
|
|
@@ -12324,6 +12343,7 @@ declare namespace io.flow.organization.v0.models {
|
|
|
12324
12343
|
readonly country: string;
|
|
12325
12344
|
readonly tax_code: string;
|
|
12326
12345
|
readonly province?: string;
|
|
12346
|
+
readonly legal_name?: string;
|
|
12327
12347
|
}
|
|
12328
12348
|
}
|
|
12329
12349
|
declare namespace io.flow.billing.bank.account.v0.models {
|
|
@@ -12349,17 +12369,6 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
12349
12369
|
}
|
|
12350
12370
|
interface BankAccountInfoKor {
|
|
12351
12371
|
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';
|
|
12363
12372
|
readonly name: string;
|
|
12364
12373
|
readonly bank_account_number: string;
|
|
12365
12374
|
readonly bank_routing_number: string;
|
|
@@ -12372,7 +12381,7 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
12372
12381
|
}
|
|
12373
12382
|
}
|
|
12374
12383
|
declare namespace io.flow.billing.bank.account.v0.unions {
|
|
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
|
|
12384
|
+
type BankAccountInfo = io.flow.billing.bank.account.v0.models.BankAccountInfoUsa | io.flow.billing.bank.account.v0.models.BankAccountInfoCan | io.flow.billing.bank.account.v0.models.BankAccountInfoGbr | io.flow.billing.bank.account.v0.models.BankAccountInfoFra | io.flow.billing.bank.account.v0.models.BankAccountInfoIta | io.flow.billing.bank.account.v0.models.BankAccountInfoKor;
|
|
12376
12385
|
}
|
|
12377
12386
|
declare namespace io.flow.internal.v0.enums {
|
|
12378
12387
|
type AccountCurrencyFilter = 'GBP' | 'CAD' | 'USD' | 'KRW';
|
|
@@ -12388,18 +12397,18 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12388
12397
|
type ApplicablePreferentialRate = 'baby' | 'children';
|
|
12389
12398
|
type AthenaDailyopsIntentLevel = 'low_intent' | 'high_intent';
|
|
12390
12399
|
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-b186129720f0446eb452a68518437c95' | 'prr-36e1603f56e54eb889792637c29eed40' | 'prr-7ead2cc4bf2840a3a9b50d222eb0ed7e' | 'prr-ec2f3d608b7e43a49de88ac40e6b50a8' | 'prr-04ed078c39ca4447b171f767d71a481d' | 'prr-bb664a76d6d64a17843e720e6ccd401a' | 'prr-8ce63afcd48641eb9d44e04117348a96' | 'prr-76544617791b4ce8af96b3a7879474c6' | 'prr-566cc67167944bc4bd08167aa9c0beba' | 'prr-74e1320efb7741cf9ace400b69800f9b';
|
|
12391
|
-
type B2BFeeMorTaxTriggerType = 'capture' | 'order';
|
|
12400
|
+
type B2BFeeMorTaxTriggerType = 'capture' | 'order' | 'settings';
|
|
12392
12401
|
type B2BFeeShippingTaxTriggerType = 'label' | 'trueup';
|
|
12393
12402
|
type B2BTaxLedgerDocumentType = 'b2b_invoice' | 'b2b_credit_memo' | 'mor_invoice' | 'mor_credit_memo' | 'label_invoice' | 'label_credit_memo';
|
|
12394
12403
|
type B2BTaxRateType = 'basic' | 'preferential' | 'exempt';
|
|
12395
12404
|
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
12396
12405
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
12397
|
-
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
12406
|
+
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed' | 'paid';
|
|
12398
12407
|
type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
|
|
12399
12408
|
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_number_offboarded_accounts' | 'negative_balance_number_active_accounts_with_balance_over_1000' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_total_offboarded_accounts' | 'negative_balance_single_account_max' | 'negative_balance_single_active_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction' | 'negative_balance_scheduled_count' | 'negative_balance_scheduled_total' | 'negative_balance_sent_count' | 'negative_balance_sent_total' | 'negative_balance_failed_count' | 'negative_balance_failed_total' | 'negative_debit_success_rate' | 'current_attempt_merchant_count' | 'current_attempt_amount_total' | 'current_attempt_failed_merchant_count' | 'current_attempt_failed_amount_total' | 'current_attempt_success_ratio' | 'first_attempt_merchant_count' | 'first_attempt_amount_total' | 'first_attempt_failed_merchant_count' | 'first_attempt_failed_amount_total' | 'first_attempt_success_ratio' | 'second_attempt_merchant_count' | 'second_attempt_amount_total' | 'second_attempt_failed_merchant_count' | 'second_attempt_failed_amount_total' | 'second_attempt_success_ratio' | 'third_attempt_merchant_count' | 'third_attempt_amount_total' | 'third_attempt_failed_merchant_count' | 'third_attempt_failed_amount_total' | 'third_attempt_success_ratio' | 'fourth_plus_attempt_merchant_count' | 'fourth_plus_attempt_amount_total' | 'fourth_plus_attempt_failed_merchant_count' | 'fourth_plus_attempt_failed_amount_total' | 'fourth_plus_attempt_success_ratio' | 'ge_revenue_share_standard_transactions_count' | 'ge_revenue_share_standard_transactions_total' | 'ge_revenue_share_standard_transactions_percentage' | 'ge_revenue_share_shopify_plus_transactions_count' | 'ge_revenue_share_shopify_plus_transactions_total' | 'ge_revenue_share_shopify_plus_transactions_percentage' | 'non_l4l_tax_duty_fx_transactions_count' | 'non_l4l_tax_duty_fx_transactions_total' | 'non_l4l_tax_duty_fx_transactions_percentage' | 'sp_adjustment_transactions_count' | 'sp_adjustment_transactions_total' | 'sp_billable_label_transactions_count' | 'sp_billable_label_transactions_count_for_unique_orders' | 'sp_billable_label_transactions_total' | 'capture_transactions_standard_count' | 'capture_transactions_standard_total' | 'capture_transactions_shopify_plus_count' | 'capture_transactions_shopify_plus_total' | 'sp_capture_transactions_count' | 'sp_capture_transactions_total' | 'sp_carrier_charge_transactions_count' | 'sp_carrier_charge_transactions_total' | 'sp_channel_transactions_count' | 'sp_channel_transactions_total' | 'sp_duty_transactions_count' | 'sp_duty_transactions_total' | 'sp_manual_transactions_count' | 'sp_manual_transactions_total' | 'sp_refund_transactions_count' | 'sp_refund_transactions_total' | 'sp_reversal_transactions_count' | 'sp_reversal_transactions_total' | 'sp_revenue_share_label_transactions_count' | 'sp_revenue_share_label_transactions_count_for_unique_orders' | 'sp_revenue_share_label_transactions_total' | 'sp_tax_transactions_count' | 'sp_tax_transactions_total' | 'sp_transfer_transactions_count' | 'sp_transfer_transactions_total' | 'sp_trueup_transactions_count' | 'sp_trueup_transactions_total';
|
|
12400
12409
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
|
|
12401
12410
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
12402
|
-
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'non_l4l_tax_duty_fx' | 'tax_refund' | 'duty_refund' | 'ge_revenue_share' | 'merchant_fee' | 'merchant_payout' | 'merchant_refund' | 'b2b_tax' | 'b2b_tax_refund' | 'b2b_fee_mor_tax' | 'b2b_fee_shipping_tax' | 'flat_rate_label';
|
|
12411
|
+
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'non_l4l_tax_duty_fx' | 'tax_refund' | 'duty_refund' | 'ge_revenue_share' | 'merchant_fee' | 'merchant_payout' | 'merchant_refund' | 'b2b_tax' | 'b2b_tax_refund' | 'b2b_fee_mor_tax' | 'b2b_fee_shipping_tax' | 'flat_rate_label' | 'flat_rate_label_subsidy';
|
|
12403
12412
|
type BojanaItemType = 'physical' | 'digital';
|
|
12404
12413
|
type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
|
|
12405
12414
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
@@ -12443,6 +12452,13 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12443
12452
|
type ComplianceType = 'weee';
|
|
12444
12453
|
type ConnectReportPaymentTransferType = 'ManagedMarketsRefundDebit' | 'ManagedMarketsDutiesAndTaxesAdjustmentDebit' | 'ManagedMarketsDisputedAmountDebit';
|
|
12445
12454
|
type ConnectReportTransferTransferType = 'ManagedMarketsChargeCredit' | 'ManagedMarketsDisputeWonAmountCredit' | 'ManagedMarketsDutiesAndTaxesAdjustmentCredit';
|
|
12455
|
+
type CpscCertificateType = 'GCC' | 'CPC';
|
|
12456
|
+
type CpscFileType = 'GeRegistered' | 'PreRegistered';
|
|
12457
|
+
type CpscLabType = 'ITL' | 'LAB' | 'NOL';
|
|
12458
|
+
type CpscLotNumberAssignedBy = 'Seller' | 'Manufacturer';
|
|
12459
|
+
type CpscPointOfContactType = 'Importer' | 'Manufacturer' | 'Laboratory' | 'Broker' | 'Other';
|
|
12460
|
+
type CpscPrimaryProductIdType = 'GTIN' | 'UPC' | 'SKU' | 'Model Number' | 'Serial Number' | 'Registered Number' | 'Alternate Identifier';
|
|
12461
|
+
type CpscYesNo = 'Y' | 'N';
|
|
12446
12462
|
type CrossdockTrackingStatus = 'notified' | 'received' | 'shipped';
|
|
12447
12463
|
type DebugAccountingTransactionType = 'fulfillment';
|
|
12448
12464
|
type DeliveredDutyOptionMessageType = 'warning' | 'notification';
|
|
@@ -12471,7 +12487,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12471
12487
|
type EmptyAttribute = 'irrelevant';
|
|
12472
12488
|
type ErpFileType = 'vendor';
|
|
12473
12489
|
type EvaluationCheckResult = 'pass' | 'fail';
|
|
12474
|
-
type EventType = 'adaptive_shipping_rate_upserted' | 'adaptive_shipping_rate_deleted' | 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'fulfillment_status_upserted' | 'fulfillment_status_deleted' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'channel_shop_statistics_upserted' | 'channel_shop_statistics_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'shipping_cost_upserted' | 'shipping_cost_deleted' | 'mor_cost_upserted' | 'mor_cost_deleted' | 'flat_rate_label_reversal_upserted' | 'flat_rate_label_reversal_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'merchant_override_upserted' | 'merchant_override_deleted' | 'harmonization_classification_statistics_published' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_creation_job_upserted' | 'label_creation_job_deleted' | 'adaptive_shipping_order_guarantee_upserted' | 'adaptive_shipping_order_guarantee_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'partner_request_upserted' | 'partner_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'order_refund_transaction_upserted' | 'order_refund_transaction_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'preonboarding_sellability_result_inserted' | 'preonboarding_sellability_result_updated' | 'preonboarding_sellability_result_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'product_restriction_state_inserted' | 'product_restriction_state_updated' | 'product_restriction_state_deleted' | 'product_sellability_result_inserted' | 'product_sellability_result_updated' | 'product_sellability_result_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restrictions_athena_dailyops_pc_pv_upserted' | 'restrictions_athena_dailyops_pc_pv_deleted' | 'restrictions_athena_dailyops_fs_upserted' | 'restrictions_athena_dailyops_fs_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'taxonomy_category_hs6_ref_upserted' | 'taxonomy_category_hs6_ref_deleted' | 'preonboarding_merchant_upserted' | 'preonboarding_merchant_deleted' | 'shopify_hs10_codes_upserted' | 'shopify_hs10_codes_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_product_taxonomy_attribute_upserted' | 'shopify_product_taxonomy_attribute_deleted' | 'shopify_product_taxonomy_attribute_value_upserted' | 'shopify_product_taxonomy_attribute_value_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_order_risk_assessment_upserted' | 'shopify_order_risk_assessment_deleted' | 'shopify_order_transaction_upserted' | 'shopify_order_transaction_deleted' | 'shopify_test_order_upserted' | 'shopify_test_order_deleted' | 'shopify_adaptive_pricing_coefficients_upserted' | 'shopify_adaptive_pricing_coefficients_deleted' | 'shopify_merchant_markets_upserted' | 'shopify_merchant_markets_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'shopify_merchant_plan_upserted' | 'shopify_merchant_plan_deleted' | 'shopify_dispute_upserted' | 'shopify_dispute_deleted' | 'shopify_report_file_upserted' | 'shopify_report_file_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'b2b_tax_transaction_upserted' | 'b2b_tax_transaction_deleted' | 'gabriel_item_upserted' | 'gabriel_item_deleted' | 'chenglin_item_upserted' | 'chenglin_item_deleted' | 'bojana_item_upserted' | 'bojana_item_deleted' | 'raveena_item_upserted' | 'raveena_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
12490
|
+
type EventType = 'adaptive_pricing_coefficient_upserted' | 'adaptive_pricing_coefficient_deleted' | 'adaptive_pricing_update_upserted' | 'adaptive_pricing_update_deleted' | 'adaptive_shipping_rate_upserted' | 'adaptive_shipping_rate_deleted' | 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'fulfillment_status_upserted' | 'fulfillment_status_deleted' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'sales_payment_record_upserted' | 'sales_payment_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'channel_shop_statistics_upserted' | 'channel_shop_statistics_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'shipping_cost_upserted' | 'shipping_cost_deleted' | 'mor_cost_upserted' | 'mor_cost_deleted' | 'flat_rate_label_reversal_upserted' | 'flat_rate_label_reversal_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'quote_upserted' | 'quote_deleted' | 'guaranteed_shipping_published_output_upserted' | 'guaranteed_shipping_published_output_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'merchant_override_upserted' | 'merchant_override_deleted' | 'harmonization_classification_statistics_published' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_creation_job_upserted' | 'label_creation_job_deleted' | 'adaptive_shipping_order_guarantee_upserted' | 'adaptive_shipping_order_guarantee_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'partner_request_upserted' | 'partner_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'order_refund_transaction_upserted' | 'order_refund_transaction_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'preonboarding_sellability_result_inserted' | 'preonboarding_sellability_result_updated' | 'preonboarding_sellability_result_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'product_restriction_state_inserted' | 'product_restriction_state_updated' | 'product_restriction_state_deleted' | 'product_sellability_result_inserted' | 'product_sellability_result_updated' | 'product_sellability_result_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restrictions_athena_dailyops_pc_pv_upserted' | 'restrictions_athena_dailyops_pc_pv_deleted' | 'restrictions_athena_dailyops_fs_upserted' | 'restrictions_athena_dailyops_fs_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'taxonomy_category_hs6_ref_upserted' | 'taxonomy_category_hs6_ref_deleted' | 'preonboarding_merchant_upserted' | 'preonboarding_merchant_deleted' | 'shopify_hs10_codes_upserted' | 'shopify_hs10_codes_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_product_taxonomy_attribute_upserted' | 'shopify_product_taxonomy_attribute_deleted' | 'shopify_product_taxonomy_attribute_value_upserted' | 'shopify_product_taxonomy_attribute_value_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_order_risk_assessment_upserted' | 'shopify_order_risk_assessment_deleted' | 'shopify_order_transaction_upserted' | 'shopify_order_transaction_deleted' | 'shopify_test_order_upserted' | 'shopify_test_order_deleted' | 'shopify_merchant_markets_upserted' | 'shopify_merchant_markets_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'shopify_merchant_plan_upserted' | 'shopify_merchant_plan_deleted' | 'shopify_dispute_upserted' | 'shopify_dispute_deleted' | 'shopify_report_file_upserted' | 'shopify_report_file_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'b2b_tax_transaction_upserted' | 'b2b_tax_transaction_deleted' | 'gabriel_item_upserted' | 'gabriel_item_deleted' | 'chenglin_item_upserted' | 'chenglin_item_deleted' | 'bojana_item_upserted' | 'bojana_item_deleted' | 'raveena_item_upserted' | 'raveena_item_deleted' | 'mahesh_item_upserted' | 'mahesh_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
12475
12491
|
type ExperienceImportType = 'experience_with_settings';
|
|
12476
12492
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
12477
12493
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -12481,7 +12497,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12481
12497
|
type FeatureType = 'boolean' | 'decimal' | 'string';
|
|
12482
12498
|
type FeesSource = 'settings' | 'authorization_bundle';
|
|
12483
12499
|
type FileType = 'pdf';
|
|
12484
|
-
type
|
|
12500
|
+
type FlatRateLabelGuaranteeStatus = 'active' | 'void';
|
|
12501
|
+
type FlatRateLabelTransactionType = 'adjustment' | 'reversal' | 'fee' | 'subsidy';
|
|
12485
12502
|
type FraudProvider = 'flow' | 'forter' | 'paypal' | 'riskified' | 'rps' | 'other' | 'none';
|
|
12486
12503
|
type FraudProviderStatus = 'active' | 'archived';
|
|
12487
12504
|
type FraudReviewResponsibleParty = 'flow' | 'organization';
|
|
@@ -12587,7 +12604,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12587
12604
|
type RestrictionAttributeOperator = 'and' | 'or';
|
|
12588
12605
|
type RestrictionAttributeResult = 'pending_classification' | 'pending_verification' | 'accepted' | 'restricted';
|
|
12589
12606
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
12590
|
-
type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox' | 'enterprise-qa' | 'cafe24' | 'cafe24-sandbox';
|
|
12607
|
+
type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox' | 'enterprise-qa' | 'globale' | 'globale-sandbox' | 'cafe24' | 'cafe24-sandbox';
|
|
12591
12608
|
type RestrictionOrganizationSource = 'smb' | 'enterprise';
|
|
12592
12609
|
type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
|
|
12593
12610
|
type RestrictionRuleCommunityExemption = 'domestic_exemption' | 'intra_eu_exemption';
|
|
@@ -12870,19 +12887,60 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12870
12887
|
readonly action: io.flow.internal.v0.enums.ItemQuantityAction;
|
|
12871
12888
|
readonly quantity: number;
|
|
12872
12889
|
}
|
|
12890
|
+
interface AdaptivePricingCoefficient {
|
|
12891
|
+
readonly coefficients_updated_at: number;
|
|
12892
|
+
readonly channel_id: string;
|
|
12893
|
+
readonly organization_id: string;
|
|
12894
|
+
readonly destination_country: string;
|
|
12895
|
+
readonly tax_and_duty_coefficient: number;
|
|
12896
|
+
readonly fees_coefficient: number;
|
|
12897
|
+
readonly merchant_subsidy: io.flow.common.v0.models.Money;
|
|
12898
|
+
readonly created_at: number;
|
|
12899
|
+
}
|
|
12900
|
+
interface AdaptivePricingCoefficientDeleted {
|
|
12901
|
+
readonly discriminator: 'adaptive_pricing_coefficient_deleted';
|
|
12902
|
+
readonly event_id: string;
|
|
12903
|
+
readonly timestamp: string;
|
|
12904
|
+
readonly organization: string;
|
|
12905
|
+
readonly channel_id: string;
|
|
12906
|
+
readonly id: string;
|
|
12907
|
+
}
|
|
12908
|
+
interface AdaptivePricingCoefficientUpserted {
|
|
12909
|
+
readonly discriminator: 'adaptive_pricing_coefficient_upserted';
|
|
12910
|
+
readonly event_id: string;
|
|
12911
|
+
readonly timestamp: string;
|
|
12912
|
+
readonly organization: string;
|
|
12913
|
+
readonly channel_id: string;
|
|
12914
|
+
readonly adaptive_pricing_coefficient: io.flow.internal.v0.models.AdaptivePricingCoefficient;
|
|
12915
|
+
}
|
|
12873
12916
|
interface AdaptivePricingDestinationUpdate {
|
|
12874
|
-
readonly
|
|
12917
|
+
readonly country: string;
|
|
12875
12918
|
readonly updated_at: string;
|
|
12876
12919
|
readonly tax_and_duty_coefficient: number;
|
|
12877
12920
|
readonly fees_coefficient: number;
|
|
12878
|
-
readonly
|
|
12879
|
-
readonly merchant_subsidy_currency: string;
|
|
12921
|
+
readonly merchant_subsidy: io.flow.common.v0.models.Money;
|
|
12880
12922
|
}
|
|
12881
12923
|
interface AdaptivePricingUpdate {
|
|
12882
12924
|
readonly channel_id: string;
|
|
12883
12925
|
readonly organization_id: string;
|
|
12884
12926
|
readonly destination_updates: io.flow.internal.v0.models.AdaptivePricingDestinationUpdate[];
|
|
12885
12927
|
}
|
|
12928
|
+
interface AdaptivePricingUpdateDeleted {
|
|
12929
|
+
readonly discriminator: 'adaptive_pricing_update_deleted';
|
|
12930
|
+
readonly event_id: string;
|
|
12931
|
+
readonly timestamp: string;
|
|
12932
|
+
readonly organization: string;
|
|
12933
|
+
readonly channel_id: string;
|
|
12934
|
+
readonly id: string;
|
|
12935
|
+
}
|
|
12936
|
+
interface AdaptivePricingUpdateUpserted {
|
|
12937
|
+
readonly discriminator: 'adaptive_pricing_update_upserted';
|
|
12938
|
+
readonly event_id: string;
|
|
12939
|
+
readonly timestamp: string;
|
|
12940
|
+
readonly organization: string;
|
|
12941
|
+
readonly channel_id: string;
|
|
12942
|
+
readonly adaptive_pricing_update: io.flow.internal.v0.models.AdaptivePricingUpdate;
|
|
12943
|
+
}
|
|
12886
12944
|
interface AdaptiveShippingOrderGuarantee {
|
|
12887
12945
|
readonly id: string;
|
|
12888
12946
|
readonly organization_id: string;
|
|
@@ -13535,6 +13593,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13535
13593
|
readonly expected_delivery_by?: string;
|
|
13536
13594
|
readonly attributes?: Record<string, string>;
|
|
13537
13595
|
readonly total: io.flow.common.v0.models.Price;
|
|
13596
|
+
readonly created_at?: string;
|
|
13597
|
+
readonly failed_on?: string;
|
|
13538
13598
|
}
|
|
13539
13599
|
interface BankPaymentDeletedV2 {
|
|
13540
13600
|
readonly discriminator: 'bank_payment_deleted_v2';
|
|
@@ -13788,6 +13848,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13788
13848
|
readonly b2b_fee_mor_tax: io.flow.common.v0.models.Price;
|
|
13789
13849
|
readonly b2b_fee_shipping_tax: io.flow.common.v0.models.Price;
|
|
13790
13850
|
readonly flat_rate_label: io.flow.common.v0.models.Price;
|
|
13851
|
+
readonly flat_rate_label_subsidy: io.flow.common.v0.models.Price;
|
|
13791
13852
|
}
|
|
13792
13853
|
interface BillingStatementUpserted {
|
|
13793
13854
|
readonly discriminator: 'billing_statement_upserted';
|
|
@@ -15085,6 +15146,90 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15085
15146
|
readonly items: io.flow.common.v0.models.CatalogItemSummary[];
|
|
15086
15147
|
readonly product_harmonization: io.flow.internal.v0.models.ClassificationProductHarmonization;
|
|
15087
15148
|
}
|
|
15149
|
+
interface CpscProductRegistration {
|
|
15150
|
+
readonly product_update: boolean;
|
|
15151
|
+
readonly current_version_id?: string;
|
|
15152
|
+
readonly new_version_id: string;
|
|
15153
|
+
readonly primary_product_id: string;
|
|
15154
|
+
readonly primary_product_id_type: io.flow.internal.v0.enums.CpscPrimaryProductIdType;
|
|
15155
|
+
readonly gtin?: string;
|
|
15156
|
+
readonly upc?: string;
|
|
15157
|
+
readonly sku?: string;
|
|
15158
|
+
readonly model_number?: string;
|
|
15159
|
+
readonly serial_number?: string;
|
|
15160
|
+
readonly registered_number?: string;
|
|
15161
|
+
readonly alternate_identifier?: string;
|
|
15162
|
+
readonly certificate_type: io.flow.internal.v0.enums.CpscCertificateType;
|
|
15163
|
+
readonly product_name: string;
|
|
15164
|
+
readonly trade_brand_name?: string;
|
|
15165
|
+
readonly product_description?: string;
|
|
15166
|
+
readonly product_color?: string;
|
|
15167
|
+
readonly product_style?: string;
|
|
15168
|
+
readonly manufacturer_is_new?: io.flow.internal.v0.enums.CpscYesNo;
|
|
15169
|
+
readonly manufacturer_gln?: string;
|
|
15170
|
+
readonly manufacturer_alternate_id?: string;
|
|
15171
|
+
readonly manufacturer_name?: string;
|
|
15172
|
+
readonly small_batch_manufacturer_cpsc_id?: string;
|
|
15173
|
+
readonly manufacturer_address_line_1?: string;
|
|
15174
|
+
readonly manufacturer_address_line_2?: string;
|
|
15175
|
+
readonly manufacturer_apt_suite_number?: string;
|
|
15176
|
+
readonly manufacturer_city?: string;
|
|
15177
|
+
readonly manufacturer_state_province?: string;
|
|
15178
|
+
readonly manufacturer_country?: string;
|
|
15179
|
+
readonly manufacturer_zip_postal_code?: string;
|
|
15180
|
+
readonly manufacturer_phone?: string;
|
|
15181
|
+
readonly manufacturer_email?: string;
|
|
15182
|
+
readonly manufacture_date: string;
|
|
15183
|
+
readonly production_start_date?: string;
|
|
15184
|
+
readonly production_end_date?: string;
|
|
15185
|
+
readonly lot_number?: string;
|
|
15186
|
+
readonly lot_number_assigned_by?: io.flow.internal.v0.enums.CpscLotNumberAssignedBy;
|
|
15187
|
+
readonly lab_1_type: io.flow.internal.v0.enums.CpscLabType;
|
|
15188
|
+
readonly lab_1_is_new?: io.flow.internal.v0.enums.CpscYesNo;
|
|
15189
|
+
readonly lab_1_cpsc_id?: string;
|
|
15190
|
+
readonly lab_1_alternate_id?: string;
|
|
15191
|
+
readonly lab_1_gln?: string;
|
|
15192
|
+
readonly lab_1_name?: string;
|
|
15193
|
+
readonly lab_1_address_line_1?: string;
|
|
15194
|
+
readonly lab_1_address_line_2?: string;
|
|
15195
|
+
readonly lab_1_apt_suite_number?: string;
|
|
15196
|
+
readonly lab_1_city?: string;
|
|
15197
|
+
readonly lab_1_state_province?: string;
|
|
15198
|
+
readonly lab_1_country?: string;
|
|
15199
|
+
readonly lab_1_zip_postal_code?: string;
|
|
15200
|
+
readonly lab_1_phone?: string;
|
|
15201
|
+
readonly lab_1_email?: string;
|
|
15202
|
+
readonly lab_1_citation_codes: string;
|
|
15203
|
+
readonly lab_1_test_report_id?: string;
|
|
15204
|
+
readonly lab_1_test_url?: string;
|
|
15205
|
+
readonly lab_1_test_report_access_key?: string;
|
|
15206
|
+
readonly lab_1_is_component?: boolean;
|
|
15207
|
+
readonly lab_1_component_description?: string;
|
|
15208
|
+
readonly last_test_date?: string;
|
|
15209
|
+
readonly poc_for_test_records: io.flow.internal.v0.enums.CpscPointOfContactType;
|
|
15210
|
+
readonly poc_is_new?: io.flow.internal.v0.enums.CpscYesNo;
|
|
15211
|
+
readonly poc_alternate_id?: string;
|
|
15212
|
+
readonly poc_gln?: string;
|
|
15213
|
+
readonly poc_name?: string;
|
|
15214
|
+
readonly poc_address_line_1?: string;
|
|
15215
|
+
readonly poc_address_line_2?: string;
|
|
15216
|
+
readonly poc_apt_suite_number?: string;
|
|
15217
|
+
readonly poc_city?: string;
|
|
15218
|
+
readonly poc_state_province?: string;
|
|
15219
|
+
readonly poc_country?: string;
|
|
15220
|
+
readonly poc_zip_postal_code?: string;
|
|
15221
|
+
readonly poc_phone?: string;
|
|
15222
|
+
readonly poc_email?: string;
|
|
15223
|
+
}
|
|
15224
|
+
interface CpscQueueEnvelope {
|
|
15225
|
+
readonly messageType: string[];
|
|
15226
|
+
readonly message: io.flow.internal.v0.models.CpscQueueMessage;
|
|
15227
|
+
}
|
|
15228
|
+
interface CpscQueueMessage {
|
|
15229
|
+
readonly filePath: string;
|
|
15230
|
+
readonly merchantId: string;
|
|
15231
|
+
readonly fileType: io.flow.internal.v0.enums.CpscFileType;
|
|
15232
|
+
}
|
|
15088
15233
|
interface CryptoAccount {
|
|
15089
15234
|
readonly discriminator: 'crypto_account';
|
|
15090
15235
|
readonly id: string;
|
|
@@ -16219,6 +16364,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16219
16364
|
readonly transfer?: io.flow.internal.v0.models.Fee;
|
|
16220
16365
|
readonly negative_balance?: io.flow.internal.v0.models.Fee;
|
|
16221
16366
|
readonly sp?: io.flow.internal.v0.models.Fee;
|
|
16367
|
+
readonly revenue_share?: io.flow.internal.v0.models.Fee;
|
|
16222
16368
|
}
|
|
16223
16369
|
interface FinanceBankAccount {
|
|
16224
16370
|
readonly id: string;
|
|
@@ -16970,6 +17116,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16970
17116
|
readonly discriminator: 'google_tag_manager';
|
|
16971
17117
|
readonly tracker_id: string;
|
|
16972
17118
|
}
|
|
17119
|
+
interface GuaranteedShippingPublishedOutput {
|
|
17120
|
+
readonly id: string;
|
|
17121
|
+
readonly organization_id: string;
|
|
17122
|
+
readonly channel_id: string;
|
|
17123
|
+
readonly destination_country: string;
|
|
17124
|
+
readonly coefficient: number;
|
|
17125
|
+
readonly flat_rates: io.flow.internal.v0.models.FlatRate[];
|
|
17126
|
+
readonly inputs_updated_at: number;
|
|
17127
|
+
}
|
|
17128
|
+
interface GuaranteedShippingPublishedOutputDeleted {
|
|
17129
|
+
readonly discriminator: 'guaranteed_shipping_published_output_deleted';
|
|
17130
|
+
readonly event_id: string;
|
|
17131
|
+
readonly timestamp: string;
|
|
17132
|
+
readonly organization: string;
|
|
17133
|
+
readonly id: string;
|
|
17134
|
+
}
|
|
17135
|
+
interface GuaranteedShippingPublishedOutputUpserted {
|
|
17136
|
+
readonly discriminator: 'guaranteed_shipping_published_output_upserted';
|
|
17137
|
+
readonly event_id: string;
|
|
17138
|
+
readonly timestamp: string;
|
|
17139
|
+
readonly organization: string;
|
|
17140
|
+
readonly guaranteed_shipping_published_output: io.flow.internal.v0.models.GuaranteedShippingPublishedOutput;
|
|
17141
|
+
}
|
|
16973
17142
|
interface HarmonizationClassificationStatisticsData {
|
|
16974
17143
|
readonly statistics: io.flow.internal.v0.models.ClassificationStatistics;
|
|
16975
17144
|
}
|
|
@@ -17994,6 +18163,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17994
18163
|
readonly type: io.flow.internal.v0.enums.MaheshItemType;
|
|
17995
18164
|
readonly added_on: string;
|
|
17996
18165
|
}
|
|
18166
|
+
interface MaheshItemDeleted {
|
|
18167
|
+
readonly discriminator: 'mahesh_item_deleted';
|
|
18168
|
+
readonly event_id: string;
|
|
18169
|
+
readonly timestamp: string;
|
|
18170
|
+
readonly id: string;
|
|
18171
|
+
}
|
|
17997
18172
|
interface MaheshItemForm {
|
|
17998
18173
|
readonly number: string;
|
|
17999
18174
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -18001,6 +18176,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18001
18176
|
readonly type: io.flow.internal.v0.enums.MaheshItemType;
|
|
18002
18177
|
readonly added_on: string;
|
|
18003
18178
|
}
|
|
18179
|
+
interface MaheshItemUpserted {
|
|
18180
|
+
readonly discriminator: 'mahesh_item_upserted';
|
|
18181
|
+
readonly event_id: string;
|
|
18182
|
+
readonly timestamp: string;
|
|
18183
|
+
readonly item: io.flow.internal.v0.models.MaheshItem;
|
|
18184
|
+
}
|
|
18004
18185
|
interface MainTransaction {
|
|
18005
18186
|
readonly id: string;
|
|
18006
18187
|
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
@@ -18013,6 +18194,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18013
18194
|
readonly channel_statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
18014
18195
|
readonly created_at: string;
|
|
18015
18196
|
readonly original_at?: string;
|
|
18197
|
+
readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
18016
18198
|
}
|
|
18017
18199
|
interface MainTransactionDeleted {
|
|
18018
18200
|
readonly discriminator: 'main_transaction_deleted';
|
|
@@ -18271,10 +18453,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18271
18453
|
readonly surcharges?: io.flow.internal.v0.models.MerchantSurcharge[];
|
|
18272
18454
|
readonly freight_guaranteed?: number;
|
|
18273
18455
|
readonly freight_non_guaranteed?: number;
|
|
18456
|
+
readonly freight_subsidy?: number;
|
|
18274
18457
|
readonly total: number;
|
|
18275
18458
|
readonly tax_refund?: number;
|
|
18276
18459
|
readonly tax_reversal?: number;
|
|
18277
18460
|
readonly duty_reversal?: number;
|
|
18461
|
+
readonly flat_rate_reversal?: number;
|
|
18462
|
+
readonly flat_rate_subsidy_reversal?: number;
|
|
18278
18463
|
readonly tax_reversal_for_lvg_order?: boolean;
|
|
18279
18464
|
readonly duty_reversal_for_lvg_order?: boolean;
|
|
18280
18465
|
}
|
|
@@ -19167,6 +19352,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19167
19352
|
readonly organization: io.flow.internal.v0.models.OtherRecordOrganizationSummary;
|
|
19168
19353
|
readonly number: string;
|
|
19169
19354
|
readonly identifiers: io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers;
|
|
19355
|
+
readonly destination_province?: string;
|
|
19170
19356
|
}
|
|
19171
19357
|
interface OtherRecordOrderSummaryIdentifiers {
|
|
19172
19358
|
readonly shopify_order_id?: string;
|
|
@@ -19792,6 +19978,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19792
19978
|
readonly effective_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
19793
19979
|
readonly fingerprint: string;
|
|
19794
19980
|
readonly screening_mode?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
19981
|
+
readonly created_at?: string;
|
|
19795
19982
|
}
|
|
19796
19983
|
interface PreonboardingSellabilityResultDeleted {
|
|
19797
19984
|
readonly discriminator: 'preonboarding_sellability_result_deleted';
|
|
@@ -20379,13 +20566,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20379
20566
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
20380
20567
|
readonly number: string;
|
|
20381
20568
|
}
|
|
20382
|
-
interface RatecardLanesImportRequest {
|
|
20383
|
-
readonly discriminator: 'ratecard_lanes_import_request';
|
|
20384
|
-
readonly event_id: string;
|
|
20385
|
-
readonly timestamp: string;
|
|
20386
|
-
readonly organization: string;
|
|
20387
|
-
readonly data: io.flow.ratecard.v0.models.RatecardLanesImportRequestData;
|
|
20388
|
-
}
|
|
20389
20569
|
interface RatecardRateLevelDeleted {
|
|
20390
20570
|
readonly discriminator: 'ratecard_rate_level_deleted';
|
|
20391
20571
|
readonly event_id: string;
|
|
@@ -20438,13 +20618,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20438
20618
|
readonly organization: string;
|
|
20439
20619
|
readonly fee: io.flow.internal.v0.models.RatecardInternalServiceFee;
|
|
20440
20620
|
}
|
|
20441
|
-
interface RatecardServiceFeesOverride {
|
|
20442
|
-
readonly ratecard: io.flow.internal.v0.models.RatecardInternalSummary;
|
|
20443
|
-
readonly service_fees: io.flow.ratecard.v0.unions.ServiceFee[];
|
|
20444
|
-
}
|
|
20445
|
-
interface RatecardServiceFeesOverrideForm {
|
|
20446
|
-
readonly service_fees: io.flow.ratecard.v0.unions.ServiceFee[];
|
|
20447
|
-
}
|
|
20448
20621
|
interface RatesChanged {
|
|
20449
20622
|
readonly event_id: string;
|
|
20450
20623
|
readonly timestamp: string;
|
|
@@ -20555,7 +20728,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20555
20728
|
readonly source_type?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
20556
20729
|
readonly order_payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
20557
20730
|
readonly amount_range?: io.flow.internal.v0.models.ReportAmountRange;
|
|
20558
|
-
readonly
|
|
20731
|
+
readonly account_currencies?: io.flow.internal.v0.enums.AccountCurrencyFilter[];
|
|
20559
20732
|
readonly channel_id?: string;
|
|
20560
20733
|
}
|
|
20561
20734
|
interface ReportForm {
|
|
@@ -20669,11 +20842,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20669
20842
|
}
|
|
20670
20843
|
interface ReportingFreight {
|
|
20671
20844
|
readonly guaranteed?: io.flow.internal.v0.models.ReportingFreightGuaranteed;
|
|
20845
|
+
readonly subsidy?: io.flow.internal.v0.models.ReportingFreightSubsidy;
|
|
20672
20846
|
}
|
|
20673
20847
|
interface ReportingFreightGuaranteed {
|
|
20674
20848
|
readonly amount: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20675
20849
|
readonly coefficient: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20676
20850
|
}
|
|
20851
|
+
interface ReportingFreightSubsidy {
|
|
20852
|
+
readonly amount: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20853
|
+
}
|
|
20677
20854
|
interface ReportingFulfillment {
|
|
20678
20855
|
readonly id: string;
|
|
20679
20856
|
readonly sequence_number: number;
|
|
@@ -20711,13 +20888,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20711
20888
|
readonly partial_refund?: boolean;
|
|
20712
20889
|
}
|
|
20713
20890
|
interface ReportingFx {
|
|
20714
|
-
readonly shipping: io.flow.internal.v0.models.
|
|
20715
|
-
readonly fees: io.flow.internal.v0.models.
|
|
20716
|
-
readonly product: io.flow.internal.v0.models.
|
|
20717
|
-
readonly tax: io.flow.internal.v0.models.
|
|
20718
|
-
readonly duty: io.flow.internal.v0.models.
|
|
20719
|
-
readonly tips?: io.flow.internal.v0.models.
|
|
20720
|
-
readonly total: io.flow.internal.v0.models.
|
|
20891
|
+
readonly shipping: io.flow.internal.v0.models.ReportingFxValue;
|
|
20892
|
+
readonly fees: io.flow.internal.v0.models.ReportingFxValue;
|
|
20893
|
+
readonly product: io.flow.internal.v0.models.ReportingFxValue;
|
|
20894
|
+
readonly tax: io.flow.internal.v0.models.ReportingFxValue;
|
|
20895
|
+
readonly duty: io.flow.internal.v0.models.ReportingFxValue;
|
|
20896
|
+
readonly tips?: io.flow.internal.v0.models.ReportingFxValue;
|
|
20897
|
+
readonly total: io.flow.internal.v0.models.ReportingFxValue;
|
|
20898
|
+
}
|
|
20899
|
+
interface ReportingFxValue {
|
|
20900
|
+
readonly usd: number;
|
|
20901
|
+
readonly merchant?: number;
|
|
20721
20902
|
}
|
|
20722
20903
|
interface ReportingMerchantBreakdown {
|
|
20723
20904
|
readonly subsidies: io.flow.internal.v0.models.ReportingMerchantSubsidies;
|
|
@@ -20764,12 +20945,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20764
20945
|
readonly freight_breakdown?: io.flow.internal.v0.models.ReportingMerchantFreight;
|
|
20765
20946
|
readonly freight_guaranteed?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20766
20947
|
readonly freight_non_guaranteed?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20948
|
+
readonly freight_subsidy?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20767
20949
|
readonly discount?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20768
20950
|
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20769
20951
|
readonly tax_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20770
20952
|
readonly duty_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20771
20953
|
readonly tax_reversal?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20772
20954
|
readonly duty_reversal?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20955
|
+
readonly flat_rate_reversal?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20956
|
+
readonly flat_rate_subsidy_reversal?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20773
20957
|
readonly tax_reversal_for_lvg_order?: boolean;
|
|
20774
20958
|
readonly duty_reversal_for_lvg_order?: boolean;
|
|
20775
20959
|
}
|
|
@@ -20923,7 +21107,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20923
21107
|
readonly created_at: string;
|
|
20924
21108
|
readonly updated_at: string;
|
|
20925
21109
|
readonly channel?: string;
|
|
20926
|
-
readonly is_deleted?: boolean;
|
|
20927
21110
|
}
|
|
20928
21111
|
interface RestrictionItemRequestForm {
|
|
20929
21112
|
readonly status?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
@@ -21037,7 +21220,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21037
21220
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
21038
21221
|
readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
21039
21222
|
readonly channel?: string;
|
|
21040
|
-
readonly is_deleted?: boolean;
|
|
21041
21223
|
}
|
|
21042
21224
|
interface RestrictionProductDecisionForm {
|
|
21043
21225
|
readonly rule_decisions: io.flow.internal.v0.models.RestrictionRuleDecisionForm[];
|
|
@@ -21427,11 +21609,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21427
21609
|
readonly payment_is: io.flow.internal.v0.models.PaymentIs;
|
|
21428
21610
|
readonly price_inclusivity?: io.flow.internal.v0.models.PriceInclusivity;
|
|
21429
21611
|
readonly destination_country: string;
|
|
21612
|
+
readonly destination_province?: string;
|
|
21430
21613
|
readonly fulfilled_at?: string;
|
|
21431
21614
|
readonly reconciliation?: io.flow.internal.v0.models.ReportingReconciliation;
|
|
21432
21615
|
readonly is_eu_destination?: boolean;
|
|
21433
21616
|
readonly debug_url?: string;
|
|
21434
21617
|
}
|
|
21618
|
+
interface SalesPaymentRecordDeleted {
|
|
21619
|
+
readonly discriminator: 'sales_payment_record_deleted';
|
|
21620
|
+
readonly event_id: string;
|
|
21621
|
+
readonly timestamp: string;
|
|
21622
|
+
readonly organization: string;
|
|
21623
|
+
readonly id: string;
|
|
21624
|
+
}
|
|
21625
|
+
interface SalesPaymentRecordUpserted {
|
|
21626
|
+
readonly discriminator: 'sales_payment_record_upserted';
|
|
21627
|
+
readonly event_id: string;
|
|
21628
|
+
readonly timestamp: string;
|
|
21629
|
+
readonly organization: string;
|
|
21630
|
+
readonly sales_payment_record: io.flow.internal.v0.models.SalesPaymentRecord;
|
|
21631
|
+
}
|
|
21435
21632
|
interface SandboxSetup {
|
|
21436
21633
|
readonly requested_by: string;
|
|
21437
21634
|
}
|
|
@@ -21530,6 +21727,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21530
21727
|
readonly current_error?: io.flow.sellability.v0.models.SellabilityError[];
|
|
21531
21728
|
readonly merchant_error?: io.flow.sellability.v0.models.SellabilityError[];
|
|
21532
21729
|
}
|
|
21730
|
+
interface ServiceFees {
|
|
21731
|
+
readonly ratecard: io.flow.internal.v0.models.RatecardInternalSummary;
|
|
21732
|
+
readonly service_fees: io.flow.ratecard.v0.unions.ServiceFee[];
|
|
21733
|
+
}
|
|
21734
|
+
interface ServiceFeesForm {
|
|
21735
|
+
readonly service_fees: io.flow.ratecard.v0.unions.ServiceFee[];
|
|
21736
|
+
}
|
|
21533
21737
|
interface SessionOrderData {
|
|
21534
21738
|
readonly id: string;
|
|
21535
21739
|
readonly session: io.flow.common.v0.models.SessionReference;
|
|
@@ -21558,6 +21762,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21558
21762
|
readonly rate_level_key?: string;
|
|
21559
21763
|
readonly cost_estimate_source: io.flow.label.v0.enums.CostEstimateSource;
|
|
21560
21764
|
readonly cost: io.flow.common.v0.models.Money;
|
|
21765
|
+
readonly dim_factor: number;
|
|
21561
21766
|
}
|
|
21562
21767
|
interface ShippingCostDeleted {
|
|
21563
21768
|
readonly discriminator: 'shipping_cost_deleted';
|
|
@@ -21637,25 +21842,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21637
21842
|
readonly line_items?: io.flow.common.v0.models.LineItemForm[];
|
|
21638
21843
|
readonly include_unpublished?: boolean;
|
|
21639
21844
|
}
|
|
21640
|
-
interface ShopifyAdaptivePricingCoefficients {
|
|
21641
|
-
readonly id: string;
|
|
21642
|
-
readonly organization_id: string;
|
|
21643
|
-
readonly destination_coefficients: io.flow.shopify.markets.v0.models.ShopifyAdaptivePricingDestinationCoefficients[];
|
|
21644
|
-
}
|
|
21645
|
-
interface ShopifyAdaptivePricingCoefficientsDeleted {
|
|
21646
|
-
readonly discriminator: 'shopify_adaptive_pricing_coefficients_deleted';
|
|
21647
|
-
readonly event_id: string;
|
|
21648
|
-
readonly timestamp: string;
|
|
21649
|
-
readonly organization: string;
|
|
21650
|
-
readonly id: string;
|
|
21651
|
-
}
|
|
21652
|
-
interface ShopifyAdaptivePricingCoefficientsUpserted {
|
|
21653
|
-
readonly discriminator: 'shopify_adaptive_pricing_coefficients_upserted';
|
|
21654
|
-
readonly event_id: string;
|
|
21655
|
-
readonly timestamp: string;
|
|
21656
|
-
readonly organization: string;
|
|
21657
|
-
readonly shopify_adaptive_pricing_coefficients: io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficients;
|
|
21658
|
-
}
|
|
21659
21845
|
interface ShopifyAddress {
|
|
21660
21846
|
readonly address1: string;
|
|
21661
21847
|
readonly city: string;
|
|
@@ -21688,6 +21874,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21688
21874
|
readonly name?: string;
|
|
21689
21875
|
readonly phone?: string;
|
|
21690
21876
|
}
|
|
21877
|
+
interface ShopifyCost {
|
|
21878
|
+
readonly subtotal: io.flow.internal.v0.models.ShopifyMoney;
|
|
21879
|
+
readonly tax: io.flow.internal.v0.models.ShopifyMoney;
|
|
21880
|
+
readonly total: io.flow.internal.v0.models.ShopifyMoney;
|
|
21881
|
+
}
|
|
21691
21882
|
interface ShopifyDispute {
|
|
21692
21883
|
readonly id: string;
|
|
21693
21884
|
readonly organization_id: string;
|
|
@@ -22007,6 +22198,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22007
22198
|
interface ShopifyMerchantMarketCountry {
|
|
22008
22199
|
readonly code: string;
|
|
22009
22200
|
readonly actively_managing: boolean;
|
|
22201
|
+
readonly enabled: boolean;
|
|
22010
22202
|
}
|
|
22011
22203
|
interface ShopifyMerchantMarkets {
|
|
22012
22204
|
readonly id: string;
|
|
@@ -22314,7 +22506,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22314
22506
|
}
|
|
22315
22507
|
interface ShopifyShipmentRateAvailable {
|
|
22316
22508
|
readonly carrier_service_id: string;
|
|
22317
|
-
readonly total_charges: io.flow.internal.v0.models.
|
|
22509
|
+
readonly total_charges: io.flow.internal.v0.models.ShopifyCost;
|
|
22318
22510
|
readonly charges: io.flow.internal.v0.models.ShopifyShipmentRateCharge[];
|
|
22319
22511
|
readonly shipment_options: io.flow.internal.v0.models.ShopifyShipmentRateOption[];
|
|
22320
22512
|
readonly expected_delivery_date?: string;
|
|
@@ -22323,11 +22515,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22323
22515
|
}
|
|
22324
22516
|
interface ShopifyShipmentRateCharge {
|
|
22325
22517
|
readonly code: io.flow.internal.v0.enums.ShopifyChargeCode;
|
|
22326
|
-
readonly cost: io.flow.internal.v0.models.
|
|
22518
|
+
readonly cost: io.flow.internal.v0.models.ShopifyCost;
|
|
22327
22519
|
}
|
|
22328
22520
|
interface ShopifyShipmentRateOption {
|
|
22329
22521
|
readonly code: io.flow.internal.v0.enums.ShopifyShipmentOptionCode;
|
|
22330
|
-
readonly cost: io.flow.internal.v0.models.
|
|
22522
|
+
readonly cost: io.flow.internal.v0.models.ShopifyCost;
|
|
22331
22523
|
readonly optional?: boolean;
|
|
22332
22524
|
}
|
|
22333
22525
|
interface ShopifyShipmentRatePackage {
|
|
@@ -22366,11 +22558,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22366
22558
|
readonly carrier_account_reference_id: string;
|
|
22367
22559
|
readonly byoa: boolean;
|
|
22368
22560
|
}
|
|
22369
|
-
interface ShopifyShipmentRateTotalCharges {
|
|
22370
|
-
readonly subtotal: io.flow.internal.v0.models.ShopifyMoney;
|
|
22371
|
-
readonly tax: io.flow.internal.v0.models.ShopifyMoney;
|
|
22372
|
-
readonly total: io.flow.internal.v0.models.ShopifyMoney;
|
|
22373
|
-
}
|
|
22374
22561
|
interface ShopifyShipmentRateUnavailable {
|
|
22375
22562
|
readonly carrier_service_id: string;
|
|
22376
22563
|
readonly reasons: io.flow.internal.v0.models.ShopifyShipmentRateReason[];
|
|
@@ -23734,7 +23921,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23734
23921
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
23735
23922
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
|
|
23736
23923
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
23737
|
-
type Event = io.flow.internal.v0.models.AdaptiveShippingRateUpserted | io.flow.internal.v0.models.AdaptiveShippingRateDeleted | io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.FulfillmentStatusUpserted | io.flow.internal.v0.models.FulfillmentStatusDeleted | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.ChannelShopStatisticsUpserted | io.flow.internal.v0.models.ChannelShopStatisticsDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.ShippingCostUpserted | io.flow.internal.v0.models.ShippingCostDeleted | io.flow.internal.v0.models.MorCostUpserted | io.flow.internal.v0.models.MorCostDeleted | io.flow.internal.v0.models.FlatRateLabelReversalUpserted | io.flow.internal.v0.models.FlatRateLabelReversalDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.MerchantOverrideUpserted | io.flow.internal.v0.models.MerchantOverrideDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelCreationJobUpserted | io.flow.internal.v0.models.LabelCreationJobDeleted | io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted | io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.PartnerRequestUpserted | io.flow.internal.v0.models.PartnerRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.OrderRefundTransactionUpserted | io.flow.internal.v0.models.OrderRefundTransactionDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.PreonboardingSellabilityResultInserted | io.flow.internal.v0.models.PreonboardingSellabilityResultUpdated | io.flow.internal.v0.models.PreonboardingSellabilityResultDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.ProductRestrictionStateInserted | io.flow.internal.v0.models.ProductRestrictionStateUpdated | io.flow.internal.v0.models.ProductRestrictionStateDeleted | io.flow.internal.v0.models.ProductSellabilityResultInserted | io.flow.internal.v0.models.ProductSellabilityResultUpdated | io.flow.internal.v0.models.ProductSellabilityResultDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvUpserted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvDeleted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsUpserted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted | io.flow.internal.v0.models.PreonboardingMerchantUpserted | io.flow.internal.v0.models.PreonboardingMerchantDeleted | io.flow.internal.v0.models.ShopifyHs10CodesUpserted | io.flow.internal.v0.models.ShopifyHs10CodesDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.internal.v0.models.ShopifyOrderTransactionUpserted | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted | io.flow.internal.v0.models.ShopifyTestOrderUpserted | io.flow.internal.v0.models.ShopifyTestOrderDeleted | io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsUpserted | io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsDeleted | io.flow.internal.v0.models.ShopifyMerchantMarketsUpserted | io.flow.internal.v0.models.ShopifyMerchantMarketsDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.ShopifyMerchantPlanUpserted | io.flow.internal.v0.models.ShopifyMerchantPlanDeleted | io.flow.internal.v0.models.ShopifyDisputeUpserted | io.flow.internal.v0.models.ShopifyDisputeDeleted | io.flow.internal.v0.models.ShopifyReportFileUpserted | io.flow.internal.v0.models.ShopifyReportFileDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.B2BTaxTransactionUpserted | io.flow.internal.v0.models.B2BTaxTransactionDeleted | io.flow.internal.v0.models.GabrielItemUpserted | io.flow.internal.v0.models.GabrielItemDeleted | io.flow.internal.v0.models.ChenglinItemUpserted | io.flow.internal.v0.models.ChenglinItemDeleted | io.flow.internal.v0.models.BojanaItemUpserted | io.flow.internal.v0.models.BojanaItemDeleted | io.flow.internal.v0.models.RaveenaItemUpserted | io.flow.internal.v0.models.RaveenaItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
23924
|
+
type Event = io.flow.internal.v0.models.AdaptivePricingCoefficientUpserted | io.flow.internal.v0.models.AdaptivePricingCoefficientDeleted | io.flow.internal.v0.models.AdaptivePricingUpdateUpserted | io.flow.internal.v0.models.AdaptivePricingUpdateDeleted | io.flow.internal.v0.models.AdaptiveShippingRateUpserted | io.flow.internal.v0.models.AdaptiveShippingRateDeleted | io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.FulfillmentStatusUpserted | io.flow.internal.v0.models.FulfillmentStatusDeleted | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.SalesPaymentRecordUpserted | io.flow.internal.v0.models.SalesPaymentRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.ChannelShopStatisticsUpserted | io.flow.internal.v0.models.ChannelShopStatisticsDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.ShippingCostUpserted | io.flow.internal.v0.models.ShippingCostDeleted | io.flow.internal.v0.models.MorCostUpserted | io.flow.internal.v0.models.MorCostDeleted | io.flow.internal.v0.models.FlatRateLabelReversalUpserted | io.flow.internal.v0.models.FlatRateLabelReversalDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.GuaranteedShippingPublishedOutputUpserted | io.flow.internal.v0.models.GuaranteedShippingPublishedOutputDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.MerchantOverrideUpserted | io.flow.internal.v0.models.MerchantOverrideDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelCreationJobUpserted | io.flow.internal.v0.models.LabelCreationJobDeleted | io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted | io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.PartnerRequestUpserted | io.flow.internal.v0.models.PartnerRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.OrderRefundTransactionUpserted | io.flow.internal.v0.models.OrderRefundTransactionDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.PreonboardingSellabilityResultInserted | io.flow.internal.v0.models.PreonboardingSellabilityResultUpdated | io.flow.internal.v0.models.PreonboardingSellabilityResultDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.ProductRestrictionStateInserted | io.flow.internal.v0.models.ProductRestrictionStateUpdated | io.flow.internal.v0.models.ProductRestrictionStateDeleted | io.flow.internal.v0.models.ProductSellabilityResultInserted | io.flow.internal.v0.models.ProductSellabilityResultUpdated | io.flow.internal.v0.models.ProductSellabilityResultDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvUpserted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvDeleted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsUpserted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted | io.flow.internal.v0.models.PreonboardingMerchantUpserted | io.flow.internal.v0.models.PreonboardingMerchantDeleted | io.flow.internal.v0.models.ShopifyHs10CodesUpserted | io.flow.internal.v0.models.ShopifyHs10CodesDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.internal.v0.models.ShopifyOrderTransactionUpserted | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted | io.flow.internal.v0.models.ShopifyTestOrderUpserted | io.flow.internal.v0.models.ShopifyTestOrderDeleted | io.flow.internal.v0.models.ShopifyMerchantMarketsUpserted | io.flow.internal.v0.models.ShopifyMerchantMarketsDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.ShopifyMerchantPlanUpserted | io.flow.internal.v0.models.ShopifyMerchantPlanDeleted | io.flow.internal.v0.models.ShopifyDisputeUpserted | io.flow.internal.v0.models.ShopifyDisputeDeleted | io.flow.internal.v0.models.ShopifyReportFileUpserted | io.flow.internal.v0.models.ShopifyReportFileDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.B2BTaxTransactionUpserted | io.flow.internal.v0.models.B2BTaxTransactionDeleted | io.flow.internal.v0.models.GabrielItemUpserted | io.flow.internal.v0.models.GabrielItemDeleted | io.flow.internal.v0.models.ChenglinItemUpserted | io.flow.internal.v0.models.ChenglinItemDeleted | io.flow.internal.v0.models.BojanaItemUpserted | io.flow.internal.v0.models.BojanaItemDeleted | io.flow.internal.v0.models.RaveenaItemUpserted | io.flow.internal.v0.models.RaveenaItemDeleted | io.flow.internal.v0.models.MaheshItemUpserted | io.flow.internal.v0.models.MaheshItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
23738
23925
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
23739
23926
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
23740
23927
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -23819,8 +24006,13 @@ export declare type AccountUpsertedV2 = io.flow.internal.v0.models.AccountUpsert
|
|
|
23819
24006
|
export declare type AccountingPendingOrderMetadata = io.flow.internal.v0.models.AccountingPendingOrderMetadata;
|
|
23820
24007
|
export declare type AccountingReturnMetadata = io.flow.internal.v0.models.AccountingReturnMetadata;
|
|
23821
24008
|
export declare type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
|
|
24009
|
+
export declare type AdaptivePricingCoefficient = io.flow.internal.v0.models.AdaptivePricingCoefficient;
|
|
24010
|
+
export declare type AdaptivePricingCoefficientDeleted = io.flow.internal.v0.models.AdaptivePricingCoefficientDeleted;
|
|
24011
|
+
export declare type AdaptivePricingCoefficientUpserted = io.flow.internal.v0.models.AdaptivePricingCoefficientUpserted;
|
|
23822
24012
|
export declare type AdaptivePricingDestinationUpdate = io.flow.internal.v0.models.AdaptivePricingDestinationUpdate;
|
|
23823
24013
|
export declare type AdaptivePricingUpdate = io.flow.internal.v0.models.AdaptivePricingUpdate;
|
|
24014
|
+
export declare type AdaptivePricingUpdateDeleted = io.flow.internal.v0.models.AdaptivePricingUpdateDeleted;
|
|
24015
|
+
export declare type AdaptivePricingUpdateUpserted = io.flow.internal.v0.models.AdaptivePricingUpdateUpserted;
|
|
23824
24016
|
export declare type AdaptiveShippingOrderGuarantee = io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
23825
24017
|
export declare type AdaptiveShippingOrderGuaranteeDeleted = io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted;
|
|
23826
24018
|
export declare type AdaptiveShippingOrderGuaranteeState = io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState;
|
|
@@ -24231,6 +24423,16 @@ export declare type ConsoleLabelRequestForm = io.flow.internal.v0.models.Console
|
|
|
24231
24423
|
export declare type ConsoleLabelValidationForm = io.flow.internal.v0.unions.ConsoleLabelValidationForm;
|
|
24232
24424
|
export declare type ConsoleMarkUnresolvableForm = io.flow.internal.v0.models.ConsoleMarkUnresolvableForm;
|
|
24233
24425
|
export declare type CourthouseProductSummary = io.flow.internal.v0.models.CourthouseProductSummary;
|
|
24426
|
+
export declare type CpscCertificateType = io.flow.internal.v0.enums.CpscCertificateType;
|
|
24427
|
+
export declare type CpscFileType = io.flow.internal.v0.enums.CpscFileType;
|
|
24428
|
+
export declare type CpscLabType = io.flow.internal.v0.enums.CpscLabType;
|
|
24429
|
+
export declare type CpscLotNumberAssignedBy = io.flow.internal.v0.enums.CpscLotNumberAssignedBy;
|
|
24430
|
+
export declare type CpscPointOfContactType = io.flow.internal.v0.enums.CpscPointOfContactType;
|
|
24431
|
+
export declare type CpscPrimaryProductIdType = io.flow.internal.v0.enums.CpscPrimaryProductIdType;
|
|
24432
|
+
export declare type CpscProductRegistration = io.flow.internal.v0.models.CpscProductRegistration;
|
|
24433
|
+
export declare type CpscQueueEnvelope = io.flow.internal.v0.models.CpscQueueEnvelope;
|
|
24434
|
+
export declare type CpscQueueMessage = io.flow.internal.v0.models.CpscQueueMessage;
|
|
24435
|
+
export declare type CpscYesNo = io.flow.internal.v0.enums.CpscYesNo;
|
|
24234
24436
|
export declare type CrossdockTrackingStatus = io.flow.internal.v0.enums.CrossdockTrackingStatus;
|
|
24235
24437
|
export declare type CryptoAccount = io.flow.internal.v0.models.CryptoAccount;
|
|
24236
24438
|
export declare type CryptoAccountModificationForm = io.flow.internal.v0.models.CryptoAccountModificationForm;
|
|
@@ -24456,6 +24658,7 @@ export declare type FiservMerchant = io.flow.internal.v0.models.FiservMerchant;
|
|
|
24456
24658
|
export declare type FiservMerchantModificationForm = io.flow.internal.v0.models.FiservMerchantModificationForm;
|
|
24457
24659
|
export declare type FiservMerchantPutForm = io.flow.internal.v0.models.FiservMerchantPutForm;
|
|
24458
24660
|
export declare type FlatRate = io.flow.internal.v0.models.FlatRate;
|
|
24661
|
+
export declare type FlatRateLabelGuaranteeStatus = io.flow.internal.v0.enums.FlatRateLabelGuaranteeStatus;
|
|
24459
24662
|
export declare type FlatRateLabelReversal = io.flow.internal.v0.models.FlatRateLabelReversal;
|
|
24460
24663
|
export declare type FlatRateLabelReversalDeleted = io.flow.internal.v0.models.FlatRateLabelReversalDeleted;
|
|
24461
24664
|
export declare type FlatRateLabelReversalUpserted = io.flow.internal.v0.models.FlatRateLabelReversalUpserted;
|
|
@@ -24565,6 +24768,9 @@ export declare type GoogleShoppingAccountParameters = io.flow.internal.v0.models
|
|
|
24565
24768
|
export declare type GoogleShoppingSetting = io.flow.internal.v0.models.GoogleShoppingSetting;
|
|
24566
24769
|
export declare type GoogleTagManager = io.flow.internal.v0.models.GoogleTagManager;
|
|
24567
24770
|
export declare type GraphqlServiceTypes = io.flow.internal.v0.enums.GraphqlServiceTypes;
|
|
24771
|
+
export declare type GuaranteedShippingPublishedOutput = io.flow.internal.v0.models.GuaranteedShippingPublishedOutput;
|
|
24772
|
+
export declare type GuaranteedShippingPublishedOutputDeleted = io.flow.internal.v0.models.GuaranteedShippingPublishedOutputDeleted;
|
|
24773
|
+
export declare type GuaranteedShippingPublishedOutputUpserted = io.flow.internal.v0.models.GuaranteedShippingPublishedOutputUpserted;
|
|
24568
24774
|
export declare type HarmonizationClassificationStatisticsData = io.flow.internal.v0.models.HarmonizationClassificationStatisticsData;
|
|
24569
24775
|
export declare type HarmonizationClassificationStatisticsPublished = io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished;
|
|
24570
24776
|
export declare type HarmonizationCodesImport = io.flow.internal.v0.models.HarmonizationCodesImport;
|
|
@@ -24734,8 +24940,10 @@ export declare type LoyaltyProgramMessage = io.flow.internal.v0.models.LoyaltyPr
|
|
|
24734
24940
|
export declare type LoyaltyProgramReward = io.flow.internal.v0.models.LoyaltyProgramReward;
|
|
24735
24941
|
export declare type LoyaltyProgramRewards = io.flow.internal.v0.models.LoyaltyProgramRewards;
|
|
24736
24942
|
export declare type MaheshItem = io.flow.internal.v0.models.MaheshItem;
|
|
24943
|
+
export declare type MaheshItemDeleted = io.flow.internal.v0.models.MaheshItemDeleted;
|
|
24737
24944
|
export declare type MaheshItemForm = io.flow.internal.v0.models.MaheshItemForm;
|
|
24738
24945
|
export declare type MaheshItemType = io.flow.internal.v0.enums.MaheshItemType;
|
|
24946
|
+
export declare type MaheshItemUpserted = io.flow.internal.v0.models.MaheshItemUpserted;
|
|
24739
24947
|
export declare type MailClass = io.flow.internal.v0.enums.MailClass;
|
|
24740
24948
|
export declare type MainTransaction = io.flow.internal.v0.models.MainTransaction;
|
|
24741
24949
|
export declare type MainTransactionDeleted = io.flow.internal.v0.models.MainTransactionDeleted;
|
|
@@ -25148,7 +25356,6 @@ export declare type RatecardDimensionEstimateDeleted = io.flow.internal.v0.model
|
|
|
25148
25356
|
export declare type RatecardDimensionEstimateUpserted = io.flow.internal.v0.models.RatecardDimensionEstimateUpserted;
|
|
25149
25357
|
export declare type RatecardInternalServiceFee = io.flow.internal.v0.models.RatecardInternalServiceFee;
|
|
25150
25358
|
export declare type RatecardInternalSummary = io.flow.internal.v0.models.RatecardInternalSummary;
|
|
25151
|
-
export declare type RatecardLanesImportRequest = io.flow.internal.v0.models.RatecardLanesImportRequest;
|
|
25152
25359
|
export declare type RatecardRateLevelDeleted = io.flow.internal.v0.models.RatecardRateLevelDeleted;
|
|
25153
25360
|
export declare type RatecardRateLevelOrganizationDeleted = io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted;
|
|
25154
25361
|
export declare type RatecardRateLevelOrganizationUpserted = io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted;
|
|
@@ -25157,8 +25364,6 @@ export declare type RatecardRateLevelRatecardUpserted = io.flow.internal.v0.mode
|
|
|
25157
25364
|
export declare type RatecardRateLevelUpserted = io.flow.internal.v0.models.RatecardRateLevelUpserted;
|
|
25158
25365
|
export declare type RatecardServiceFeeDeleted = io.flow.internal.v0.models.RatecardServiceFeeDeleted;
|
|
25159
25366
|
export declare type RatecardServiceFeeUpserted = io.flow.internal.v0.models.RatecardServiceFeeUpserted;
|
|
25160
|
-
export declare type RatecardServiceFeesOverride = io.flow.internal.v0.models.RatecardServiceFeesOverride;
|
|
25161
|
-
export declare type RatecardServiceFeesOverrideForm = io.flow.internal.v0.models.RatecardServiceFeesOverrideForm;
|
|
25162
25367
|
export declare type RatesChanged = io.flow.internal.v0.models.RatesChanged;
|
|
25163
25368
|
export declare type RatesNamesSummary = io.flow.internal.v0.models.RatesNamesSummary;
|
|
25164
25369
|
export declare type RaveenaItem = io.flow.internal.v0.models.RaveenaItem;
|
|
@@ -25209,11 +25414,13 @@ export declare type ReportingDetails = io.flow.internal.v0.models.ReportingDetai
|
|
|
25209
25414
|
export declare type ReportingFees = io.flow.internal.v0.models.ReportingFees;
|
|
25210
25415
|
export declare type ReportingFreight = io.flow.internal.v0.models.ReportingFreight;
|
|
25211
25416
|
export declare type ReportingFreightGuaranteed = io.flow.internal.v0.models.ReportingFreightGuaranteed;
|
|
25417
|
+
export declare type ReportingFreightSubsidy = io.flow.internal.v0.models.ReportingFreightSubsidy;
|
|
25212
25418
|
export declare type ReportingFulfillment = io.flow.internal.v0.models.ReportingFulfillment;
|
|
25213
25419
|
export declare type ReportingFulfillmentHas = io.flow.internal.v0.models.ReportingFulfillmentHas;
|
|
25214
25420
|
export declare type ReportingFulfillmentIs = io.flow.internal.v0.models.ReportingFulfillmentIs;
|
|
25215
25421
|
export declare type ReportingFulfillmentIsVirtual = io.flow.internal.v0.enums.ReportingFulfillmentIsVirtual;
|
|
25216
25422
|
export declare type ReportingFx = io.flow.internal.v0.models.ReportingFx;
|
|
25423
|
+
export declare type ReportingFxValue = io.flow.internal.v0.models.ReportingFxValue;
|
|
25217
25424
|
export declare type ReportingMerchantBreakdown = io.flow.internal.v0.models.ReportingMerchantBreakdown;
|
|
25218
25425
|
export declare type ReportingMerchantFees = io.flow.internal.v0.models.ReportingMerchantFees;
|
|
25219
25426
|
export declare type ReportingMerchantFreight = io.flow.internal.v0.models.ReportingMerchantFreight;
|
|
@@ -25324,6 +25531,8 @@ export declare type RoutingEntity = io.flow.internal.v0.unions.RoutingEntity;
|
|
|
25324
25531
|
export declare type RoutingMerchant = io.flow.internal.v0.models.RoutingMerchant;
|
|
25325
25532
|
export declare type RoutingProcessor = io.flow.internal.v0.models.RoutingProcessor;
|
|
25326
25533
|
export declare type SalesPaymentRecord = io.flow.internal.v0.models.SalesPaymentRecord;
|
|
25534
|
+
export declare type SalesPaymentRecordDeleted = io.flow.internal.v0.models.SalesPaymentRecordDeleted;
|
|
25535
|
+
export declare type SalesPaymentRecordUpserted = io.flow.internal.v0.models.SalesPaymentRecordUpserted;
|
|
25327
25536
|
export declare type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
|
|
25328
25537
|
export declare type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
|
|
25329
25538
|
export declare type ScheduledPayment = io.flow.internal.v0.models.ScheduledPayment;
|
|
@@ -25343,6 +25552,8 @@ export declare type SellabilityCheckResult = io.flow.internal.v0.models.Sellabil
|
|
|
25343
25552
|
export declare type SellabilityCheckStatus = io.flow.internal.v0.enums.SellabilityCheckStatus;
|
|
25344
25553
|
export declare type SellabilityInternalMatchType = io.flow.internal.v0.enums.SellabilityInternalMatchType;
|
|
25345
25554
|
export declare type SellabilityStatus = io.flow.internal.v0.enums.SellabilityStatus;
|
|
25555
|
+
export declare type ServiceFees = io.flow.internal.v0.models.ServiceFees;
|
|
25556
|
+
export declare type ServiceFeesForm = io.flow.internal.v0.models.ServiceFeesForm;
|
|
25346
25557
|
export declare type SessionOrderData = io.flow.internal.v0.models.SessionOrderData;
|
|
25347
25558
|
export declare type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
|
|
25348
25559
|
export declare type SfExpress = io.flow.internal.v0.models.SfExpress;
|
|
@@ -25356,9 +25567,6 @@ export declare type ShippingPricing = io.flow.internal.v0.models.ShippingPricing
|
|
|
25356
25567
|
export declare type ShippingRateEstimateAvailableInternal = io.flow.internal.v0.models.ShippingRateEstimateAvailableInternal;
|
|
25357
25568
|
export declare type ShippingRateEstimateInternal = io.flow.internal.v0.models.ShippingRateEstimateInternal;
|
|
25358
25569
|
export declare type ShippingRateEstimateRequestInternal = io.flow.internal.v0.models.ShippingRateEstimateRequestInternal;
|
|
25359
|
-
export declare type ShopifyAdaptivePricingCoefficients = io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficients;
|
|
25360
|
-
export declare type ShopifyAdaptivePricingCoefficientsDeleted = io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsDeleted;
|
|
25361
|
-
export declare type ShopifyAdaptivePricingCoefficientsUpserted = io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsUpserted;
|
|
25362
25570
|
export declare type ShopifyAddress = io.flow.internal.v0.models.ShopifyAddress;
|
|
25363
25571
|
export declare type ShopifyCallbackError = io.flow.internal.v0.models.ShopifyCallbackError;
|
|
25364
25572
|
export declare type ShopifyCallbackErrorCode = io.flow.internal.v0.enums.ShopifyCallbackErrorCode;
|
|
@@ -25368,6 +25576,7 @@ export declare type ShopifyChannelOrganizationToken = io.flow.internal.v0.models
|
|
|
25368
25576
|
export declare type ShopifyChannelOrganizationTokens = io.flow.internal.v0.models.ShopifyChannelOrganizationTokens;
|
|
25369
25577
|
export declare type ShopifyChargeCode = io.flow.internal.v0.enums.ShopifyChargeCode;
|
|
25370
25578
|
export declare type ShopifyContactDetails = io.flow.internal.v0.models.ShopifyContactDetails;
|
|
25579
|
+
export declare type ShopifyCost = io.flow.internal.v0.models.ShopifyCost;
|
|
25371
25580
|
export declare type ShopifyDeliveryMethodType = io.flow.internal.v0.enums.ShopifyDeliveryMethodType;
|
|
25372
25581
|
export declare type ShopifyDimensionUnit = io.flow.internal.v0.enums.ShopifyDimensionUnit;
|
|
25373
25582
|
export declare type ShopifyDispute = io.flow.internal.v0.models.ShopifyDispute;
|
|
@@ -25496,7 +25705,6 @@ export declare type ShopifyShipmentRateRequest = io.flow.internal.v0.models.Shop
|
|
|
25496
25705
|
export declare type ShopifyShipmentRateResponse = io.flow.internal.v0.models.ShopifyShipmentRateResponse;
|
|
25497
25706
|
export declare type ShopifyShipmentRateShipment = io.flow.internal.v0.models.ShopifyShipmentRateShipment;
|
|
25498
25707
|
export declare type ShopifyShipmentRateShipper = io.flow.internal.v0.models.ShopifyShipmentRateShipper;
|
|
25499
|
-
export declare type ShopifyShipmentRateTotalCharges = io.flow.internal.v0.models.ShopifyShipmentRateTotalCharges;
|
|
25500
25708
|
export declare type ShopifyShipmentRateUnavailable = io.flow.internal.v0.models.ShopifyShipmentRateUnavailable;
|
|
25501
25709
|
export declare type ShopifyShippingLocation = io.flow.internal.v0.models.ShopifyShippingLocation;
|
|
25502
25710
|
export declare type ShopifyShopStatistics = io.flow.internal.v0.models.ShopifyShopStatistics;
|