@flowio/api-internal-prop-types 9.24.101 → 9.24.103
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 +202 -3
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +202 -3
- package/src/api-internal.js +473 -254
package/lib/api-internal.d.ts
CHANGED
|
@@ -3858,6 +3858,7 @@ declare namespace io.flow.label.v0.enums {
|
|
|
3858
3858
|
type Direction = 'outbound' | 'return';
|
|
3859
3859
|
type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'notification_requiring_crossdock' | 'flow_simulation_sync' | 'autogenerated';
|
|
3860
3860
|
type LabelTriggerMethod = 'autogenerated' | 'on_demand';
|
|
3861
|
+
type OriginLocationSource = 'public_hub_code' | 'merchant_hub_code_override' | 'shopify' | 'fallback_location';
|
|
3861
3862
|
type PackageDimensionsSource = 'provided' | 'item_dimensions_estimated' | 'dimensions_estimated' | 'default_item_dimensions_estimated';
|
|
3862
3863
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
3863
3864
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
@@ -3887,6 +3888,9 @@ declare namespace io.flow.label.v0.models {
|
|
|
3887
3888
|
readonly 'package'?: io.flow.label.v0.models.ShippingLabelPackage;
|
|
3888
3889
|
readonly 'origin'?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3889
3890
|
readonly 'direction'?: io.flow.label.v0.enums.Direction;
|
|
3891
|
+
readonly 'reference_id'?: string;
|
|
3892
|
+
readonly 'origin_location_source'?: io.flow.label.v0.enums.OriginLocationSource;
|
|
3893
|
+
readonly 'hub_code'?: string;
|
|
3890
3894
|
}
|
|
3891
3895
|
|
|
3892
3896
|
interface CrossdockShipment {
|
|
@@ -3909,6 +3913,8 @@ declare namespace io.flow.label.v0.models {
|
|
|
3909
3913
|
readonly 'service'?: string;
|
|
3910
3914
|
readonly 'shipment_recipient'?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
3911
3915
|
readonly 'package_dimensions_source'?: io.flow.label.v0.enums.PackageDimensionsSource;
|
|
3916
|
+
readonly 'origin_location_source'?: io.flow.label.v0.enums.OriginLocationSource;
|
|
3917
|
+
readonly 'reference_id'?: string;
|
|
3912
3918
|
}
|
|
3913
3919
|
|
|
3914
3920
|
interface DetailedShippingNotificationForm {
|
|
@@ -4087,6 +4093,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
4087
4093
|
readonly 'items': io.flow.common.v0.models.LineItemForm[];
|
|
4088
4094
|
readonly 'center_key'?: string;
|
|
4089
4095
|
readonly 'direction'?: io.flow.label.v0.enums.Direction;
|
|
4096
|
+
readonly 'reference_id'?: string;
|
|
4090
4097
|
}
|
|
4091
4098
|
|
|
4092
4099
|
interface SummaryShippingNotificationForm {
|
|
@@ -7463,6 +7470,7 @@ declare namespace io.flow.order.price.v0.models {
|
|
|
7463
7470
|
|
|
7464
7471
|
declare namespace io.flow.channel.internal.v0.enums {
|
|
7465
7472
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
7473
|
+
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
7466
7474
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
7467
7475
|
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
|
|
7468
7476
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
@@ -7518,6 +7526,15 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
7518
7526
|
readonly 'external_order': any/*object*/;
|
|
7519
7527
|
}
|
|
7520
7528
|
|
|
7529
|
+
interface ChannelOrderAcceptanceFailure {
|
|
7530
|
+
readonly 'id': string;
|
|
7531
|
+
readonly 'organization_id': string;
|
|
7532
|
+
readonly 'channel_id': string;
|
|
7533
|
+
readonly 'payment_request_id': string;
|
|
7534
|
+
readonly 'code': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode;
|
|
7535
|
+
readonly 'reason': string;
|
|
7536
|
+
}
|
|
7537
|
+
|
|
7521
7538
|
interface ChannelOrderAcceptanceForm {
|
|
7522
7539
|
readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
7523
7540
|
}
|
|
@@ -10669,6 +10686,9 @@ declare namespace io.flow.tracking.v0.models {
|
|
|
10669
10686
|
readonly 'delivered'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
10670
10687
|
readonly 'rejected'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
10671
10688
|
readonly 'returned'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
10689
|
+
readonly 'crossed_border'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
10690
|
+
readonly 'destroyed'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
10691
|
+
readonly 'return_reversal'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
10672
10692
|
}
|
|
10673
10693
|
|
|
10674
10694
|
interface LabelTrackingSummaryUpdate {
|
|
@@ -13921,6 +13941,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13921
13941
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
13922
13942
|
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
13923
13943
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
13944
|
+
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
13924
13945
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
13925
13946
|
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
|
|
13926
13947
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
@@ -13976,7 +13997,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13976
13997
|
type EldarItemType = 'digital' | 'physical';
|
|
13977
13998
|
type EmptyAttribute = 'irrelevant';
|
|
13978
13999
|
type ErpFileType = 'vendor';
|
|
13979
|
-
type EventType = 'adjusted_estimates_upserted' | 'adjusted_estimates_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' | 'index_assignment_upserted' | 'index_assignment_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' | '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' | 'label_generation_settings_upserted' | 'label_generation_settings_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' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | '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' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | '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' | 'organization_boolean_value_upserted' | 'organization_boolean_value_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' | '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' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | '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' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | '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_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | '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' | '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' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_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' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_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_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_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_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' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'eldar_item_upserted' | 'eldar_item_deleted' | 'harinath_item_upserted' | 'harinath_item_deleted' | 'konstantin_item_upserted' | 'konstantin_item_deleted' | 'matias_item_upserted' | 'matias_item_deleted' | 'michaelyan_item_upserted' | 'michaelyan_item_deleted' | 'miljenko_item_upserted' | 'miljenko_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'thiago_item_upserted' | 'thiago_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_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
14000
|
+
type EventType = 'adjusted_estimates_upserted' | 'adjusted_estimates_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' | 'index_assignment_upserted' | 'index_assignment_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' | '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' | 'label_generation_settings_upserted' | 'label_generation_settings_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' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | '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' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | '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' | 'organization_boolean_value_upserted' | 'organization_boolean_value_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' | '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' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | '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' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | '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_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | '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' | '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' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_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' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_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_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_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_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' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'eldar_item_upserted' | 'eldar_item_deleted' | 'harinath_item_upserted' | 'harinath_item_deleted' | 'konstantin_item_upserted' | 'konstantin_item_deleted' | 'matias_item_upserted' | 'matias_item_deleted' | 'michaelyan_item_upserted' | 'michaelyan_item_deleted' | 'miljenko_item_upserted' | 'miljenko_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'thiago_item_upserted' | 'thiago_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_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
13980
14001
|
type ExperienceImportType = 'experience_with_settings';
|
|
13981
14002
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
13982
14003
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -14086,7 +14107,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14086
14107
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
14087
14108
|
type ReportPaymentType = 'credit' | 'debit';
|
|
14088
14109
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
14089
|
-
type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'account_quarterly_balances' | 'invariants' | 'payments';
|
|
14110
|
+
type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'account_quarterly_balances' | 'invariants' | 'payments' | 'reconcile_not_recorded' | 'products_record';
|
|
14090
14111
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
14091
14112
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
14092
14113
|
type ResponsibleParty = 'flow' | 'organization';
|
|
@@ -14558,6 +14579,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14558
14579
|
readonly 'capture': io.flow.internal.v0.models.AdyenInternalCapture;
|
|
14559
14580
|
}
|
|
14560
14581
|
|
|
14582
|
+
interface AdyenDisputeDeleted {
|
|
14583
|
+
readonly 'discriminator': 'adyen_dispute_deleted';
|
|
14584
|
+
readonly 'event_id': string;
|
|
14585
|
+
readonly 'timestamp': string;
|
|
14586
|
+
readonly 'id': string;
|
|
14587
|
+
}
|
|
14588
|
+
|
|
14589
|
+
interface AdyenDisputeUpserted {
|
|
14590
|
+
readonly 'discriminator': 'adyen_dispute_upserted';
|
|
14591
|
+
readonly 'event_id': string;
|
|
14592
|
+
readonly 'timestamp': string;
|
|
14593
|
+
readonly 'dispute': io.flow.internal.v0.models.AdyenInternalDispute;
|
|
14594
|
+
}
|
|
14595
|
+
|
|
14561
14596
|
interface AdyenInternalAuthorization {
|
|
14562
14597
|
readonly 'id': string;
|
|
14563
14598
|
readonly 'flow_authorization_id': string;
|
|
@@ -14599,6 +14634,32 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14599
14634
|
readonly 'response': string;
|
|
14600
14635
|
}
|
|
14601
14636
|
|
|
14637
|
+
interface AdyenInternalDispute {
|
|
14638
|
+
readonly 'id': string;
|
|
14639
|
+
readonly 'amount': number;
|
|
14640
|
+
readonly 'currency': string;
|
|
14641
|
+
readonly 'psp_reference': string;
|
|
14642
|
+
readonly 'original_reference'?: string;
|
|
14643
|
+
readonly 'event_code': string;
|
|
14644
|
+
readonly 'event_date': string;
|
|
14645
|
+
readonly 'chargeback_reason_code'?: string;
|
|
14646
|
+
readonly 'modification_merchant_references'?: string;
|
|
14647
|
+
readonly 'chargeback_scheme_code'?: string;
|
|
14648
|
+
readonly 'defense_period_ends_at'?: string;
|
|
14649
|
+
readonly 'dispute_status'?: string;
|
|
14650
|
+
readonly 'defendable'?: string;
|
|
14651
|
+
readonly 'merchant_account_code': string;
|
|
14652
|
+
readonly 'operations'?: string[];
|
|
14653
|
+
readonly 'merchant_reference': string;
|
|
14654
|
+
readonly 'payment_method'?: string;
|
|
14655
|
+
readonly 'reason'?: string;
|
|
14656
|
+
readonly 'success': string;
|
|
14657
|
+
readonly 'livemode': boolean;
|
|
14658
|
+
readonly 'updated_by_user_id': string;
|
|
14659
|
+
readonly 'created_at': string;
|
|
14660
|
+
readonly 'updated_at': string;
|
|
14661
|
+
}
|
|
14662
|
+
|
|
14602
14663
|
interface AdyenInternalRefund {
|
|
14603
14664
|
readonly 'id': string;
|
|
14604
14665
|
readonly 'flow_refund_id': string;
|
|
@@ -15508,6 +15569,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15508
15569
|
readonly 'calculator_organization_settings': io.flow.internal.v0.models.CalculatorOrganizationSettings;
|
|
15509
15570
|
}
|
|
15510
15571
|
|
|
15572
|
+
interface CallRecord {
|
|
15573
|
+
readonly 'id': string;
|
|
15574
|
+
readonly 'request_body'?: any/*json*/;
|
|
15575
|
+
}
|
|
15576
|
+
|
|
15511
15577
|
interface CarrierAccount {
|
|
15512
15578
|
readonly 'id': string;
|
|
15513
15579
|
readonly 'carrier': io.flow.fulfillment.v0.models.CarrierReference;
|
|
@@ -15761,6 +15827,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15761
15827
|
readonly 'id': string;
|
|
15762
15828
|
readonly 'packaging': io.flow.fulfillment.v0.models.Packaging[];
|
|
15763
15829
|
readonly 'shipping_address_contact': io.flow.common.v0.models.Contact;
|
|
15830
|
+
readonly 'location_fallback'?: io.flow.common.v0.models.Address;
|
|
15764
15831
|
}
|
|
15765
15832
|
|
|
15766
15833
|
interface CenterDefaultsDeleted {
|
|
@@ -15774,6 +15841,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15774
15841
|
interface CenterDefaultsForm {
|
|
15775
15842
|
readonly 'packaging': io.flow.fulfillment.v0.models.Packaging[];
|
|
15776
15843
|
readonly 'shipping_address_contact': io.flow.common.v0.models.Contact;
|
|
15844
|
+
readonly 'location_fallback'?: io.flow.common.v0.models.Address;
|
|
15777
15845
|
}
|
|
15778
15846
|
|
|
15779
15847
|
interface CenterDefaultsUpserted {
|
|
@@ -16000,6 +16068,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16000
16068
|
readonly 'external_order': any/*object*/;
|
|
16001
16069
|
}
|
|
16002
16070
|
|
|
16071
|
+
interface ChannelOrderAcceptanceFailed {
|
|
16072
|
+
readonly 'discriminator': 'channel_order_acceptance_failed';
|
|
16073
|
+
readonly 'event_id': string;
|
|
16074
|
+
readonly 'timestamp': string;
|
|
16075
|
+
readonly 'organization': string;
|
|
16076
|
+
readonly 'channel_id': string;
|
|
16077
|
+
readonly 'channel_order_acceptance_failure': io.flow.internal.v0.models.ChannelOrderAcceptanceFailure;
|
|
16078
|
+
}
|
|
16079
|
+
|
|
16080
|
+
interface ChannelOrderAcceptanceFailure {
|
|
16081
|
+
readonly 'id': string;
|
|
16082
|
+
readonly 'organization_id': string;
|
|
16083
|
+
readonly 'channel_id': string;
|
|
16084
|
+
readonly 'payment_request_id': string;
|
|
16085
|
+
readonly 'code': io.flow.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode;
|
|
16086
|
+
readonly 'reason': string;
|
|
16087
|
+
}
|
|
16088
|
+
|
|
16003
16089
|
interface ChannelOrderAcceptanceForm {
|
|
16004
16090
|
readonly 'status': io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
16005
16091
|
}
|
|
@@ -17335,6 +17421,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17335
17421
|
readonly 'issued_at': string;
|
|
17336
17422
|
readonly 'expires_at'?: string;
|
|
17337
17423
|
readonly 'created_at': string;
|
|
17424
|
+
readonly 'updated_at'?: string;
|
|
17338
17425
|
}
|
|
17339
17426
|
|
|
17340
17427
|
interface DisputeAuthorizationReference {
|
|
@@ -19932,6 +20019,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19932
20019
|
readonly 'suggested_responsibility'?: io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
19933
20020
|
readonly 'origin_country'?: string;
|
|
19934
20021
|
readonly 'destination_country'?: string;
|
|
20022
|
+
readonly 'reference_id'?: string;
|
|
20023
|
+
readonly 'logistics_integration_provider'?: string;
|
|
19935
20024
|
}
|
|
19936
20025
|
|
|
19937
20026
|
interface LabelSummary {
|
|
@@ -20864,6 +20953,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20864
20953
|
readonly 'merchant_guid_assignment': io.flow.internal.v0.models.MerchantGuidAssignment;
|
|
20865
20954
|
}
|
|
20866
20955
|
|
|
20956
|
+
interface MerchantHubOverride {
|
|
20957
|
+
readonly 'id': string;
|
|
20958
|
+
readonly 'organization_id': string;
|
|
20959
|
+
readonly 'code': string;
|
|
20960
|
+
readonly 'contact': io.flow.common.v0.models.Contact;
|
|
20961
|
+
readonly 'location': io.flow.common.v0.models.Address;
|
|
20962
|
+
}
|
|
20963
|
+
|
|
20964
|
+
interface MerchantHubOverrideForm {
|
|
20965
|
+
readonly 'code': string;
|
|
20966
|
+
readonly 'contact': io.flow.common.v0.models.Contact;
|
|
20967
|
+
readonly 'location': io.flow.common.v0.models.Address;
|
|
20968
|
+
}
|
|
20969
|
+
|
|
20867
20970
|
interface MerchantOfRecordEntitySettings {
|
|
20868
20971
|
readonly 'id': string;
|
|
20869
20972
|
readonly 'merchant_of_record_entity': io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
@@ -22726,6 +22829,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22726
22829
|
readonly 'next_product'?: io.flow.internal.v0.models.ClassificationProductId;
|
|
22727
22830
|
}
|
|
22728
22831
|
|
|
22832
|
+
interface ProductCurrencies {
|
|
22833
|
+
readonly 'transaction': string;
|
|
22834
|
+
readonly 'destination': string;
|
|
22835
|
+
}
|
|
22836
|
+
|
|
22729
22837
|
interface ProductDetailSettingsForm {
|
|
22730
22838
|
readonly 'keys': string[];
|
|
22731
22839
|
}
|
|
@@ -22753,6 +22861,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22753
22861
|
readonly 'column_settings': io.flow.internal.v0.models.HarmonizationColumnSetting[];
|
|
22754
22862
|
}
|
|
22755
22863
|
|
|
22864
|
+
interface ProductRecord {
|
|
22865
|
+
readonly 'organization_id': string;
|
|
22866
|
+
readonly 'order_number': string;
|
|
22867
|
+
readonly 'fulfillment_id': string;
|
|
22868
|
+
readonly 'currencies': io.flow.internal.v0.models.ProductCurrencies;
|
|
22869
|
+
readonly 'products': io.flow.internal.v0.models.ProductTransaction[];
|
|
22870
|
+
}
|
|
22871
|
+
|
|
22756
22872
|
interface ProductRestrictionResultValidationError {
|
|
22757
22873
|
readonly 'message': string;
|
|
22758
22874
|
readonly 'reason': string;
|
|
@@ -22798,6 +22914,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22798
22914
|
readonly 'reviews': io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
|
|
22799
22915
|
}
|
|
22800
22916
|
|
|
22917
|
+
interface ProductTransaction {
|
|
22918
|
+
readonly 'transaction_amount': number;
|
|
22919
|
+
readonly 'destination_amount': number;
|
|
22920
|
+
readonly 'quantity': number;
|
|
22921
|
+
}
|
|
22922
|
+
|
|
22801
22923
|
interface Profit {
|
|
22802
22924
|
readonly 'key': io.flow.internal.v0.enums.ProfitStreamKey;
|
|
22803
22925
|
readonly 'principal': io.flow.internal.v0.models.Principal;
|
|
@@ -22872,6 +22994,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22872
22994
|
readonly 'created_at': string;
|
|
22873
22995
|
}
|
|
22874
22996
|
|
|
22997
|
+
interface PublicHub {
|
|
22998
|
+
readonly 'id': string;
|
|
22999
|
+
readonly 'code': string;
|
|
23000
|
+
readonly 'third_party_logistics_reference': string;
|
|
23001
|
+
readonly 'contact': io.flow.common.v0.models.Contact;
|
|
23002
|
+
readonly 'location': io.flow.common.v0.models.Address;
|
|
23003
|
+
}
|
|
23004
|
+
|
|
23005
|
+
interface PublicHubForm {
|
|
23006
|
+
readonly 'code': string;
|
|
23007
|
+
readonly 'third_party_logistics_reference': string;
|
|
23008
|
+
readonly 'contact': io.flow.common.v0.models.Contact;
|
|
23009
|
+
readonly 'location': io.flow.common.v0.models.Address;
|
|
23010
|
+
}
|
|
23011
|
+
|
|
22875
23012
|
interface Quote {
|
|
22876
23013
|
readonly 'id': string;
|
|
22877
23014
|
readonly 'base': string;
|
|
@@ -23430,6 +23567,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23430
23567
|
interface ReportingConversionRates {
|
|
23431
23568
|
readonly 'merchant': number;
|
|
23432
23569
|
readonly 'entity': number;
|
|
23570
|
+
readonly 'destination_country'?: number;
|
|
23433
23571
|
readonly 'usd': number;
|
|
23434
23572
|
readonly 'eur': number;
|
|
23435
23573
|
}
|
|
@@ -23443,6 +23581,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23443
23581
|
readonly 'transaction': string;
|
|
23444
23582
|
readonly 'merchant': string;
|
|
23445
23583
|
readonly 'entity': string;
|
|
23584
|
+
readonly 'destination_country'?: string;
|
|
23446
23585
|
}
|
|
23447
23586
|
|
|
23448
23587
|
interface ReportingDebug {
|
|
@@ -23564,6 +23703,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23564
23703
|
readonly 'transaction': number;
|
|
23565
23704
|
readonly 'merchant': number;
|
|
23566
23705
|
readonly 'entity': number;
|
|
23706
|
+
readonly 'destination_country'?: number;
|
|
23567
23707
|
readonly 'usd': number;
|
|
23568
23708
|
readonly 'eur': number;
|
|
23569
23709
|
}
|
|
@@ -25166,6 +25306,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25166
25306
|
readonly 'capture': io.flow.internal.v0.models.StripeInternalCapture;
|
|
25167
25307
|
}
|
|
25168
25308
|
|
|
25309
|
+
interface StripeDisputeDeleted {
|
|
25310
|
+
readonly 'discriminator': 'stripe_dispute_deleted';
|
|
25311
|
+
readonly 'event_id': string;
|
|
25312
|
+
readonly 'timestamp': string;
|
|
25313
|
+
readonly 'id': string;
|
|
25314
|
+
}
|
|
25315
|
+
|
|
25316
|
+
interface StripeDisputeUpserted {
|
|
25317
|
+
readonly 'discriminator': 'stripe_dispute_upserted';
|
|
25318
|
+
readonly 'event_id': string;
|
|
25319
|
+
readonly 'timestamp': string;
|
|
25320
|
+
readonly 'dispute': io.flow.internal.v0.models.StripeInternalDispute;
|
|
25321
|
+
}
|
|
25322
|
+
|
|
25169
25323
|
interface StripeInternalAuthorization {
|
|
25170
25324
|
readonly 'id': string;
|
|
25171
25325
|
readonly 'flow_authorization_id': string;
|
|
@@ -25187,6 +25341,34 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25187
25341
|
readonly 'response': any/*object*/;
|
|
25188
25342
|
}
|
|
25189
25343
|
|
|
25344
|
+
interface StripeInternalDispute {
|
|
25345
|
+
readonly 'id': string;
|
|
25346
|
+
readonly 'stripe_id': string;
|
|
25347
|
+
readonly 'amount': number;
|
|
25348
|
+
readonly 'charge_id': string;
|
|
25349
|
+
readonly 'currency': string;
|
|
25350
|
+
readonly 'evidence': any/*object*/;
|
|
25351
|
+
readonly 'metadata': any/*object*/;
|
|
25352
|
+
readonly 'payment_intent_id'?: string;
|
|
25353
|
+
readonly 'reason': string;
|
|
25354
|
+
readonly 'status': string;
|
|
25355
|
+
readonly 'connected_account'?: string;
|
|
25356
|
+
readonly 'balance_transactions': any/*object*/[];
|
|
25357
|
+
readonly 'dispute_created_at': string;
|
|
25358
|
+
readonly 'dispute_expires_at'?: string;
|
|
25359
|
+
readonly 'has_evidence'?: boolean;
|
|
25360
|
+
readonly 'past_due'?: boolean;
|
|
25361
|
+
readonly 'submission_count'?: number;
|
|
25362
|
+
readonly 'is_charge_refundable': boolean;
|
|
25363
|
+
readonly 'live_mode': boolean;
|
|
25364
|
+
readonly 'payment_method_type'?: string;
|
|
25365
|
+
readonly 'payment_method_reason_code'?: string;
|
|
25366
|
+
readonly 'payment_method_card_brand'?: string;
|
|
25367
|
+
readonly 'updated_by_user_id': string;
|
|
25368
|
+
readonly 'created_at': string;
|
|
25369
|
+
readonly 'updated_at': string;
|
|
25370
|
+
}
|
|
25371
|
+
|
|
25190
25372
|
interface StripeInternalRefund {
|
|
25191
25373
|
readonly 'id': string;
|
|
25192
25374
|
readonly 'flow_refund_id': string;
|
|
@@ -26231,7 +26413,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26231
26413
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
26232
26414
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
|
|
26233
26415
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
26234
|
-
type Event = (io.flow.internal.v0.models.AdjustedEstimatesUpserted | io.flow.internal.v0.models.AdjustedEstimatesDeleted | 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.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | 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.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.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | 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.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | 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.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | 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.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | 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.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.PregeneratedRequestEvent | 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.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | 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.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | 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.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | 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.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | 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.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.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.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | 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.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | 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.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | 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.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.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | 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.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.EldarItemUpserted | io.flow.internal.v0.models.EldarItemDeleted | io.flow.internal.v0.models.HarinathItemUpserted | io.flow.internal.v0.models.HarinathItemDeleted | io.flow.internal.v0.models.KonstantinItemUpserted | io.flow.internal.v0.models.KonstantinItemDeleted | io.flow.internal.v0.models.MatiasItemUpserted | io.flow.internal.v0.models.MatiasItemDeleted | io.flow.internal.v0.models.MichaelyanItemUpserted | io.flow.internal.v0.models.MichaelyanItemDeleted | io.flow.internal.v0.models.MiljenkoItemUpserted | io.flow.internal.v0.models.MiljenkoItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | io.flow.internal.v0.models.ThiagoItemUpserted | io.flow.internal.v0.models.ThiagoItemDeleted | 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.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
26416
|
+
type Event = (io.flow.internal.v0.models.AdjustedEstimatesUpserted | io.flow.internal.v0.models.AdjustedEstimatesDeleted | 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.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | 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.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.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | 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.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | 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.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | 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.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | 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.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.PregeneratedRequestEvent | 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.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | 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.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | 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.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | 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.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | 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.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.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.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | 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.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | 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.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | 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.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.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | 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.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.EldarItemUpserted | io.flow.internal.v0.models.EldarItemDeleted | io.flow.internal.v0.models.HarinathItemUpserted | io.flow.internal.v0.models.HarinathItemDeleted | io.flow.internal.v0.models.KonstantinItemUpserted | io.flow.internal.v0.models.KonstantinItemDeleted | io.flow.internal.v0.models.MatiasItemUpserted | io.flow.internal.v0.models.MatiasItemDeleted | io.flow.internal.v0.models.MichaelyanItemUpserted | io.flow.internal.v0.models.MichaelyanItemDeleted | io.flow.internal.v0.models.MiljenkoItemUpserted | io.flow.internal.v0.models.MiljenkoItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | io.flow.internal.v0.models.ThiagoItemUpserted | io.flow.internal.v0.models.ThiagoItemDeleted | 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.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
26235
26417
|
type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
|
|
26236
26418
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
26237
26419
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -26319,6 +26501,7 @@ export const carrierValidationStatus: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
26319
26501
|
export const catalogImportType: PropTypes.Requireable<io.flow.internal.v0.enums.CatalogImportType>;
|
|
26320
26502
|
export const channelBilledTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelBilledTransactionType>;
|
|
26321
26503
|
export const channelOrderAcceptanceErrorAction: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction>;
|
|
26504
|
+
export const channelOrderAcceptanceFailureReasonCode: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode>;
|
|
26322
26505
|
export const channelOrderAcceptanceNextActionFrom: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom>;
|
|
26323
26506
|
export const channelOrderAcceptanceRejectionReason: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceRejectionReason>;
|
|
26324
26507
|
export const channelOrderAcceptanceStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus>;
|
|
@@ -26592,9 +26775,12 @@ export const adyenCancelDeleted: PropTypes.Requireable<io.flow.internal.v0.model
|
|
|
26592
26775
|
export const adyenCancelUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdyenCancelUpserted>;
|
|
26593
26776
|
export const adyenCaptureDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AdyenCaptureDeleted>;
|
|
26594
26777
|
export const adyenCaptureUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdyenCaptureUpserted>;
|
|
26778
|
+
export const adyenDisputeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AdyenDisputeDeleted>;
|
|
26779
|
+
export const adyenDisputeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdyenDisputeUpserted>;
|
|
26595
26780
|
export const adyenInternalAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.AdyenInternalAuthorization>;
|
|
26596
26781
|
export const adyenInternalCancel: PropTypes.Requireable<io.flow.internal.v0.models.AdyenInternalCancel>;
|
|
26597
26782
|
export const adyenInternalCapture: PropTypes.Requireable<io.flow.internal.v0.models.AdyenInternalCapture>;
|
|
26783
|
+
export const adyenInternalDispute: PropTypes.Requireable<io.flow.internal.v0.models.AdyenInternalDispute>;
|
|
26598
26784
|
export const adyenInternalRefund: PropTypes.Requireable<io.flow.internal.v0.models.AdyenInternalRefund>;
|
|
26599
26785
|
export const adyenMerchant: PropTypes.Requireable<io.flow.internal.v0.models.AdyenMerchant>;
|
|
26600
26786
|
export const adyenMerchantAccount: PropTypes.Requireable<io.flow.internal.v0.models.AdyenMerchantAccount>;
|
|
@@ -26720,6 +26906,7 @@ export const calculatorOrganizationSettings: PropTypes.Requireable<io.flow.inter
|
|
|
26720
26906
|
export const calculatorOrganizationSettingsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted>;
|
|
26721
26907
|
export const calculatorOrganizationSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.CalculatorOrganizationSettingsForm>;
|
|
26722
26908
|
export const calculatorOrganizationSettingsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted>;
|
|
26909
|
+
export const callRecord: PropTypes.Requireable<io.flow.internal.v0.models.CallRecord>;
|
|
26723
26910
|
export const carrierAccount: PropTypes.Requireable<io.flow.internal.v0.models.CarrierAccount>;
|
|
26724
26911
|
export const carrierAccountDeleted: PropTypes.Requireable<io.flow.internal.v0.models.CarrierAccountDeleted>;
|
|
26725
26912
|
export const carrierAccountForm: PropTypes.Requireable<io.flow.internal.v0.models.CarrierAccountForm>;
|
|
@@ -26782,6 +26969,8 @@ export const channelOrder: PropTypes.Requireable<io.flow.internal.v0.models.Chan
|
|
|
26782
26969
|
export const channelOrderAcceptance: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptance>;
|
|
26783
26970
|
export const channelOrderAcceptanceDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted>;
|
|
26784
26971
|
export const channelOrderAcceptanceDetails: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceDetails>;
|
|
26972
|
+
export const channelOrderAcceptanceFailed: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceFailed>;
|
|
26973
|
+
export const channelOrderAcceptanceFailure: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceFailure>;
|
|
26785
26974
|
export const channelOrderAcceptanceForm: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceForm>;
|
|
26786
26975
|
export const channelOrderAcceptanceReason: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceReason>;
|
|
26787
26976
|
export const channelOrderAcceptanceUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted>;
|
|
@@ -27416,6 +27605,8 @@ export const merchantFees: PropTypes.Requireable<io.flow.internal.v0.models.Merc
|
|
|
27416
27605
|
export const merchantGuidAssignment: PropTypes.Requireable<io.flow.internal.v0.models.MerchantGuidAssignment>;
|
|
27417
27606
|
export const merchantGuidAssignmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MerchantGuidAssignmentDeleted>;
|
|
27418
27607
|
export const merchantGuidAssignmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MerchantGuidAssignmentUpserted>;
|
|
27608
|
+
export const merchantHubOverride: PropTypes.Requireable<io.flow.internal.v0.models.MerchantHubOverride>;
|
|
27609
|
+
export const merchantHubOverrideForm: PropTypes.Requireable<io.flow.internal.v0.models.MerchantHubOverrideForm>;
|
|
27419
27610
|
export const merchantOfRecordEntitySettings: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOfRecordEntitySettings>;
|
|
27420
27611
|
export const merchantOfRecordEntitySettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOfRecordEntitySettingsForm>;
|
|
27421
27612
|
export const merchantSearchResult: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSearchResult>;
|
|
@@ -27654,16 +27845,19 @@ export const productClassification: PropTypes.Requireable<io.flow.internal.v0.mo
|
|
|
27654
27845
|
export const productClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.ProductClassificationForm>;
|
|
27655
27846
|
export const productClassificationJudgementForm: PropTypes.Requireable<io.flow.internal.v0.models.ProductClassificationJudgementForm>;
|
|
27656
27847
|
export const productClassificationResult: PropTypes.Requireable<io.flow.internal.v0.models.ProductClassificationResult>;
|
|
27848
|
+
export const productCurrencies: PropTypes.Requireable<io.flow.internal.v0.models.ProductCurrencies>;
|
|
27657
27849
|
export const productDetailSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.ProductDetailSettingsForm>;
|
|
27658
27850
|
export const productHarmonization: PropTypes.Requireable<io.flow.internal.v0.models.ProductHarmonization>;
|
|
27659
27851
|
export const productHarmonizationForm: PropTypes.Requireable<io.flow.internal.v0.models.ProductHarmonizationForm>;
|
|
27660
27852
|
export const productLabels: PropTypes.Requireable<io.flow.internal.v0.models.ProductLabels>;
|
|
27661
27853
|
export const productListSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.ProductListSettingsForm>;
|
|
27854
|
+
export const productRecord: PropTypes.Requireable<io.flow.internal.v0.models.ProductRecord>;
|
|
27662
27855
|
export const productRestrictionResultValidationError: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionResultValidationError>;
|
|
27663
27856
|
export const productRestrictionRuleDecision: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionRuleDecision>;
|
|
27664
27857
|
export const productRestrictionRuleDecisionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted>;
|
|
27665
27858
|
export const productRestrictionRuleDecisionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted>;
|
|
27666
27859
|
export const productReviewHistory: PropTypes.Requireable<io.flow.internal.v0.models.ProductReviewHistory>;
|
|
27860
|
+
export const productTransaction: PropTypes.Requireable<io.flow.internal.v0.models.ProductTransaction>;
|
|
27667
27861
|
export const profit: PropTypes.Requireable<io.flow.internal.v0.models.Profit>;
|
|
27668
27862
|
export const profitShare: PropTypes.Requireable<io.flow.internal.v0.models.ProfitShare>;
|
|
27669
27863
|
export const profitShareOrderReference: PropTypes.Requireable<io.flow.internal.v0.models.ProfitShareOrderReference>;
|
|
@@ -27677,6 +27871,8 @@ export const proofOfPostingOrderCancellation: PropTypes.Requireable<io.flow.inte
|
|
|
27677
27871
|
export const proofOfPostingOrderCombinedShipment: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment>;
|
|
27678
27872
|
export const proofOfPostingShippingNotification: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingShippingNotification>;
|
|
27679
27873
|
export const proofOfPostingTimeElapsed: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingTimeElapsed>;
|
|
27874
|
+
export const publicHub: PropTypes.Requireable<io.flow.internal.v0.models.PublicHub>;
|
|
27875
|
+
export const publicHubForm: PropTypes.Requireable<io.flow.internal.v0.models.PublicHubForm>;
|
|
27680
27876
|
export const quote: PropTypes.Requireable<io.flow.internal.v0.models.Quote>;
|
|
27681
27877
|
export const quoteDeleted: PropTypes.Requireable<io.flow.internal.v0.models.QuoteDeleted>;
|
|
27682
27878
|
export const quoteRequest: PropTypes.Requireable<io.flow.internal.v0.models.QuoteRequest>;
|
|
@@ -28002,8 +28198,11 @@ export const stripeAuthorizationDeleted: PropTypes.Requireable<io.flow.internal.
|
|
|
28002
28198
|
export const stripeAuthorizationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.StripeAuthorizationUpserted>;
|
|
28003
28199
|
export const stripeCaptureDeleted: PropTypes.Requireable<io.flow.internal.v0.models.StripeCaptureDeleted>;
|
|
28004
28200
|
export const stripeCaptureUpserted: PropTypes.Requireable<io.flow.internal.v0.models.StripeCaptureUpserted>;
|
|
28201
|
+
export const stripeDisputeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.StripeDisputeDeleted>;
|
|
28202
|
+
export const stripeDisputeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.StripeDisputeUpserted>;
|
|
28005
28203
|
export const stripeInternalAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.StripeInternalAuthorization>;
|
|
28006
28204
|
export const stripeInternalCapture: PropTypes.Requireable<io.flow.internal.v0.models.StripeInternalCapture>;
|
|
28205
|
+
export const stripeInternalDispute: PropTypes.Requireable<io.flow.internal.v0.models.StripeInternalDispute>;
|
|
28007
28206
|
export const stripeInternalRefund: PropTypes.Requireable<io.flow.internal.v0.models.StripeInternalRefund>;
|
|
28008
28207
|
export const stripeInternalReversal: PropTypes.Requireable<io.flow.internal.v0.models.StripeInternalReversal>;
|
|
28009
28208
|
export const stripeMerchant: PropTypes.Requireable<io.flow.internal.v0.models.StripeMerchant>;
|