@flowio/api-internal-prop-types 9.24.135 → 9.24.136
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/lib/api-internal.d.ts +267 -15
- package/lib/api-internal.js +1 -1
- package/package.json +1 -1
- package/src/api-internal.d.ts +267 -15
- package/src/api-internal.js +333 -47
package/lib/api-internal.d.ts
CHANGED
|
@@ -4419,6 +4419,7 @@ declare namespace io.flow.label.v0.enums {
|
|
|
4419
4419
|
type OriginLocationSource = 'public_hub_code' | 'merchant_hub_code_override' | 'shopify' | 'fallback_location';
|
|
4420
4420
|
type PackageDimensionsSource = 'provided' | 'item_dimensions_estimated' | 'dimensions_estimated' | 'default_item_dimensions_estimated';
|
|
4421
4421
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
4422
|
+
type ShippingCostGuarantee = 'guaranteed' | 'non_guaranteed';
|
|
4422
4423
|
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';
|
|
4423
4424
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
4424
4425
|
}
|
|
@@ -4552,6 +4553,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
4552
4553
|
readonly 'created_at'?: string;
|
|
4553
4554
|
readonly 'updated_at'?: string;
|
|
4554
4555
|
readonly 'direction'?: io.flow.label.v0.enums.Direction;
|
|
4556
|
+
readonly 'shipping_cost_guarantee'?: io.flow.label.v0.enums.ShippingCostGuarantee;
|
|
4555
4557
|
}
|
|
4556
4558
|
|
|
4557
4559
|
interface ShippingLabelDocument {
|
|
@@ -6664,6 +6666,10 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6664
6666
|
readonly 'count': number;
|
|
6665
6667
|
}
|
|
6666
6668
|
|
|
6669
|
+
interface GraphqlInferredProductCategory {
|
|
6670
|
+
readonly 'category'?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
|
|
6671
|
+
}
|
|
6672
|
+
|
|
6667
6673
|
interface GraphqlInventoryItem {
|
|
6668
6674
|
readonly 'id': string;
|
|
6669
6675
|
readonly 'tracked': boolean;
|
|
@@ -6720,6 +6726,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6720
6726
|
readonly 'updatedAt': string;
|
|
6721
6727
|
readonly 'hasVariantsThatRequiresComponents'?: boolean;
|
|
6722
6728
|
readonly 'category'?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
|
|
6729
|
+
readonly 'inferredProductCategory'?: io.flow.shopify.external.v0.models.GraphqlInferredProductCategory;
|
|
6723
6730
|
readonly 'metafields'?: io.flow.shopify.external.v0.models.GraphqlMetafield[];
|
|
6724
6731
|
}
|
|
6725
6732
|
|
|
@@ -8589,6 +8596,14 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
8589
8596
|
readonly 'cleartext': string;
|
|
8590
8597
|
}
|
|
8591
8598
|
|
|
8599
|
+
interface ChannelShopStatistics {
|
|
8600
|
+
readonly 'id': string;
|
|
8601
|
+
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
8602
|
+
readonly 'initial_catalog_synced_at'?: string;
|
|
8603
|
+
readonly 'catalog_sync_duration'?: number;
|
|
8604
|
+
readonly 'catalog_products_count'?: number;
|
|
8605
|
+
}
|
|
8606
|
+
|
|
8592
8607
|
interface FlowChannelOrganization {
|
|
8593
8608
|
readonly 'placeholder'?: string;
|
|
8594
8609
|
}
|
|
@@ -10865,6 +10880,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
10865
10880
|
readonly 'rate_level_key'?: string;
|
|
10866
10881
|
readonly 'direction': io.flow.label.v0.enums.Direction;
|
|
10867
10882
|
readonly 'effective_at': string;
|
|
10883
|
+
readonly 'effective_until'?: string;
|
|
10868
10884
|
readonly 'origination_zones': io.flow.common.v0.models.Zone[];
|
|
10869
10885
|
readonly 'service': io.flow.ratecard.v0.models.RatecardServiceSummary;
|
|
10870
10886
|
readonly 'published_at'?: string;
|
|
@@ -10885,6 +10901,10 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
10885
10901
|
readonly 'pickupCenter'?: string;
|
|
10886
10902
|
}
|
|
10887
10903
|
|
|
10904
|
+
interface RatecardEffectiveUntilForm {
|
|
10905
|
+
readonly 'effective_until'?: string;
|
|
10906
|
+
}
|
|
10907
|
+
|
|
10888
10908
|
interface RatecardEstimateForm {
|
|
10889
10909
|
readonly 'origin_address': io.flow.common.v0.models.Address;
|
|
10890
10910
|
readonly 'destination_address': io.flow.common.v0.models.Address;
|
|
@@ -11837,6 +11857,7 @@ declare namespace io.flow.product.v0.models {
|
|
|
11837
11857
|
readonly 'organization_id': string;
|
|
11838
11858
|
readonly 'number': string;
|
|
11839
11859
|
readonly 'taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
11860
|
+
readonly 'inferred_taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
11840
11861
|
readonly 'taxonomy_data'?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
11841
11862
|
readonly 'item_numbers': string[];
|
|
11842
11863
|
readonly 'highest_value_item_number'?: string;
|
|
@@ -14105,6 +14126,18 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
14105
14126
|
|
|
14106
14127
|
interface BankAccountInfoKor {
|
|
14107
14128
|
readonly 'discriminator': 'kor';
|
|
14129
|
+
readonly 'name'?: string;
|
|
14130
|
+
readonly 'address'?: io.flow.common.v0.models.Address;
|
|
14131
|
+
readonly 'phone'?: string;
|
|
14132
|
+
readonly 'email'?: string;
|
|
14133
|
+
readonly 'bank_account_number': string;
|
|
14134
|
+
readonly 'bank_routing_number'?: string;
|
|
14135
|
+
readonly 'bank_name'?: string;
|
|
14136
|
+
readonly 'bank_address'?: io.flow.common.v0.models.Address;
|
|
14137
|
+
}
|
|
14138
|
+
|
|
14139
|
+
interface BankAccountInfoKorV2 {
|
|
14140
|
+
readonly 'discriminator': 'kor_v2';
|
|
14108
14141
|
readonly 'name': string;
|
|
14109
14142
|
readonly 'bank_account_number': string;
|
|
14110
14143
|
readonly 'bank_routing_number': string;
|
|
@@ -14119,20 +14152,22 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
14119
14152
|
}
|
|
14120
14153
|
|
|
14121
14154
|
declare namespace io.flow.billing.bank.account.v0.unions {
|
|
14122
|
-
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);
|
|
14155
|
+
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);
|
|
14123
14156
|
}
|
|
14124
14157
|
|
|
14125
14158
|
declare namespace io.flow.internal.v0.enums {
|
|
14126
|
-
type AccountCurrencyFilter = 'GBP' | 'CAD' | 'USD';
|
|
14159
|
+
type AccountCurrencyFilter = 'GBP' | 'CAD' | 'USD' | 'KRW';
|
|
14127
14160
|
type AccountPaymentHoldReason = 'fraudulent' | 'frozen' | 'invalid_bank_account';
|
|
14128
14161
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
14129
14162
|
type AccountType = 'channel' | 'organization';
|
|
14163
|
+
type AdaptiveShippingOrderGuaranteeState = 'confirmed' | 'voided';
|
|
14130
14164
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
14131
14165
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
14132
14166
|
type AmruthaItemType = 'physical' | 'digital';
|
|
14133
14167
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
14134
14168
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
14135
14169
|
type ApplicablePreferentialRate = 'baby' | 'children';
|
|
14170
|
+
type AthenaDailyopsIntentLevel = 'low_intent' | 'high_intent';
|
|
14136
14171
|
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';
|
|
14137
14172
|
type B2BFeeMorTaxTriggerType = 'capture' | 'order';
|
|
14138
14173
|
type B2BFeeShippingTaxTriggerType = 'label' | 'trueup';
|
|
@@ -14217,7 +14252,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14217
14252
|
type EmptyAttribute = 'irrelevant';
|
|
14218
14253
|
type ErpFileType = 'vendor';
|
|
14219
14254
|
type EvaluationCheckResult = 'pass' | 'fail';
|
|
14220
|
-
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';
|
|
14255
|
+
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';
|
|
14221
14256
|
type ExperienceImportType = 'experience_with_settings';
|
|
14222
14257
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
14223
14258
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -14248,7 +14283,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14248
14283
|
type JournalOperation = 'insert' | 'update' | 'delete';
|
|
14249
14284
|
type KeywordType = 'positive' | 'negative';
|
|
14250
14285
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
14251
|
-
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
14252
14286
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
14253
14287
|
type LabelEventMedium = 'webhook' | 'pull' | 'post';
|
|
14254
14288
|
type LabelEventSource = 'aftership' | 'carrier' | 'flow';
|
|
@@ -14261,6 +14295,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14261
14295
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
14262
14296
|
type LogisticsCapability = 'logistics_address_correction';
|
|
14263
14297
|
type LogisticsPayoutResolutionMethod = 'order_combined_shipment' | 'intransit_label_event' | 'shipping_notification';
|
|
14298
|
+
type MaheshItemType = 'physical' | 'digital';
|
|
14264
14299
|
type MailClass = 'standard' | 'express';
|
|
14265
14300
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
14266
14301
|
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';
|
|
@@ -14323,7 +14358,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14323
14358
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
14324
14359
|
type ReportPaymentType = 'credit' | 'debit';
|
|
14325
14360
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
14326
|
-
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';
|
|
14361
|
+
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';
|
|
14327
14362
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
14328
14363
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
14329
14364
|
type ResponsibleParty = 'flow' | 'organization';
|
|
@@ -14373,7 +14408,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14373
14408
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
14374
14409
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
14375
14410
|
type TariffEligibilityType = 'rex';
|
|
14376
|
-
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults' | 'item_dimensions';
|
|
14411
|
+
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults' | 'item_dimensions' | 'center';
|
|
14377
14412
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
14378
14413
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
14379
14414
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax' | 'refund';
|
|
@@ -14649,13 +14684,37 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14649
14684
|
readonly 'quantity': number;
|
|
14650
14685
|
}
|
|
14651
14686
|
|
|
14687
|
+
interface AdaptiveShippingOrderGuarantee {
|
|
14688
|
+
readonly 'id': string;
|
|
14689
|
+
readonly 'organization_id': string;
|
|
14690
|
+
readonly 'order_number': string;
|
|
14691
|
+
readonly 'guarantee_state': io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState;
|
|
14692
|
+
readonly 'label_id'?: string;
|
|
14693
|
+
readonly 'notification_id'?: string;
|
|
14694
|
+
}
|
|
14695
|
+
|
|
14696
|
+
interface AdaptiveShippingOrderGuaranteeDeleted {
|
|
14697
|
+
readonly 'discriminator': 'adaptive_shipping_order_guarantee_deleted';
|
|
14698
|
+
readonly 'event_id': string;
|
|
14699
|
+
readonly 'timestamp': string;
|
|
14700
|
+
readonly 'organization': string;
|
|
14701
|
+
readonly 'id': string;
|
|
14702
|
+
}
|
|
14703
|
+
|
|
14704
|
+
interface AdaptiveShippingOrderGuaranteeUpserted {
|
|
14705
|
+
readonly 'discriminator': 'adaptive_shipping_order_guarantee_upserted';
|
|
14706
|
+
readonly 'event_id': string;
|
|
14707
|
+
readonly 'timestamp': string;
|
|
14708
|
+
readonly 'organization': string;
|
|
14709
|
+
readonly 'adaptive_shipping_order_guarantee': io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
14710
|
+
}
|
|
14711
|
+
|
|
14652
14712
|
interface AdaptiveShippingRate {
|
|
14653
14713
|
readonly 'id': string;
|
|
14654
14714
|
readonly 'organization_id': string;
|
|
14655
14715
|
readonly 'destination_country': string;
|
|
14656
14716
|
readonly 'coefficient': number;
|
|
14657
14717
|
readonly 'flat_rates': io.flow.internal.v0.models.FlatRate[];
|
|
14658
|
-
readonly 'version_id'?: string;
|
|
14659
14718
|
readonly 'effective_at': string;
|
|
14660
14719
|
readonly 'effective_until'?: string;
|
|
14661
14720
|
}
|
|
@@ -15826,6 +15885,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15826
15885
|
readonly 'sales_tax_rate': number;
|
|
15827
15886
|
readonly 'additional_tax'?: io.flow.common.v0.models.Money;
|
|
15828
15887
|
readonly 'additional_tax_rate'?: number;
|
|
15888
|
+
readonly 'fixed_fee'?: io.flow.common.v0.models.Money;
|
|
15889
|
+
readonly 'fixed_fee_tax'?: io.flow.common.v0.models.Money;
|
|
15829
15890
|
readonly 'total': io.flow.common.v0.models.Money;
|
|
15830
15891
|
}
|
|
15831
15892
|
|
|
@@ -15860,6 +15921,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15860
15921
|
readonly 'additional_tax_import_included': boolean;
|
|
15861
15922
|
readonly 'additional_tax'?: io.flow.common.v0.models.Money;
|
|
15862
15923
|
readonly 'additional_import_tax'?: io.flow.internal.v0.models.AdditionalImportTax[];
|
|
15924
|
+
readonly 'fixed_fee'?: io.flow.common.v0.models.Money;
|
|
15925
|
+
readonly 'fixed_fee_tax'?: io.flow.common.v0.models.Money;
|
|
15863
15926
|
}
|
|
15864
15927
|
|
|
15865
15928
|
interface CalculatorDtcePostBody {
|
|
@@ -16609,6 +16672,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16609
16672
|
readonly 'tokens': io.flow.internal.v0.models.Tokens;
|
|
16610
16673
|
}
|
|
16611
16674
|
|
|
16675
|
+
interface ChannelShopStatistics {
|
|
16676
|
+
readonly 'id': string;
|
|
16677
|
+
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
16678
|
+
readonly 'initial_catalog_synced_at'?: string;
|
|
16679
|
+
readonly 'catalog_sync_duration'?: number;
|
|
16680
|
+
readonly 'catalog_products_count'?: number;
|
|
16681
|
+
}
|
|
16682
|
+
|
|
16683
|
+
interface ChannelShopStatisticsDeleted {
|
|
16684
|
+
readonly 'discriminator': 'channel_shop_statistics_deleted';
|
|
16685
|
+
readonly 'event_id': string;
|
|
16686
|
+
readonly 'timestamp': string;
|
|
16687
|
+
readonly 'organization': string;
|
|
16688
|
+
readonly 'id': string;
|
|
16689
|
+
}
|
|
16690
|
+
|
|
16691
|
+
interface ChannelShopStatisticsUpserted {
|
|
16692
|
+
readonly 'discriminator': 'channel_shop_statistics_upserted';
|
|
16693
|
+
readonly 'event_id': string;
|
|
16694
|
+
readonly 'timestamp': string;
|
|
16695
|
+
readonly 'organization': string;
|
|
16696
|
+
readonly 'channel_shop_statistics': io.flow.internal.v0.models.ChannelShopStatistics;
|
|
16697
|
+
}
|
|
16698
|
+
|
|
16612
16699
|
interface ChannelTransaction {
|
|
16613
16700
|
readonly 'discriminator': 'channel_transaction';
|
|
16614
16701
|
readonly 'transaction': io.flow.internal.v0.models.TransactionReference;
|
|
@@ -18542,6 +18629,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18542
18629
|
readonly 'max_delivery_days'?: number;
|
|
18543
18630
|
}
|
|
18544
18631
|
|
|
18632
|
+
interface FlatRateLabelReversal {
|
|
18633
|
+
readonly 'id': string;
|
|
18634
|
+
readonly 'organization_id': string;
|
|
18635
|
+
readonly 'order_number': string;
|
|
18636
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
18637
|
+
readonly 'tax': io.flow.common.v0.models.Money;
|
|
18638
|
+
}
|
|
18639
|
+
|
|
18640
|
+
interface FlatRateLabelReversalDeleted {
|
|
18641
|
+
readonly 'discriminator': 'flat_rate_label_reversal_deleted';
|
|
18642
|
+
readonly 'event_id': string;
|
|
18643
|
+
readonly 'timestamp': string;
|
|
18644
|
+
readonly 'organization': string;
|
|
18645
|
+
readonly 'id': string;
|
|
18646
|
+
}
|
|
18647
|
+
|
|
18648
|
+
interface FlatRateLabelReversalUpserted {
|
|
18649
|
+
readonly 'discriminator': 'flat_rate_label_reversal_upserted';
|
|
18650
|
+
readonly 'event_id': string;
|
|
18651
|
+
readonly 'timestamp': string;
|
|
18652
|
+
readonly 'organization': string;
|
|
18653
|
+
readonly 'flat_rate_label_reversal': io.flow.internal.v0.models.FlatRateLabelReversal;
|
|
18654
|
+
}
|
|
18655
|
+
|
|
18545
18656
|
interface FlatRateLabelTransaction {
|
|
18546
18657
|
readonly 'discriminator': 'flat_rate_label_transaction';
|
|
18547
18658
|
readonly 'order'?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -19936,11 +20047,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19936
20047
|
readonly 'constructions': Record<string, string[]>;
|
|
19937
20048
|
}
|
|
19938
20049
|
|
|
19939
|
-
interface LabelCancellationError {
|
|
19940
|
-
readonly 'code': io.flow.internal.v0.enums.LabelCancellationErrorCode;
|
|
19941
|
-
readonly 'messages': string[];
|
|
19942
|
-
}
|
|
19943
|
-
|
|
19944
20050
|
interface LabelCreationJob {
|
|
19945
20051
|
readonly 'id': string;
|
|
19946
20052
|
readonly 'reference_id': string;
|
|
@@ -20413,6 +20519,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20413
20519
|
readonly 'applied': io.flow.internal.v0.models.LoyaltyProgramReward[];
|
|
20414
20520
|
}
|
|
20415
20521
|
|
|
20522
|
+
interface MaheshItem {
|
|
20523
|
+
readonly 'id': string;
|
|
20524
|
+
readonly 'number': string;
|
|
20525
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
20526
|
+
readonly 'description'?: string;
|
|
20527
|
+
readonly 'type': io.flow.internal.v0.enums.MaheshItemType;
|
|
20528
|
+
readonly 'added_on': string;
|
|
20529
|
+
}
|
|
20530
|
+
|
|
20531
|
+
interface MaheshItemForm {
|
|
20532
|
+
readonly 'number': string;
|
|
20533
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
20534
|
+
readonly 'description'?: string;
|
|
20535
|
+
readonly 'type': io.flow.internal.v0.enums.MaheshItemType;
|
|
20536
|
+
readonly 'added_on': string;
|
|
20537
|
+
}
|
|
20538
|
+
|
|
20416
20539
|
interface MainTransaction {
|
|
20417
20540
|
readonly 'id': string;
|
|
20418
20541
|
readonly 'account': io.flow.billing.v0.models.AccountReference;
|
|
@@ -20718,6 +20841,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20718
20841
|
readonly 'freight': number;
|
|
20719
20842
|
readonly 'base_amount'?: number;
|
|
20720
20843
|
readonly 'surcharges'?: io.flow.internal.v0.models.MerchantSurcharge[];
|
|
20844
|
+
readonly 'freight_guaranteed'?: number;
|
|
20845
|
+
readonly 'freight_non_guaranteed'?: number;
|
|
20721
20846
|
readonly 'total': number;
|
|
20722
20847
|
readonly 'tax_refund'?: number;
|
|
20723
20848
|
readonly 'tax_reversal'?: number;
|
|
@@ -22399,6 +22524,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22399
22524
|
readonly 'relative_ranking': number;
|
|
22400
22525
|
readonly 'taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
22401
22526
|
readonly 'fingerprint': string;
|
|
22527
|
+
readonly 'screening_mode'?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
22402
22528
|
}
|
|
22403
22529
|
|
|
22404
22530
|
interface PreonboardingClassificationResult {
|
|
@@ -22410,14 +22536,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22410
22536
|
readonly 'probability'?: number;
|
|
22411
22537
|
readonly 'classification_decision': io.flow.internal.v0.enums.PreonboardingClassificationDecision;
|
|
22412
22538
|
readonly 'classification_type': io.flow.internal.v0.enums.PreonboardingClassificationType;
|
|
22539
|
+
readonly 'model_id'?: string;
|
|
22413
22540
|
}
|
|
22414
22541
|
|
|
22415
22542
|
interface PreonboardingMerchant {
|
|
22543
|
+
readonly 'id': string;
|
|
22416
22544
|
readonly 'merchant_id': string;
|
|
22417
22545
|
readonly 'channel': string;
|
|
22418
22546
|
readonly 'catalog_size': number;
|
|
22419
22547
|
readonly 'processed_product_count': number;
|
|
22420
22548
|
readonly 'last_request': string;
|
|
22549
|
+
readonly 'updated_by_user_id': string;
|
|
22550
|
+
}
|
|
22551
|
+
|
|
22552
|
+
interface PreonboardingMerchantDeleted {
|
|
22553
|
+
readonly 'discriminator': 'preonboarding_merchant_deleted';
|
|
22554
|
+
readonly 'event_id': string;
|
|
22555
|
+
readonly 'timestamp': string;
|
|
22556
|
+
readonly 'id': string;
|
|
22557
|
+
}
|
|
22558
|
+
|
|
22559
|
+
interface PreonboardingMerchantUpserted {
|
|
22560
|
+
readonly 'discriminator': 'preonboarding_merchant_upserted';
|
|
22561
|
+
readonly 'event_id': string;
|
|
22562
|
+
readonly 'timestamp': string;
|
|
22563
|
+
readonly 'preonboarding_merchant': io.flow.internal.v0.models.PreonboardingMerchant;
|
|
22421
22564
|
}
|
|
22422
22565
|
|
|
22423
22566
|
interface PreonboardingSellabilityResult {
|
|
@@ -22437,6 +22580,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22437
22580
|
readonly 'classification_failure_reason'?: io.flow.internal.v0.enums.ClassificationFailureReason;
|
|
22438
22581
|
readonly 'taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
22439
22582
|
readonly 'fingerprint': string;
|
|
22583
|
+
readonly 'screening_mode'?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
22440
22584
|
}
|
|
22441
22585
|
|
|
22442
22586
|
interface PreonboardingSellabilityResultDeleted {
|
|
@@ -23213,6 +23357,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23213
23357
|
readonly 'added_on': string;
|
|
23214
23358
|
}
|
|
23215
23359
|
|
|
23360
|
+
interface RaveenaItemDeleted {
|
|
23361
|
+
readonly 'discriminator': 'raveena_item_deleted';
|
|
23362
|
+
readonly 'event_id': string;
|
|
23363
|
+
readonly 'timestamp': string;
|
|
23364
|
+
readonly 'id': string;
|
|
23365
|
+
}
|
|
23366
|
+
|
|
23216
23367
|
interface RaveenaItemForm {
|
|
23217
23368
|
readonly 'number': string;
|
|
23218
23369
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -23221,6 +23372,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23221
23372
|
readonly 'added_on': string;
|
|
23222
23373
|
}
|
|
23223
23374
|
|
|
23375
|
+
interface RaveenaItemUpserted {
|
|
23376
|
+
readonly 'discriminator': 'raveena_item_upserted';
|
|
23377
|
+
readonly 'event_id': string;
|
|
23378
|
+
readonly 'timestamp': string;
|
|
23379
|
+
readonly 'item': io.flow.internal.v0.models.RaveenaItem;
|
|
23380
|
+
}
|
|
23381
|
+
|
|
23224
23382
|
interface RecordReference {
|
|
23225
23383
|
readonly 'id': string;
|
|
23226
23384
|
}
|
|
@@ -23287,6 +23445,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23287
23445
|
readonly 'type': string;
|
|
23288
23446
|
readonly 'routing_number': string;
|
|
23289
23447
|
readonly 'account_number': string;
|
|
23448
|
+
readonly 'bank_name'?: string;
|
|
23290
23449
|
}
|
|
23291
23450
|
|
|
23292
23451
|
interface ReportFile {
|
|
@@ -23533,6 +23692,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23533
23692
|
readonly 'duty': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23534
23693
|
readonly 'freight': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23535
23694
|
readonly 'freight_breakdown'?: io.flow.internal.v0.models.ReportingMerchantFreight;
|
|
23695
|
+
readonly 'freight_guaranteed'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23696
|
+
readonly 'freight_non_guaranteed'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23536
23697
|
readonly 'discount'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23537
23698
|
readonly 'total'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23538
23699
|
readonly 'tax_refund'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
@@ -24010,6 +24171,75 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24010
24171
|
readonly 'pending_classification_count': number;
|
|
24011
24172
|
}
|
|
24012
24173
|
|
|
24174
|
+
interface RestrictionsAthenaDailyopsFs {
|
|
24175
|
+
readonly 'id': string;
|
|
24176
|
+
readonly 'report_date': string;
|
|
24177
|
+
readonly 'num_products_with_fs_result'?: number;
|
|
24178
|
+
readonly 'num_products_sellable_somewhere_by_fs'?: number;
|
|
24179
|
+
readonly 'num_products_restricted_somewhere_by_fs'?: number;
|
|
24180
|
+
readonly 'num_products_with_false_allows_by_fs'?: number;
|
|
24181
|
+
readonly 'num_products_with_false_restricts_by_fs'?: number;
|
|
24182
|
+
readonly 'daily_num_products_with_fs_result'?: number;
|
|
24183
|
+
readonly 'daily_num_products_sellable_somewhere_by_fs'?: number;
|
|
24184
|
+
readonly 'daily_num_products_restricted_somewhere_by_fs'?: number;
|
|
24185
|
+
readonly 'daily_num_products_with_false_allows_by_fs'?: number;
|
|
24186
|
+
readonly 'daily_num_products_with_false_restricts_by_fs'?: number;
|
|
24187
|
+
}
|
|
24188
|
+
|
|
24189
|
+
interface RestrictionsAthenaDailyopsFsDeleted {
|
|
24190
|
+
readonly 'discriminator': 'restrictions_athena_dailyops_fs_deleted';
|
|
24191
|
+
readonly 'event_id': string;
|
|
24192
|
+
readonly 'timestamp': string;
|
|
24193
|
+
readonly 'id': string;
|
|
24194
|
+
}
|
|
24195
|
+
|
|
24196
|
+
interface RestrictionsAthenaDailyopsFsUpserted {
|
|
24197
|
+
readonly 'discriminator': 'restrictions_athena_dailyops_fs_upserted';
|
|
24198
|
+
readonly 'event_id': string;
|
|
24199
|
+
readonly 'timestamp': string;
|
|
24200
|
+
readonly 'restrictions_athena_dailyops_fs': io.flow.internal.v0.models.RestrictionsAthenaDailyopsFs;
|
|
24201
|
+
}
|
|
24202
|
+
|
|
24203
|
+
interface RestrictionsAthenaDailyopsPcPv {
|
|
24204
|
+
readonly 'id': string;
|
|
24205
|
+
readonly 'report_date': string;
|
|
24206
|
+
readonly 'intent_level': io.flow.internal.v0.enums.AthenaDailyopsIntentLevel;
|
|
24207
|
+
readonly 'num_orgs_setup_complete_with_pvs': number;
|
|
24208
|
+
readonly 'num_products_setup_complete_with_pvs': number;
|
|
24209
|
+
readonly 'num_orgs_transacting_with_pvs': number;
|
|
24210
|
+
readonly 'num_products_transacting_with_pvs': number;
|
|
24211
|
+
readonly 'num_orgs_setup_complete_with_pcs': number;
|
|
24212
|
+
readonly 'num_products_setup_complete_with_pcs': number;
|
|
24213
|
+
readonly 'num_orgs_transacting_with_pcs': number;
|
|
24214
|
+
readonly 'num_products_transacting_with_pcs': number;
|
|
24215
|
+
readonly 'oldest_pv_product_date_setup_complete'?: string;
|
|
24216
|
+
readonly 'oldest_pv_product_date_transacting'?: string;
|
|
24217
|
+
readonly 'oldest_pc_product_date_setup_complete'?: string;
|
|
24218
|
+
readonly 'oldest_pc_product_date_transacting'?: string;
|
|
24219
|
+
readonly 'oldest_insufficient_details_pv_active'?: string;
|
|
24220
|
+
readonly 'oldest_insufficient_details_pv_transacting'?: string;
|
|
24221
|
+
readonly 'num_pv_inflow_net_new': number;
|
|
24222
|
+
readonly 'num_pv_outflow_human_decisions': number;
|
|
24223
|
+
readonly 'num_pv_outflow_auto_review_decisions': number;
|
|
24224
|
+
readonly 'num_pv_outflow_side_effect_decisions': number;
|
|
24225
|
+
readonly 'num_pending_decisions_transacting': number;
|
|
24226
|
+
readonly 'pv_decisions_setup_complete': number;
|
|
24227
|
+
}
|
|
24228
|
+
|
|
24229
|
+
interface RestrictionsAthenaDailyopsPcPvDeleted {
|
|
24230
|
+
readonly 'discriminator': 'restrictions_athena_dailyops_pc_pv_deleted';
|
|
24231
|
+
readonly 'event_id': string;
|
|
24232
|
+
readonly 'timestamp': string;
|
|
24233
|
+
readonly 'id': string;
|
|
24234
|
+
}
|
|
24235
|
+
|
|
24236
|
+
interface RestrictionsAthenaDailyopsPcPvUpserted {
|
|
24237
|
+
readonly 'discriminator': 'restrictions_athena_dailyops_pc_pv_upserted';
|
|
24238
|
+
readonly 'event_id': string;
|
|
24239
|
+
readonly 'timestamp': string;
|
|
24240
|
+
readonly 'restrictions_athena_dailyops_pc_pv': io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPv;
|
|
24241
|
+
}
|
|
24242
|
+
|
|
24013
24243
|
interface RestrictionsDailyops {
|
|
24014
24244
|
readonly 'id': string;
|
|
24015
24245
|
readonly 'report_date': string;
|
|
@@ -26811,7 +27041,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26811
27041
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
26812
27042
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
|
|
26813
27043
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
26814
|
-
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);
|
|
27044
|
+
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);
|
|
26815
27045
|
type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
|
|
26816
27046
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
26817
27047
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -26865,12 +27095,14 @@ export const accountCurrencyFilter: PropTypes.Requireable<io.flow.internal.v0.en
|
|
|
26865
27095
|
export const accountPaymentHoldReason: PropTypes.Requireable<io.flow.internal.v0.enums.AccountPaymentHoldReason>;
|
|
26866
27096
|
export const accountSettingLiabilitiesMethod: PropTypes.Requireable<io.flow.internal.v0.enums.AccountSettingLiabilitiesMethod>;
|
|
26867
27097
|
export const accountType: PropTypes.Requireable<io.flow.internal.v0.enums.AccountType>;
|
|
27098
|
+
export const adaptiveShippingOrderGuaranteeState: PropTypes.Requireable<io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState>;
|
|
26868
27099
|
export const adjustmentTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.AdjustmentTransactionType>;
|
|
26869
27100
|
export const adyenIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.AdyenIntegrationType>;
|
|
26870
27101
|
export const amruthaItemType: PropTypes.Requireable<io.flow.internal.v0.enums.AmruthaItemType>;
|
|
26871
27102
|
export const anyDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.AnyDangerousGoods>;
|
|
26872
27103
|
export const apiCallReferenceId: PropTypes.Requireable<io.flow.internal.v0.enums.ApiCallReferenceId>;
|
|
26873
27104
|
export const applicablePreferentialRate: PropTypes.Requireable<io.flow.internal.v0.enums.ApplicablePreferentialRate>;
|
|
27105
|
+
export const athenaDailyopsIntentLevel: PropTypes.Requireable<io.flow.internal.v0.enums.AthenaDailyopsIntentLevel>;
|
|
26874
27106
|
export const autoRestrictRule: PropTypes.Requireable<io.flow.internal.v0.enums.AutoRestrictRule>;
|
|
26875
27107
|
export const b2BFeeMorTaxTriggerType: PropTypes.Requireable<io.flow.internal.v0.enums.B2BFeeMorTaxTriggerType>;
|
|
26876
27108
|
export const b2BFeeShippingTaxTriggerType: PropTypes.Requireable<io.flow.internal.v0.enums.B2BFeeShippingTaxTriggerType>;
|
|
@@ -26986,7 +27218,6 @@ export const itemType: PropTypes.Requireable<io.flow.internal.v0.enums.ItemType>
|
|
|
26986
27218
|
export const journalOperation: PropTypes.Requireable<io.flow.internal.v0.enums.JournalOperation>;
|
|
26987
27219
|
export const keywordType: PropTypes.Requireable<io.flow.internal.v0.enums.KeywordType>;
|
|
26988
27220
|
export const labelBillingStrategy: PropTypes.Requireable<io.flow.internal.v0.enums.LabelBillingStrategy>;
|
|
26989
|
-
export const labelCancellationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCancellationErrorCode>;
|
|
26990
27221
|
export const labelCreationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCreationStatus>;
|
|
26991
27222
|
export const labelEventMedium: PropTypes.Requireable<io.flow.internal.v0.enums.LabelEventMedium>;
|
|
26992
27223
|
export const labelEventSource: PropTypes.Requireable<io.flow.internal.v0.enums.LabelEventSource>;
|
|
@@ -26999,6 +27230,7 @@ export const ledgerReportUrlType: PropTypes.Requireable<io.flow.internal.v0.enum
|
|
|
26999
27230
|
export const liabilityType: PropTypes.Requireable<io.flow.internal.v0.enums.LiabilityType>;
|
|
27000
27231
|
export const logisticsCapability: PropTypes.Requireable<io.flow.internal.v0.enums.LogisticsCapability>;
|
|
27001
27232
|
export const logisticsPayoutResolutionMethod: PropTypes.Requireable<io.flow.internal.v0.enums.LogisticsPayoutResolutionMethod>;
|
|
27233
|
+
export const maheshItemType: PropTypes.Requireable<io.flow.internal.v0.enums.MaheshItemType>;
|
|
27002
27234
|
export const mailClass: PropTypes.Requireable<io.flow.internal.v0.enums.MailClass>;
|
|
27003
27235
|
export const manualReviewRuleStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ManualReviewRuleStatus>;
|
|
27004
27236
|
export const manualTransactionCategory: PropTypes.Requireable<io.flow.internal.v0.enums.ManualTransactionCategory>;
|
|
@@ -27155,6 +27387,9 @@ export const accountUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models
|
|
|
27155
27387
|
export const accountingPendingOrderMetadata: PropTypes.Requireable<io.flow.internal.v0.models.AccountingPendingOrderMetadata>;
|
|
27156
27388
|
export const accountingReturnMetadata: PropTypes.Requireable<io.flow.internal.v0.models.AccountingReturnMetadata>;
|
|
27157
27389
|
export const actionQuantity: PropTypes.Requireable<io.flow.internal.v0.models.ActionQuantity>;
|
|
27390
|
+
export const adaptiveShippingOrderGuarantee: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee>;
|
|
27391
|
+
export const adaptiveShippingOrderGuaranteeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted>;
|
|
27392
|
+
export const adaptiveShippingOrderGuaranteeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted>;
|
|
27158
27393
|
export const adaptiveShippingRate: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingRate>;
|
|
27159
27394
|
export const adaptiveShippingRateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingRateDeleted>;
|
|
27160
27395
|
export const adaptiveShippingRateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingRateUpserted>;
|
|
@@ -27408,6 +27643,9 @@ export const channelRateMetadataIdentity: PropTypes.Requireable<io.flow.internal
|
|
|
27408
27643
|
export const channelRateMetadataRate: PropTypes.Requireable<io.flow.internal.v0.models.ChannelRateMetadataRate>;
|
|
27409
27644
|
export const channelShop: PropTypes.Requireable<io.flow.internal.v0.models.ChannelShop>;
|
|
27410
27645
|
export const channelShopForm: PropTypes.Requireable<io.flow.internal.v0.models.ChannelShopForm>;
|
|
27646
|
+
export const channelShopStatistics: PropTypes.Requireable<io.flow.internal.v0.models.ChannelShopStatistics>;
|
|
27647
|
+
export const channelShopStatisticsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelShopStatisticsDeleted>;
|
|
27648
|
+
export const channelShopStatisticsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelShopStatisticsUpserted>;
|
|
27411
27649
|
export const channelTransaction: PropTypes.Requireable<io.flow.internal.v0.models.ChannelTransaction>;
|
|
27412
27650
|
export const channelTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelTransactionDeleted>;
|
|
27413
27651
|
export const channelTransactionRate: PropTypes.Requireable<io.flow.internal.v0.models.ChannelTransactionRate>;
|
|
@@ -27650,6 +27888,9 @@ export const fiservMerchant: PropTypes.Requireable<io.flow.internal.v0.models.Fi
|
|
|
27650
27888
|
export const fiservMerchantModificationForm: PropTypes.Requireable<io.flow.internal.v0.models.FiservMerchantModificationForm>;
|
|
27651
27889
|
export const fiservMerchantPutForm: PropTypes.Requireable<io.flow.internal.v0.models.FiservMerchantPutForm>;
|
|
27652
27890
|
export const flatRate: PropTypes.Requireable<io.flow.internal.v0.models.FlatRate>;
|
|
27891
|
+
export const flatRateLabelReversal: PropTypes.Requireable<io.flow.internal.v0.models.FlatRateLabelReversal>;
|
|
27892
|
+
export const flatRateLabelReversalDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FlatRateLabelReversalDeleted>;
|
|
27893
|
+
export const flatRateLabelReversalUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FlatRateLabelReversalUpserted>;
|
|
27653
27894
|
export const flatRateLabelTransaction: PropTypes.Requireable<io.flow.internal.v0.models.FlatRateLabelTransaction>;
|
|
27654
27895
|
export const flexeWebhook: PropTypes.Requireable<io.flow.internal.v0.models.FlexeWebhook>;
|
|
27655
27896
|
export const flowAccount: PropTypes.Requireable<io.flow.internal.v0.models.FlowAccount>;
|
|
@@ -27825,7 +28066,6 @@ export const labProjectSettingsForm: PropTypes.Requireable<io.flow.internal.v0.m
|
|
|
27825
28066
|
export const labProjectSettingsFormAcceptance: PropTypes.Requireable<io.flow.internal.v0.models.LabProjectSettingsFormAcceptance>;
|
|
27826
28067
|
export const labelAliases: PropTypes.Requireable<io.flow.internal.v0.models.LabelAliases>;
|
|
27827
28068
|
export const labelAssociation: PropTypes.Requireable<io.flow.internal.v0.models.LabelAssociation>;
|
|
27828
|
-
export const labelCancellationError: PropTypes.Requireable<io.flow.internal.v0.models.LabelCancellationError>;
|
|
27829
28069
|
export const labelCreationJob: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJob>;
|
|
27830
28070
|
export const labelCreationJobDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJobDeleted>;
|
|
27831
28071
|
export const labelCreationJobSummary: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJobSummary>;
|
|
@@ -27880,6 +28120,8 @@ export const loyaltyProgram: PropTypes.Requireable<io.flow.internal.v0.models.Lo
|
|
|
27880
28120
|
export const loyaltyProgramMessage: PropTypes.Requireable<io.flow.internal.v0.models.LoyaltyProgramMessage>;
|
|
27881
28121
|
export const loyaltyProgramReward: PropTypes.Requireable<io.flow.internal.v0.models.LoyaltyProgramReward>;
|
|
27882
28122
|
export const loyaltyProgramRewards: PropTypes.Requireable<io.flow.internal.v0.models.LoyaltyProgramRewards>;
|
|
28123
|
+
export const maheshItem: PropTypes.Requireable<io.flow.internal.v0.models.MaheshItem>;
|
|
28124
|
+
export const maheshItemForm: PropTypes.Requireable<io.flow.internal.v0.models.MaheshItemForm>;
|
|
27883
28125
|
export const mainTransaction: PropTypes.Requireable<io.flow.internal.v0.models.MainTransaction>;
|
|
27884
28126
|
export const mainTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MainTransactionDeleted>;
|
|
27885
28127
|
export const mainTransactionDeletedV2: PropTypes.Requireable<io.flow.internal.v0.models.MainTransactionDeletedV2>;
|
|
@@ -28134,6 +28376,8 @@ export const preonboardingClassificationRabbitmqMessage: PropTypes.Requireable<i
|
|
|
28134
28376
|
export const preonboardingClassificationRequest: PropTypes.Requireable<io.flow.internal.v0.models.PreonboardingClassificationRequest>;
|
|
28135
28377
|
export const preonboardingClassificationResult: PropTypes.Requireable<io.flow.internal.v0.models.PreonboardingClassificationResult>;
|
|
28136
28378
|
export const preonboardingMerchant: PropTypes.Requireable<io.flow.internal.v0.models.PreonboardingMerchant>;
|
|
28379
|
+
export const preonboardingMerchantDeleted: PropTypes.Requireable<io.flow.internal.v0.models.PreonboardingMerchantDeleted>;
|
|
28380
|
+
export const preonboardingMerchantUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PreonboardingMerchantUpserted>;
|
|
28137
28381
|
export const preonboardingSellabilityResult: PropTypes.Requireable<io.flow.internal.v0.models.PreonboardingSellabilityResult>;
|
|
28138
28382
|
export const preonboardingSellabilityResultDeleted: PropTypes.Requireable<io.flow.internal.v0.models.PreonboardingSellabilityResultDeleted>;
|
|
28139
28383
|
export const preonboardingSellabilityResultInserted: PropTypes.Requireable<io.flow.internal.v0.models.PreonboardingSellabilityResultInserted>;
|
|
@@ -28237,7 +28481,9 @@ export const ratecardServiceFeesOverrideForm: PropTypes.Requireable<io.flow.inte
|
|
|
28237
28481
|
export const ratesChanged: PropTypes.Requireable<io.flow.internal.v0.models.RatesChanged>;
|
|
28238
28482
|
export const ratesNamesSummary: PropTypes.Requireable<io.flow.internal.v0.models.RatesNamesSummary>;
|
|
28239
28483
|
export const raveenaItem: PropTypes.Requireable<io.flow.internal.v0.models.RaveenaItem>;
|
|
28484
|
+
export const raveenaItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RaveenaItemDeleted>;
|
|
28240
28485
|
export const raveenaItemForm: PropTypes.Requireable<io.flow.internal.v0.models.RaveenaItemForm>;
|
|
28486
|
+
export const raveenaItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RaveenaItemUpserted>;
|
|
28241
28487
|
export const recordReference: PropTypes.Requireable<io.flow.internal.v0.models.RecordReference>;
|
|
28242
28488
|
export const redirect: PropTypes.Requireable<io.flow.internal.v0.models.Redirect>;
|
|
28243
28489
|
export const redirectActionCompleted: PropTypes.Requireable<io.flow.internal.v0.models.RedirectActionCompleted>;
|
|
@@ -28336,6 +28582,12 @@ export const restrictionRuleOverride: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
28336
28582
|
export const restrictionRuleSummary: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleSummary>;
|
|
28337
28583
|
export const restrictionRuleUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleUpserted>;
|
|
28338
28584
|
export const restrictionSummaryCounts: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionSummaryCounts>;
|
|
28585
|
+
export const restrictionsAthenaDailyopsFs: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionsAthenaDailyopsFs>;
|
|
28586
|
+
export const restrictionsAthenaDailyopsFsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsDeleted>;
|
|
28587
|
+
export const restrictionsAthenaDailyopsFsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsUpserted>;
|
|
28588
|
+
export const restrictionsAthenaDailyopsPcPv: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPv>;
|
|
28589
|
+
export const restrictionsAthenaDailyopsPcPvDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvDeleted>;
|
|
28590
|
+
export const restrictionsAthenaDailyopsPcPvUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvUpserted>;
|
|
28339
28591
|
export const restrictionsDailyops: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionsDailyops>;
|
|
28340
28592
|
export const restrictionsDailyopsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionsDailyopsDeleted>;
|
|
28341
28593
|
export const restrictionsDailyopsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionsDailyopsUpserted>;
|