@flowio/types 11.24.137 → 11.24.138
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +137 -6
- package/dist/api.d.ts +17 -1
- package/package.json +1 -1
- package/src/api-internal.ts +177 -2
- package/src/api.ts +19 -0
package/dist/api-internal.d.ts
CHANGED
|
@@ -4969,6 +4969,11 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
4969
4969
|
readonly origin: string;
|
|
4970
4970
|
readonly destination: string;
|
|
4971
4971
|
}
|
|
4972
|
+
interface ShopifyAdaptivePricingCoefficients {
|
|
4973
|
+
readonly id: string;
|
|
4974
|
+
readonly organization_id: string;
|
|
4975
|
+
readonly destination_coefficients: io.flow.shopify.markets.v0.models.ShopifyAdaptivePricingDestinationCoefficients[];
|
|
4976
|
+
}
|
|
4972
4977
|
interface ShopifyHs10Code {
|
|
4973
4978
|
readonly country_code?: string;
|
|
4974
4979
|
readonly code: string;
|
|
@@ -5069,6 +5074,15 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5069
5074
|
readonly id: string;
|
|
5070
5075
|
readonly response: io.flow.shopify.markets.v0.models.ShopifyWebhookResponse;
|
|
5071
5076
|
}
|
|
5077
|
+
interface ShopifyMerchantMarketCountry {
|
|
5078
|
+
readonly code: string;
|
|
5079
|
+
readonly actively_managing: boolean;
|
|
5080
|
+
}
|
|
5081
|
+
interface ShopifyMerchantMarkets {
|
|
5082
|
+
readonly id: string;
|
|
5083
|
+
readonly organization_id: string;
|
|
5084
|
+
readonly countries: io.flow.shopify.markets.internal.v0.models.ShopifyMerchantMarketCountry[];
|
|
5085
|
+
}
|
|
5072
5086
|
interface ShopifyOrderCancelForm {
|
|
5073
5087
|
readonly note?: string;
|
|
5074
5088
|
}
|
|
@@ -6729,7 +6743,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
6729
6743
|
type ShopifyOrderValueType = 'string' | 'integer';
|
|
6730
6744
|
type ShopifyTaxExemptions = 'EXEMPT_ALL' | 'CA_STATUS_CARD_EXEMPTION' | 'CA_DIPLOMAT_EXEMPTION' | 'CA_BC_RESELLER_EXEMPTION' | 'CA_MB_RESELLER_EXEMPTION' | 'CA_SK_RESELLER_EXEMPTION' | 'CA_BC_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_MB_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_NS_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_PE_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_SK_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_BC_PRODUCTION_AND_MACHINERY_EXEMPTION' | 'CA_SK_PRODUCTION_AND_MACHINERY_EXEMPTION' | 'CA_BC_SUB_CONTRACTOR_EXEMPTION' | 'CA_SK_SUB_CONTRACTOR_EXEMPTION' | 'CA_BC_CONTRACTOR_EXEMPTION' | 'CA_SK_CONTRACTOR_EXEMPTION' | 'CA_ON_PURCHASE_EXEMPTION' | 'CA_MB_FARMER_EXEMPTION' | 'CA_NS_FARMER_EXEMPTION' | 'CA_SK_FARMER_EXEMPTION';
|
|
6731
6745
|
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';
|
|
6746
|
+
type ShopifyWebhookTopic = 'customers/redact' | 'customers/data_request' | 'locations/create' | 'locations/update' | 'locations/delete' | 'order_transactions/create' | 'orders/cancelled' | 'orders/create' | 'orders/fulfilled' | 'orders/paid' | 'orders/partially_fulfilled' | 'orders/updated' | 'orders/delete' | 'orders/edited' | 'orders/risk_assessment_changed' | 'products/create' | 'products/delete' | 'products/update' | 'inventory_items/create' | 'inventory_items/update' | 'inventory_items/delete' | 'refunds/create' | 'fulfillment_events/create' | 'fulfillment_events/delete' | 'shop/redact' | 'themes/create' | 'themes/publish' | 'themes/update' | 'bulk_operations/finish' | 'shop/update' | 'managed_markets_adaptive_pricing/updated';
|
|
6733
6747
|
}
|
|
6734
6748
|
declare namespace io.flow.shopify.markets.v0.models {
|
|
6735
6749
|
interface FulfillmentOrderInternationalDuties {
|
|
@@ -6789,6 +6803,16 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6789
6803
|
interface ShopWrapper {
|
|
6790
6804
|
readonly shop: io.flow.shopify.markets.v0.models.Shop;
|
|
6791
6805
|
}
|
|
6806
|
+
interface ShopifyAdaptivePricingDestinationCoefficients {
|
|
6807
|
+
readonly country: string;
|
|
6808
|
+
readonly updated_at: string;
|
|
6809
|
+
readonly tax_and_duty_coefficient: string;
|
|
6810
|
+
readonly fees_coefficient: string;
|
|
6811
|
+
readonly merchant_subsidy_amount: string;
|
|
6812
|
+
readonly merchant_subsidy_currency: string;
|
|
6813
|
+
readonly adaptive_pricing_enabled: boolean;
|
|
6814
|
+
readonly adaptive_shipping_enabled: boolean;
|
|
6815
|
+
}
|
|
6792
6816
|
interface ShopifyAppliedDiscount {
|
|
6793
6817
|
readonly title?: string;
|
|
6794
6818
|
readonly description?: string;
|
|
@@ -7448,7 +7472,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
7448
7472
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
7449
7473
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
7450
7474
|
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';
|
|
7475
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing' | 'order_cancelled' | 'organization_deactivated';
|
|
7452
7476
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
7453
7477
|
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
|
|
7454
7478
|
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
@@ -8115,6 +8139,20 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
8115
8139
|
readonly timestamp: string;
|
|
8116
8140
|
readonly order_tax_and_duty_inclusivity_setting: io.flow.shopify.markets.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
8117
8141
|
}
|
|
8142
|
+
interface ShopifyAdaptivePricingCoefficientsDeleted {
|
|
8143
|
+
readonly discriminator: 'shopify_adaptive_pricing_coefficients_deleted';
|
|
8144
|
+
readonly event_id: string;
|
|
8145
|
+
readonly timestamp: string;
|
|
8146
|
+
readonly organization: string;
|
|
8147
|
+
readonly id: string;
|
|
8148
|
+
}
|
|
8149
|
+
interface ShopifyAdaptivePricingCoefficientsUpserted {
|
|
8150
|
+
readonly discriminator: 'shopify_adaptive_pricing_coefficients_upserted';
|
|
8151
|
+
readonly event_id: string;
|
|
8152
|
+
readonly timestamp: string;
|
|
8153
|
+
readonly organization: string;
|
|
8154
|
+
readonly shopify_adaptive_pricing_coefficients: io.flow.shopify.markets.internal.v0.models.ShopifyAdaptivePricingCoefficients;
|
|
8155
|
+
}
|
|
8118
8156
|
interface ShopifyIncotermIncludes {
|
|
8119
8157
|
readonly duties: boolean;
|
|
8120
8158
|
readonly taxes: boolean;
|
|
@@ -8221,6 +8259,20 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
8221
8259
|
readonly organization: string;
|
|
8222
8260
|
readonly registration: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
8223
8261
|
}
|
|
8262
|
+
interface ShopifyMerchantMarketsDeleted {
|
|
8263
|
+
readonly discriminator: 'shopify_merchant_markets_deleted';
|
|
8264
|
+
readonly event_id: string;
|
|
8265
|
+
readonly timestamp: string;
|
|
8266
|
+
readonly organization: string;
|
|
8267
|
+
readonly id: string;
|
|
8268
|
+
}
|
|
8269
|
+
interface ShopifyMerchantMarketsUpserted {
|
|
8270
|
+
readonly discriminator: 'shopify_merchant_markets_upserted';
|
|
8271
|
+
readonly event_id: string;
|
|
8272
|
+
readonly timestamp: string;
|
|
8273
|
+
readonly organization: string;
|
|
8274
|
+
readonly shopify_merchant_markets: io.flow.shopify.markets.internal.v0.models.ShopifyMerchantMarkets;
|
|
8275
|
+
}
|
|
8224
8276
|
interface ShopifyOrderRiskAssessmentDeleted {
|
|
8225
8277
|
readonly discriminator: 'shopify_order_risk_assessment_deleted';
|
|
8226
8278
|
readonly event_id: string;
|
|
@@ -8307,7 +8359,7 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
8307
8359
|
}
|
|
8308
8360
|
}
|
|
8309
8361
|
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;
|
|
8362
|
+
type ShopifyMarketsInternalEvent = io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyAdaptivePricingCoefficientsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyAdaptivePricingCoefficientsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMerchantMarketsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMerchantMarketsDeleted;
|
|
8311
8363
|
}
|
|
8312
8364
|
declare namespace io.flow.experience.v0.enums {
|
|
8313
8365
|
type AddressFieldName = 'first_name' | 'last_name' | 'street_1' | 'street_2' | 'city' | 'province' | 'postal' | 'country' | 'phone' | 'company' | 'vat_registration_number';
|
|
@@ -12362,7 +12414,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12362
12414
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
12363
12415
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
12364
12416
|
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';
|
|
12417
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing' | 'order_cancelled' | 'organization_deactivated';
|
|
12366
12418
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
12367
12419
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
12368
12420
|
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
|
|
@@ -12419,7 +12471,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12419
12471
|
type EmptyAttribute = 'irrelevant';
|
|
12420
12472
|
type ErpFileType = 'vendor';
|
|
12421
12473
|
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';
|
|
12474
|
+
type EventType = 'adaptive_shipping_rate_upserted' | 'adaptive_shipping_rate_deleted' | 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'fulfillment_status_upserted' | 'fulfillment_status_deleted' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'channel_shop_statistics_upserted' | 'channel_shop_statistics_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'shipping_cost_upserted' | 'shipping_cost_deleted' | 'mor_cost_upserted' | 'mor_cost_deleted' | 'flat_rate_label_reversal_upserted' | 'flat_rate_label_reversal_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'merchant_override_upserted' | 'merchant_override_deleted' | 'harmonization_classification_statistics_published' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_creation_job_upserted' | 'label_creation_job_deleted' | 'adaptive_shipping_order_guarantee_upserted' | 'adaptive_shipping_order_guarantee_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'partner_request_upserted' | 'partner_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'order_refund_transaction_upserted' | 'order_refund_transaction_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'preonboarding_sellability_result_inserted' | 'preonboarding_sellability_result_updated' | 'preonboarding_sellability_result_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'product_restriction_state_inserted' | 'product_restriction_state_updated' | 'product_restriction_state_deleted' | 'product_sellability_result_inserted' | 'product_sellability_result_updated' | 'product_sellability_result_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restrictions_athena_dailyops_pc_pv_upserted' | 'restrictions_athena_dailyops_pc_pv_deleted' | 'restrictions_athena_dailyops_fs_upserted' | 'restrictions_athena_dailyops_fs_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'taxonomy_category_hs6_ref_upserted' | 'taxonomy_category_hs6_ref_deleted' | 'preonboarding_merchant_upserted' | 'preonboarding_merchant_deleted' | 'shopify_hs10_codes_upserted' | 'shopify_hs10_codes_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_product_taxonomy_attribute_upserted' | 'shopify_product_taxonomy_attribute_deleted' | 'shopify_product_taxonomy_attribute_value_upserted' | 'shopify_product_taxonomy_attribute_value_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_order_risk_assessment_upserted' | 'shopify_order_risk_assessment_deleted' | 'shopify_order_transaction_upserted' | 'shopify_order_transaction_deleted' | 'shopify_test_order_upserted' | 'shopify_test_order_deleted' | 'shopify_adaptive_pricing_coefficients_upserted' | 'shopify_adaptive_pricing_coefficients_deleted' | 'shopify_merchant_markets_upserted' | 'shopify_merchant_markets_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'shopify_merchant_plan_upserted' | 'shopify_merchant_plan_deleted' | 'shopify_dispute_upserted' | 'shopify_dispute_deleted' | 'shopify_report_file_upserted' | 'shopify_report_file_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'b2b_tax_transaction_upserted' | 'b2b_tax_transaction_deleted' | 'gabriel_item_upserted' | 'gabriel_item_deleted' | 'chenglin_item_upserted' | 'chenglin_item_deleted' | 'bojana_item_upserted' | 'bojana_item_deleted' | 'raveena_item_upserted' | 'raveena_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
12423
12475
|
type ExperienceImportType = 'experience_with_settings';
|
|
12424
12476
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
12425
12477
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -12818,6 +12870,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12818
12870
|
readonly action: io.flow.internal.v0.enums.ItemQuantityAction;
|
|
12819
12871
|
readonly quantity: number;
|
|
12820
12872
|
}
|
|
12873
|
+
interface AdaptivePricingDestinationUpdate {
|
|
12874
|
+
readonly country_code: string;
|
|
12875
|
+
readonly updated_at: string;
|
|
12876
|
+
readonly tax_and_duty_coefficient: number;
|
|
12877
|
+
readonly fees_coefficient: number;
|
|
12878
|
+
readonly merchant_subsidy_amount: number;
|
|
12879
|
+
readonly merchant_subsidy_currency: string;
|
|
12880
|
+
}
|
|
12881
|
+
interface AdaptivePricingUpdate {
|
|
12882
|
+
readonly channel_id: string;
|
|
12883
|
+
readonly organization_id: string;
|
|
12884
|
+
readonly destination_updates: io.flow.internal.v0.models.AdaptivePricingDestinationUpdate[];
|
|
12885
|
+
}
|
|
12821
12886
|
interface AdaptiveShippingOrderGuarantee {
|
|
12822
12887
|
readonly id: string;
|
|
12823
12888
|
readonly organization_id: string;
|
|
@@ -12843,6 +12908,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12843
12908
|
interface AdaptiveShippingRate {
|
|
12844
12909
|
readonly id: string;
|
|
12845
12910
|
readonly organization_id: string;
|
|
12911
|
+
readonly channel_id: string;
|
|
12846
12912
|
readonly destination_country: string;
|
|
12847
12913
|
readonly coefficient: number;
|
|
12848
12914
|
readonly flat_rates: io.flow.internal.v0.models.FlatRate[];
|
|
@@ -19722,6 +19788,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19722
19788
|
readonly matching_sellability_positive_keywords?: string[];
|
|
19723
19789
|
readonly classification_failure_reason?: io.flow.internal.v0.enums.ClassificationFailureReason;
|
|
19724
19790
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
19791
|
+
readonly inferred_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
19792
|
+
readonly effective_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
19725
19793
|
readonly fingerprint: string;
|
|
19726
19794
|
readonly screening_mode?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
19727
19795
|
}
|
|
@@ -20599,6 +20667,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20599
20667
|
readonly estimated_duties_and_taxes?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20600
20668
|
readonly td_fx_diff?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20601
20669
|
}
|
|
20670
|
+
interface ReportingFreight {
|
|
20671
|
+
readonly guaranteed?: io.flow.internal.v0.models.ReportingFreightGuaranteed;
|
|
20672
|
+
}
|
|
20673
|
+
interface ReportingFreightGuaranteed {
|
|
20674
|
+
readonly amount: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20675
|
+
readonly coefficient: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20676
|
+
}
|
|
20602
20677
|
interface ReportingFulfillment {
|
|
20603
20678
|
readonly id: string;
|
|
20604
20679
|
readonly sequence_number: number;
|
|
@@ -20848,6 +20923,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20848
20923
|
readonly created_at: string;
|
|
20849
20924
|
readonly updated_at: string;
|
|
20850
20925
|
readonly channel?: string;
|
|
20926
|
+
readonly is_deleted?: boolean;
|
|
20851
20927
|
}
|
|
20852
20928
|
interface RestrictionItemRequestForm {
|
|
20853
20929
|
readonly status?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
@@ -20961,6 +21037,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20961
21037
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
20962
21038
|
readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
20963
21039
|
readonly channel?: string;
|
|
21040
|
+
readonly is_deleted?: boolean;
|
|
20964
21041
|
}
|
|
20965
21042
|
interface RestrictionProductDecisionForm {
|
|
20966
21043
|
readonly rule_decisions: io.flow.internal.v0.models.RestrictionRuleDecisionForm[];
|
|
@@ -21345,6 +21422,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21345
21422
|
readonly tax?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21346
21423
|
readonly duty?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21347
21424
|
readonly fees: io.flow.internal.v0.models.ReportingFees;
|
|
21425
|
+
readonly freight?: io.flow.internal.v0.models.ReportingFreight;
|
|
21348
21426
|
readonly conversion_rate: io.flow.internal.v0.models.ReportingConversionRates;
|
|
21349
21427
|
readonly payment_is: io.flow.internal.v0.models.PaymentIs;
|
|
21350
21428
|
readonly price_inclusivity?: io.flow.internal.v0.models.PriceInclusivity;
|
|
@@ -21559,6 +21637,25 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21559
21637
|
readonly line_items?: io.flow.common.v0.models.LineItemForm[];
|
|
21560
21638
|
readonly include_unpublished?: boolean;
|
|
21561
21639
|
}
|
|
21640
|
+
interface ShopifyAdaptivePricingCoefficients {
|
|
21641
|
+
readonly id: string;
|
|
21642
|
+
readonly organization_id: string;
|
|
21643
|
+
readonly destination_coefficients: io.flow.shopify.markets.v0.models.ShopifyAdaptivePricingDestinationCoefficients[];
|
|
21644
|
+
}
|
|
21645
|
+
interface ShopifyAdaptivePricingCoefficientsDeleted {
|
|
21646
|
+
readonly discriminator: 'shopify_adaptive_pricing_coefficients_deleted';
|
|
21647
|
+
readonly event_id: string;
|
|
21648
|
+
readonly timestamp: string;
|
|
21649
|
+
readonly organization: string;
|
|
21650
|
+
readonly id: string;
|
|
21651
|
+
}
|
|
21652
|
+
interface ShopifyAdaptivePricingCoefficientsUpserted {
|
|
21653
|
+
readonly discriminator: 'shopify_adaptive_pricing_coefficients_upserted';
|
|
21654
|
+
readonly event_id: string;
|
|
21655
|
+
readonly timestamp: string;
|
|
21656
|
+
readonly organization: string;
|
|
21657
|
+
readonly shopify_adaptive_pricing_coefficients: io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficients;
|
|
21658
|
+
}
|
|
21562
21659
|
interface ShopifyAddress {
|
|
21563
21660
|
readonly address1: string;
|
|
21564
21661
|
readonly city: string;
|
|
@@ -21907,6 +22004,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21907
22004
|
readonly weight: number;
|
|
21908
22005
|
readonly weight_unit: io.flow.internal.v0.enums.ShopifyWeightUnit;
|
|
21909
22006
|
}
|
|
22007
|
+
interface ShopifyMerchantMarketCountry {
|
|
22008
|
+
readonly code: string;
|
|
22009
|
+
readonly actively_managing: boolean;
|
|
22010
|
+
}
|
|
22011
|
+
interface ShopifyMerchantMarkets {
|
|
22012
|
+
readonly id: string;
|
|
22013
|
+
readonly organization_id: string;
|
|
22014
|
+
readonly countries: io.flow.internal.v0.models.ShopifyMerchantMarketCountry[];
|
|
22015
|
+
}
|
|
22016
|
+
interface ShopifyMerchantMarketsDeleted {
|
|
22017
|
+
readonly discriminator: 'shopify_merchant_markets_deleted';
|
|
22018
|
+
readonly event_id: string;
|
|
22019
|
+
readonly timestamp: string;
|
|
22020
|
+
readonly organization: string;
|
|
22021
|
+
readonly id: string;
|
|
22022
|
+
}
|
|
22023
|
+
interface ShopifyMerchantMarketsUpserted {
|
|
22024
|
+
readonly discriminator: 'shopify_merchant_markets_upserted';
|
|
22025
|
+
readonly event_id: string;
|
|
22026
|
+
readonly timestamp: string;
|
|
22027
|
+
readonly organization: string;
|
|
22028
|
+
readonly shopify_merchant_markets: io.flow.internal.v0.models.ShopifyMerchantMarkets;
|
|
22029
|
+
}
|
|
21910
22030
|
interface ShopifyMerchantPlan {
|
|
21911
22031
|
readonly id: string;
|
|
21912
22032
|
readonly authorization: io.flow.payment.v0.models.AuthorizationReference;
|
|
@@ -23614,7 +23734,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23614
23734
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
23615
23735
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
|
|
23616
23736
|
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;
|
|
23737
|
+
type Event = io.flow.internal.v0.models.AdaptiveShippingRateUpserted | io.flow.internal.v0.models.AdaptiveShippingRateDeleted | io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.FulfillmentStatusUpserted | io.flow.internal.v0.models.FulfillmentStatusDeleted | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.ChannelShopStatisticsUpserted | io.flow.internal.v0.models.ChannelShopStatisticsDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.ShippingCostUpserted | io.flow.internal.v0.models.ShippingCostDeleted | io.flow.internal.v0.models.MorCostUpserted | io.flow.internal.v0.models.MorCostDeleted | io.flow.internal.v0.models.FlatRateLabelReversalUpserted | io.flow.internal.v0.models.FlatRateLabelReversalDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.MerchantOverrideUpserted | io.flow.internal.v0.models.MerchantOverrideDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelCreationJobUpserted | io.flow.internal.v0.models.LabelCreationJobDeleted | io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted | io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.PartnerRequestUpserted | io.flow.internal.v0.models.PartnerRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.OrderRefundTransactionUpserted | io.flow.internal.v0.models.OrderRefundTransactionDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.PreonboardingSellabilityResultInserted | io.flow.internal.v0.models.PreonboardingSellabilityResultUpdated | io.flow.internal.v0.models.PreonboardingSellabilityResultDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.ProductRestrictionStateInserted | io.flow.internal.v0.models.ProductRestrictionStateUpdated | io.flow.internal.v0.models.ProductRestrictionStateDeleted | io.flow.internal.v0.models.ProductSellabilityResultInserted | io.flow.internal.v0.models.ProductSellabilityResultUpdated | io.flow.internal.v0.models.ProductSellabilityResultDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvUpserted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvDeleted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsUpserted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted | io.flow.internal.v0.models.PreonboardingMerchantUpserted | io.flow.internal.v0.models.PreonboardingMerchantDeleted | io.flow.internal.v0.models.ShopifyHs10CodesUpserted | io.flow.internal.v0.models.ShopifyHs10CodesDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.internal.v0.models.ShopifyOrderTransactionUpserted | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted | io.flow.internal.v0.models.ShopifyTestOrderUpserted | io.flow.internal.v0.models.ShopifyTestOrderDeleted | io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsUpserted | io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsDeleted | io.flow.internal.v0.models.ShopifyMerchantMarketsUpserted | io.flow.internal.v0.models.ShopifyMerchantMarketsDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.ShopifyMerchantPlanUpserted | io.flow.internal.v0.models.ShopifyMerchantPlanDeleted | io.flow.internal.v0.models.ShopifyDisputeUpserted | io.flow.internal.v0.models.ShopifyDisputeDeleted | io.flow.internal.v0.models.ShopifyReportFileUpserted | io.flow.internal.v0.models.ShopifyReportFileDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.B2BTaxTransactionUpserted | io.flow.internal.v0.models.B2BTaxTransactionDeleted | io.flow.internal.v0.models.GabrielItemUpserted | io.flow.internal.v0.models.GabrielItemDeleted | io.flow.internal.v0.models.ChenglinItemUpserted | io.flow.internal.v0.models.ChenglinItemDeleted | io.flow.internal.v0.models.BojanaItemUpserted | io.flow.internal.v0.models.BojanaItemDeleted | io.flow.internal.v0.models.RaveenaItemUpserted | io.flow.internal.v0.models.RaveenaItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
23618
23738
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
23619
23739
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
23620
23740
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -23699,6 +23819,8 @@ export declare type AccountUpsertedV2 = io.flow.internal.v0.models.AccountUpsert
|
|
|
23699
23819
|
export declare type AccountingPendingOrderMetadata = io.flow.internal.v0.models.AccountingPendingOrderMetadata;
|
|
23700
23820
|
export declare type AccountingReturnMetadata = io.flow.internal.v0.models.AccountingReturnMetadata;
|
|
23701
23821
|
export declare type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
|
|
23822
|
+
export declare type AdaptivePricingDestinationUpdate = io.flow.internal.v0.models.AdaptivePricingDestinationUpdate;
|
|
23823
|
+
export declare type AdaptivePricingUpdate = io.flow.internal.v0.models.AdaptivePricingUpdate;
|
|
23702
23824
|
export declare type AdaptiveShippingOrderGuarantee = io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
23703
23825
|
export declare type AdaptiveShippingOrderGuaranteeDeleted = io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted;
|
|
23704
23826
|
export declare type AdaptiveShippingOrderGuaranteeState = io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState;
|
|
@@ -25085,6 +25207,8 @@ export declare type ReportingDebugMissingSubsidies = io.flow.internal.v0.models.
|
|
|
25085
25207
|
export declare type ReportingDestination = io.flow.internal.v0.models.ReportingDestination;
|
|
25086
25208
|
export declare type ReportingDetails = io.flow.internal.v0.models.ReportingDetails;
|
|
25087
25209
|
export declare type ReportingFees = io.flow.internal.v0.models.ReportingFees;
|
|
25210
|
+
export declare type ReportingFreight = io.flow.internal.v0.models.ReportingFreight;
|
|
25211
|
+
export declare type ReportingFreightGuaranteed = io.flow.internal.v0.models.ReportingFreightGuaranteed;
|
|
25088
25212
|
export declare type ReportingFulfillment = io.flow.internal.v0.models.ReportingFulfillment;
|
|
25089
25213
|
export declare type ReportingFulfillmentHas = io.flow.internal.v0.models.ReportingFulfillmentHas;
|
|
25090
25214
|
export declare type ReportingFulfillmentIs = io.flow.internal.v0.models.ReportingFulfillmentIs;
|
|
@@ -25232,6 +25356,9 @@ export declare type ShippingPricing = io.flow.internal.v0.models.ShippingPricing
|
|
|
25232
25356
|
export declare type ShippingRateEstimateAvailableInternal = io.flow.internal.v0.models.ShippingRateEstimateAvailableInternal;
|
|
25233
25357
|
export declare type ShippingRateEstimateInternal = io.flow.internal.v0.models.ShippingRateEstimateInternal;
|
|
25234
25358
|
export declare type ShippingRateEstimateRequestInternal = io.flow.internal.v0.models.ShippingRateEstimateRequestInternal;
|
|
25359
|
+
export declare type ShopifyAdaptivePricingCoefficients = io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficients;
|
|
25360
|
+
export declare type ShopifyAdaptivePricingCoefficientsDeleted = io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsDeleted;
|
|
25361
|
+
export declare type ShopifyAdaptivePricingCoefficientsUpserted = io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsUpserted;
|
|
25235
25362
|
export declare type ShopifyAddress = io.flow.internal.v0.models.ShopifyAddress;
|
|
25236
25363
|
export declare type ShopifyCallbackError = io.flow.internal.v0.models.ShopifyCallbackError;
|
|
25237
25364
|
export declare type ShopifyCallbackErrorCode = io.flow.internal.v0.enums.ShopifyCallbackErrorCode;
|
|
@@ -25298,6 +25425,10 @@ export declare type ShopifyMarketsWebhookRegistration = io.flow.internal.v0.mode
|
|
|
25298
25425
|
export declare type ShopifyMarketsWebhookRegistrationDeleted = io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted;
|
|
25299
25426
|
export declare type ShopifyMarketsWebhookRegistrationUpserted = io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted;
|
|
25300
25427
|
export declare type ShopifyMeasurements = io.flow.internal.v0.models.ShopifyMeasurements;
|
|
25428
|
+
export declare type ShopifyMerchantMarketCountry = io.flow.internal.v0.models.ShopifyMerchantMarketCountry;
|
|
25429
|
+
export declare type ShopifyMerchantMarkets = io.flow.internal.v0.models.ShopifyMerchantMarkets;
|
|
25430
|
+
export declare type ShopifyMerchantMarketsDeleted = io.flow.internal.v0.models.ShopifyMerchantMarketsDeleted;
|
|
25431
|
+
export declare type ShopifyMerchantMarketsUpserted = io.flow.internal.v0.models.ShopifyMerchantMarketsUpserted;
|
|
25301
25432
|
export declare type ShopifyMerchantPlan = io.flow.internal.v0.models.ShopifyMerchantPlan;
|
|
25302
25433
|
export declare type ShopifyMerchantPlanDeleted = io.flow.internal.v0.models.ShopifyMerchantPlanDeleted;
|
|
25303
25434
|
export declare type ShopifyMerchantPlanUpserted = io.flow.internal.v0.models.ShopifyMerchantPlanUpserted;
|
package/dist/api.d.ts
CHANGED
|
@@ -2214,7 +2214,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
2214
2214
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
2215
2215
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
2216
2216
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
2217
|
-
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';
|
|
2217
|
+
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';
|
|
2218
2218
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
2219
2219
|
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
|
|
2220
2220
|
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
@@ -2858,6 +2858,7 @@ declare namespace io.flow.tech.onboarding.playground.v0.enums {
|
|
|
2858
2858
|
type BojanaItemType = 'physical' | 'digital';
|
|
2859
2859
|
type ChenglinItemType = 'physical' | 'digital';
|
|
2860
2860
|
type GabrielItemType = 'physical' | 'digital';
|
|
2861
|
+
type MaheshItemType = 'physical' | 'digital';
|
|
2861
2862
|
type RaveenaItemType = 'physical' | 'digital';
|
|
2862
2863
|
}
|
|
2863
2864
|
declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
@@ -2921,6 +2922,21 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
|
2921
2922
|
readonly type: io.flow.tech.onboarding.playground.v0.enums.GabrielItemType;
|
|
2922
2923
|
readonly added_on: string;
|
|
2923
2924
|
}
|
|
2925
|
+
interface MaheshItem {
|
|
2926
|
+
readonly id: string;
|
|
2927
|
+
readonly number: string;
|
|
2928
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
2929
|
+
readonly description?: string;
|
|
2930
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.MaheshItemType;
|
|
2931
|
+
readonly added_on: string;
|
|
2932
|
+
}
|
|
2933
|
+
interface MaheshItemForm {
|
|
2934
|
+
readonly number: string;
|
|
2935
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
2936
|
+
readonly description?: string;
|
|
2937
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.MaheshItemType;
|
|
2938
|
+
readonly added_on: string;
|
|
2939
|
+
}
|
|
2924
2940
|
interface RaveenaItem {
|
|
2925
2941
|
readonly id: string;
|
|
2926
2942
|
readonly number: string;
|
package/package.json
CHANGED
package/src/api-internal.ts
CHANGED
|
@@ -7041,6 +7041,12 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
7041
7041
|
readonly destination: string;
|
|
7042
7042
|
}
|
|
7043
7043
|
|
|
7044
|
+
interface ShopifyAdaptivePricingCoefficients {
|
|
7045
|
+
readonly id: string;
|
|
7046
|
+
readonly organization_id: string;
|
|
7047
|
+
readonly destination_coefficients: io.flow.shopify.markets.v0.models.ShopifyAdaptivePricingDestinationCoefficients[];
|
|
7048
|
+
}
|
|
7049
|
+
|
|
7044
7050
|
interface ShopifyHs10Code {
|
|
7045
7051
|
readonly country_code?: string;
|
|
7046
7052
|
readonly code: string;
|
|
@@ -7158,6 +7164,17 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
7158
7164
|
readonly response: io.flow.shopify.markets.v0.models.ShopifyWebhookResponse;
|
|
7159
7165
|
}
|
|
7160
7166
|
|
|
7167
|
+
interface ShopifyMerchantMarketCountry {
|
|
7168
|
+
readonly code: string;
|
|
7169
|
+
readonly actively_managing: boolean;
|
|
7170
|
+
}
|
|
7171
|
+
|
|
7172
|
+
interface ShopifyMerchantMarkets {
|
|
7173
|
+
readonly id: string;
|
|
7174
|
+
readonly organization_id: string;
|
|
7175
|
+
readonly countries: io.flow.shopify.markets.internal.v0.models.ShopifyMerchantMarketCountry[];
|
|
7176
|
+
}
|
|
7177
|
+
|
|
7161
7178
|
interface ShopifyOrderCancelForm {
|
|
7162
7179
|
readonly note?: string;
|
|
7163
7180
|
}
|
|
@@ -9492,7 +9509,8 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
9492
9509
|
| 'themes/publish'
|
|
9493
9510
|
| 'themes/update'
|
|
9494
9511
|
| 'bulk_operations/finish'
|
|
9495
|
-
| 'shop/update'
|
|
9512
|
+
| 'shop/update'
|
|
9513
|
+
| 'managed_markets_adaptive_pricing/updated';
|
|
9496
9514
|
}
|
|
9497
9515
|
|
|
9498
9516
|
declare namespace io.flow.shopify.markets.v0.models {
|
|
@@ -9558,6 +9576,17 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
9558
9576
|
readonly shop: io.flow.shopify.markets.v0.models.Shop;
|
|
9559
9577
|
}
|
|
9560
9578
|
|
|
9579
|
+
interface ShopifyAdaptivePricingDestinationCoefficients {
|
|
9580
|
+
readonly country: string;
|
|
9581
|
+
readonly updated_at: string;
|
|
9582
|
+
readonly tax_and_duty_coefficient: string;
|
|
9583
|
+
readonly fees_coefficient: string;
|
|
9584
|
+
readonly merchant_subsidy_amount: string;
|
|
9585
|
+
readonly merchant_subsidy_currency: string;
|
|
9586
|
+
readonly adaptive_pricing_enabled: boolean;
|
|
9587
|
+
readonly adaptive_shipping_enabled: boolean;
|
|
9588
|
+
}
|
|
9589
|
+
|
|
9561
9590
|
interface ShopifyAppliedDiscount {
|
|
9562
9591
|
readonly title?: string;
|
|
9563
9592
|
readonly description?: string;
|
|
@@ -10377,6 +10406,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
10377
10406
|
| 'unsupported_order_edit'
|
|
10378
10407
|
| 'order_allocation_duties_mismatch'
|
|
10379
10408
|
| 'order_missing'
|
|
10409
|
+
| 'order_cancelled'
|
|
10380
10410
|
| 'organization_deactivated';
|
|
10381
10411
|
type ChannelOrderAcceptanceStatus =
|
|
10382
10412
|
| 'accepted'
|
|
@@ -11236,6 +11266,22 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
11236
11266
|
readonly order_tax_and_duty_inclusivity_setting: io.flow.shopify.markets.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
11237
11267
|
}
|
|
11238
11268
|
|
|
11269
|
+
interface ShopifyAdaptivePricingCoefficientsDeleted {
|
|
11270
|
+
readonly discriminator: 'shopify_adaptive_pricing_coefficients_deleted';
|
|
11271
|
+
readonly event_id: string;
|
|
11272
|
+
readonly timestamp: string;
|
|
11273
|
+
readonly organization: string;
|
|
11274
|
+
readonly id: string;
|
|
11275
|
+
}
|
|
11276
|
+
|
|
11277
|
+
interface ShopifyAdaptivePricingCoefficientsUpserted {
|
|
11278
|
+
readonly discriminator: 'shopify_adaptive_pricing_coefficients_upserted';
|
|
11279
|
+
readonly event_id: string;
|
|
11280
|
+
readonly timestamp: string;
|
|
11281
|
+
readonly organization: string;
|
|
11282
|
+
readonly shopify_adaptive_pricing_coefficients: io.flow.shopify.markets.internal.v0.models.ShopifyAdaptivePricingCoefficients;
|
|
11283
|
+
}
|
|
11284
|
+
|
|
11239
11285
|
interface ShopifyIncotermIncludes {
|
|
11240
11286
|
readonly duties: boolean;
|
|
11241
11287
|
readonly taxes: boolean;
|
|
@@ -11358,6 +11404,22 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
11358
11404
|
readonly registration: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
11359
11405
|
}
|
|
11360
11406
|
|
|
11407
|
+
interface ShopifyMerchantMarketsDeleted {
|
|
11408
|
+
readonly discriminator: 'shopify_merchant_markets_deleted';
|
|
11409
|
+
readonly event_id: string;
|
|
11410
|
+
readonly timestamp: string;
|
|
11411
|
+
readonly organization: string;
|
|
11412
|
+
readonly id: string;
|
|
11413
|
+
}
|
|
11414
|
+
|
|
11415
|
+
interface ShopifyMerchantMarketsUpserted {
|
|
11416
|
+
readonly discriminator: 'shopify_merchant_markets_upserted';
|
|
11417
|
+
readonly event_id: string;
|
|
11418
|
+
readonly timestamp: string;
|
|
11419
|
+
readonly organization: string;
|
|
11420
|
+
readonly shopify_merchant_markets: io.flow.shopify.markets.internal.v0.models.ShopifyMerchantMarkets;
|
|
11421
|
+
}
|
|
11422
|
+
|
|
11361
11423
|
interface ShopifyOrderRiskAssessmentDeleted {
|
|
11362
11424
|
readonly discriminator: 'shopify_order_risk_assessment_deleted';
|
|
11363
11425
|
readonly event_id: string;
|
|
@@ -11488,7 +11550,11 @@ declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
|
11488
11550
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionUpserted
|
|
11489
11551
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted
|
|
11490
11552
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderUpserted
|
|
11491
|
-
| io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderDeleted
|
|
11553
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderDeleted
|
|
11554
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyAdaptivePricingCoefficientsUpserted
|
|
11555
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyAdaptivePricingCoefficientsDeleted
|
|
11556
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMerchantMarketsUpserted
|
|
11557
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMerchantMarketsDeleted;
|
|
11492
11558
|
}
|
|
11493
11559
|
|
|
11494
11560
|
declare namespace io.flow.experience.v0.enums {
|
|
@@ -17076,6 +17142,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17076
17142
|
| 'unsupported_order_edit'
|
|
17077
17143
|
| 'order_allocation_duties_mismatch'
|
|
17078
17144
|
| 'order_missing'
|
|
17145
|
+
| 'order_cancelled'
|
|
17079
17146
|
| 'organization_deactivated';
|
|
17080
17147
|
type ChannelOrderAcceptanceStatus =
|
|
17081
17148
|
| 'accepted'
|
|
@@ -17553,6 +17620,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17553
17620
|
| 'shopify_order_transaction_deleted'
|
|
17554
17621
|
| 'shopify_test_order_upserted'
|
|
17555
17622
|
| 'shopify_test_order_deleted'
|
|
17623
|
+
| 'shopify_adaptive_pricing_coefficients_upserted'
|
|
17624
|
+
| 'shopify_adaptive_pricing_coefficients_deleted'
|
|
17625
|
+
| 'shopify_merchant_markets_upserted'
|
|
17626
|
+
| 'shopify_merchant_markets_deleted'
|
|
17556
17627
|
| 'shopify_product_create_upserted'
|
|
17557
17628
|
| 'shopify_product_create_deleted'
|
|
17558
17629
|
| 'shopify_product_update_upserted'
|
|
@@ -18482,6 +18553,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18482
18553
|
readonly quantity: number;
|
|
18483
18554
|
}
|
|
18484
18555
|
|
|
18556
|
+
interface AdaptivePricingDestinationUpdate {
|
|
18557
|
+
readonly country_code: string;
|
|
18558
|
+
readonly updated_at: string;
|
|
18559
|
+
readonly tax_and_duty_coefficient: number;
|
|
18560
|
+
readonly fees_coefficient: number;
|
|
18561
|
+
readonly merchant_subsidy_amount: number;
|
|
18562
|
+
readonly merchant_subsidy_currency: string;
|
|
18563
|
+
}
|
|
18564
|
+
|
|
18565
|
+
interface AdaptivePricingUpdate {
|
|
18566
|
+
readonly channel_id: string;
|
|
18567
|
+
readonly organization_id: string;
|
|
18568
|
+
readonly destination_updates: io.flow.internal.v0.models.AdaptivePricingDestinationUpdate[];
|
|
18569
|
+
}
|
|
18570
|
+
|
|
18485
18571
|
interface AdaptiveShippingOrderGuarantee {
|
|
18486
18572
|
readonly id: string;
|
|
18487
18573
|
readonly organization_id: string;
|
|
@@ -18510,6 +18596,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18510
18596
|
interface AdaptiveShippingRate {
|
|
18511
18597
|
readonly id: string;
|
|
18512
18598
|
readonly organization_id: string;
|
|
18599
|
+
readonly channel_id: string;
|
|
18513
18600
|
readonly destination_country: string;
|
|
18514
18601
|
readonly coefficient: number;
|
|
18515
18602
|
readonly flat_rates: io.flow.internal.v0.models.FlatRate[];
|
|
@@ -26386,6 +26473,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26386
26473
|
readonly matching_sellability_positive_keywords?: string[];
|
|
26387
26474
|
readonly classification_failure_reason?: io.flow.internal.v0.enums.ClassificationFailureReason;
|
|
26388
26475
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
26476
|
+
readonly inferred_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
26477
|
+
readonly effective_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
26389
26478
|
readonly fingerprint: string;
|
|
26390
26479
|
readonly screening_mode?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
26391
26480
|
}
|
|
@@ -27402,6 +27491,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27402
27491
|
readonly td_fx_diff?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27403
27492
|
}
|
|
27404
27493
|
|
|
27494
|
+
interface ReportingFreight {
|
|
27495
|
+
readonly guaranteed?: io.flow.internal.v0.models.ReportingFreightGuaranteed;
|
|
27496
|
+
}
|
|
27497
|
+
|
|
27498
|
+
interface ReportingFreightGuaranteed {
|
|
27499
|
+
readonly amount: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27500
|
+
readonly coefficient: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27501
|
+
}
|
|
27502
|
+
|
|
27405
27503
|
interface ReportingFulfillment {
|
|
27406
27504
|
readonly id: string;
|
|
27407
27505
|
readonly sequence_number: number;
|
|
@@ -27684,6 +27782,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27684
27782
|
readonly created_at: string;
|
|
27685
27783
|
readonly updated_at: string;
|
|
27686
27784
|
readonly channel?: string;
|
|
27785
|
+
readonly is_deleted?: boolean;
|
|
27687
27786
|
}
|
|
27688
27787
|
|
|
27689
27788
|
interface RestrictionItemRequestForm {
|
|
@@ -27809,6 +27908,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27809
27908
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
27810
27909
|
readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
27811
27910
|
readonly channel?: string;
|
|
27911
|
+
readonly is_deleted?: boolean;
|
|
27812
27912
|
}
|
|
27813
27913
|
|
|
27814
27914
|
interface RestrictionProductDecisionForm {
|
|
@@ -28240,6 +28340,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28240
28340
|
readonly tax?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28241
28341
|
readonly duty?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28242
28342
|
readonly fees: io.flow.internal.v0.models.ReportingFees;
|
|
28343
|
+
readonly freight?: io.flow.internal.v0.models.ReportingFreight;
|
|
28243
28344
|
readonly conversion_rate: io.flow.internal.v0.models.ReportingConversionRates;
|
|
28244
28345
|
readonly payment_is: io.flow.internal.v0.models.PaymentIs;
|
|
28245
28346
|
readonly price_inclusivity?: io.flow.internal.v0.models.PriceInclusivity;
|
|
@@ -28484,6 +28585,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28484
28585
|
readonly include_unpublished?: boolean;
|
|
28485
28586
|
}
|
|
28486
28587
|
|
|
28588
|
+
interface ShopifyAdaptivePricingCoefficients {
|
|
28589
|
+
readonly id: string;
|
|
28590
|
+
readonly organization_id: string;
|
|
28591
|
+
readonly destination_coefficients: io.flow.shopify.markets.v0.models.ShopifyAdaptivePricingDestinationCoefficients[];
|
|
28592
|
+
}
|
|
28593
|
+
|
|
28594
|
+
interface ShopifyAdaptivePricingCoefficientsDeleted {
|
|
28595
|
+
readonly discriminator: 'shopify_adaptive_pricing_coefficients_deleted';
|
|
28596
|
+
readonly event_id: string;
|
|
28597
|
+
readonly timestamp: string;
|
|
28598
|
+
readonly organization: string;
|
|
28599
|
+
readonly id: string;
|
|
28600
|
+
}
|
|
28601
|
+
|
|
28602
|
+
interface ShopifyAdaptivePricingCoefficientsUpserted {
|
|
28603
|
+
readonly discriminator: 'shopify_adaptive_pricing_coefficients_upserted';
|
|
28604
|
+
readonly event_id: string;
|
|
28605
|
+
readonly timestamp: string;
|
|
28606
|
+
readonly organization: string;
|
|
28607
|
+
readonly shopify_adaptive_pricing_coefficients: io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficients;
|
|
28608
|
+
}
|
|
28609
|
+
|
|
28487
28610
|
interface ShopifyAddress {
|
|
28488
28611
|
readonly address1: string;
|
|
28489
28612
|
readonly city: string;
|
|
@@ -28888,6 +29011,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28888
29011
|
readonly weight_unit: io.flow.internal.v0.enums.ShopifyWeightUnit;
|
|
28889
29012
|
}
|
|
28890
29013
|
|
|
29014
|
+
interface ShopifyMerchantMarketCountry {
|
|
29015
|
+
readonly code: string;
|
|
29016
|
+
readonly actively_managing: boolean;
|
|
29017
|
+
}
|
|
29018
|
+
|
|
29019
|
+
interface ShopifyMerchantMarkets {
|
|
29020
|
+
readonly id: string;
|
|
29021
|
+
readonly organization_id: string;
|
|
29022
|
+
readonly countries: io.flow.internal.v0.models.ShopifyMerchantMarketCountry[];
|
|
29023
|
+
}
|
|
29024
|
+
|
|
29025
|
+
interface ShopifyMerchantMarketsDeleted {
|
|
29026
|
+
readonly discriminator: 'shopify_merchant_markets_deleted';
|
|
29027
|
+
readonly event_id: string;
|
|
29028
|
+
readonly timestamp: string;
|
|
29029
|
+
readonly organization: string;
|
|
29030
|
+
readonly id: string;
|
|
29031
|
+
}
|
|
29032
|
+
|
|
29033
|
+
interface ShopifyMerchantMarketsUpserted {
|
|
29034
|
+
readonly discriminator: 'shopify_merchant_markets_upserted';
|
|
29035
|
+
readonly event_id: string;
|
|
29036
|
+
readonly timestamp: string;
|
|
29037
|
+
readonly organization: string;
|
|
29038
|
+
readonly shopify_merchant_markets: io.flow.internal.v0.models.ShopifyMerchantMarkets;
|
|
29039
|
+
}
|
|
29040
|
+
|
|
28891
29041
|
interface ShopifyMerchantPlan {
|
|
28892
29042
|
readonly id: string;
|
|
28893
29043
|
readonly authorization: io.flow.payment.v0.models.AuthorizationReference;
|
|
@@ -31236,6 +31386,10 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31236
31386
|
| io.flow.internal.v0.models.ShopifyOrderTransactionDeleted
|
|
31237
31387
|
| io.flow.internal.v0.models.ShopifyTestOrderUpserted
|
|
31238
31388
|
| io.flow.internal.v0.models.ShopifyTestOrderDeleted
|
|
31389
|
+
| io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsUpserted
|
|
31390
|
+
| io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsDeleted
|
|
31391
|
+
| io.flow.internal.v0.models.ShopifyMerchantMarketsUpserted
|
|
31392
|
+
| io.flow.internal.v0.models.ShopifyMerchantMarketsDeleted
|
|
31239
31393
|
| io.flow.internal.v0.models.ShopifyProductCreateUpserted
|
|
31240
31394
|
| io.flow.internal.v0.models.ShopifyProductCreateDeleted
|
|
31241
31395
|
| io.flow.internal.v0.models.ShopifyProductUpdateUpserted
|
|
@@ -31561,6 +31715,10 @@ export type AccountingPendingOrderMetadata =
|
|
|
31561
31715
|
export type AccountingReturnMetadata =
|
|
31562
31716
|
io.flow.internal.v0.models.AccountingReturnMetadata;
|
|
31563
31717
|
export type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
|
|
31718
|
+
export type AdaptivePricingDestinationUpdate =
|
|
31719
|
+
io.flow.internal.v0.models.AdaptivePricingDestinationUpdate;
|
|
31720
|
+
export type AdaptivePricingUpdate =
|
|
31721
|
+
io.flow.internal.v0.models.AdaptivePricingUpdate;
|
|
31564
31722
|
export type AdaptiveShippingOrderGuarantee =
|
|
31565
31723
|
io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
31566
31724
|
export type AdaptiveShippingOrderGuaranteeDeleted =
|
|
@@ -33862,6 +34020,9 @@ export type ReportingDestination =
|
|
|
33862
34020
|
io.flow.internal.v0.models.ReportingDestination;
|
|
33863
34021
|
export type ReportingDetails = io.flow.internal.v0.models.ReportingDetails;
|
|
33864
34022
|
export type ReportingFees = io.flow.internal.v0.models.ReportingFees;
|
|
34023
|
+
export type ReportingFreight = io.flow.internal.v0.models.ReportingFreight;
|
|
34024
|
+
export type ReportingFreightGuaranteed =
|
|
34025
|
+
io.flow.internal.v0.models.ReportingFreightGuaranteed;
|
|
33865
34026
|
export type ReportingFulfillment =
|
|
33866
34027
|
io.flow.internal.v0.models.ReportingFulfillment;
|
|
33867
34028
|
export type ReportingFulfillmentHas =
|
|
@@ -34114,6 +34275,12 @@ export type ShippingRateEstimateInternal =
|
|
|
34114
34275
|
io.flow.internal.v0.models.ShippingRateEstimateInternal;
|
|
34115
34276
|
export type ShippingRateEstimateRequestInternal =
|
|
34116
34277
|
io.flow.internal.v0.models.ShippingRateEstimateRequestInternal;
|
|
34278
|
+
export type ShopifyAdaptivePricingCoefficients =
|
|
34279
|
+
io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficients;
|
|
34280
|
+
export type ShopifyAdaptivePricingCoefficientsDeleted =
|
|
34281
|
+
io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsDeleted;
|
|
34282
|
+
export type ShopifyAdaptivePricingCoefficientsUpserted =
|
|
34283
|
+
io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsUpserted;
|
|
34117
34284
|
export type ShopifyAddress = io.flow.internal.v0.models.ShopifyAddress;
|
|
34118
34285
|
export type ShopifyCallbackError =
|
|
34119
34286
|
io.flow.internal.v0.models.ShopifyCallbackError;
|
|
@@ -34238,6 +34405,14 @@ export type ShopifyMarketsWebhookRegistrationUpserted =
|
|
|
34238
34405
|
io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted;
|
|
34239
34406
|
export type ShopifyMeasurements =
|
|
34240
34407
|
io.flow.internal.v0.models.ShopifyMeasurements;
|
|
34408
|
+
export type ShopifyMerchantMarketCountry =
|
|
34409
|
+
io.flow.internal.v0.models.ShopifyMerchantMarketCountry;
|
|
34410
|
+
export type ShopifyMerchantMarkets =
|
|
34411
|
+
io.flow.internal.v0.models.ShopifyMerchantMarkets;
|
|
34412
|
+
export type ShopifyMerchantMarketsDeleted =
|
|
34413
|
+
io.flow.internal.v0.models.ShopifyMerchantMarketsDeleted;
|
|
34414
|
+
export type ShopifyMerchantMarketsUpserted =
|
|
34415
|
+
io.flow.internal.v0.models.ShopifyMerchantMarketsUpserted;
|
|
34241
34416
|
export type ShopifyMerchantPlan =
|
|
34242
34417
|
io.flow.internal.v0.models.ShopifyMerchantPlan;
|
|
34243
34418
|
export type ShopifyMerchantPlanDeleted =
|
package/src/api.ts
CHANGED
|
@@ -3148,6 +3148,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
3148
3148
|
| 'unsupported_order_edit'
|
|
3149
3149
|
| 'order_allocation_duties_mismatch'
|
|
3150
3150
|
| 'order_missing'
|
|
3151
|
+
| 'order_cancelled'
|
|
3151
3152
|
| 'organization_deactivated';
|
|
3152
3153
|
type ChannelOrderAcceptanceStatus =
|
|
3153
3154
|
| 'accepted'
|
|
@@ -3998,6 +3999,7 @@ declare namespace io.flow.tech.onboarding.playground.v0.enums {
|
|
|
3998
3999
|
type BojanaItemType = 'physical' | 'digital';
|
|
3999
4000
|
type ChenglinItemType = 'physical' | 'digital';
|
|
4000
4001
|
type GabrielItemType = 'physical' | 'digital';
|
|
4002
|
+
type MaheshItemType = 'physical' | 'digital';
|
|
4001
4003
|
type RaveenaItemType = 'physical' | 'digital';
|
|
4002
4004
|
}
|
|
4003
4005
|
|
|
@@ -4070,6 +4072,23 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
|
4070
4072
|
readonly added_on: string;
|
|
4071
4073
|
}
|
|
4072
4074
|
|
|
4075
|
+
interface MaheshItem {
|
|
4076
|
+
readonly id: string;
|
|
4077
|
+
readonly number: string;
|
|
4078
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
4079
|
+
readonly description?: string;
|
|
4080
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.MaheshItemType;
|
|
4081
|
+
readonly added_on: string;
|
|
4082
|
+
}
|
|
4083
|
+
|
|
4084
|
+
interface MaheshItemForm {
|
|
4085
|
+
readonly number: string;
|
|
4086
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
4087
|
+
readonly description?: string;
|
|
4088
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.MaheshItemType;
|
|
4089
|
+
readonly added_on: string;
|
|
4090
|
+
}
|
|
4091
|
+
|
|
4073
4092
|
interface RaveenaItem {
|
|
4074
4093
|
readonly id: string;
|
|
4075
4094
|
readonly number: string;
|