@flowio/types 11.24.137 → 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 +424 -85
- package/dist/api.d.ts +98 -46
- package/package.json +1 -1
- package/src/api-internal.ts +544 -95
- package/src/api.ts +126 -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;
|
|
@@ -5069,6 +5082,16 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5069
5082
|
readonly id: string;
|
|
5070
5083
|
readonly response: io.flow.shopify.markets.v0.models.ShopifyWebhookResponse;
|
|
5071
5084
|
}
|
|
5085
|
+
interface ShopifyMerchantMarketCountry {
|
|
5086
|
+
readonly code: string;
|
|
5087
|
+
readonly actively_managing: boolean;
|
|
5088
|
+
readonly enabled: boolean;
|
|
5089
|
+
}
|
|
5090
|
+
interface ShopifyMerchantMarkets {
|
|
5091
|
+
readonly id: string;
|
|
5092
|
+
readonly organization_id: string;
|
|
5093
|
+
readonly countries: io.flow.shopify.markets.internal.v0.models.ShopifyMerchantMarketCountry[];
|
|
5094
|
+
}
|
|
5072
5095
|
interface ShopifyOrderCancelForm {
|
|
5073
5096
|
readonly note?: string;
|
|
5074
5097
|
}
|
|
@@ -5165,6 +5188,39 @@ declare namespace io.flow.consumer.invoice.v0.models {
|
|
|
5165
5188
|
readonly order?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
5166
5189
|
readonly voids_b2b_invoice?: boolean;
|
|
5167
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
|
+
}
|
|
5168
5224
|
interface B2BInvoice {
|
|
5169
5225
|
readonly id: string;
|
|
5170
5226
|
readonly number: string;
|
|
@@ -6729,7 +6785,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
6729
6785
|
type ShopifyOrderValueType = 'string' | 'integer';
|
|
6730
6786
|
type ShopifyTaxExemptions = 'EXEMPT_ALL' | 'CA_STATUS_CARD_EXEMPTION' | 'CA_DIPLOMAT_EXEMPTION' | 'CA_BC_RESELLER_EXEMPTION' | 'CA_MB_RESELLER_EXEMPTION' | 'CA_SK_RESELLER_EXEMPTION' | 'CA_BC_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_MB_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_NS_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_PE_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_SK_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_BC_PRODUCTION_AND_MACHINERY_EXEMPTION' | 'CA_SK_PRODUCTION_AND_MACHINERY_EXEMPTION' | 'CA_BC_SUB_CONTRACTOR_EXEMPTION' | 'CA_SK_SUB_CONTRACTOR_EXEMPTION' | 'CA_BC_CONTRACTOR_EXEMPTION' | 'CA_SK_CONTRACTOR_EXEMPTION' | 'CA_ON_PURCHASE_EXEMPTION' | 'CA_MB_FARMER_EXEMPTION' | 'CA_NS_FARMER_EXEMPTION' | 'CA_SK_FARMER_EXEMPTION';
|
|
6731
6787
|
type ShopifyWebhookFormat = 'json' | 'xml';
|
|
6732
|
-
type ShopifyWebhookTopic = 'customers/redact' | 'customers/data_request' | 'locations/create' | 'locations/update' | 'locations/delete' | 'order_transactions/create' | 'orders/cancelled' | 'orders/create' | 'orders/fulfilled' | 'orders/paid' | 'orders/partially_fulfilled' | 'orders/updated' | 'orders/delete' | 'orders/edited' | 'orders/risk_assessment_changed' | 'products/create' | 'products/delete' | 'products/update' | 'inventory_items/create' | 'inventory_items/update' | 'inventory_items/delete' | 'refunds/create' | 'fulfillment_events/create' | 'fulfillment_events/delete' | 'shop/redact' | 'themes/create' | 'themes/publish' | 'themes/update' | 'bulk_operations/finish' | 'shop/update';
|
|
6788
|
+
type ShopifyWebhookTopic = 'customers/redact' | 'customers/data_request' | 'locations/create' | 'locations/update' | 'locations/delete' | 'order_transactions/create' | 'orders/cancelled' | 'orders/create' | 'orders/fulfilled' | 'orders/paid' | 'orders/partially_fulfilled' | 'orders/updated' | 'orders/delete' | 'orders/edited' | 'orders/risk_assessment_changed' | 'products/create' | 'products/delete' | 'products/update' | 'inventory_items/create' | 'inventory_items/update' | 'inventory_items/delete' | 'refunds/create' | 'fulfillment_events/create' | 'fulfillment_events/delete' | 'shop/redact' | 'themes/create' | 'themes/publish' | 'themes/update' | 'bulk_operations/finish' | 'shop/update' | 'managed_markets_adaptive_pricing/updated';
|
|
6733
6789
|
}
|
|
6734
6790
|
declare namespace io.flow.shopify.markets.v0.models {
|
|
6735
6791
|
interface FulfillmentOrderInternationalDuties {
|
|
@@ -6789,6 +6845,19 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6789
6845
|
interface ShopWrapper {
|
|
6790
6846
|
readonly shop: io.flow.shopify.markets.v0.models.Shop;
|
|
6791
6847
|
}
|
|
6848
|
+
interface ShopifyAdaptivePricingDestination {
|
|
6849
|
+
readonly country_code: string;
|
|
6850
|
+
readonly updated_at: string;
|
|
6851
|
+
readonly tax_and_duty_coefficient: string;
|
|
6852
|
+
readonly fees_coefficient: string;
|
|
6853
|
+
readonly merchant_subsidy_amount: string;
|
|
6854
|
+
readonly merchant_subsidy_currency: string;
|
|
6855
|
+
readonly adaptive_pricing_enabled: boolean;
|
|
6856
|
+
readonly adaptive_shipping_enabled: boolean;
|
|
6857
|
+
}
|
|
6858
|
+
interface ShopifyAdaptivePricingDestinationsWrapper {
|
|
6859
|
+
readonly destinations: io.flow.shopify.markets.v0.models.ShopifyAdaptivePricingDestination[];
|
|
6860
|
+
}
|
|
6792
6861
|
interface ShopifyAppliedDiscount {
|
|
6793
6862
|
readonly title?: string;
|
|
6794
6863
|
readonly description?: string;
|
|
@@ -7448,7 +7517,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
7448
7517
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
7449
7518
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
7450
7519
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
7451
|
-
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing' | 'organization_deactivated';
|
|
7520
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing' | 'order_cancelled' | 'organization_deactivated';
|
|
7452
7521
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
7453
7522
|
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
|
|
7454
7523
|
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
@@ -7957,6 +8026,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
7957
8026
|
readonly created_at?: string;
|
|
7958
8027
|
readonly status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
7959
8028
|
readonly type?: io.flow.common.v0.enums.OrganizationType;
|
|
8029
|
+
readonly channel?: io.flow.common.v0.models.ChannelReference;
|
|
7960
8030
|
}
|
|
7961
8031
|
interface OrganizationDefaults {
|
|
7962
8032
|
readonly country: string;
|
|
@@ -7968,6 +8038,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
7968
8038
|
interface OrganizationReference {
|
|
7969
8039
|
readonly discriminator: 'organization_reference';
|
|
7970
8040
|
readonly id: string;
|
|
8041
|
+
readonly channel?: io.flow.common.v0.models.ChannelReference;
|
|
7971
8042
|
}
|
|
7972
8043
|
interface OrganizationSummary {
|
|
7973
8044
|
readonly id: string;
|
|
@@ -8221,6 +8292,20 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
8221
8292
|
readonly organization: string;
|
|
8222
8293
|
readonly registration: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
8223
8294
|
}
|
|
8295
|
+
interface ShopifyMerchantMarketsDeleted {
|
|
8296
|
+
readonly discriminator: 'shopify_merchant_markets_deleted';
|
|
8297
|
+
readonly event_id: string;
|
|
8298
|
+
readonly timestamp: string;
|
|
8299
|
+
readonly organization: string;
|
|
8300
|
+
readonly id: string;
|
|
8301
|
+
}
|
|
8302
|
+
interface ShopifyMerchantMarketsUpserted {
|
|
8303
|
+
readonly discriminator: 'shopify_merchant_markets_upserted';
|
|
8304
|
+
readonly event_id: string;
|
|
8305
|
+
readonly timestamp: string;
|
|
8306
|
+
readonly organization: string;
|
|
8307
|
+
readonly shopify_merchant_markets: io.flow.shopify.markets.internal.v0.models.ShopifyMerchantMarkets;
|
|
8308
|
+
}
|
|
8224
8309
|
interface ShopifyOrderRiskAssessmentDeleted {
|
|
8225
8310
|
readonly discriminator: 'shopify_order_risk_assessment_deleted';
|
|
8226
8311
|
readonly event_id: string;
|
|
@@ -8307,7 +8392,7 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
8307
8392
|
}
|
|
8308
8393
|
}
|
|
8309
8394
|
declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
8310
|
-
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;
|
|
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;
|
|
8311
8396
|
}
|
|
8312
8397
|
declare namespace io.flow.experience.v0.enums {
|
|
8313
8398
|
type AddressFieldName = 'first_name' | 'last_name' | 'street_1' | 'street_2' | 'city' | 'province' | 'postal' | 'country' | 'phone' | 'company' | 'vat_registration_number';
|
|
@@ -9438,6 +9523,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9438
9523
|
interface LaneSummary {
|
|
9439
9524
|
readonly id: string;
|
|
9440
9525
|
readonly ratecard: io.flow.ratecard.v0.models.RatecardSummary;
|
|
9526
|
+
readonly dim_factor: number;
|
|
9441
9527
|
}
|
|
9442
9528
|
interface LargePackageServiceFee {
|
|
9443
9529
|
readonly discriminator: 'large_package_service_fee';
|
|
@@ -9505,6 +9591,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9505
9591
|
readonly glbe_shipping_method_id?: string;
|
|
9506
9592
|
readonly glbe_proposition_name?: string;
|
|
9507
9593
|
readonly channel_revenue_share_percentage?: number;
|
|
9594
|
+
readonly channel_id?: string;
|
|
9508
9595
|
}
|
|
9509
9596
|
interface RatecardCarrierSummary {
|
|
9510
9597
|
readonly id: string;
|
|
@@ -9597,6 +9684,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9597
9684
|
readonly glbe_shipping_method_id?: string;
|
|
9598
9685
|
readonly glbe_proposition_name?: string;
|
|
9599
9686
|
readonly channel_revenue_share_percentage?: number;
|
|
9687
|
+
readonly channel_id?: string;
|
|
9600
9688
|
readonly data?: io.flow.ratecard.v0.models.RatecardData;
|
|
9601
9689
|
}
|
|
9602
9690
|
interface RatecardLane {
|
|
@@ -9629,32 +9717,13 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9629
9717
|
readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9630
9718
|
readonly distance_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9631
9719
|
}
|
|
9632
|
-
interface RatecardLaneImportForm {
|
|
9633
|
-
readonly ratecard_owner: io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
9634
|
-
readonly service: string;
|
|
9635
|
-
readonly currency: string;
|
|
9636
|
-
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
9637
|
-
readonly origin: io.flow.common.v0.models.Zone;
|
|
9638
|
-
readonly destination: io.flow.common.v0.models.Zone;
|
|
9639
|
-
readonly shipment_window: io.flow.ratecard.v0.models.ShipmentWindow;
|
|
9640
|
-
readonly dim_factor: number;
|
|
9641
|
-
readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9642
|
-
readonly distance_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9643
|
-
readonly rates: io.flow.ratecard.v0.models.RatecardRateForm[];
|
|
9644
|
-
}
|
|
9645
9720
|
interface RatecardLaneVersion {
|
|
9646
9721
|
readonly id: string;
|
|
9647
9722
|
readonly timestamp: string;
|
|
9648
9723
|
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
9649
9724
|
readonly ratecard_lane: io.flow.ratecard.v0.models.RatecardLane;
|
|
9650
9725
|
}
|
|
9651
|
-
interface RatecardLanesImportRequestData {
|
|
9652
|
-
readonly id: string;
|
|
9653
|
-
readonly source_url: string;
|
|
9654
|
-
readonly filename?: string;
|
|
9655
|
-
}
|
|
9656
9726
|
interface RatecardRate {
|
|
9657
|
-
readonly id: string;
|
|
9658
9727
|
readonly amount: number;
|
|
9659
9728
|
readonly weight: number;
|
|
9660
9729
|
}
|
|
@@ -9662,12 +9731,6 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9662
9731
|
readonly amount: number;
|
|
9663
9732
|
readonly weight: number;
|
|
9664
9733
|
}
|
|
9665
|
-
interface RatecardRateVersion {
|
|
9666
|
-
readonly id: string;
|
|
9667
|
-
readonly timestamp: string;
|
|
9668
|
-
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
9669
|
-
readonly ratecard_rate: io.flow.ratecard.v0.models.RatecardRate;
|
|
9670
|
-
}
|
|
9671
9734
|
interface RatecardReference {
|
|
9672
9735
|
readonly id: string;
|
|
9673
9736
|
}
|
|
@@ -10719,6 +10782,7 @@ declare namespace io.flow.merchant.onboarding.v0.unions {
|
|
|
10719
10782
|
declare namespace io.flow.catalog.v0.enums {
|
|
10720
10783
|
type AdjustmentReasonKey = 'duty_deminimis' | 'vat_deminimis';
|
|
10721
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';
|
|
10722
10786
|
type FulfillmentMethodType = 'fulfillment_method';
|
|
10723
10787
|
type FulfillmentMethodValue = 'digital' | 'physical';
|
|
10724
10788
|
type ImageTag = 'thumbnail' | 'checkout';
|
|
@@ -11256,9 +11320,9 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
11256
11320
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
11257
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';
|
|
11258
11322
|
type StatementAttachmentType = 'csv' | 'pdf';
|
|
11259
|
-
type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
11323
|
+
type StatementStatusCode = 'scheduled' | 'sent' | 'failed' | 'paid';
|
|
11260
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';
|
|
11261
|
-
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';
|
|
11262
11326
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
11263
11327
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
11264
11328
|
}
|
|
@@ -11432,6 +11496,10 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11432
11496
|
readonly timestamp: string;
|
|
11433
11497
|
readonly reason: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
11434
11498
|
}
|
|
11499
|
+
interface PayoutStatusPaid {
|
|
11500
|
+
readonly code: 'paid';
|
|
11501
|
+
readonly timestamp: string;
|
|
11502
|
+
}
|
|
11435
11503
|
interface PayoutStatusScheduled {
|
|
11436
11504
|
readonly code: 'scheduled';
|
|
11437
11505
|
readonly placeholder?: string;
|
|
@@ -11578,6 +11646,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11578
11646
|
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
11579
11647
|
readonly carrier: io.flow.billing.v0.models.TransactionMetadataShippingLabelCarrier;
|
|
11580
11648
|
readonly revenue_share_percentage?: number;
|
|
11649
|
+
readonly actual?: io.flow.billing.v0.models.TransactionMetadataTrueupData;
|
|
11581
11650
|
}
|
|
11582
11651
|
interface TransactionMetadataShippingLabelCarrier {
|
|
11583
11652
|
readonly id: string;
|
|
@@ -11684,7 +11753,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11684
11753
|
}
|
|
11685
11754
|
declare namespace io.flow.billing.v0.unions {
|
|
11686
11755
|
type BankAccountForm = io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple;
|
|
11687
|
-
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;
|
|
11688
11757
|
type Settlement = io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout;
|
|
11689
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;
|
|
11690
11759
|
}
|
|
@@ -12106,6 +12175,7 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
12106
12175
|
readonly price: io.flow.common.v0.models.Money;
|
|
12107
12176
|
readonly description: string;
|
|
12108
12177
|
readonly taxonomy_category: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
12178
|
+
readonly inferred_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
12109
12179
|
readonly mode: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
12110
12180
|
readonly catalog_size?: number;
|
|
12111
12181
|
readonly relative_ranking?: number;
|
|
@@ -12248,6 +12318,7 @@ declare namespace io.flow.organization.v0.models {
|
|
|
12248
12318
|
readonly province?: string;
|
|
12249
12319
|
readonly self_billing_agreement_effective_at: string;
|
|
12250
12320
|
readonly self_billing_agreement_expires_at?: string;
|
|
12321
|
+
readonly legal_name?: string;
|
|
12251
12322
|
}
|
|
12252
12323
|
interface OrganizationVersion {
|
|
12253
12324
|
readonly id: string;
|
|
@@ -12272,6 +12343,7 @@ declare namespace io.flow.organization.v0.models {
|
|
|
12272
12343
|
readonly country: string;
|
|
12273
12344
|
readonly tax_code: string;
|
|
12274
12345
|
readonly province?: string;
|
|
12346
|
+
readonly legal_name?: string;
|
|
12275
12347
|
}
|
|
12276
12348
|
}
|
|
12277
12349
|
declare namespace io.flow.billing.bank.account.v0.models {
|
|
@@ -12297,17 +12369,6 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
12297
12369
|
}
|
|
12298
12370
|
interface BankAccountInfoKor {
|
|
12299
12371
|
readonly discriminator: 'kor';
|
|
12300
|
-
readonly name?: string;
|
|
12301
|
-
readonly address?: io.flow.common.v0.models.Address;
|
|
12302
|
-
readonly phone?: string;
|
|
12303
|
-
readonly email?: string;
|
|
12304
|
-
readonly bank_account_number: string;
|
|
12305
|
-
readonly bank_routing_number?: string;
|
|
12306
|
-
readonly bank_name?: string;
|
|
12307
|
-
readonly bank_address?: io.flow.common.v0.models.Address;
|
|
12308
|
-
}
|
|
12309
|
-
interface BankAccountInfoKorV2 {
|
|
12310
|
-
readonly discriminator: 'kor_v2';
|
|
12311
12372
|
readonly name: string;
|
|
12312
12373
|
readonly bank_account_number: string;
|
|
12313
12374
|
readonly bank_routing_number: string;
|
|
@@ -12320,7 +12381,7 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
12320
12381
|
}
|
|
12321
12382
|
}
|
|
12322
12383
|
declare namespace io.flow.billing.bank.account.v0.unions {
|
|
12323
|
-
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;
|
|
12324
12385
|
}
|
|
12325
12386
|
declare namespace io.flow.internal.v0.enums {
|
|
12326
12387
|
type AccountCurrencyFilter = 'GBP' | 'CAD' | 'USD' | 'KRW';
|
|
@@ -12336,18 +12397,18 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12336
12397
|
type ApplicablePreferentialRate = 'baby' | 'children';
|
|
12337
12398
|
type AthenaDailyopsIntentLevel = 'low_intent' | 'high_intent';
|
|
12338
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';
|
|
12339
|
-
type B2BFeeMorTaxTriggerType = 'capture' | 'order';
|
|
12400
|
+
type B2BFeeMorTaxTriggerType = 'capture' | 'order' | 'settings';
|
|
12340
12401
|
type B2BFeeShippingTaxTriggerType = 'label' | 'trueup';
|
|
12341
12402
|
type B2BTaxLedgerDocumentType = 'b2b_invoice' | 'b2b_credit_memo' | 'mor_invoice' | 'mor_credit_memo' | 'label_invoice' | 'label_credit_memo';
|
|
12342
12403
|
type B2BTaxRateType = 'basic' | 'preferential' | 'exempt';
|
|
12343
12404
|
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
12344
12405
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
12345
|
-
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
12406
|
+
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed' | 'paid';
|
|
12346
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';
|
|
12347
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';
|
|
12348
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';
|
|
12349
12410
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
12350
|
-
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';
|
|
12351
12412
|
type BojanaItemType = 'physical' | 'digital';
|
|
12352
12413
|
type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
|
|
12353
12414
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
@@ -12362,7 +12423,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12362
12423
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
12363
12424
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
12364
12425
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
12365
|
-
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing' | 'organization_deactivated';
|
|
12426
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing' | 'order_cancelled' | 'organization_deactivated';
|
|
12366
12427
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
12367
12428
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
12368
12429
|
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
|
|
@@ -12391,6 +12452,13 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12391
12452
|
type ComplianceType = 'weee';
|
|
12392
12453
|
type ConnectReportPaymentTransferType = 'ManagedMarketsRefundDebit' | 'ManagedMarketsDutiesAndTaxesAdjustmentDebit' | 'ManagedMarketsDisputedAmountDebit';
|
|
12393
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';
|
|
12394
12462
|
type CrossdockTrackingStatus = 'notified' | 'received' | 'shipped';
|
|
12395
12463
|
type DebugAccountingTransactionType = 'fulfillment';
|
|
12396
12464
|
type DeliveredDutyOptionMessageType = 'warning' | 'notification';
|
|
@@ -12419,7 +12487,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12419
12487
|
type EmptyAttribute = 'irrelevant';
|
|
12420
12488
|
type ErpFileType = 'vendor';
|
|
12421
12489
|
type EvaluationCheckResult = 'pass' | 'fail';
|
|
12422
|
-
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_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';
|
|
12423
12491
|
type ExperienceImportType = 'experience_with_settings';
|
|
12424
12492
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
12425
12493
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -12429,7 +12497,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12429
12497
|
type FeatureType = 'boolean' | 'decimal' | 'string';
|
|
12430
12498
|
type FeesSource = 'settings' | 'authorization_bundle';
|
|
12431
12499
|
type FileType = 'pdf';
|
|
12432
|
-
type
|
|
12500
|
+
type FlatRateLabelGuaranteeStatus = 'active' | 'void';
|
|
12501
|
+
type FlatRateLabelTransactionType = 'adjustment' | 'reversal' | 'fee' | 'subsidy';
|
|
12433
12502
|
type FraudProvider = 'flow' | 'forter' | 'paypal' | 'riskified' | 'rps' | 'other' | 'none';
|
|
12434
12503
|
type FraudProviderStatus = 'active' | 'archived';
|
|
12435
12504
|
type FraudReviewResponsibleParty = 'flow' | 'organization';
|
|
@@ -12535,7 +12604,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12535
12604
|
type RestrictionAttributeOperator = 'and' | 'or';
|
|
12536
12605
|
type RestrictionAttributeResult = 'pending_classification' | 'pending_verification' | 'accepted' | 'restricted';
|
|
12537
12606
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
12538
|
-
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';
|
|
12539
12608
|
type RestrictionOrganizationSource = 'smb' | 'enterprise';
|
|
12540
12609
|
type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
|
|
12541
12610
|
type RestrictionRuleCommunityExemption = 'domestic_exemption' | 'intra_eu_exemption';
|
|
@@ -12818,6 +12887,60 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12818
12887
|
readonly action: io.flow.internal.v0.enums.ItemQuantityAction;
|
|
12819
12888
|
readonly quantity: number;
|
|
12820
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
|
+
}
|
|
12916
|
+
interface AdaptivePricingDestinationUpdate {
|
|
12917
|
+
readonly country: string;
|
|
12918
|
+
readonly updated_at: string;
|
|
12919
|
+
readonly tax_and_duty_coefficient: number;
|
|
12920
|
+
readonly fees_coefficient: number;
|
|
12921
|
+
readonly merchant_subsidy: io.flow.common.v0.models.Money;
|
|
12922
|
+
}
|
|
12923
|
+
interface AdaptivePricingUpdate {
|
|
12924
|
+
readonly channel_id: string;
|
|
12925
|
+
readonly organization_id: string;
|
|
12926
|
+
readonly destination_updates: io.flow.internal.v0.models.AdaptivePricingDestinationUpdate[];
|
|
12927
|
+
}
|
|
12928
|
+
interface AdaptivePricingUpdateDeleted {
|
|
12929
|
+
readonly discriminator: 'adaptive_pricing_update_deleted';
|
|
12930
|
+
readonly event_id: string;
|
|
12931
|
+
readonly timestamp: string;
|
|
12932
|
+
readonly organization: string;
|
|
12933
|
+
readonly channel_id: string;
|
|
12934
|
+
readonly id: string;
|
|
12935
|
+
}
|
|
12936
|
+
interface AdaptivePricingUpdateUpserted {
|
|
12937
|
+
readonly discriminator: 'adaptive_pricing_update_upserted';
|
|
12938
|
+
readonly event_id: string;
|
|
12939
|
+
readonly timestamp: string;
|
|
12940
|
+
readonly organization: string;
|
|
12941
|
+
readonly channel_id: string;
|
|
12942
|
+
readonly adaptive_pricing_update: io.flow.internal.v0.models.AdaptivePricingUpdate;
|
|
12943
|
+
}
|
|
12821
12944
|
interface AdaptiveShippingOrderGuarantee {
|
|
12822
12945
|
readonly id: string;
|
|
12823
12946
|
readonly organization_id: string;
|
|
@@ -12843,6 +12966,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12843
12966
|
interface AdaptiveShippingRate {
|
|
12844
12967
|
readonly id: string;
|
|
12845
12968
|
readonly organization_id: string;
|
|
12969
|
+
readonly channel_id: string;
|
|
12846
12970
|
readonly destination_country: string;
|
|
12847
12971
|
readonly coefficient: number;
|
|
12848
12972
|
readonly flat_rates: io.flow.internal.v0.models.FlatRate[];
|
|
@@ -13469,6 +13593,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13469
13593
|
readonly expected_delivery_by?: string;
|
|
13470
13594
|
readonly attributes?: Record<string, string>;
|
|
13471
13595
|
readonly total: io.flow.common.v0.models.Price;
|
|
13596
|
+
readonly created_at?: string;
|
|
13597
|
+
readonly failed_on?: string;
|
|
13472
13598
|
}
|
|
13473
13599
|
interface BankPaymentDeletedV2 {
|
|
13474
13600
|
readonly discriminator: 'bank_payment_deleted_v2';
|
|
@@ -13722,6 +13848,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13722
13848
|
readonly b2b_fee_mor_tax: io.flow.common.v0.models.Price;
|
|
13723
13849
|
readonly b2b_fee_shipping_tax: io.flow.common.v0.models.Price;
|
|
13724
13850
|
readonly flat_rate_label: io.flow.common.v0.models.Price;
|
|
13851
|
+
readonly flat_rate_label_subsidy: io.flow.common.v0.models.Price;
|
|
13725
13852
|
}
|
|
13726
13853
|
interface BillingStatementUpserted {
|
|
13727
13854
|
readonly discriminator: 'billing_statement_upserted';
|
|
@@ -15019,6 +15146,90 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15019
15146
|
readonly items: io.flow.common.v0.models.CatalogItemSummary[];
|
|
15020
15147
|
readonly product_harmonization: io.flow.internal.v0.models.ClassificationProductHarmonization;
|
|
15021
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
|
+
}
|
|
15022
15233
|
interface CryptoAccount {
|
|
15023
15234
|
readonly discriminator: 'crypto_account';
|
|
15024
15235
|
readonly id: string;
|
|
@@ -16153,6 +16364,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16153
16364
|
readonly transfer?: io.flow.internal.v0.models.Fee;
|
|
16154
16365
|
readonly negative_balance?: io.flow.internal.v0.models.Fee;
|
|
16155
16366
|
readonly sp?: io.flow.internal.v0.models.Fee;
|
|
16367
|
+
readonly revenue_share?: io.flow.internal.v0.models.Fee;
|
|
16156
16368
|
}
|
|
16157
16369
|
interface FinanceBankAccount {
|
|
16158
16370
|
readonly id: string;
|
|
@@ -16904,6 +17116,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16904
17116
|
readonly discriminator: 'google_tag_manager';
|
|
16905
17117
|
readonly tracker_id: string;
|
|
16906
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
|
+
}
|
|
16907
17142
|
interface HarmonizationClassificationStatisticsData {
|
|
16908
17143
|
readonly statistics: io.flow.internal.v0.models.ClassificationStatistics;
|
|
16909
17144
|
}
|
|
@@ -17928,6 +18163,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17928
18163
|
readonly type: io.flow.internal.v0.enums.MaheshItemType;
|
|
17929
18164
|
readonly added_on: string;
|
|
17930
18165
|
}
|
|
18166
|
+
interface MaheshItemDeleted {
|
|
18167
|
+
readonly discriminator: 'mahesh_item_deleted';
|
|
18168
|
+
readonly event_id: string;
|
|
18169
|
+
readonly timestamp: string;
|
|
18170
|
+
readonly id: string;
|
|
18171
|
+
}
|
|
17931
18172
|
interface MaheshItemForm {
|
|
17932
18173
|
readonly number: string;
|
|
17933
18174
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -17935,6 +18176,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17935
18176
|
readonly type: io.flow.internal.v0.enums.MaheshItemType;
|
|
17936
18177
|
readonly added_on: string;
|
|
17937
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
|
+
}
|
|
17938
18185
|
interface MainTransaction {
|
|
17939
18186
|
readonly id: string;
|
|
17940
18187
|
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
@@ -17947,6 +18194,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17947
18194
|
readonly channel_statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
17948
18195
|
readonly created_at: string;
|
|
17949
18196
|
readonly original_at?: string;
|
|
18197
|
+
readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
17950
18198
|
}
|
|
17951
18199
|
interface MainTransactionDeleted {
|
|
17952
18200
|
readonly discriminator: 'main_transaction_deleted';
|
|
@@ -18205,10 +18453,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18205
18453
|
readonly surcharges?: io.flow.internal.v0.models.MerchantSurcharge[];
|
|
18206
18454
|
readonly freight_guaranteed?: number;
|
|
18207
18455
|
readonly freight_non_guaranteed?: number;
|
|
18456
|
+
readonly freight_subsidy?: number;
|
|
18208
18457
|
readonly total: number;
|
|
18209
18458
|
readonly tax_refund?: number;
|
|
18210
18459
|
readonly tax_reversal?: number;
|
|
18211
18460
|
readonly duty_reversal?: number;
|
|
18461
|
+
readonly flat_rate_reversal?: number;
|
|
18462
|
+
readonly flat_rate_subsidy_reversal?: number;
|
|
18212
18463
|
readonly tax_reversal_for_lvg_order?: boolean;
|
|
18213
18464
|
readonly duty_reversal_for_lvg_order?: boolean;
|
|
18214
18465
|
}
|
|
@@ -19101,6 +19352,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19101
19352
|
readonly organization: io.flow.internal.v0.models.OtherRecordOrganizationSummary;
|
|
19102
19353
|
readonly number: string;
|
|
19103
19354
|
readonly identifiers: io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers;
|
|
19355
|
+
readonly destination_province?: string;
|
|
19104
19356
|
}
|
|
19105
19357
|
interface OtherRecordOrderSummaryIdentifiers {
|
|
19106
19358
|
readonly shopify_order_id?: string;
|
|
@@ -19722,8 +19974,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19722
19974
|
readonly matching_sellability_positive_keywords?: string[];
|
|
19723
19975
|
readonly classification_failure_reason?: io.flow.internal.v0.enums.ClassificationFailureReason;
|
|
19724
19976
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
19977
|
+
readonly inferred_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
19978
|
+
readonly effective_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
19725
19979
|
readonly fingerprint: string;
|
|
19726
19980
|
readonly screening_mode?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
19981
|
+
readonly created_at?: string;
|
|
19727
19982
|
}
|
|
19728
19983
|
interface PreonboardingSellabilityResultDeleted {
|
|
19729
19984
|
readonly discriminator: 'preonboarding_sellability_result_deleted';
|
|
@@ -20311,13 +20566,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20311
20566
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
20312
20567
|
readonly number: string;
|
|
20313
20568
|
}
|
|
20314
|
-
interface RatecardLanesImportRequest {
|
|
20315
|
-
readonly discriminator: 'ratecard_lanes_import_request';
|
|
20316
|
-
readonly event_id: string;
|
|
20317
|
-
readonly timestamp: string;
|
|
20318
|
-
readonly organization: string;
|
|
20319
|
-
readonly data: io.flow.ratecard.v0.models.RatecardLanesImportRequestData;
|
|
20320
|
-
}
|
|
20321
20569
|
interface RatecardRateLevelDeleted {
|
|
20322
20570
|
readonly discriminator: 'ratecard_rate_level_deleted';
|
|
20323
20571
|
readonly event_id: string;
|
|
@@ -20370,13 +20618,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20370
20618
|
readonly organization: string;
|
|
20371
20619
|
readonly fee: io.flow.internal.v0.models.RatecardInternalServiceFee;
|
|
20372
20620
|
}
|
|
20373
|
-
interface RatecardServiceFeesOverride {
|
|
20374
|
-
readonly ratecard: io.flow.internal.v0.models.RatecardInternalSummary;
|
|
20375
|
-
readonly service_fees: io.flow.ratecard.v0.unions.ServiceFee[];
|
|
20376
|
-
}
|
|
20377
|
-
interface RatecardServiceFeesOverrideForm {
|
|
20378
|
-
readonly service_fees: io.flow.ratecard.v0.unions.ServiceFee[];
|
|
20379
|
-
}
|
|
20380
20621
|
interface RatesChanged {
|
|
20381
20622
|
readonly event_id: string;
|
|
20382
20623
|
readonly timestamp: string;
|
|
@@ -20487,7 +20728,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20487
20728
|
readonly source_type?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
20488
20729
|
readonly order_payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
20489
20730
|
readonly amount_range?: io.flow.internal.v0.models.ReportAmountRange;
|
|
20490
|
-
readonly
|
|
20731
|
+
readonly account_currencies?: io.flow.internal.v0.enums.AccountCurrencyFilter[];
|
|
20491
20732
|
readonly channel_id?: string;
|
|
20492
20733
|
}
|
|
20493
20734
|
interface ReportForm {
|
|
@@ -20599,6 +20840,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20599
20840
|
readonly estimated_duties_and_taxes?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20600
20841
|
readonly td_fx_diff?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20601
20842
|
}
|
|
20843
|
+
interface ReportingFreight {
|
|
20844
|
+
readonly guaranteed?: io.flow.internal.v0.models.ReportingFreightGuaranteed;
|
|
20845
|
+
readonly subsidy?: io.flow.internal.v0.models.ReportingFreightSubsidy;
|
|
20846
|
+
}
|
|
20847
|
+
interface ReportingFreightGuaranteed {
|
|
20848
|
+
readonly amount: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20849
|
+
readonly coefficient: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20850
|
+
}
|
|
20851
|
+
interface ReportingFreightSubsidy {
|
|
20852
|
+
readonly amount: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20853
|
+
}
|
|
20602
20854
|
interface ReportingFulfillment {
|
|
20603
20855
|
readonly id: string;
|
|
20604
20856
|
readonly sequence_number: number;
|
|
@@ -20636,13 +20888,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20636
20888
|
readonly partial_refund?: boolean;
|
|
20637
20889
|
}
|
|
20638
20890
|
interface ReportingFx {
|
|
20639
|
-
readonly shipping: io.flow.internal.v0.models.
|
|
20640
|
-
readonly fees: io.flow.internal.v0.models.
|
|
20641
|
-
readonly product: io.flow.internal.v0.models.
|
|
20642
|
-
readonly tax: io.flow.internal.v0.models.
|
|
20643
|
-
readonly duty: io.flow.internal.v0.models.
|
|
20644
|
-
readonly tips?: io.flow.internal.v0.models.
|
|
20645
|
-
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;
|
|
20646
20902
|
}
|
|
20647
20903
|
interface ReportingMerchantBreakdown {
|
|
20648
20904
|
readonly subsidies: io.flow.internal.v0.models.ReportingMerchantSubsidies;
|
|
@@ -20689,12 +20945,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20689
20945
|
readonly freight_breakdown?: io.flow.internal.v0.models.ReportingMerchantFreight;
|
|
20690
20946
|
readonly freight_guaranteed?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20691
20947
|
readonly freight_non_guaranteed?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20948
|
+
readonly freight_subsidy?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20692
20949
|
readonly discount?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20693
20950
|
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20694
20951
|
readonly tax_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20695
20952
|
readonly duty_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20696
20953
|
readonly tax_reversal?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20697
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;
|
|
20698
20957
|
readonly tax_reversal_for_lvg_order?: boolean;
|
|
20699
20958
|
readonly duty_reversal_for_lvg_order?: boolean;
|
|
20700
20959
|
}
|
|
@@ -21345,15 +21604,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21345
21604
|
readonly tax?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21346
21605
|
readonly duty?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21347
21606
|
readonly fees: io.flow.internal.v0.models.ReportingFees;
|
|
21607
|
+
readonly freight?: io.flow.internal.v0.models.ReportingFreight;
|
|
21348
21608
|
readonly conversion_rate: io.flow.internal.v0.models.ReportingConversionRates;
|
|
21349
21609
|
readonly payment_is: io.flow.internal.v0.models.PaymentIs;
|
|
21350
21610
|
readonly price_inclusivity?: io.flow.internal.v0.models.PriceInclusivity;
|
|
21351
21611
|
readonly destination_country: string;
|
|
21612
|
+
readonly destination_province?: string;
|
|
21352
21613
|
readonly fulfilled_at?: string;
|
|
21353
21614
|
readonly reconciliation?: io.flow.internal.v0.models.ReportingReconciliation;
|
|
21354
21615
|
readonly is_eu_destination?: boolean;
|
|
21355
21616
|
readonly debug_url?: string;
|
|
21356
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
|
+
}
|
|
21357
21632
|
interface SandboxSetup {
|
|
21358
21633
|
readonly requested_by: string;
|
|
21359
21634
|
}
|
|
@@ -21452,6 +21727,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21452
21727
|
readonly current_error?: io.flow.sellability.v0.models.SellabilityError[];
|
|
21453
21728
|
readonly merchant_error?: io.flow.sellability.v0.models.SellabilityError[];
|
|
21454
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
|
+
}
|
|
21455
21737
|
interface SessionOrderData {
|
|
21456
21738
|
readonly id: string;
|
|
21457
21739
|
readonly session: io.flow.common.v0.models.SessionReference;
|
|
@@ -21480,6 +21762,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21480
21762
|
readonly rate_level_key?: string;
|
|
21481
21763
|
readonly cost_estimate_source: io.flow.label.v0.enums.CostEstimateSource;
|
|
21482
21764
|
readonly cost: io.flow.common.v0.models.Money;
|
|
21765
|
+
readonly dim_factor: number;
|
|
21483
21766
|
}
|
|
21484
21767
|
interface ShippingCostDeleted {
|
|
21485
21768
|
readonly discriminator: 'shipping_cost_deleted';
|
|
@@ -21591,6 +21874,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21591
21874
|
readonly name?: string;
|
|
21592
21875
|
readonly phone?: string;
|
|
21593
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
|
+
}
|
|
21594
21882
|
interface ShopifyDispute {
|
|
21595
21883
|
readonly id: string;
|
|
21596
21884
|
readonly organization_id: string;
|
|
@@ -21907,6 +22195,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21907
22195
|
readonly weight: number;
|
|
21908
22196
|
readonly weight_unit: io.flow.internal.v0.enums.ShopifyWeightUnit;
|
|
21909
22197
|
}
|
|
22198
|
+
interface ShopifyMerchantMarketCountry {
|
|
22199
|
+
readonly code: string;
|
|
22200
|
+
readonly actively_managing: boolean;
|
|
22201
|
+
readonly enabled: boolean;
|
|
22202
|
+
}
|
|
22203
|
+
interface ShopifyMerchantMarkets {
|
|
22204
|
+
readonly id: string;
|
|
22205
|
+
readonly organization_id: string;
|
|
22206
|
+
readonly countries: io.flow.internal.v0.models.ShopifyMerchantMarketCountry[];
|
|
22207
|
+
}
|
|
22208
|
+
interface ShopifyMerchantMarketsDeleted {
|
|
22209
|
+
readonly discriminator: 'shopify_merchant_markets_deleted';
|
|
22210
|
+
readonly event_id: string;
|
|
22211
|
+
readonly timestamp: string;
|
|
22212
|
+
readonly organization: string;
|
|
22213
|
+
readonly id: string;
|
|
22214
|
+
}
|
|
22215
|
+
interface ShopifyMerchantMarketsUpserted {
|
|
22216
|
+
readonly discriminator: 'shopify_merchant_markets_upserted';
|
|
22217
|
+
readonly event_id: string;
|
|
22218
|
+
readonly timestamp: string;
|
|
22219
|
+
readonly organization: string;
|
|
22220
|
+
readonly shopify_merchant_markets: io.flow.internal.v0.models.ShopifyMerchantMarkets;
|
|
22221
|
+
}
|
|
21910
22222
|
interface ShopifyMerchantPlan {
|
|
21911
22223
|
readonly id: string;
|
|
21912
22224
|
readonly authorization: io.flow.payment.v0.models.AuthorizationReference;
|
|
@@ -22194,7 +22506,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22194
22506
|
}
|
|
22195
22507
|
interface ShopifyShipmentRateAvailable {
|
|
22196
22508
|
readonly carrier_service_id: string;
|
|
22197
|
-
readonly total_charges: io.flow.internal.v0.models.
|
|
22509
|
+
readonly total_charges: io.flow.internal.v0.models.ShopifyCost;
|
|
22198
22510
|
readonly charges: io.flow.internal.v0.models.ShopifyShipmentRateCharge[];
|
|
22199
22511
|
readonly shipment_options: io.flow.internal.v0.models.ShopifyShipmentRateOption[];
|
|
22200
22512
|
readonly expected_delivery_date?: string;
|
|
@@ -22203,11 +22515,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22203
22515
|
}
|
|
22204
22516
|
interface ShopifyShipmentRateCharge {
|
|
22205
22517
|
readonly code: io.flow.internal.v0.enums.ShopifyChargeCode;
|
|
22206
|
-
readonly cost: io.flow.internal.v0.models.
|
|
22518
|
+
readonly cost: io.flow.internal.v0.models.ShopifyCost;
|
|
22207
22519
|
}
|
|
22208
22520
|
interface ShopifyShipmentRateOption {
|
|
22209
22521
|
readonly code: io.flow.internal.v0.enums.ShopifyShipmentOptionCode;
|
|
22210
|
-
readonly cost: io.flow.internal.v0.models.
|
|
22522
|
+
readonly cost: io.flow.internal.v0.models.ShopifyCost;
|
|
22211
22523
|
readonly optional?: boolean;
|
|
22212
22524
|
}
|
|
22213
22525
|
interface ShopifyShipmentRatePackage {
|
|
@@ -22246,11 +22558,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22246
22558
|
readonly carrier_account_reference_id: string;
|
|
22247
22559
|
readonly byoa: boolean;
|
|
22248
22560
|
}
|
|
22249
|
-
interface ShopifyShipmentRateTotalCharges {
|
|
22250
|
-
readonly subtotal: io.flow.internal.v0.models.ShopifyMoney;
|
|
22251
|
-
readonly tax: io.flow.internal.v0.models.ShopifyMoney;
|
|
22252
|
-
readonly total: io.flow.internal.v0.models.ShopifyMoney;
|
|
22253
|
-
}
|
|
22254
22561
|
interface ShopifyShipmentRateUnavailable {
|
|
22255
22562
|
readonly carrier_service_id: string;
|
|
22256
22563
|
readonly reasons: io.flow.internal.v0.models.ShopifyShipmentRateReason[];
|
|
@@ -23614,7 +23921,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23614
23921
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
23615
23922
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
|
|
23616
23923
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
23617
|
-
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.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;
|
|
23618
23925
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
23619
23926
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
23620
23927
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -23699,6 +24006,13 @@ export declare type AccountUpsertedV2 = io.flow.internal.v0.models.AccountUpsert
|
|
|
23699
24006
|
export declare type AccountingPendingOrderMetadata = io.flow.internal.v0.models.AccountingPendingOrderMetadata;
|
|
23700
24007
|
export declare type AccountingReturnMetadata = io.flow.internal.v0.models.AccountingReturnMetadata;
|
|
23701
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;
|
|
24012
|
+
export declare type AdaptivePricingDestinationUpdate = io.flow.internal.v0.models.AdaptivePricingDestinationUpdate;
|
|
24013
|
+
export declare type AdaptivePricingUpdate = io.flow.internal.v0.models.AdaptivePricingUpdate;
|
|
24014
|
+
export declare type AdaptivePricingUpdateDeleted = io.flow.internal.v0.models.AdaptivePricingUpdateDeleted;
|
|
24015
|
+
export declare type AdaptivePricingUpdateUpserted = io.flow.internal.v0.models.AdaptivePricingUpdateUpserted;
|
|
23702
24016
|
export declare type AdaptiveShippingOrderGuarantee = io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
23703
24017
|
export declare type AdaptiveShippingOrderGuaranteeDeleted = io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted;
|
|
23704
24018
|
export declare type AdaptiveShippingOrderGuaranteeState = io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState;
|
|
@@ -24109,6 +24423,16 @@ export declare type ConsoleLabelRequestForm = io.flow.internal.v0.models.Console
|
|
|
24109
24423
|
export declare type ConsoleLabelValidationForm = io.flow.internal.v0.unions.ConsoleLabelValidationForm;
|
|
24110
24424
|
export declare type ConsoleMarkUnresolvableForm = io.flow.internal.v0.models.ConsoleMarkUnresolvableForm;
|
|
24111
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;
|
|
24112
24436
|
export declare type CrossdockTrackingStatus = io.flow.internal.v0.enums.CrossdockTrackingStatus;
|
|
24113
24437
|
export declare type CryptoAccount = io.flow.internal.v0.models.CryptoAccount;
|
|
24114
24438
|
export declare type CryptoAccountModificationForm = io.flow.internal.v0.models.CryptoAccountModificationForm;
|
|
@@ -24334,6 +24658,7 @@ export declare type FiservMerchant = io.flow.internal.v0.models.FiservMerchant;
|
|
|
24334
24658
|
export declare type FiservMerchantModificationForm = io.flow.internal.v0.models.FiservMerchantModificationForm;
|
|
24335
24659
|
export declare type FiservMerchantPutForm = io.flow.internal.v0.models.FiservMerchantPutForm;
|
|
24336
24660
|
export declare type FlatRate = io.flow.internal.v0.models.FlatRate;
|
|
24661
|
+
export declare type FlatRateLabelGuaranteeStatus = io.flow.internal.v0.enums.FlatRateLabelGuaranteeStatus;
|
|
24337
24662
|
export declare type FlatRateLabelReversal = io.flow.internal.v0.models.FlatRateLabelReversal;
|
|
24338
24663
|
export declare type FlatRateLabelReversalDeleted = io.flow.internal.v0.models.FlatRateLabelReversalDeleted;
|
|
24339
24664
|
export declare type FlatRateLabelReversalUpserted = io.flow.internal.v0.models.FlatRateLabelReversalUpserted;
|
|
@@ -24443,6 +24768,9 @@ export declare type GoogleShoppingAccountParameters = io.flow.internal.v0.models
|
|
|
24443
24768
|
export declare type GoogleShoppingSetting = io.flow.internal.v0.models.GoogleShoppingSetting;
|
|
24444
24769
|
export declare type GoogleTagManager = io.flow.internal.v0.models.GoogleTagManager;
|
|
24445
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;
|
|
24446
24774
|
export declare type HarmonizationClassificationStatisticsData = io.flow.internal.v0.models.HarmonizationClassificationStatisticsData;
|
|
24447
24775
|
export declare type HarmonizationClassificationStatisticsPublished = io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished;
|
|
24448
24776
|
export declare type HarmonizationCodesImport = io.flow.internal.v0.models.HarmonizationCodesImport;
|
|
@@ -24612,8 +24940,10 @@ export declare type LoyaltyProgramMessage = io.flow.internal.v0.models.LoyaltyPr
|
|
|
24612
24940
|
export declare type LoyaltyProgramReward = io.flow.internal.v0.models.LoyaltyProgramReward;
|
|
24613
24941
|
export declare type LoyaltyProgramRewards = io.flow.internal.v0.models.LoyaltyProgramRewards;
|
|
24614
24942
|
export declare type MaheshItem = io.flow.internal.v0.models.MaheshItem;
|
|
24943
|
+
export declare type MaheshItemDeleted = io.flow.internal.v0.models.MaheshItemDeleted;
|
|
24615
24944
|
export declare type MaheshItemForm = io.flow.internal.v0.models.MaheshItemForm;
|
|
24616
24945
|
export declare type MaheshItemType = io.flow.internal.v0.enums.MaheshItemType;
|
|
24946
|
+
export declare type MaheshItemUpserted = io.flow.internal.v0.models.MaheshItemUpserted;
|
|
24617
24947
|
export declare type MailClass = io.flow.internal.v0.enums.MailClass;
|
|
24618
24948
|
export declare type MainTransaction = io.flow.internal.v0.models.MainTransaction;
|
|
24619
24949
|
export declare type MainTransactionDeleted = io.flow.internal.v0.models.MainTransactionDeleted;
|
|
@@ -25026,7 +25356,6 @@ export declare type RatecardDimensionEstimateDeleted = io.flow.internal.v0.model
|
|
|
25026
25356
|
export declare type RatecardDimensionEstimateUpserted = io.flow.internal.v0.models.RatecardDimensionEstimateUpserted;
|
|
25027
25357
|
export declare type RatecardInternalServiceFee = io.flow.internal.v0.models.RatecardInternalServiceFee;
|
|
25028
25358
|
export declare type RatecardInternalSummary = io.flow.internal.v0.models.RatecardInternalSummary;
|
|
25029
|
-
export declare type RatecardLanesImportRequest = io.flow.internal.v0.models.RatecardLanesImportRequest;
|
|
25030
25359
|
export declare type RatecardRateLevelDeleted = io.flow.internal.v0.models.RatecardRateLevelDeleted;
|
|
25031
25360
|
export declare type RatecardRateLevelOrganizationDeleted = io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted;
|
|
25032
25361
|
export declare type RatecardRateLevelOrganizationUpserted = io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted;
|
|
@@ -25035,8 +25364,6 @@ export declare type RatecardRateLevelRatecardUpserted = io.flow.internal.v0.mode
|
|
|
25035
25364
|
export declare type RatecardRateLevelUpserted = io.flow.internal.v0.models.RatecardRateLevelUpserted;
|
|
25036
25365
|
export declare type RatecardServiceFeeDeleted = io.flow.internal.v0.models.RatecardServiceFeeDeleted;
|
|
25037
25366
|
export declare type RatecardServiceFeeUpserted = io.flow.internal.v0.models.RatecardServiceFeeUpserted;
|
|
25038
|
-
export declare type RatecardServiceFeesOverride = io.flow.internal.v0.models.RatecardServiceFeesOverride;
|
|
25039
|
-
export declare type RatecardServiceFeesOverrideForm = io.flow.internal.v0.models.RatecardServiceFeesOverrideForm;
|
|
25040
25367
|
export declare type RatesChanged = io.flow.internal.v0.models.RatesChanged;
|
|
25041
25368
|
export declare type RatesNamesSummary = io.flow.internal.v0.models.RatesNamesSummary;
|
|
25042
25369
|
export declare type RaveenaItem = io.flow.internal.v0.models.RaveenaItem;
|
|
@@ -25085,11 +25412,15 @@ export declare type ReportingDebugMissingSubsidies = io.flow.internal.v0.models.
|
|
|
25085
25412
|
export declare type ReportingDestination = io.flow.internal.v0.models.ReportingDestination;
|
|
25086
25413
|
export declare type ReportingDetails = io.flow.internal.v0.models.ReportingDetails;
|
|
25087
25414
|
export declare type ReportingFees = io.flow.internal.v0.models.ReportingFees;
|
|
25415
|
+
export declare type ReportingFreight = io.flow.internal.v0.models.ReportingFreight;
|
|
25416
|
+
export declare type ReportingFreightGuaranteed = io.flow.internal.v0.models.ReportingFreightGuaranteed;
|
|
25417
|
+
export declare type ReportingFreightSubsidy = io.flow.internal.v0.models.ReportingFreightSubsidy;
|
|
25088
25418
|
export declare type ReportingFulfillment = io.flow.internal.v0.models.ReportingFulfillment;
|
|
25089
25419
|
export declare type ReportingFulfillmentHas = io.flow.internal.v0.models.ReportingFulfillmentHas;
|
|
25090
25420
|
export declare type ReportingFulfillmentIs = io.flow.internal.v0.models.ReportingFulfillmentIs;
|
|
25091
25421
|
export declare type ReportingFulfillmentIsVirtual = io.flow.internal.v0.enums.ReportingFulfillmentIsVirtual;
|
|
25092
25422
|
export declare type ReportingFx = io.flow.internal.v0.models.ReportingFx;
|
|
25423
|
+
export declare type ReportingFxValue = io.flow.internal.v0.models.ReportingFxValue;
|
|
25093
25424
|
export declare type ReportingMerchantBreakdown = io.flow.internal.v0.models.ReportingMerchantBreakdown;
|
|
25094
25425
|
export declare type ReportingMerchantFees = io.flow.internal.v0.models.ReportingMerchantFees;
|
|
25095
25426
|
export declare type ReportingMerchantFreight = io.flow.internal.v0.models.ReportingMerchantFreight;
|
|
@@ -25200,6 +25531,8 @@ export declare type RoutingEntity = io.flow.internal.v0.unions.RoutingEntity;
|
|
|
25200
25531
|
export declare type RoutingMerchant = io.flow.internal.v0.models.RoutingMerchant;
|
|
25201
25532
|
export declare type RoutingProcessor = io.flow.internal.v0.models.RoutingProcessor;
|
|
25202
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;
|
|
25203
25536
|
export declare type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
|
|
25204
25537
|
export declare type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
|
|
25205
25538
|
export declare type ScheduledPayment = io.flow.internal.v0.models.ScheduledPayment;
|
|
@@ -25219,6 +25552,8 @@ export declare type SellabilityCheckResult = io.flow.internal.v0.models.Sellabil
|
|
|
25219
25552
|
export declare type SellabilityCheckStatus = io.flow.internal.v0.enums.SellabilityCheckStatus;
|
|
25220
25553
|
export declare type SellabilityInternalMatchType = io.flow.internal.v0.enums.SellabilityInternalMatchType;
|
|
25221
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;
|
|
25222
25557
|
export declare type SessionOrderData = io.flow.internal.v0.models.SessionOrderData;
|
|
25223
25558
|
export declare type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
|
|
25224
25559
|
export declare type SfExpress = io.flow.internal.v0.models.SfExpress;
|
|
@@ -25241,6 +25576,7 @@ export declare type ShopifyChannelOrganizationToken = io.flow.internal.v0.models
|
|
|
25241
25576
|
export declare type ShopifyChannelOrganizationTokens = io.flow.internal.v0.models.ShopifyChannelOrganizationTokens;
|
|
25242
25577
|
export declare type ShopifyChargeCode = io.flow.internal.v0.enums.ShopifyChargeCode;
|
|
25243
25578
|
export declare type ShopifyContactDetails = io.flow.internal.v0.models.ShopifyContactDetails;
|
|
25579
|
+
export declare type ShopifyCost = io.flow.internal.v0.models.ShopifyCost;
|
|
25244
25580
|
export declare type ShopifyDeliveryMethodType = io.flow.internal.v0.enums.ShopifyDeliveryMethodType;
|
|
25245
25581
|
export declare type ShopifyDimensionUnit = io.flow.internal.v0.enums.ShopifyDimensionUnit;
|
|
25246
25582
|
export declare type ShopifyDispute = io.flow.internal.v0.models.ShopifyDispute;
|
|
@@ -25298,6 +25634,10 @@ export declare type ShopifyMarketsWebhookRegistration = io.flow.internal.v0.mode
|
|
|
25298
25634
|
export declare type ShopifyMarketsWebhookRegistrationDeleted = io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted;
|
|
25299
25635
|
export declare type ShopifyMarketsWebhookRegistrationUpserted = io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted;
|
|
25300
25636
|
export declare type ShopifyMeasurements = io.flow.internal.v0.models.ShopifyMeasurements;
|
|
25637
|
+
export declare type ShopifyMerchantMarketCountry = io.flow.internal.v0.models.ShopifyMerchantMarketCountry;
|
|
25638
|
+
export declare type ShopifyMerchantMarkets = io.flow.internal.v0.models.ShopifyMerchantMarkets;
|
|
25639
|
+
export declare type ShopifyMerchantMarketsDeleted = io.flow.internal.v0.models.ShopifyMerchantMarketsDeleted;
|
|
25640
|
+
export declare type ShopifyMerchantMarketsUpserted = io.flow.internal.v0.models.ShopifyMerchantMarketsUpserted;
|
|
25301
25641
|
export declare type ShopifyMerchantPlan = io.flow.internal.v0.models.ShopifyMerchantPlan;
|
|
25302
25642
|
export declare type ShopifyMerchantPlanDeleted = io.flow.internal.v0.models.ShopifyMerchantPlanDeleted;
|
|
25303
25643
|
export declare type ShopifyMerchantPlanUpserted = io.flow.internal.v0.models.ShopifyMerchantPlanUpserted;
|
|
@@ -25365,7 +25705,6 @@ export declare type ShopifyShipmentRateRequest = io.flow.internal.v0.models.Shop
|
|
|
25365
25705
|
export declare type ShopifyShipmentRateResponse = io.flow.internal.v0.models.ShopifyShipmentRateResponse;
|
|
25366
25706
|
export declare type ShopifyShipmentRateShipment = io.flow.internal.v0.models.ShopifyShipmentRateShipment;
|
|
25367
25707
|
export declare type ShopifyShipmentRateShipper = io.flow.internal.v0.models.ShopifyShipmentRateShipper;
|
|
25368
|
-
export declare type ShopifyShipmentRateTotalCharges = io.flow.internal.v0.models.ShopifyShipmentRateTotalCharges;
|
|
25369
25708
|
export declare type ShopifyShipmentRateUnavailable = io.flow.internal.v0.models.ShopifyShipmentRateUnavailable;
|
|
25370
25709
|
export declare type ShopifyShippingLocation = io.flow.internal.v0.models.ShopifyShippingLocation;
|
|
25371
25710
|
export declare type ShopifyShopStatistics = io.flow.internal.v0.models.ShopifyShopStatistics;
|