@flowio/types 11.24.136 → 11.24.137
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 +242 -14
- package/dist/api.d.ts +41 -2
- package/package.json +1 -1
- package/src/api-internal.ts +316 -14
- package/src/api.ts +50 -2
package/dist/api-internal.d.ts
CHANGED
|
@@ -3857,6 +3857,7 @@ declare namespace io.flow.label.v0.enums {
|
|
|
3857
3857
|
type OriginLocationSource = 'public_hub_code' | 'merchant_hub_code_override' | 'shopify' | 'fallback_location';
|
|
3858
3858
|
type PackageDimensionsSource = 'provided' | 'item_dimensions_estimated' | 'dimensions_estimated' | 'default_item_dimensions_estimated';
|
|
3859
3859
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
3860
|
+
type ShippingCostGuarantee = 'guaranteed' | 'non_guaranteed';
|
|
3860
3861
|
type ShippingLabelErrorCode = 'generic_error' | 'cancelled_order' | 'carrier_outage' | 'catalog_issue' | 'invalid_destination' | 'invalid_origin' | 'invalid_shipping_parameters' | 'merchant_error' | 'order_not_found' | 'order_processing' | 'restricted_item' | 'unsupported_lane';
|
|
3861
3862
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
3862
3863
|
}
|
|
@@ -3977,6 +3978,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
3977
3978
|
readonly created_at?: string;
|
|
3978
3979
|
readonly updated_at?: string;
|
|
3979
3980
|
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
3981
|
+
readonly shipping_cost_guarantee?: io.flow.label.v0.enums.ShippingCostGuarantee;
|
|
3980
3982
|
}
|
|
3981
3983
|
interface ShippingLabelDocument {
|
|
3982
3984
|
readonly zpl?: string;
|
|
@@ -5828,6 +5830,9 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
5828
5830
|
interface Count {
|
|
5829
5831
|
readonly count: number;
|
|
5830
5832
|
}
|
|
5833
|
+
interface GraphqlInferredProductCategory {
|
|
5834
|
+
readonly category?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
|
|
5835
|
+
}
|
|
5831
5836
|
interface GraphqlInventoryItem {
|
|
5832
5837
|
readonly id: string;
|
|
5833
5838
|
readonly tracked: boolean;
|
|
@@ -5878,6 +5883,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
5878
5883
|
readonly updatedAt: string;
|
|
5879
5884
|
readonly hasVariantsThatRequiresComponents?: boolean;
|
|
5880
5885
|
readonly category?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
|
|
5886
|
+
readonly inferredProductCategory?: io.flow.shopify.external.v0.models.GraphqlInferredProductCategory;
|
|
5881
5887
|
readonly metafields?: io.flow.shopify.external.v0.models.GraphqlMetafield[];
|
|
5882
5888
|
}
|
|
5883
5889
|
interface GraphqlProductImage {
|
|
@@ -7532,6 +7538,13 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
7532
7538
|
interface ChannelOrganizationTokenBody {
|
|
7533
7539
|
readonly cleartext: string;
|
|
7534
7540
|
}
|
|
7541
|
+
interface ChannelShopStatistics {
|
|
7542
|
+
readonly id: string;
|
|
7543
|
+
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
7544
|
+
readonly initial_catalog_synced_at?: string;
|
|
7545
|
+
readonly catalog_sync_duration?: number;
|
|
7546
|
+
readonly catalog_products_count?: number;
|
|
7547
|
+
}
|
|
7535
7548
|
interface FlowChannelOrganization {
|
|
7536
7549
|
readonly placeholder?: string;
|
|
7537
7550
|
}
|
|
@@ -9484,6 +9497,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9484
9497
|
readonly rate_level_key?: string;
|
|
9485
9498
|
readonly direction: io.flow.label.v0.enums.Direction;
|
|
9486
9499
|
readonly effective_at: string;
|
|
9500
|
+
readonly effective_until?: string;
|
|
9487
9501
|
readonly origination_zones: io.flow.common.v0.models.Zone[];
|
|
9488
9502
|
readonly service: io.flow.ratecard.v0.models.RatecardServiceSummary;
|
|
9489
9503
|
readonly published_at?: string;
|
|
@@ -9501,6 +9515,9 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9501
9515
|
readonly glbeRatecardMetadataLaneIdentifier?: string;
|
|
9502
9516
|
readonly pickupCenter?: string;
|
|
9503
9517
|
}
|
|
9518
|
+
interface RatecardEffectiveUntilForm {
|
|
9519
|
+
readonly effective_until?: string;
|
|
9520
|
+
}
|
|
9504
9521
|
interface RatecardEstimateForm {
|
|
9505
9522
|
readonly origin_address: io.flow.common.v0.models.Address;
|
|
9506
9523
|
readonly destination_address: io.flow.common.v0.models.Address;
|
|
@@ -10325,6 +10342,7 @@ declare namespace io.flow.product.v0.models {
|
|
|
10325
10342
|
readonly organization_id: string;
|
|
10326
10343
|
readonly number: string;
|
|
10327
10344
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
10345
|
+
readonly inferred_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
10328
10346
|
readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
10329
10347
|
readonly item_numbers: string[];
|
|
10330
10348
|
readonly highest_value_item_number?: string;
|
|
@@ -12279,6 +12297,17 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
12279
12297
|
}
|
|
12280
12298
|
interface BankAccountInfoKor {
|
|
12281
12299
|
readonly discriminator: 'kor';
|
|
12300
|
+
readonly name?: string;
|
|
12301
|
+
readonly address?: io.flow.common.v0.models.Address;
|
|
12302
|
+
readonly phone?: string;
|
|
12303
|
+
readonly email?: string;
|
|
12304
|
+
readonly bank_account_number: string;
|
|
12305
|
+
readonly bank_routing_number?: string;
|
|
12306
|
+
readonly bank_name?: string;
|
|
12307
|
+
readonly bank_address?: io.flow.common.v0.models.Address;
|
|
12308
|
+
}
|
|
12309
|
+
interface BankAccountInfoKorV2 {
|
|
12310
|
+
readonly discriminator: 'kor_v2';
|
|
12282
12311
|
readonly name: string;
|
|
12283
12312
|
readonly bank_account_number: string;
|
|
12284
12313
|
readonly bank_routing_number: string;
|
|
@@ -12291,19 +12320,21 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
12291
12320
|
}
|
|
12292
12321
|
}
|
|
12293
12322
|
declare namespace io.flow.billing.bank.account.v0.unions {
|
|
12294
|
-
type BankAccountInfo = io.flow.billing.bank.account.v0.models.BankAccountInfoUsa | io.flow.billing.bank.account.v0.models.BankAccountInfoCan | io.flow.billing.bank.account.v0.models.BankAccountInfoGbr | io.flow.billing.bank.account.v0.models.BankAccountInfoFra | io.flow.billing.bank.account.v0.models.BankAccountInfoIta | io.flow.billing.bank.account.v0.models.BankAccountInfoKor;
|
|
12323
|
+
type BankAccountInfo = io.flow.billing.bank.account.v0.models.BankAccountInfoUsa | io.flow.billing.bank.account.v0.models.BankAccountInfoCan | io.flow.billing.bank.account.v0.models.BankAccountInfoGbr | io.flow.billing.bank.account.v0.models.BankAccountInfoFra | io.flow.billing.bank.account.v0.models.BankAccountInfoIta | io.flow.billing.bank.account.v0.models.BankAccountInfoKor | io.flow.billing.bank.account.v0.models.BankAccountInfoKorV2;
|
|
12295
12324
|
}
|
|
12296
12325
|
declare namespace io.flow.internal.v0.enums {
|
|
12297
|
-
type AccountCurrencyFilter = 'GBP' | 'CAD' | 'USD';
|
|
12326
|
+
type AccountCurrencyFilter = 'GBP' | 'CAD' | 'USD' | 'KRW';
|
|
12298
12327
|
type AccountPaymentHoldReason = 'fraudulent' | 'frozen' | 'invalid_bank_account';
|
|
12299
12328
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
12300
12329
|
type AccountType = 'channel' | 'organization';
|
|
12330
|
+
type AdaptiveShippingOrderGuaranteeState = 'confirmed' | 'voided';
|
|
12301
12331
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
12302
12332
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
12303
12333
|
type AmruthaItemType = 'physical' | 'digital';
|
|
12304
12334
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
12305
12335
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
12306
12336
|
type ApplicablePreferentialRate = 'baby' | 'children';
|
|
12337
|
+
type AthenaDailyopsIntentLevel = 'low_intent' | 'high_intent';
|
|
12307
12338
|
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-b186129720f0446eb452a68518437c95' | 'prr-36e1603f56e54eb889792637c29eed40' | 'prr-7ead2cc4bf2840a3a9b50d222eb0ed7e' | 'prr-ec2f3d608b7e43a49de88ac40e6b50a8' | 'prr-04ed078c39ca4447b171f767d71a481d' | 'prr-bb664a76d6d64a17843e720e6ccd401a' | 'prr-8ce63afcd48641eb9d44e04117348a96' | 'prr-76544617791b4ce8af96b3a7879474c6' | 'prr-566cc67167944bc4bd08167aa9c0beba' | 'prr-74e1320efb7741cf9ace400b69800f9b';
|
|
12308
12339
|
type B2BFeeMorTaxTriggerType = 'capture' | 'order';
|
|
12309
12340
|
type B2BFeeShippingTaxTriggerType = 'label' | 'trueup';
|
|
@@ -12388,7 +12419,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12388
12419
|
type EmptyAttribute = 'irrelevant';
|
|
12389
12420
|
type ErpFileType = 'vendor';
|
|
12390
12421
|
type EvaluationCheckResult = 'pass' | 'fail';
|
|
12391
|
-
type EventType = 'adaptive_shipping_rate_upserted' | 'adaptive_shipping_rate_deleted' | 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'fulfillment_status_upserted' | 'fulfillment_status_deleted' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'shipping_cost_upserted' | 'shipping_cost_deleted' | 'mor_cost_upserted' | 'mor_cost_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'merchant_override_upserted' | 'merchant_override_deleted' | 'harmonization_classification_statistics_published' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_creation_job_upserted' | 'label_creation_job_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'partner_request_upserted' | 'partner_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'order_refund_transaction_upserted' | 'order_refund_transaction_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'preonboarding_sellability_result_inserted' | 'preonboarding_sellability_result_updated' | 'preonboarding_sellability_result_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'product_restriction_state_inserted' | 'product_restriction_state_updated' | 'product_restriction_state_deleted' | 'product_sellability_result_inserted' | 'product_sellability_result_updated' | 'product_sellability_result_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'taxonomy_category_hs6_ref_upserted' | 'taxonomy_category_hs6_ref_deleted' | 'shopify_hs10_codes_upserted' | 'shopify_hs10_codes_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_product_taxonomy_attribute_upserted' | 'shopify_product_taxonomy_attribute_deleted' | 'shopify_product_taxonomy_attribute_value_upserted' | 'shopify_product_taxonomy_attribute_value_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_order_risk_assessment_upserted' | 'shopify_order_risk_assessment_deleted' | 'shopify_order_transaction_upserted' | 'shopify_order_transaction_deleted' | 'shopify_test_order_upserted' | 'shopify_test_order_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'shopify_merchant_plan_upserted' | 'shopify_merchant_plan_deleted' | 'shopify_dispute_upserted' | 'shopify_dispute_deleted' | 'shopify_report_file_upserted' | 'shopify_report_file_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'b2b_tax_transaction_upserted' | 'b2b_tax_transaction_deleted' | 'gabriel_item_upserted' | 'gabriel_item_deleted' | 'chenglin_item_upserted' | 'chenglin_item_deleted' | 'bojana_item_upserted' | 'bojana_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
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';
|
|
12392
12423
|
type ExperienceImportType = 'experience_with_settings';
|
|
12393
12424
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
12394
12425
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -12419,7 +12450,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12419
12450
|
type JournalOperation = 'insert' | 'update' | 'delete';
|
|
12420
12451
|
type KeywordType = 'positive' | 'negative';
|
|
12421
12452
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
12422
|
-
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
12423
12453
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
12424
12454
|
type LabelEventMedium = 'webhook' | 'pull' | 'post';
|
|
12425
12455
|
type LabelEventSource = 'aftership' | 'carrier' | 'flow';
|
|
@@ -12432,6 +12462,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12432
12462
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
12433
12463
|
type LogisticsCapability = 'logistics_address_correction';
|
|
12434
12464
|
type LogisticsPayoutResolutionMethod = 'order_combined_shipment' | 'intransit_label_event' | 'shipping_notification';
|
|
12465
|
+
type MaheshItemType = 'physical' | 'digital';
|
|
12435
12466
|
type MailClass = 'standard' | 'express';
|
|
12436
12467
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
12437
12468
|
type ManualTransactionCategory = 'cancelled_order_refund' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit' | 'negative_balance_guarantee' | 'bank_payment_failure' | 'non_fraud_chargeback' | 'v1_migration_neg_balance_settlement';
|
|
@@ -12494,7 +12525,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12494
12525
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
12495
12526
|
type ReportPaymentType = 'credit' | 'debit';
|
|
12496
12527
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
12497
|
-
type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'scheduled_payment_citi' | 'account_quarterly_balances' | 'invariants' | 'payments' | 'reconcile_not_recorded' | 'products_record' | 'disputes' | 'sales_payments_record';
|
|
12528
|
+
type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'scheduled_payment_citi' | 'scheduled_payment_citi_krw' | 'scheduled_payment_citi_krw_txt' | 'account_quarterly_balances' | 'invariants' | 'payments' | 'reconcile_not_recorded' | 'products_record' | 'disputes' | 'sales_payments_record';
|
|
12498
12529
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
12499
12530
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
12500
12531
|
type ResponsibleParty = 'flow' | 'organization';
|
|
@@ -12544,7 +12575,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12544
12575
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
12545
12576
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
12546
12577
|
type TariffEligibilityType = 'rex';
|
|
12547
|
-
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults' | 'item_dimensions';
|
|
12578
|
+
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults' | 'item_dimensions' | 'center';
|
|
12548
12579
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
12549
12580
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
12550
12581
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax' | 'refund';
|
|
@@ -12787,13 +12818,34 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12787
12818
|
readonly action: io.flow.internal.v0.enums.ItemQuantityAction;
|
|
12788
12819
|
readonly quantity: number;
|
|
12789
12820
|
}
|
|
12821
|
+
interface AdaptiveShippingOrderGuarantee {
|
|
12822
|
+
readonly id: string;
|
|
12823
|
+
readonly organization_id: string;
|
|
12824
|
+
readonly order_number: string;
|
|
12825
|
+
readonly guarantee_state: io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState;
|
|
12826
|
+
readonly label_id?: string;
|
|
12827
|
+
readonly notification_id?: string;
|
|
12828
|
+
}
|
|
12829
|
+
interface AdaptiveShippingOrderGuaranteeDeleted {
|
|
12830
|
+
readonly discriminator: 'adaptive_shipping_order_guarantee_deleted';
|
|
12831
|
+
readonly event_id: string;
|
|
12832
|
+
readonly timestamp: string;
|
|
12833
|
+
readonly organization: string;
|
|
12834
|
+
readonly id: string;
|
|
12835
|
+
}
|
|
12836
|
+
interface AdaptiveShippingOrderGuaranteeUpserted {
|
|
12837
|
+
readonly discriminator: 'adaptive_shipping_order_guarantee_upserted';
|
|
12838
|
+
readonly event_id: string;
|
|
12839
|
+
readonly timestamp: string;
|
|
12840
|
+
readonly organization: string;
|
|
12841
|
+
readonly adaptive_shipping_order_guarantee: io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
12842
|
+
}
|
|
12790
12843
|
interface AdaptiveShippingRate {
|
|
12791
12844
|
readonly id: string;
|
|
12792
12845
|
readonly organization_id: string;
|
|
12793
12846
|
readonly destination_country: string;
|
|
12794
12847
|
readonly coefficient: number;
|
|
12795
12848
|
readonly flat_rates: io.flow.internal.v0.models.FlatRate[];
|
|
12796
|
-
readonly version_id?: string;
|
|
12797
12849
|
readonly effective_at: string;
|
|
12798
12850
|
readonly effective_until?: string;
|
|
12799
12851
|
}
|
|
@@ -13815,6 +13867,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13815
13867
|
readonly sales_tax_rate: number;
|
|
13816
13868
|
readonly additional_tax?: io.flow.common.v0.models.Money;
|
|
13817
13869
|
readonly additional_tax_rate?: number;
|
|
13870
|
+
readonly fixed_fee?: io.flow.common.v0.models.Money;
|
|
13871
|
+
readonly fixed_fee_tax?: io.flow.common.v0.models.Money;
|
|
13818
13872
|
readonly total: io.flow.common.v0.models.Money;
|
|
13819
13873
|
}
|
|
13820
13874
|
interface CalculationStampingShippingLine {
|
|
@@ -13846,6 +13900,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13846
13900
|
readonly additional_tax_import_included: boolean;
|
|
13847
13901
|
readonly additional_tax?: io.flow.common.v0.models.Money;
|
|
13848
13902
|
readonly additional_import_tax?: io.flow.internal.v0.models.AdditionalImportTax[];
|
|
13903
|
+
readonly fixed_fee?: io.flow.common.v0.models.Money;
|
|
13904
|
+
readonly fixed_fee_tax?: io.flow.common.v0.models.Money;
|
|
13849
13905
|
}
|
|
13850
13906
|
interface CalculatorDtcePostBody {
|
|
13851
13907
|
readonly products: io.flow.internal.v0.models.CalculatorDtceProduct[];
|
|
@@ -14494,6 +14550,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14494
14550
|
readonly domains: io.flow.internal.v0.models.ChannelOrganizationDomains;
|
|
14495
14551
|
readonly tokens: io.flow.internal.v0.models.Tokens;
|
|
14496
14552
|
}
|
|
14553
|
+
interface ChannelShopStatistics {
|
|
14554
|
+
readonly id: string;
|
|
14555
|
+
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
14556
|
+
readonly initial_catalog_synced_at?: string;
|
|
14557
|
+
readonly catalog_sync_duration?: number;
|
|
14558
|
+
readonly catalog_products_count?: number;
|
|
14559
|
+
}
|
|
14560
|
+
interface ChannelShopStatisticsDeleted {
|
|
14561
|
+
readonly discriminator: 'channel_shop_statistics_deleted';
|
|
14562
|
+
readonly event_id: string;
|
|
14563
|
+
readonly timestamp: string;
|
|
14564
|
+
readonly organization: string;
|
|
14565
|
+
readonly id: string;
|
|
14566
|
+
}
|
|
14567
|
+
interface ChannelShopStatisticsUpserted {
|
|
14568
|
+
readonly discriminator: 'channel_shop_statistics_upserted';
|
|
14569
|
+
readonly event_id: string;
|
|
14570
|
+
readonly timestamp: string;
|
|
14571
|
+
readonly organization: string;
|
|
14572
|
+
readonly channel_shop_statistics: io.flow.internal.v0.models.ChannelShopStatistics;
|
|
14573
|
+
}
|
|
14497
14574
|
interface ChannelTransaction {
|
|
14498
14575
|
readonly discriminator: 'channel_transaction';
|
|
14499
14576
|
readonly transaction: io.flow.internal.v0.models.TransactionReference;
|
|
@@ -16185,6 +16262,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16185
16262
|
readonly min_delivery_days?: number;
|
|
16186
16263
|
readonly max_delivery_days?: number;
|
|
16187
16264
|
}
|
|
16265
|
+
interface FlatRateLabelReversal {
|
|
16266
|
+
readonly id: string;
|
|
16267
|
+
readonly organization_id: string;
|
|
16268
|
+
readonly order_number: string;
|
|
16269
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
16270
|
+
readonly tax: io.flow.common.v0.models.Money;
|
|
16271
|
+
}
|
|
16272
|
+
interface FlatRateLabelReversalDeleted {
|
|
16273
|
+
readonly discriminator: 'flat_rate_label_reversal_deleted';
|
|
16274
|
+
readonly event_id: string;
|
|
16275
|
+
readonly timestamp: string;
|
|
16276
|
+
readonly organization: string;
|
|
16277
|
+
readonly id: string;
|
|
16278
|
+
}
|
|
16279
|
+
interface FlatRateLabelReversalUpserted {
|
|
16280
|
+
readonly discriminator: 'flat_rate_label_reversal_upserted';
|
|
16281
|
+
readonly event_id: string;
|
|
16282
|
+
readonly timestamp: string;
|
|
16283
|
+
readonly organization: string;
|
|
16284
|
+
readonly flat_rate_label_reversal: io.flow.internal.v0.models.FlatRateLabelReversal;
|
|
16285
|
+
}
|
|
16188
16286
|
interface FlatRateLabelTransaction {
|
|
16189
16287
|
readonly discriminator: 'flat_rate_label_transaction';
|
|
16190
16288
|
readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -17404,10 +17502,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17404
17502
|
readonly materials: Record<string, string[]>;
|
|
17405
17503
|
readonly constructions: Record<string, string[]>;
|
|
17406
17504
|
}
|
|
17407
|
-
interface LabelCancellationError {
|
|
17408
|
-
readonly code: io.flow.internal.v0.enums.LabelCancellationErrorCode;
|
|
17409
|
-
readonly messages: string[];
|
|
17410
|
-
}
|
|
17411
17505
|
interface LabelCreationJob {
|
|
17412
17506
|
readonly id: string;
|
|
17413
17507
|
readonly reference_id: string;
|
|
@@ -17826,6 +17920,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17826
17920
|
interface LoyaltyProgramRewards {
|
|
17827
17921
|
readonly applied: io.flow.internal.v0.models.LoyaltyProgramReward[];
|
|
17828
17922
|
}
|
|
17923
|
+
interface MaheshItem {
|
|
17924
|
+
readonly id: string;
|
|
17925
|
+
readonly number: string;
|
|
17926
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
17927
|
+
readonly description?: string;
|
|
17928
|
+
readonly type: io.flow.internal.v0.enums.MaheshItemType;
|
|
17929
|
+
readonly added_on: string;
|
|
17930
|
+
}
|
|
17931
|
+
interface MaheshItemForm {
|
|
17932
|
+
readonly number: string;
|
|
17933
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
17934
|
+
readonly description?: string;
|
|
17935
|
+
readonly type: io.flow.internal.v0.enums.MaheshItemType;
|
|
17936
|
+
readonly added_on: string;
|
|
17937
|
+
}
|
|
17829
17938
|
interface MainTransaction {
|
|
17830
17939
|
readonly id: string;
|
|
17831
17940
|
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
@@ -18094,6 +18203,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18094
18203
|
readonly freight: number;
|
|
18095
18204
|
readonly base_amount?: number;
|
|
18096
18205
|
readonly surcharges?: io.flow.internal.v0.models.MerchantSurcharge[];
|
|
18206
|
+
readonly freight_guaranteed?: number;
|
|
18207
|
+
readonly freight_non_guaranteed?: number;
|
|
18097
18208
|
readonly total: number;
|
|
18098
18209
|
readonly tax_refund?: number;
|
|
18099
18210
|
readonly tax_reversal?: number;
|
|
@@ -19561,6 +19672,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19561
19672
|
readonly relative_ranking: number;
|
|
19562
19673
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
19563
19674
|
readonly fingerprint: string;
|
|
19675
|
+
readonly screening_mode?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
19564
19676
|
}
|
|
19565
19677
|
interface PreonboardingClassificationResult {
|
|
19566
19678
|
readonly id: string;
|
|
@@ -19571,13 +19683,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19571
19683
|
readonly probability?: number;
|
|
19572
19684
|
readonly classification_decision: io.flow.internal.v0.enums.PreonboardingClassificationDecision;
|
|
19573
19685
|
readonly classification_type: io.flow.internal.v0.enums.PreonboardingClassificationType;
|
|
19686
|
+
readonly model_id?: string;
|
|
19574
19687
|
}
|
|
19575
19688
|
interface PreonboardingMerchant {
|
|
19689
|
+
readonly id: string;
|
|
19576
19690
|
readonly merchant_id: string;
|
|
19577
19691
|
readonly channel: string;
|
|
19578
19692
|
readonly catalog_size: number;
|
|
19579
19693
|
readonly processed_product_count: number;
|
|
19580
19694
|
readonly last_request: string;
|
|
19695
|
+
readonly updated_by_user_id: string;
|
|
19696
|
+
}
|
|
19697
|
+
interface PreonboardingMerchantDeleted {
|
|
19698
|
+
readonly discriminator: 'preonboarding_merchant_deleted';
|
|
19699
|
+
readonly event_id: string;
|
|
19700
|
+
readonly timestamp: string;
|
|
19701
|
+
readonly id: string;
|
|
19702
|
+
}
|
|
19703
|
+
interface PreonboardingMerchantUpserted {
|
|
19704
|
+
readonly discriminator: 'preonboarding_merchant_upserted';
|
|
19705
|
+
readonly event_id: string;
|
|
19706
|
+
readonly timestamp: string;
|
|
19707
|
+
readonly preonboarding_merchant: io.flow.internal.v0.models.PreonboardingMerchant;
|
|
19581
19708
|
}
|
|
19582
19709
|
interface PreonboardingSellabilityResult {
|
|
19583
19710
|
readonly id?: string;
|
|
@@ -19596,6 +19723,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19596
19723
|
readonly classification_failure_reason?: io.flow.internal.v0.enums.ClassificationFailureReason;
|
|
19597
19724
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
19598
19725
|
readonly fingerprint: string;
|
|
19726
|
+
readonly screening_mode?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
19599
19727
|
}
|
|
19600
19728
|
interface PreonboardingSellabilityResultDeleted {
|
|
19601
19729
|
readonly discriminator: 'preonboarding_sellability_result_deleted';
|
|
@@ -20269,6 +20397,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20269
20397
|
readonly type: io.flow.internal.v0.enums.RaveenaItemType;
|
|
20270
20398
|
readonly added_on: string;
|
|
20271
20399
|
}
|
|
20400
|
+
interface RaveenaItemDeleted {
|
|
20401
|
+
readonly discriminator: 'raveena_item_deleted';
|
|
20402
|
+
readonly event_id: string;
|
|
20403
|
+
readonly timestamp: string;
|
|
20404
|
+
readonly id: string;
|
|
20405
|
+
}
|
|
20272
20406
|
interface RaveenaItemForm {
|
|
20273
20407
|
readonly number: string;
|
|
20274
20408
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -20276,6 +20410,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20276
20410
|
readonly type: io.flow.internal.v0.enums.RaveenaItemType;
|
|
20277
20411
|
readonly added_on: string;
|
|
20278
20412
|
}
|
|
20413
|
+
interface RaveenaItemUpserted {
|
|
20414
|
+
readonly discriminator: 'raveena_item_upserted';
|
|
20415
|
+
readonly event_id: string;
|
|
20416
|
+
readonly timestamp: string;
|
|
20417
|
+
readonly item: io.flow.internal.v0.models.RaveenaItem;
|
|
20418
|
+
}
|
|
20279
20419
|
interface RecordReference {
|
|
20280
20420
|
readonly id: string;
|
|
20281
20421
|
}
|
|
@@ -20332,6 +20472,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20332
20472
|
readonly type: string;
|
|
20333
20473
|
readonly routing_number: string;
|
|
20334
20474
|
readonly account_number: string;
|
|
20475
|
+
readonly bank_name?: string;
|
|
20335
20476
|
}
|
|
20336
20477
|
interface ReportFile {
|
|
20337
20478
|
readonly id: string;
|
|
@@ -20546,6 +20687,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20546
20687
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20547
20688
|
readonly freight: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20548
20689
|
readonly freight_breakdown?: io.flow.internal.v0.models.ReportingMerchantFreight;
|
|
20690
|
+
readonly freight_guaranteed?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20691
|
+
readonly freight_non_guaranteed?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20549
20692
|
readonly discount?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20550
20693
|
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20551
20694
|
readonly tax_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
@@ -20967,6 +21110,69 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20967
21110
|
readonly pending_verification_count: number;
|
|
20968
21111
|
readonly pending_classification_count: number;
|
|
20969
21112
|
}
|
|
21113
|
+
interface RestrictionsAthenaDailyopsFs {
|
|
21114
|
+
readonly id: string;
|
|
21115
|
+
readonly report_date: string;
|
|
21116
|
+
readonly num_products_with_fs_result?: number;
|
|
21117
|
+
readonly num_products_sellable_somewhere_by_fs?: number;
|
|
21118
|
+
readonly num_products_restricted_somewhere_by_fs?: number;
|
|
21119
|
+
readonly num_products_with_false_allows_by_fs?: number;
|
|
21120
|
+
readonly num_products_with_false_restricts_by_fs?: number;
|
|
21121
|
+
readonly daily_num_products_with_fs_result?: number;
|
|
21122
|
+
readonly daily_num_products_sellable_somewhere_by_fs?: number;
|
|
21123
|
+
readonly daily_num_products_restricted_somewhere_by_fs?: number;
|
|
21124
|
+
readonly daily_num_products_with_false_allows_by_fs?: number;
|
|
21125
|
+
readonly daily_num_products_with_false_restricts_by_fs?: number;
|
|
21126
|
+
}
|
|
21127
|
+
interface RestrictionsAthenaDailyopsFsDeleted {
|
|
21128
|
+
readonly discriminator: 'restrictions_athena_dailyops_fs_deleted';
|
|
21129
|
+
readonly event_id: string;
|
|
21130
|
+
readonly timestamp: string;
|
|
21131
|
+
readonly id: string;
|
|
21132
|
+
}
|
|
21133
|
+
interface RestrictionsAthenaDailyopsFsUpserted {
|
|
21134
|
+
readonly discriminator: 'restrictions_athena_dailyops_fs_upserted';
|
|
21135
|
+
readonly event_id: string;
|
|
21136
|
+
readonly timestamp: string;
|
|
21137
|
+
readonly restrictions_athena_dailyops_fs: io.flow.internal.v0.models.RestrictionsAthenaDailyopsFs;
|
|
21138
|
+
}
|
|
21139
|
+
interface RestrictionsAthenaDailyopsPcPv {
|
|
21140
|
+
readonly id: string;
|
|
21141
|
+
readonly report_date: string;
|
|
21142
|
+
readonly intent_level: io.flow.internal.v0.enums.AthenaDailyopsIntentLevel;
|
|
21143
|
+
readonly num_orgs_setup_complete_with_pvs: number;
|
|
21144
|
+
readonly num_products_setup_complete_with_pvs: number;
|
|
21145
|
+
readonly num_orgs_transacting_with_pvs: number;
|
|
21146
|
+
readonly num_products_transacting_with_pvs: number;
|
|
21147
|
+
readonly num_orgs_setup_complete_with_pcs: number;
|
|
21148
|
+
readonly num_products_setup_complete_with_pcs: number;
|
|
21149
|
+
readonly num_orgs_transacting_with_pcs: number;
|
|
21150
|
+
readonly num_products_transacting_with_pcs: number;
|
|
21151
|
+
readonly oldest_pv_product_date_setup_complete?: string;
|
|
21152
|
+
readonly oldest_pv_product_date_transacting?: string;
|
|
21153
|
+
readonly oldest_pc_product_date_setup_complete?: string;
|
|
21154
|
+
readonly oldest_pc_product_date_transacting?: string;
|
|
21155
|
+
readonly oldest_insufficient_details_pv_active?: string;
|
|
21156
|
+
readonly oldest_insufficient_details_pv_transacting?: string;
|
|
21157
|
+
readonly num_pv_inflow_net_new: number;
|
|
21158
|
+
readonly num_pv_outflow_human_decisions: number;
|
|
21159
|
+
readonly num_pv_outflow_auto_review_decisions: number;
|
|
21160
|
+
readonly num_pv_outflow_side_effect_decisions: number;
|
|
21161
|
+
readonly num_pending_decisions_transacting: number;
|
|
21162
|
+
readonly pv_decisions_setup_complete: number;
|
|
21163
|
+
}
|
|
21164
|
+
interface RestrictionsAthenaDailyopsPcPvDeleted {
|
|
21165
|
+
readonly discriminator: 'restrictions_athena_dailyops_pc_pv_deleted';
|
|
21166
|
+
readonly event_id: string;
|
|
21167
|
+
readonly timestamp: string;
|
|
21168
|
+
readonly id: string;
|
|
21169
|
+
}
|
|
21170
|
+
interface RestrictionsAthenaDailyopsPcPvUpserted {
|
|
21171
|
+
readonly discriminator: 'restrictions_athena_dailyops_pc_pv_upserted';
|
|
21172
|
+
readonly event_id: string;
|
|
21173
|
+
readonly timestamp: string;
|
|
21174
|
+
readonly restrictions_athena_dailyops_pc_pv: io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPv;
|
|
21175
|
+
}
|
|
20970
21176
|
interface RestrictionsDailyops {
|
|
20971
21177
|
readonly id: string;
|
|
20972
21178
|
readonly report_date: string;
|
|
@@ -23408,7 +23614,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23408
23614
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
23409
23615
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
|
|
23410
23616
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
23411
|
-
type Event = io.flow.internal.v0.models.AdaptiveShippingRateUpserted | io.flow.internal.v0.models.AdaptiveShippingRateDeleted | io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.FulfillmentStatusUpserted | io.flow.internal.v0.models.FulfillmentStatusDeleted | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.ShippingCostUpserted | io.flow.internal.v0.models.ShippingCostDeleted | io.flow.internal.v0.models.MorCostUpserted | io.flow.internal.v0.models.MorCostDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.MerchantOverrideUpserted | io.flow.internal.v0.models.MerchantOverrideDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelCreationJobUpserted | io.flow.internal.v0.models.LabelCreationJobDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.PartnerRequestUpserted | io.flow.internal.v0.models.PartnerRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.OrderRefundTransactionUpserted | io.flow.internal.v0.models.OrderRefundTransactionDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.PreonboardingSellabilityResultInserted | io.flow.internal.v0.models.PreonboardingSellabilityResultUpdated | io.flow.internal.v0.models.PreonboardingSellabilityResultDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.ProductRestrictionStateInserted | io.flow.internal.v0.models.ProductRestrictionStateUpdated | io.flow.internal.v0.models.ProductRestrictionStateDeleted | io.flow.internal.v0.models.ProductSellabilityResultInserted | io.flow.internal.v0.models.ProductSellabilityResultUpdated | io.flow.internal.v0.models.ProductSellabilityResultDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted | io.flow.internal.v0.models.ShopifyHs10CodesUpserted | io.flow.internal.v0.models.ShopifyHs10CodesDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.internal.v0.models.ShopifyOrderTransactionUpserted | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted | io.flow.internal.v0.models.ShopifyTestOrderUpserted | io.flow.internal.v0.models.ShopifyTestOrderDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.ShopifyMerchantPlanUpserted | io.flow.internal.v0.models.ShopifyMerchantPlanDeleted | io.flow.internal.v0.models.ShopifyDisputeUpserted | io.flow.internal.v0.models.ShopifyDisputeDeleted | io.flow.internal.v0.models.ShopifyReportFileUpserted | io.flow.internal.v0.models.ShopifyReportFileDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.B2BTaxTransactionUpserted | io.flow.internal.v0.models.B2BTaxTransactionDeleted | io.flow.internal.v0.models.GabrielItemUpserted | io.flow.internal.v0.models.GabrielItemDeleted | io.flow.internal.v0.models.ChenglinItemUpserted | io.flow.internal.v0.models.ChenglinItemDeleted | io.flow.internal.v0.models.BojanaItemUpserted | io.flow.internal.v0.models.BojanaItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
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;
|
|
23412
23618
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
23413
23619
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
23414
23620
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -23493,6 +23699,10 @@ export declare type AccountUpsertedV2 = io.flow.internal.v0.models.AccountUpsert
|
|
|
23493
23699
|
export declare type AccountingPendingOrderMetadata = io.flow.internal.v0.models.AccountingPendingOrderMetadata;
|
|
23494
23700
|
export declare type AccountingReturnMetadata = io.flow.internal.v0.models.AccountingReturnMetadata;
|
|
23495
23701
|
export declare type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
|
|
23702
|
+
export declare type AdaptiveShippingOrderGuarantee = io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
23703
|
+
export declare type AdaptiveShippingOrderGuaranteeDeleted = io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted;
|
|
23704
|
+
export declare type AdaptiveShippingOrderGuaranteeState = io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState;
|
|
23705
|
+
export declare type AdaptiveShippingOrderGuaranteeUpserted = io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted;
|
|
23496
23706
|
export declare type AdaptiveShippingRate = io.flow.internal.v0.models.AdaptiveShippingRate;
|
|
23497
23707
|
export declare type AdaptiveShippingRateDeleted = io.flow.internal.v0.models.AdaptiveShippingRateDeleted;
|
|
23498
23708
|
export declare type AdaptiveShippingRateUpserted = io.flow.internal.v0.models.AdaptiveShippingRateUpserted;
|
|
@@ -23564,6 +23774,7 @@ export declare type ApiCallReferenceId = io.flow.internal.v0.enums.ApiCallRefere
|
|
|
23564
23774
|
export declare type ApplePayAuthorizationPayload = io.flow.internal.v0.models.ApplePayAuthorizationPayload;
|
|
23565
23775
|
export declare type ApplicablePreferentialRate = io.flow.internal.v0.enums.ApplicablePreferentialRate;
|
|
23566
23776
|
export declare type ApplyAtValueForm = io.flow.internal.v0.models.ApplyAtValueForm;
|
|
23777
|
+
export declare type AthenaDailyopsIntentLevel = io.flow.internal.v0.enums.AthenaDailyopsIntentLevel;
|
|
23567
23778
|
export declare type AttemptStatistics = io.flow.internal.v0.models.AttemptStatistics;
|
|
23568
23779
|
export declare type AttributeLabel = io.flow.internal.v0.models.AttributeLabel;
|
|
23569
23780
|
export declare type AttributeRule = io.flow.internal.v0.models.AttributeRule;
|
|
@@ -23793,6 +24004,9 @@ export declare type ChannelRateMetadataRate = io.flow.internal.v0.models.Channel
|
|
|
23793
24004
|
export declare type ChannelService = io.flow.internal.v0.enums.ChannelService;
|
|
23794
24005
|
export declare type ChannelShop = io.flow.internal.v0.models.ChannelShop;
|
|
23795
24006
|
export declare type ChannelShopForm = io.flow.internal.v0.models.ChannelShopForm;
|
|
24007
|
+
export declare type ChannelShopStatistics = io.flow.internal.v0.models.ChannelShopStatistics;
|
|
24008
|
+
export declare type ChannelShopStatisticsDeleted = io.flow.internal.v0.models.ChannelShopStatisticsDeleted;
|
|
24009
|
+
export declare type ChannelShopStatisticsUpserted = io.flow.internal.v0.models.ChannelShopStatisticsUpserted;
|
|
23796
24010
|
export declare type ChannelTransaction = io.flow.internal.v0.models.ChannelTransaction;
|
|
23797
24011
|
export declare type ChannelTransactionDeleted = io.flow.internal.v0.models.ChannelTransactionDeleted;
|
|
23798
24012
|
export declare type ChannelTransactionRate = io.flow.internal.v0.models.ChannelTransactionRate;
|
|
@@ -24120,6 +24334,9 @@ export declare type FiservMerchant = io.flow.internal.v0.models.FiservMerchant;
|
|
|
24120
24334
|
export declare type FiservMerchantModificationForm = io.flow.internal.v0.models.FiservMerchantModificationForm;
|
|
24121
24335
|
export declare type FiservMerchantPutForm = io.flow.internal.v0.models.FiservMerchantPutForm;
|
|
24122
24336
|
export declare type FlatRate = io.flow.internal.v0.models.FlatRate;
|
|
24337
|
+
export declare type FlatRateLabelReversal = io.flow.internal.v0.models.FlatRateLabelReversal;
|
|
24338
|
+
export declare type FlatRateLabelReversalDeleted = io.flow.internal.v0.models.FlatRateLabelReversalDeleted;
|
|
24339
|
+
export declare type FlatRateLabelReversalUpserted = io.flow.internal.v0.models.FlatRateLabelReversalUpserted;
|
|
24123
24340
|
export declare type FlatRateLabelTransaction = io.flow.internal.v0.models.FlatRateLabelTransaction;
|
|
24124
24341
|
export declare type FlatRateLabelTransactionType = io.flow.internal.v0.enums.FlatRateLabelTransactionType;
|
|
24125
24342
|
export declare type FlexeWebhook = io.flow.internal.v0.models.FlexeWebhook;
|
|
@@ -24328,8 +24545,6 @@ export declare type LabProjectSettingsFormAcceptance = io.flow.internal.v0.model
|
|
|
24328
24545
|
export declare type LabelAliases = io.flow.internal.v0.models.LabelAliases;
|
|
24329
24546
|
export declare type LabelAssociation = io.flow.internal.v0.models.LabelAssociation;
|
|
24330
24547
|
export declare type LabelBillingStrategy = io.flow.internal.v0.enums.LabelBillingStrategy;
|
|
24331
|
-
export declare type LabelCancellationError = io.flow.internal.v0.models.LabelCancellationError;
|
|
24332
|
-
export declare type LabelCancellationErrorCode = io.flow.internal.v0.enums.LabelCancellationErrorCode;
|
|
24333
24548
|
export declare type LabelCreationJob = io.flow.internal.v0.models.LabelCreationJob;
|
|
24334
24549
|
export declare type LabelCreationJobDeleted = io.flow.internal.v0.models.LabelCreationJobDeleted;
|
|
24335
24550
|
export declare type LabelCreationJobSummary = io.flow.internal.v0.models.LabelCreationJobSummary;
|
|
@@ -24396,6 +24611,9 @@ export declare type LoyaltyProgram = io.flow.internal.v0.models.LoyaltyProgram;
|
|
|
24396
24611
|
export declare type LoyaltyProgramMessage = io.flow.internal.v0.models.LoyaltyProgramMessage;
|
|
24397
24612
|
export declare type LoyaltyProgramReward = io.flow.internal.v0.models.LoyaltyProgramReward;
|
|
24398
24613
|
export declare type LoyaltyProgramRewards = io.flow.internal.v0.models.LoyaltyProgramRewards;
|
|
24614
|
+
export declare type MaheshItem = io.flow.internal.v0.models.MaheshItem;
|
|
24615
|
+
export declare type MaheshItemForm = io.flow.internal.v0.models.MaheshItemForm;
|
|
24616
|
+
export declare type MaheshItemType = io.flow.internal.v0.enums.MaheshItemType;
|
|
24399
24617
|
export declare type MailClass = io.flow.internal.v0.enums.MailClass;
|
|
24400
24618
|
export declare type MainTransaction = io.flow.internal.v0.models.MainTransaction;
|
|
24401
24619
|
export declare type MainTransactionDeleted = io.flow.internal.v0.models.MainTransactionDeleted;
|
|
@@ -24701,6 +24919,8 @@ export declare type PreonboardingClassificationRequest = io.flow.internal.v0.mod
|
|
|
24701
24919
|
export declare type PreonboardingClassificationResult = io.flow.internal.v0.models.PreonboardingClassificationResult;
|
|
24702
24920
|
export declare type PreonboardingClassificationType = io.flow.internal.v0.enums.PreonboardingClassificationType;
|
|
24703
24921
|
export declare type PreonboardingMerchant = io.flow.internal.v0.models.PreonboardingMerchant;
|
|
24922
|
+
export declare type PreonboardingMerchantDeleted = io.flow.internal.v0.models.PreonboardingMerchantDeleted;
|
|
24923
|
+
export declare type PreonboardingMerchantUpserted = io.flow.internal.v0.models.PreonboardingMerchantUpserted;
|
|
24704
24924
|
export declare type PreonboardingRequestStatus = io.flow.internal.v0.enums.PreonboardingRequestStatus;
|
|
24705
24925
|
export declare type PreonboardingSellabilityResult = io.flow.internal.v0.models.PreonboardingSellabilityResult;
|
|
24706
24926
|
export declare type PreonboardingSellabilityResultDeleted = io.flow.internal.v0.models.PreonboardingSellabilityResultDeleted;
|
|
@@ -24820,8 +25040,10 @@ export declare type RatecardServiceFeesOverrideForm = io.flow.internal.v0.models
|
|
|
24820
25040
|
export declare type RatesChanged = io.flow.internal.v0.models.RatesChanged;
|
|
24821
25041
|
export declare type RatesNamesSummary = io.flow.internal.v0.models.RatesNamesSummary;
|
|
24822
25042
|
export declare type RaveenaItem = io.flow.internal.v0.models.RaveenaItem;
|
|
25043
|
+
export declare type RaveenaItemDeleted = io.flow.internal.v0.models.RaveenaItemDeleted;
|
|
24823
25044
|
export declare type RaveenaItemForm = io.flow.internal.v0.models.RaveenaItemForm;
|
|
24824
25045
|
export declare type RaveenaItemType = io.flow.internal.v0.enums.RaveenaItemType;
|
|
25046
|
+
export declare type RaveenaItemUpserted = io.flow.internal.v0.models.RaveenaItemUpserted;
|
|
24825
25047
|
export declare type RecordReference = io.flow.internal.v0.models.RecordReference;
|
|
24826
25048
|
export declare type Redirect = io.flow.internal.v0.models.Redirect;
|
|
24827
25049
|
export declare type RedirectActionCompleted = io.flow.internal.v0.models.RedirectActionCompleted;
|
|
@@ -24945,6 +25167,12 @@ export declare type RestrictionRuleUpserted = io.flow.internal.v0.models.Restric
|
|
|
24945
25167
|
export declare type RestrictionStateReviewStatus = io.flow.internal.v0.enums.RestrictionStateReviewStatus;
|
|
24946
25168
|
export declare type RestrictionStatus = io.flow.internal.v0.enums.RestrictionStatus;
|
|
24947
25169
|
export declare type RestrictionSummaryCounts = io.flow.internal.v0.models.RestrictionSummaryCounts;
|
|
25170
|
+
export declare type RestrictionsAthenaDailyopsFs = io.flow.internal.v0.models.RestrictionsAthenaDailyopsFs;
|
|
25171
|
+
export declare type RestrictionsAthenaDailyopsFsDeleted = io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsDeleted;
|
|
25172
|
+
export declare type RestrictionsAthenaDailyopsFsUpserted = io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsUpserted;
|
|
25173
|
+
export declare type RestrictionsAthenaDailyopsPcPv = io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPv;
|
|
25174
|
+
export declare type RestrictionsAthenaDailyopsPcPvDeleted = io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvDeleted;
|
|
25175
|
+
export declare type RestrictionsAthenaDailyopsPcPvUpserted = io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvUpserted;
|
|
24948
25176
|
export declare type RestrictionsDailyops = io.flow.internal.v0.models.RestrictionsDailyops;
|
|
24949
25177
|
export declare type RestrictionsDailyopsDeleted = io.flow.internal.v0.models.RestrictionsDailyopsDeleted;
|
|
24950
25178
|
export declare type RestrictionsDailyopsUpserted = io.flow.internal.v0.models.RestrictionsDailyopsUpserted;
|