@flowio/types 11.24.103 → 11.24.105
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +185 -3
- package/dist/api.d.ts +12 -1
- package/package.json +2 -2
- package/src/api-internal.ts +231 -1
- package/src/api.ts +16 -0
package/dist/api-internal.d.ts
CHANGED
|
@@ -3364,6 +3364,7 @@ declare namespace io.flow.label.v0.enums {
|
|
|
3364
3364
|
type Direction = 'outbound' | 'return';
|
|
3365
3365
|
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';
|
|
3366
3366
|
type LabelTriggerMethod = 'autogenerated' | 'on_demand';
|
|
3367
|
+
type OriginLocationSource = 'public_hub_code' | 'merchant_hub_code_override' | 'shopify' | 'fallback_location';
|
|
3367
3368
|
type PackageDimensionsSource = 'provided' | 'item_dimensions_estimated' | 'dimensions_estimated' | 'default_item_dimensions_estimated';
|
|
3368
3369
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
3369
3370
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
@@ -3389,6 +3390,9 @@ declare namespace io.flow.label.v0.models {
|
|
|
3389
3390
|
readonly package?: io.flow.label.v0.models.ShippingLabelPackage;
|
|
3390
3391
|
readonly origin?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3391
3392
|
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
3393
|
+
readonly reference_id?: string;
|
|
3394
|
+
readonly origin_location_source?: io.flow.label.v0.enums.OriginLocationSource;
|
|
3395
|
+
readonly hub_code?: string;
|
|
3392
3396
|
}
|
|
3393
3397
|
interface CrossdockShipment {
|
|
3394
3398
|
readonly partner_id: string;
|
|
@@ -3409,6 +3413,8 @@ declare namespace io.flow.label.v0.models {
|
|
|
3409
3413
|
readonly service?: string;
|
|
3410
3414
|
readonly shipment_recipient?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
3411
3415
|
readonly package_dimensions_source?: io.flow.label.v0.enums.PackageDimensionsSource;
|
|
3416
|
+
readonly origin_location_source?: io.flow.label.v0.enums.OriginLocationSource;
|
|
3417
|
+
readonly reference_id?: string;
|
|
3412
3418
|
}
|
|
3413
3419
|
interface DetailedShippingNotificationForm {
|
|
3414
3420
|
readonly discriminator: 'detailed_shipping_notification_form';
|
|
@@ -3568,6 +3574,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
3568
3574
|
readonly items: io.flow.common.v0.models.LineItemForm[];
|
|
3569
3575
|
readonly center_key?: string;
|
|
3570
3576
|
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
3577
|
+
readonly reference_id?: string;
|
|
3571
3578
|
}
|
|
3572
3579
|
interface SummaryShippingNotificationForm {
|
|
3573
3580
|
readonly discriminator: 'summary_shipping_notification_form';
|
|
@@ -6551,6 +6558,7 @@ declare namespace io.flow.order.price.v0.models {
|
|
|
6551
6558
|
}
|
|
6552
6559
|
declare namespace io.flow.channel.internal.v0.enums {
|
|
6553
6560
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
6561
|
+
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
6554
6562
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
6555
6563
|
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';
|
|
6556
6564
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
@@ -6598,6 +6606,14 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
6598
6606
|
readonly order_acceptance: io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
|
|
6599
6607
|
readonly external_order: any;
|
|
6600
6608
|
}
|
|
6609
|
+
interface ChannelOrderAcceptanceFailure {
|
|
6610
|
+
readonly id: string;
|
|
6611
|
+
readonly organization_id: string;
|
|
6612
|
+
readonly channel_id: string;
|
|
6613
|
+
readonly payment_request_id: string;
|
|
6614
|
+
readonly code: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode;
|
|
6615
|
+
readonly reason: string;
|
|
6616
|
+
}
|
|
6601
6617
|
interface ChannelOrderAcceptanceForm {
|
|
6602
6618
|
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
6603
6619
|
}
|
|
@@ -9302,6 +9318,9 @@ declare namespace io.flow.tracking.v0.models {
|
|
|
9302
9318
|
readonly delivered?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
9303
9319
|
readonly rejected?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
9304
9320
|
readonly returned?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
9321
|
+
readonly crossed_border?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
9322
|
+
readonly destroyed?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
9323
|
+
readonly return_reversal?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
9305
9324
|
}
|
|
9306
9325
|
interface LabelTrackingSummaryUpdate {
|
|
9307
9326
|
readonly timestamp: string;
|
|
@@ -12098,6 +12117,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12098
12117
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
12099
12118
|
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
12100
12119
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
12120
|
+
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
12101
12121
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
12102
12122
|
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';
|
|
12103
12123
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
@@ -12153,7 +12173,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12153
12173
|
type EldarItemType = 'digital' | 'physical';
|
|
12154
12174
|
type EmptyAttribute = 'irrelevant';
|
|
12155
12175
|
type ErpFileType = 'vendor';
|
|
12156
|
-
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';
|
|
12176
|
+
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';
|
|
12157
12177
|
type ExperienceImportType = 'experience_with_settings';
|
|
12158
12178
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
12159
12179
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -12263,7 +12283,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12263
12283
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
12264
12284
|
type ReportPaymentType = 'credit' | 'debit';
|
|
12265
12285
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
12266
|
-
type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'account_quarterly_balances' | 'invariants' | 'payments';
|
|
12286
|
+
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';
|
|
12267
12287
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
12268
12288
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
12269
12289
|
type ResponsibleParty = 'flow' | 'organization';
|
|
@@ -12678,6 +12698,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12678
12698
|
readonly timestamp: string;
|
|
12679
12699
|
readonly capture: io.flow.internal.v0.models.AdyenInternalCapture;
|
|
12680
12700
|
}
|
|
12701
|
+
interface AdyenDisputeDeleted {
|
|
12702
|
+
readonly discriminator: 'adyen_dispute_deleted';
|
|
12703
|
+
readonly event_id: string;
|
|
12704
|
+
readonly timestamp: string;
|
|
12705
|
+
readonly id: string;
|
|
12706
|
+
}
|
|
12707
|
+
interface AdyenDisputeUpserted {
|
|
12708
|
+
readonly discriminator: 'adyen_dispute_upserted';
|
|
12709
|
+
readonly event_id: string;
|
|
12710
|
+
readonly timestamp: string;
|
|
12711
|
+
readonly dispute: io.flow.internal.v0.models.AdyenInternalDispute;
|
|
12712
|
+
}
|
|
12681
12713
|
interface AdyenInternalAuthorization {
|
|
12682
12714
|
readonly id: string;
|
|
12683
12715
|
readonly flow_authorization_id: string;
|
|
@@ -12716,6 +12748,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12716
12748
|
readonly psp_reference: string;
|
|
12717
12749
|
readonly response: string;
|
|
12718
12750
|
}
|
|
12751
|
+
interface AdyenInternalDispute {
|
|
12752
|
+
readonly id: string;
|
|
12753
|
+
readonly amount: number;
|
|
12754
|
+
readonly currency: string;
|
|
12755
|
+
readonly psp_reference: string;
|
|
12756
|
+
readonly original_reference?: string;
|
|
12757
|
+
readonly event_code: string;
|
|
12758
|
+
readonly event_date: string;
|
|
12759
|
+
readonly chargeback_reason_code?: string;
|
|
12760
|
+
readonly modification_merchant_references?: string;
|
|
12761
|
+
readonly chargeback_scheme_code?: string;
|
|
12762
|
+
readonly defense_period_ends_at?: string;
|
|
12763
|
+
readonly dispute_status?: string;
|
|
12764
|
+
readonly defendable?: string;
|
|
12765
|
+
readonly merchant_account_code: string;
|
|
12766
|
+
readonly operations?: string[];
|
|
12767
|
+
readonly merchant_reference: string;
|
|
12768
|
+
readonly payment_method?: string;
|
|
12769
|
+
readonly reason?: string;
|
|
12770
|
+
readonly success: string;
|
|
12771
|
+
readonly livemode: boolean;
|
|
12772
|
+
readonly updated_by_user_id: string;
|
|
12773
|
+
readonly created_at: string;
|
|
12774
|
+
readonly updated_at: string;
|
|
12775
|
+
}
|
|
12719
12776
|
interface AdyenInternalRefund {
|
|
12720
12777
|
readonly id: string;
|
|
12721
12778
|
readonly flow_refund_id: string;
|
|
@@ -13500,6 +13557,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13500
13557
|
readonly organization: string;
|
|
13501
13558
|
readonly calculator_organization_settings: io.flow.internal.v0.models.CalculatorOrganizationSettings;
|
|
13502
13559
|
}
|
|
13560
|
+
interface CallRecord {
|
|
13561
|
+
readonly id: string;
|
|
13562
|
+
readonly request_body?: any;
|
|
13563
|
+
}
|
|
13503
13564
|
interface CarrierAccount {
|
|
13504
13565
|
readonly id: string;
|
|
13505
13566
|
readonly carrier: io.flow.fulfillment.v0.models.CarrierReference;
|
|
@@ -13722,6 +13783,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13722
13783
|
readonly id: string;
|
|
13723
13784
|
readonly packaging: io.flow.fulfillment.v0.models.Packaging[];
|
|
13724
13785
|
readonly shipping_address_contact: io.flow.common.v0.models.Contact;
|
|
13786
|
+
readonly location_fallback?: io.flow.common.v0.models.Address;
|
|
13725
13787
|
}
|
|
13726
13788
|
interface CenterDefaultsDeleted {
|
|
13727
13789
|
readonly discriminator: 'center_defaults_deleted';
|
|
@@ -13733,6 +13795,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13733
13795
|
interface CenterDefaultsForm {
|
|
13734
13796
|
readonly packaging: io.flow.fulfillment.v0.models.Packaging[];
|
|
13735
13797
|
readonly shipping_address_contact: io.flow.common.v0.models.Contact;
|
|
13798
|
+
readonly location_fallback?: io.flow.common.v0.models.Address;
|
|
13736
13799
|
}
|
|
13737
13800
|
interface CenterDefaultsUpserted {
|
|
13738
13801
|
readonly discriminator: 'center_defaults_upserted';
|
|
@@ -13930,6 +13993,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13930
13993
|
readonly order_acceptance: io.flow.internal.v0.models.ChannelOrderAcceptance;
|
|
13931
13994
|
readonly external_order: any;
|
|
13932
13995
|
}
|
|
13996
|
+
interface ChannelOrderAcceptanceFailed {
|
|
13997
|
+
readonly discriminator: 'channel_order_acceptance_failed';
|
|
13998
|
+
readonly event_id: string;
|
|
13999
|
+
readonly timestamp: string;
|
|
14000
|
+
readonly organization: string;
|
|
14001
|
+
readonly channel_id: string;
|
|
14002
|
+
readonly channel_order_acceptance_failure: io.flow.internal.v0.models.ChannelOrderAcceptanceFailure;
|
|
14003
|
+
}
|
|
14004
|
+
interface ChannelOrderAcceptanceFailure {
|
|
14005
|
+
readonly id: string;
|
|
14006
|
+
readonly organization_id: string;
|
|
14007
|
+
readonly channel_id: string;
|
|
14008
|
+
readonly payment_request_id: string;
|
|
14009
|
+
readonly code: io.flow.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode;
|
|
14010
|
+
readonly reason: string;
|
|
14011
|
+
}
|
|
13933
14012
|
interface ChannelOrderAcceptanceForm {
|
|
13934
14013
|
readonly status: io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
13935
14014
|
}
|
|
@@ -15085,6 +15164,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15085
15164
|
readonly issued_at: string;
|
|
15086
15165
|
readonly expires_at?: string;
|
|
15087
15166
|
readonly created_at: string;
|
|
15167
|
+
readonly updated_at?: string;
|
|
15088
15168
|
}
|
|
15089
15169
|
interface DisputeAuthorizationReference {
|
|
15090
15170
|
readonly id: string;
|
|
@@ -17352,6 +17432,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17352
17432
|
readonly suggested_responsibility?: io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
17353
17433
|
readonly origin_country?: string;
|
|
17354
17434
|
readonly destination_country?: string;
|
|
17435
|
+
readonly reference_id?: string;
|
|
17436
|
+
readonly logistics_integration_provider?: string;
|
|
17355
17437
|
}
|
|
17356
17438
|
interface LabelSummary {
|
|
17357
17439
|
readonly id: string;
|
|
@@ -18160,6 +18242,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18160
18242
|
readonly organization: string;
|
|
18161
18243
|
readonly merchant_guid_assignment: io.flow.internal.v0.models.MerchantGuidAssignment;
|
|
18162
18244
|
}
|
|
18245
|
+
interface MerchantHubOverride {
|
|
18246
|
+
readonly id: string;
|
|
18247
|
+
readonly organization_id: string;
|
|
18248
|
+
readonly code: string;
|
|
18249
|
+
readonly contact: io.flow.common.v0.models.Contact;
|
|
18250
|
+
readonly location: io.flow.common.v0.models.Address;
|
|
18251
|
+
}
|
|
18252
|
+
interface MerchantHubOverrideForm {
|
|
18253
|
+
readonly code: string;
|
|
18254
|
+
readonly contact: io.flow.common.v0.models.Contact;
|
|
18255
|
+
readonly location: io.flow.common.v0.models.Address;
|
|
18256
|
+
}
|
|
18163
18257
|
interface MerchantOfRecordEntitySettings {
|
|
18164
18258
|
readonly id: string;
|
|
18165
18259
|
readonly merchant_of_record_entity: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
@@ -19784,6 +19878,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19784
19878
|
readonly classified_product: io.flow.internal.v0.models.ClassifiedProduct;
|
|
19785
19879
|
readonly next_product?: io.flow.internal.v0.models.ClassificationProductId;
|
|
19786
19880
|
}
|
|
19881
|
+
interface ProductCurrencies {
|
|
19882
|
+
readonly transaction: string;
|
|
19883
|
+
readonly destination: string;
|
|
19884
|
+
}
|
|
19787
19885
|
interface ProductDetailSettingsForm {
|
|
19788
19886
|
readonly keys: string[];
|
|
19789
19887
|
}
|
|
@@ -19806,6 +19904,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19806
19904
|
interface ProductListSettingsForm {
|
|
19807
19905
|
readonly column_settings: io.flow.internal.v0.models.HarmonizationColumnSetting[];
|
|
19808
19906
|
}
|
|
19907
|
+
interface ProductRecord {
|
|
19908
|
+
readonly organization_id: string;
|
|
19909
|
+
readonly order_number: string;
|
|
19910
|
+
readonly fulfillment_id: string;
|
|
19911
|
+
readonly currencies: io.flow.internal.v0.models.ProductCurrencies;
|
|
19912
|
+
readonly products: io.flow.internal.v0.models.ProductTransaction[];
|
|
19913
|
+
}
|
|
19809
19914
|
interface ProductRestrictionResultValidationError {
|
|
19810
19915
|
readonly message: string;
|
|
19811
19916
|
readonly reason: string;
|
|
@@ -19846,6 +19951,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19846
19951
|
readonly product_id: string;
|
|
19847
19952
|
readonly reviews: io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
|
|
19848
19953
|
}
|
|
19954
|
+
interface ProductTransaction {
|
|
19955
|
+
readonly transaction_amount: number;
|
|
19956
|
+
readonly destination_amount: number;
|
|
19957
|
+
readonly quantity: number;
|
|
19958
|
+
}
|
|
19849
19959
|
interface Profit {
|
|
19850
19960
|
readonly key: io.flow.internal.v0.enums.ProfitStreamKey;
|
|
19851
19961
|
readonly principal: io.flow.internal.v0.models.Principal;
|
|
@@ -19907,6 +20017,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19907
20017
|
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
19908
20018
|
readonly created_at: string;
|
|
19909
20019
|
}
|
|
20020
|
+
interface PublicHub {
|
|
20021
|
+
readonly id: string;
|
|
20022
|
+
readonly code: string;
|
|
20023
|
+
readonly third_party_logistics_reference: string;
|
|
20024
|
+
readonly contact: io.flow.common.v0.models.Contact;
|
|
20025
|
+
readonly location: io.flow.common.v0.models.Address;
|
|
20026
|
+
}
|
|
20027
|
+
interface PublicHubForm {
|
|
20028
|
+
readonly code: string;
|
|
20029
|
+
readonly third_party_logistics_reference: string;
|
|
20030
|
+
readonly contact: io.flow.common.v0.models.Contact;
|
|
20031
|
+
readonly location: io.flow.common.v0.models.Address;
|
|
20032
|
+
}
|
|
19910
20033
|
interface Quote {
|
|
19911
20034
|
readonly id: string;
|
|
19912
20035
|
readonly base: string;
|
|
@@ -20387,6 +20510,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20387
20510
|
interface ReportingConversionRates {
|
|
20388
20511
|
readonly merchant: number;
|
|
20389
20512
|
readonly entity: number;
|
|
20513
|
+
readonly destination_country?: number;
|
|
20390
20514
|
readonly usd: number;
|
|
20391
20515
|
readonly eur: number;
|
|
20392
20516
|
}
|
|
@@ -20398,6 +20522,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20398
20522
|
readonly transaction: string;
|
|
20399
20523
|
readonly merchant: string;
|
|
20400
20524
|
readonly entity: string;
|
|
20525
|
+
readonly destination_country?: string;
|
|
20401
20526
|
}
|
|
20402
20527
|
interface ReportingDebug {
|
|
20403
20528
|
readonly console_order_link: string;
|
|
@@ -20505,6 +20630,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20505
20630
|
readonly transaction: number;
|
|
20506
20631
|
readonly merchant: number;
|
|
20507
20632
|
readonly entity: number;
|
|
20633
|
+
readonly destination_country?: number;
|
|
20508
20634
|
readonly usd: number;
|
|
20509
20635
|
readonly eur: number;
|
|
20510
20636
|
}
|
|
@@ -21876,6 +22002,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21876
22002
|
readonly timestamp: string;
|
|
21877
22003
|
readonly capture: io.flow.internal.v0.models.StripeInternalCapture;
|
|
21878
22004
|
}
|
|
22005
|
+
interface StripeDisputeDeleted {
|
|
22006
|
+
readonly discriminator: 'stripe_dispute_deleted';
|
|
22007
|
+
readonly event_id: string;
|
|
22008
|
+
readonly timestamp: string;
|
|
22009
|
+
readonly id: string;
|
|
22010
|
+
}
|
|
22011
|
+
interface StripeDisputeUpserted {
|
|
22012
|
+
readonly discriminator: 'stripe_dispute_upserted';
|
|
22013
|
+
readonly event_id: string;
|
|
22014
|
+
readonly timestamp: string;
|
|
22015
|
+
readonly dispute: io.flow.internal.v0.models.StripeInternalDispute;
|
|
22016
|
+
}
|
|
21879
22017
|
interface StripeInternalAuthorization {
|
|
21880
22018
|
readonly id: string;
|
|
21881
22019
|
readonly flow_authorization_id: string;
|
|
@@ -21895,6 +22033,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21895
22033
|
readonly request: any;
|
|
21896
22034
|
readonly response: any;
|
|
21897
22035
|
}
|
|
22036
|
+
interface StripeInternalDispute {
|
|
22037
|
+
readonly id: string;
|
|
22038
|
+
readonly stripe_id: string;
|
|
22039
|
+
readonly amount: number;
|
|
22040
|
+
readonly charge_id: string;
|
|
22041
|
+
readonly currency: string;
|
|
22042
|
+
readonly evidence: any;
|
|
22043
|
+
readonly metadata: any;
|
|
22044
|
+
readonly payment_intent_id?: string;
|
|
22045
|
+
readonly reason: string;
|
|
22046
|
+
readonly status: string;
|
|
22047
|
+
readonly connected_account?: string;
|
|
22048
|
+
readonly balance_transactions: any[];
|
|
22049
|
+
readonly dispute_created_at: string;
|
|
22050
|
+
readonly dispute_expires_at?: string;
|
|
22051
|
+
readonly has_evidence?: boolean;
|
|
22052
|
+
readonly past_due?: boolean;
|
|
22053
|
+
readonly submission_count?: number;
|
|
22054
|
+
readonly is_charge_refundable: boolean;
|
|
22055
|
+
readonly live_mode: boolean;
|
|
22056
|
+
readonly payment_method_type?: string;
|
|
22057
|
+
readonly payment_method_reason_code?: string;
|
|
22058
|
+
readonly payment_method_card_brand?: string;
|
|
22059
|
+
readonly updated_by_user_id: string;
|
|
22060
|
+
readonly created_at: string;
|
|
22061
|
+
readonly updated_at: string;
|
|
22062
|
+
}
|
|
21898
22063
|
interface StripeInternalRefund {
|
|
21899
22064
|
readonly id: string;
|
|
21900
22065
|
readonly flow_refund_id: string;
|
|
@@ -22804,7 +22969,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
22804
22969
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
22805
22970
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
|
|
22806
22971
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
22807
|
-
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;
|
|
22972
|
+
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;
|
|
22808
22973
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
22809
22974
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
22810
22975
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -22928,10 +23093,13 @@ export declare type AdyenCancelDeleted = io.flow.internal.v0.models.AdyenCancelD
|
|
|
22928
23093
|
export declare type AdyenCancelUpserted = io.flow.internal.v0.models.AdyenCancelUpserted;
|
|
22929
23094
|
export declare type AdyenCaptureDeleted = io.flow.internal.v0.models.AdyenCaptureDeleted;
|
|
22930
23095
|
export declare type AdyenCaptureUpserted = io.flow.internal.v0.models.AdyenCaptureUpserted;
|
|
23096
|
+
export declare type AdyenDisputeDeleted = io.flow.internal.v0.models.AdyenDisputeDeleted;
|
|
23097
|
+
export declare type AdyenDisputeUpserted = io.flow.internal.v0.models.AdyenDisputeUpserted;
|
|
22931
23098
|
export declare type AdyenIntegrationType = io.flow.internal.v0.enums.AdyenIntegrationType;
|
|
22932
23099
|
export declare type AdyenInternalAuthorization = io.flow.internal.v0.models.AdyenInternalAuthorization;
|
|
22933
23100
|
export declare type AdyenInternalCancel = io.flow.internal.v0.models.AdyenInternalCancel;
|
|
22934
23101
|
export declare type AdyenInternalCapture = io.flow.internal.v0.models.AdyenInternalCapture;
|
|
23102
|
+
export declare type AdyenInternalDispute = io.flow.internal.v0.models.AdyenInternalDispute;
|
|
22935
23103
|
export declare type AdyenInternalRefund = io.flow.internal.v0.models.AdyenInternalRefund;
|
|
22936
23104
|
export declare type AdyenMerchant = io.flow.internal.v0.models.AdyenMerchant;
|
|
22937
23105
|
export declare type AdyenMerchantAccount = io.flow.internal.v0.models.AdyenMerchantAccount;
|
|
@@ -23072,6 +23240,7 @@ export declare type CalculatorOrganizationSettingsDeleted = io.flow.internal.v0.
|
|
|
23072
23240
|
export declare type CalculatorOrganizationSettingsForm = io.flow.internal.v0.models.CalculatorOrganizationSettingsForm;
|
|
23073
23241
|
export declare type CalculatorOrganizationSettingsUpserted = io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted;
|
|
23074
23242
|
export declare type CalculatorStamp = io.flow.internal.v0.unions.CalculatorStamp;
|
|
23243
|
+
export declare type CallRecord = io.flow.internal.v0.models.CallRecord;
|
|
23075
23244
|
export declare type CarrierAccount = io.flow.internal.v0.models.CarrierAccount;
|
|
23076
23245
|
export declare type CarrierAccountDeleted = io.flow.internal.v0.models.CarrierAccountDeleted;
|
|
23077
23246
|
export declare type CarrierAccountForm = io.flow.internal.v0.models.CarrierAccountForm;
|
|
@@ -23144,6 +23313,9 @@ export declare type ChannelOrderAcceptance = io.flow.internal.v0.models.ChannelO
|
|
|
23144
23313
|
export declare type ChannelOrderAcceptanceDeleted = io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted;
|
|
23145
23314
|
export declare type ChannelOrderAcceptanceDetails = io.flow.internal.v0.models.ChannelOrderAcceptanceDetails;
|
|
23146
23315
|
export declare type ChannelOrderAcceptanceErrorAction = io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction;
|
|
23316
|
+
export declare type ChannelOrderAcceptanceFailed = io.flow.internal.v0.models.ChannelOrderAcceptanceFailed;
|
|
23317
|
+
export declare type ChannelOrderAcceptanceFailure = io.flow.internal.v0.models.ChannelOrderAcceptanceFailure;
|
|
23318
|
+
export declare type ChannelOrderAcceptanceFailureReasonCode = io.flow.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode;
|
|
23147
23319
|
export declare type ChannelOrderAcceptanceForm = io.flow.internal.v0.models.ChannelOrderAcceptanceForm;
|
|
23148
23320
|
export declare type ChannelOrderAcceptanceNextActionFrom = io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
23149
23321
|
export declare type ChannelOrderAcceptanceReason = io.flow.internal.v0.models.ChannelOrderAcceptanceReason;
|
|
@@ -23934,6 +24106,8 @@ export declare type MerchantFees = io.flow.internal.v0.models.MerchantFees;
|
|
|
23934
24106
|
export declare type MerchantGuidAssignment = io.flow.internal.v0.models.MerchantGuidAssignment;
|
|
23935
24107
|
export declare type MerchantGuidAssignmentDeleted = io.flow.internal.v0.models.MerchantGuidAssignmentDeleted;
|
|
23936
24108
|
export declare type MerchantGuidAssignmentUpserted = io.flow.internal.v0.models.MerchantGuidAssignmentUpserted;
|
|
24109
|
+
export declare type MerchantHubOverride = io.flow.internal.v0.models.MerchantHubOverride;
|
|
24110
|
+
export declare type MerchantHubOverrideForm = io.flow.internal.v0.models.MerchantHubOverrideForm;
|
|
23937
24111
|
export declare type MerchantOfRecordEntitySettings = io.flow.internal.v0.models.MerchantOfRecordEntitySettings;
|
|
23938
24112
|
export declare type MerchantOfRecordEntitySettingsForm = io.flow.internal.v0.models.MerchantOfRecordEntitySettingsForm;
|
|
23939
24113
|
export declare type MerchantSearchResult = io.flow.internal.v0.models.MerchantSearchResult;
|
|
@@ -24226,17 +24400,20 @@ export declare type ProductClassification = io.flow.internal.v0.models.ProductCl
|
|
|
24226
24400
|
export declare type ProductClassificationForm = io.flow.internal.v0.models.ProductClassificationForm;
|
|
24227
24401
|
export declare type ProductClassificationJudgementForm = io.flow.internal.v0.models.ProductClassificationJudgementForm;
|
|
24228
24402
|
export declare type ProductClassificationResult = io.flow.internal.v0.models.ProductClassificationResult;
|
|
24403
|
+
export declare type ProductCurrencies = io.flow.internal.v0.models.ProductCurrencies;
|
|
24229
24404
|
export declare type ProductDetailSettingsForm = io.flow.internal.v0.models.ProductDetailSettingsForm;
|
|
24230
24405
|
export declare type ProductHarmonization = io.flow.internal.v0.models.ProductHarmonization;
|
|
24231
24406
|
export declare type ProductHarmonizationForm = io.flow.internal.v0.models.ProductHarmonizationForm;
|
|
24232
24407
|
export declare type ProductLabels = io.flow.internal.v0.models.ProductLabels;
|
|
24233
24408
|
export declare type ProductListSettingsForm = io.flow.internal.v0.models.ProductListSettingsForm;
|
|
24409
|
+
export declare type ProductRecord = io.flow.internal.v0.models.ProductRecord;
|
|
24234
24410
|
export declare type ProductRestrictionResultValidationError = io.flow.internal.v0.models.ProductRestrictionResultValidationError;
|
|
24235
24411
|
export declare type ProductRestrictionRuleDecision = io.flow.internal.v0.models.ProductRestrictionRuleDecision;
|
|
24236
24412
|
export declare type ProductRestrictionRuleDecisionDeleted = io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted;
|
|
24237
24413
|
export declare type ProductRestrictionRuleDecisionUpserted = io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted;
|
|
24238
24414
|
export declare type ProductReviewHistory = io.flow.internal.v0.models.ProductReviewHistory;
|
|
24239
24415
|
export declare type ProductStatus = io.flow.internal.v0.enums.ProductStatus;
|
|
24416
|
+
export declare type ProductTransaction = io.flow.internal.v0.models.ProductTransaction;
|
|
24240
24417
|
export declare type Profit = io.flow.internal.v0.models.Profit;
|
|
24241
24418
|
export declare type ProfitShare = io.flow.internal.v0.models.ProfitShare;
|
|
24242
24419
|
export declare type ProfitShareOrderReference = io.flow.internal.v0.models.ProfitShareOrderReference;
|
|
@@ -24256,6 +24433,8 @@ export declare type ProofOfPostingOrderCancellation = io.flow.internal.v0.models
|
|
|
24256
24433
|
export declare type ProofOfPostingOrderCombinedShipment = io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment;
|
|
24257
24434
|
export declare type ProofOfPostingShippingNotification = io.flow.internal.v0.models.ProofOfPostingShippingNotification;
|
|
24258
24435
|
export declare type ProofOfPostingTimeElapsed = io.flow.internal.v0.models.ProofOfPostingTimeElapsed;
|
|
24436
|
+
export declare type PublicHub = io.flow.internal.v0.models.PublicHub;
|
|
24437
|
+
export declare type PublicHubForm = io.flow.internal.v0.models.PublicHubForm;
|
|
24259
24438
|
export declare type Quote = io.flow.internal.v0.models.Quote;
|
|
24260
24439
|
export declare type QuoteDeleted = io.flow.internal.v0.models.QuoteDeleted;
|
|
24261
24440
|
export declare type QuoteRequest = io.flow.internal.v0.models.QuoteRequest;
|
|
@@ -24633,8 +24812,11 @@ export declare type StripeAuthorizationDeleted = io.flow.internal.v0.models.Stri
|
|
|
24633
24812
|
export declare type StripeAuthorizationUpserted = io.flow.internal.v0.models.StripeAuthorizationUpserted;
|
|
24634
24813
|
export declare type StripeCaptureDeleted = io.flow.internal.v0.models.StripeCaptureDeleted;
|
|
24635
24814
|
export declare type StripeCaptureUpserted = io.flow.internal.v0.models.StripeCaptureUpserted;
|
|
24815
|
+
export declare type StripeDisputeDeleted = io.flow.internal.v0.models.StripeDisputeDeleted;
|
|
24816
|
+
export declare type StripeDisputeUpserted = io.flow.internal.v0.models.StripeDisputeUpserted;
|
|
24636
24817
|
export declare type StripeInternalAuthorization = io.flow.internal.v0.models.StripeInternalAuthorization;
|
|
24637
24818
|
export declare type StripeInternalCapture = io.flow.internal.v0.models.StripeInternalCapture;
|
|
24819
|
+
export declare type StripeInternalDispute = io.flow.internal.v0.models.StripeInternalDispute;
|
|
24638
24820
|
export declare type StripeInternalRefund = io.flow.internal.v0.models.StripeInternalRefund;
|
|
24639
24821
|
export declare type StripeInternalReversal = io.flow.internal.v0.models.StripeInternalReversal;
|
|
24640
24822
|
export declare type StripeMerchant = io.flow.internal.v0.models.StripeMerchant;
|
package/dist/api.d.ts
CHANGED
|
@@ -2287,6 +2287,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2287
2287
|
type OrganizationPaymentMethodTag = 'deny';
|
|
2288
2288
|
type OrganizationStatus = 'active' | 'inactive' | 'deactivated' | 'provisioned';
|
|
2289
2289
|
type OrganizationType = 'standalone' | 'channel';
|
|
2290
|
+
type OriginLocationSource = 'public_hub_code' | 'merchant_hub_code_override' | 'shopify' | 'fallback_location';
|
|
2290
2291
|
type PackageDimensionsSource = 'provided' | 'item_dimensions_estimated' | 'dimensions_estimated' | 'default_item_dimensions_estimated';
|
|
2291
2292
|
type PaymentActionType = 'redirect' | 'redirect_get' | 'redirect_post' | 'select_payment_option' | 'use_sdk_klarna_v1' | 'use_sdk_applepay_js' | 'use_sdk_googlepay' | 'use_sdk_paypal' | 'use_sdk_stripe_v3' | 'use_sdk_adyen_v3' | 'use_sdk_adyen_v4' | 'execute_script' | 'display_inline_window';
|
|
2292
2293
|
type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
|
|
@@ -2314,7 +2315,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2314
2315
|
type PriceDetailKey = 'item_price' | 'margins' | 'vat' | 'duty' | 'rounding' | 'adjustment';
|
|
2315
2316
|
type PriceFacetBoundary = 'min' | 'max';
|
|
2316
2317
|
type PricingLevySetting = 'included' | 'displayed' | 'ignored';
|
|
2317
|
-
type ProductRestrictionRule = 'Adult Products' | 'Alcohol' | 'Anti Money Laundering' | 'Collagen' | 'Consumer Safety' | 'Cosmetics' | 'DG - Batteries' | 'DG - Hazmat' | 'Drugs' | 'Dual Use' | 'Fine Art' | 'Fish & Wildlife - CITES' | 'Fish & Wildlife - Plant' | 'Fish & Wildlife - USFWS' | 'Food' | 'Gambling' | 'Health' | 'Human hair' | 'Insufficient Details' | 'Intangible' | 'Jewelry' | 'Jewelry & Watches Over 5000' | 'Knives' | 'Liquids' | 'Oversized' | 'Restrict by Default' | 'Supplements' | 'Weapon' | 'Wood';
|
|
2318
|
+
type ProductRestrictionRule = 'Adult Products' | 'Alcohol' | 'Anti Money Laundering' | 'Collagen' | 'Consumer Safety' | 'Cosmetics' | 'DG - Batteries' | 'DG - Hazmat' | 'Drugs' | 'Dual Use' | 'Fine Art' | 'Fish & Wildlife - CITES' | 'Fish & Wildlife - Plant' | 'Fish & Wildlife - USFWS' | 'Food' | 'Gambling' | 'Health' | 'Human hair' | 'Insufficient Details' | 'Intangible' | 'Jewelry' | 'Jewelry & Watches Over 5000' | 'Knives' | 'Liquids' | 'Oversized' | 'Restrict by Default' | 'Supplements' | 'Tattoo Ink And PMU' | 'Weapon' | 'Wood';
|
|
2318
2319
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
2319
2320
|
type ProvinceType = 'area' | 'city' | 'county' | 'department' | 'dependency' | 'district' | 'do_si' | 'emirate' | 'entity' | 'island' | 'municipality' | 'oblast' | 'outlying_area' | 'parish' | 'prefecture' | 'province' | 'state' | 'territory' | 'other';
|
|
2320
2321
|
type QuoteErrorCode = 'generic_error' | 'items_not_available' | 'shipping_unavailable';
|
|
@@ -3159,6 +3160,9 @@ declare namespace io.flow.v0.models {
|
|
|
3159
3160
|
readonly package?: io.flow.v0.models.ShippingLabelPackage;
|
|
3160
3161
|
readonly origin?: io.flow.v0.models.ShippingAddress;
|
|
3161
3162
|
readonly direction?: io.flow.v0.enums.Direction;
|
|
3163
|
+
readonly reference_id?: string;
|
|
3164
|
+
readonly origin_location_source?: io.flow.v0.enums.OriginLocationSource;
|
|
3165
|
+
readonly hub_code?: string;
|
|
3162
3166
|
}
|
|
3163
3167
|
interface BrowseOptinResponses {
|
|
3164
3168
|
readonly id: string;
|
|
@@ -4568,6 +4572,8 @@ declare namespace io.flow.v0.models {
|
|
|
4568
4572
|
readonly service?: string;
|
|
4569
4573
|
readonly shipment_recipient?: io.flow.v0.enums.ShipmentRecipient;
|
|
4570
4574
|
readonly package_dimensions_source?: io.flow.v0.enums.PackageDimensionsSource;
|
|
4575
|
+
readonly origin_location_source?: io.flow.v0.enums.OriginLocationSource;
|
|
4576
|
+
readonly reference_id?: string;
|
|
4571
4577
|
}
|
|
4572
4578
|
interface DetailedShippingNotificationForm {
|
|
4573
4579
|
readonly discriminator: 'detailed_shipping_notification_form';
|
|
@@ -6324,6 +6330,9 @@ declare namespace io.flow.v0.models {
|
|
|
6324
6330
|
readonly delivered?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
6325
6331
|
readonly rejected?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
6326
6332
|
readonly returned?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
6333
|
+
readonly crossed_border?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
6334
|
+
readonly destroyed?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
6335
|
+
readonly return_reversal?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
6327
6336
|
}
|
|
6328
6337
|
interface LabelTrackingSummaryUpdate {
|
|
6329
6338
|
readonly timestamp: string;
|
|
@@ -10504,6 +10513,7 @@ declare namespace io.flow.v0.models {
|
|
|
10504
10513
|
readonly items: io.flow.v0.models.LineItemForm[];
|
|
10505
10514
|
readonly center_key?: string;
|
|
10506
10515
|
readonly direction?: io.flow.v0.enums.Direction;
|
|
10516
|
+
readonly reference_id?: string;
|
|
10507
10517
|
}
|
|
10508
10518
|
interface SummaryShippingNotificationForm {
|
|
10509
10519
|
readonly discriminator: 'summary_shipping_notification_form';
|
|
@@ -12518,6 +12528,7 @@ export declare type OrganizationType = io.flow.v0.enums.OrganizationType;
|
|
|
12518
12528
|
export declare type OrganizationUpserted = io.flow.v0.models.OrganizationUpserted;
|
|
12519
12529
|
export declare type OrganizationUpsertedV2 = io.flow.v0.models.OrganizationUpsertedV2;
|
|
12520
12530
|
export declare type OrganizationVersion = io.flow.v0.models.OrganizationVersion;
|
|
12531
|
+
export declare type OriginLocationSource = io.flow.v0.enums.OriginLocationSource;
|
|
12521
12532
|
export declare type OriginalPrices = io.flow.v0.models.OriginalPrices;
|
|
12522
12533
|
export declare type OutboundCartonFee = io.flow.v0.models.OutboundCartonFee;
|
|
12523
12534
|
export declare type OversizePieceSurchargeRatecardFee = io.flow.v0.models.OversizePieceSurchargeRatecardFee;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/types",
|
|
3
|
-
"version": "11.24.
|
|
3
|
+
"version": "11.24.105",
|
|
4
4
|
"description": "TypeScript type definitions for custom types found in Flow API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"maintainers": [
|
|
26
26
|
"Christian Muñoz <christian.munoz@flow.io>"
|
|
27
27
|
],
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "c096f29e80640d1f9e270b50c13e20e26b631283"
|
|
29
29
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -4619,6 +4619,11 @@ declare namespace io.flow.label.v0.enums {
|
|
|
4619
4619
|
| 'flow_simulation_sync'
|
|
4620
4620
|
| 'autogenerated';
|
|
4621
4621
|
type LabelTriggerMethod = 'autogenerated' | 'on_demand';
|
|
4622
|
+
type OriginLocationSource =
|
|
4623
|
+
| 'public_hub_code'
|
|
4624
|
+
| 'merchant_hub_code_override'
|
|
4625
|
+
| 'shopify'
|
|
4626
|
+
| 'fallback_location';
|
|
4622
4627
|
type PackageDimensionsSource =
|
|
4623
4628
|
| 'provided'
|
|
4624
4629
|
| 'item_dimensions_estimated'
|
|
@@ -4652,6 +4657,9 @@ declare namespace io.flow.label.v0.models {
|
|
|
4652
4657
|
readonly package?: io.flow.label.v0.models.ShippingLabelPackage;
|
|
4653
4658
|
readonly origin?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
4654
4659
|
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
4660
|
+
readonly reference_id?: string;
|
|
4661
|
+
readonly origin_location_source?: io.flow.label.v0.enums.OriginLocationSource;
|
|
4662
|
+
readonly hub_code?: string;
|
|
4655
4663
|
}
|
|
4656
4664
|
|
|
4657
4665
|
interface CrossdockShipment {
|
|
@@ -4674,6 +4682,8 @@ declare namespace io.flow.label.v0.models {
|
|
|
4674
4682
|
readonly service?: string;
|
|
4675
4683
|
readonly shipment_recipient?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
4676
4684
|
readonly package_dimensions_source?: io.flow.label.v0.enums.PackageDimensionsSource;
|
|
4685
|
+
readonly origin_location_source?: io.flow.label.v0.enums.OriginLocationSource;
|
|
4686
|
+
readonly reference_id?: string;
|
|
4677
4687
|
}
|
|
4678
4688
|
|
|
4679
4689
|
interface DetailedShippingNotificationForm {
|
|
@@ -4852,6 +4862,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
4852
4862
|
readonly items: io.flow.common.v0.models.LineItemForm[];
|
|
4853
4863
|
readonly center_key?: string;
|
|
4854
4864
|
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
4865
|
+
readonly reference_id?: string;
|
|
4855
4866
|
}
|
|
4856
4867
|
|
|
4857
4868
|
interface SummaryShippingNotificationForm {
|
|
@@ -9081,6 +9092,9 @@ declare namespace io.flow.order.price.v0.models {
|
|
|
9081
9092
|
|
|
9082
9093
|
declare namespace io.flow.channel.internal.v0.enums {
|
|
9083
9094
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
9095
|
+
type ChannelOrderAcceptanceFailureReasonCode =
|
|
9096
|
+
| 'channel_order_mor_invalid'
|
|
9097
|
+
| 'channel_order_does_not_exist';
|
|
9084
9098
|
type ChannelOrderAcceptanceNextActionFrom =
|
|
9085
9099
|
| 'cx_team'
|
|
9086
9100
|
| 'core_team'
|
|
@@ -9165,6 +9179,15 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
9165
9179
|
readonly external_order: any /*object*/;
|
|
9166
9180
|
}
|
|
9167
9181
|
|
|
9182
|
+
interface ChannelOrderAcceptanceFailure {
|
|
9183
|
+
readonly id: string;
|
|
9184
|
+
readonly organization_id: string;
|
|
9185
|
+
readonly channel_id: string;
|
|
9186
|
+
readonly payment_request_id: string;
|
|
9187
|
+
readonly code: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode;
|
|
9188
|
+
readonly reason: string;
|
|
9189
|
+
}
|
|
9190
|
+
|
|
9168
9191
|
interface ChannelOrderAcceptanceForm {
|
|
9169
9192
|
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
9170
9193
|
}
|
|
@@ -12600,6 +12623,9 @@ declare namespace io.flow.tracking.v0.models {
|
|
|
12600
12623
|
readonly delivered?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
12601
12624
|
readonly rejected?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
12602
12625
|
readonly returned?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
12626
|
+
readonly crossed_border?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
12627
|
+
readonly destroyed?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
12628
|
+
readonly return_reversal?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
12603
12629
|
}
|
|
12604
12630
|
|
|
12605
12631
|
interface LabelTrackingSummaryUpdate {
|
|
@@ -16374,6 +16400,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16374
16400
|
| 'reversal'
|
|
16375
16401
|
| 'channel_initiated';
|
|
16376
16402
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
16403
|
+
type ChannelOrderAcceptanceFailureReasonCode =
|
|
16404
|
+
| 'channel_order_mor_invalid'
|
|
16405
|
+
| 'channel_order_does_not_exist';
|
|
16377
16406
|
type ChannelOrderAcceptanceNextActionFrom =
|
|
16378
16407
|
| 'cx_team'
|
|
16379
16408
|
| 'core_team'
|
|
@@ -16539,6 +16568,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16539
16568
|
| 'adyen_capture_upserted'
|
|
16540
16569
|
| 'adyen_refund_deleted'
|
|
16541
16570
|
| 'adyen_refund_upserted'
|
|
16571
|
+
| 'adyen_dispute_upserted'
|
|
16572
|
+
| 'adyen_dispute_deleted'
|
|
16542
16573
|
| 'index_assignment_upserted'
|
|
16543
16574
|
| 'index_assignment_deleted'
|
|
16544
16575
|
| 'fulfillment_upserted'
|
|
@@ -16612,6 +16643,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16612
16643
|
| 'catalog_settings_deleted'
|
|
16613
16644
|
| 'channel_order_acceptance_upserted'
|
|
16614
16645
|
| 'channel_order_acceptance_deleted'
|
|
16646
|
+
| 'channel_order_acceptance_failed'
|
|
16615
16647
|
| 'checkout_configuration_upserted'
|
|
16616
16648
|
| 'checkout_configuration_deleted'
|
|
16617
16649
|
| 'commercial_invoice_internal_upserted'
|
|
@@ -16867,6 +16899,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16867
16899
|
| 'stripe_capture_upserted'
|
|
16868
16900
|
| 'stripe_refund_deleted'
|
|
16869
16901
|
| 'stripe_refund_upserted'
|
|
16902
|
+
| 'stripe_dispute_upserted'
|
|
16903
|
+
| 'stripe_dispute_deleted'
|
|
16870
16904
|
| 'liability_remittance_plan_upserted'
|
|
16871
16905
|
| 'liability_remittance_plan_deleted'
|
|
16872
16906
|
| 'svitlana_item_upserted'
|
|
@@ -17275,7 +17309,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17275
17309
|
| 'scheduled_payment'
|
|
17276
17310
|
| 'account_quarterly_balances'
|
|
17277
17311
|
| 'invariants'
|
|
17278
|
-
| 'payments'
|
|
17312
|
+
| 'payments'
|
|
17313
|
+
| 'reconcile_not_recorded'
|
|
17314
|
+
| 'products_record';
|
|
17279
17315
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
17280
17316
|
type ReportingScheme =
|
|
17281
17317
|
| 'immediate_reporting_to_tax_authority'
|
|
@@ -17848,6 +17884,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17848
17884
|
readonly capture: io.flow.internal.v0.models.AdyenInternalCapture;
|
|
17849
17885
|
}
|
|
17850
17886
|
|
|
17887
|
+
interface AdyenDisputeDeleted {
|
|
17888
|
+
readonly discriminator: 'adyen_dispute_deleted';
|
|
17889
|
+
readonly event_id: string;
|
|
17890
|
+
readonly timestamp: string;
|
|
17891
|
+
readonly id: string;
|
|
17892
|
+
}
|
|
17893
|
+
|
|
17894
|
+
interface AdyenDisputeUpserted {
|
|
17895
|
+
readonly discriminator: 'adyen_dispute_upserted';
|
|
17896
|
+
readonly event_id: string;
|
|
17897
|
+
readonly timestamp: string;
|
|
17898
|
+
readonly dispute: io.flow.internal.v0.models.AdyenInternalDispute;
|
|
17899
|
+
}
|
|
17900
|
+
|
|
17851
17901
|
interface AdyenInternalAuthorization {
|
|
17852
17902
|
readonly id: string;
|
|
17853
17903
|
readonly flow_authorization_id: string;
|
|
@@ -17889,6 +17939,32 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17889
17939
|
readonly response: string;
|
|
17890
17940
|
}
|
|
17891
17941
|
|
|
17942
|
+
interface AdyenInternalDispute {
|
|
17943
|
+
readonly id: string;
|
|
17944
|
+
readonly amount: number;
|
|
17945
|
+
readonly currency: string;
|
|
17946
|
+
readonly psp_reference: string;
|
|
17947
|
+
readonly original_reference?: string;
|
|
17948
|
+
readonly event_code: string;
|
|
17949
|
+
readonly event_date: string;
|
|
17950
|
+
readonly chargeback_reason_code?: string;
|
|
17951
|
+
readonly modification_merchant_references?: string;
|
|
17952
|
+
readonly chargeback_scheme_code?: string;
|
|
17953
|
+
readonly defense_period_ends_at?: string;
|
|
17954
|
+
readonly dispute_status?: string;
|
|
17955
|
+
readonly defendable?: string;
|
|
17956
|
+
readonly merchant_account_code: string;
|
|
17957
|
+
readonly operations?: string[];
|
|
17958
|
+
readonly merchant_reference: string;
|
|
17959
|
+
readonly payment_method?: string;
|
|
17960
|
+
readonly reason?: string;
|
|
17961
|
+
readonly success: string;
|
|
17962
|
+
readonly livemode: boolean;
|
|
17963
|
+
readonly updated_by_user_id: string;
|
|
17964
|
+
readonly created_at: string;
|
|
17965
|
+
readonly updated_at: string;
|
|
17966
|
+
}
|
|
17967
|
+
|
|
17892
17968
|
interface AdyenInternalRefund {
|
|
17893
17969
|
readonly id: string;
|
|
17894
17970
|
readonly flow_refund_id: string;
|
|
@@ -18798,6 +18874,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18798
18874
|
readonly calculator_organization_settings: io.flow.internal.v0.models.CalculatorOrganizationSettings;
|
|
18799
18875
|
}
|
|
18800
18876
|
|
|
18877
|
+
interface CallRecord {
|
|
18878
|
+
readonly id: string;
|
|
18879
|
+
readonly request_body?: any /*json*/;
|
|
18880
|
+
}
|
|
18881
|
+
|
|
18801
18882
|
interface CarrierAccount {
|
|
18802
18883
|
readonly id: string;
|
|
18803
18884
|
readonly carrier: io.flow.fulfillment.v0.models.CarrierReference;
|
|
@@ -19051,6 +19132,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19051
19132
|
readonly id: string;
|
|
19052
19133
|
readonly packaging: io.flow.fulfillment.v0.models.Packaging[];
|
|
19053
19134
|
readonly shipping_address_contact: io.flow.common.v0.models.Contact;
|
|
19135
|
+
readonly location_fallback?: io.flow.common.v0.models.Address;
|
|
19054
19136
|
}
|
|
19055
19137
|
|
|
19056
19138
|
interface CenterDefaultsDeleted {
|
|
@@ -19064,6 +19146,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19064
19146
|
interface CenterDefaultsForm {
|
|
19065
19147
|
readonly packaging: io.flow.fulfillment.v0.models.Packaging[];
|
|
19066
19148
|
readonly shipping_address_contact: io.flow.common.v0.models.Contact;
|
|
19149
|
+
readonly location_fallback?: io.flow.common.v0.models.Address;
|
|
19067
19150
|
}
|
|
19068
19151
|
|
|
19069
19152
|
interface CenterDefaultsUpserted {
|
|
@@ -19290,6 +19373,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19290
19373
|
readonly external_order: any /*object*/;
|
|
19291
19374
|
}
|
|
19292
19375
|
|
|
19376
|
+
interface ChannelOrderAcceptanceFailed {
|
|
19377
|
+
readonly discriminator: 'channel_order_acceptance_failed';
|
|
19378
|
+
readonly event_id: string;
|
|
19379
|
+
readonly timestamp: string;
|
|
19380
|
+
readonly organization: string;
|
|
19381
|
+
readonly channel_id: string;
|
|
19382
|
+
readonly channel_order_acceptance_failure: io.flow.internal.v0.models.ChannelOrderAcceptanceFailure;
|
|
19383
|
+
}
|
|
19384
|
+
|
|
19385
|
+
interface ChannelOrderAcceptanceFailure {
|
|
19386
|
+
readonly id: string;
|
|
19387
|
+
readonly organization_id: string;
|
|
19388
|
+
readonly channel_id: string;
|
|
19389
|
+
readonly payment_request_id: string;
|
|
19390
|
+
readonly code: io.flow.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode;
|
|
19391
|
+
readonly reason: string;
|
|
19392
|
+
}
|
|
19393
|
+
|
|
19293
19394
|
interface ChannelOrderAcceptanceForm {
|
|
19294
19395
|
readonly status: io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
19295
19396
|
}
|
|
@@ -20637,6 +20738,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20637
20738
|
readonly issued_at: string;
|
|
20638
20739
|
readonly expires_at?: string;
|
|
20639
20740
|
readonly created_at: string;
|
|
20741
|
+
readonly updated_at?: string;
|
|
20640
20742
|
}
|
|
20641
20743
|
|
|
20642
20744
|
interface DisputeAuthorizationReference {
|
|
@@ -23237,6 +23339,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23237
23339
|
readonly suggested_responsibility?: io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
23238
23340
|
readonly origin_country?: string;
|
|
23239
23341
|
readonly destination_country?: string;
|
|
23342
|
+
readonly reference_id?: string;
|
|
23343
|
+
readonly logistics_integration_provider?: string;
|
|
23240
23344
|
}
|
|
23241
23345
|
|
|
23242
23346
|
interface LabelSummary {
|
|
@@ -24175,6 +24279,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24175
24279
|
readonly merchant_guid_assignment: io.flow.internal.v0.models.MerchantGuidAssignment;
|
|
24176
24280
|
}
|
|
24177
24281
|
|
|
24282
|
+
interface MerchantHubOverride {
|
|
24283
|
+
readonly id: string;
|
|
24284
|
+
readonly organization_id: string;
|
|
24285
|
+
readonly code: string;
|
|
24286
|
+
readonly contact: io.flow.common.v0.models.Contact;
|
|
24287
|
+
readonly location: io.flow.common.v0.models.Address;
|
|
24288
|
+
}
|
|
24289
|
+
|
|
24290
|
+
interface MerchantHubOverrideForm {
|
|
24291
|
+
readonly code: string;
|
|
24292
|
+
readonly contact: io.flow.common.v0.models.Contact;
|
|
24293
|
+
readonly location: io.flow.common.v0.models.Address;
|
|
24294
|
+
}
|
|
24295
|
+
|
|
24178
24296
|
interface MerchantOfRecordEntitySettings {
|
|
24179
24297
|
readonly id: string;
|
|
24180
24298
|
readonly merchant_of_record_entity: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
@@ -26037,6 +26155,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26037
26155
|
readonly next_product?: io.flow.internal.v0.models.ClassificationProductId;
|
|
26038
26156
|
}
|
|
26039
26157
|
|
|
26158
|
+
interface ProductCurrencies {
|
|
26159
|
+
readonly transaction: string;
|
|
26160
|
+
readonly destination: string;
|
|
26161
|
+
}
|
|
26162
|
+
|
|
26040
26163
|
interface ProductDetailSettingsForm {
|
|
26041
26164
|
readonly keys: string[];
|
|
26042
26165
|
}
|
|
@@ -26064,6 +26187,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26064
26187
|
readonly column_settings: io.flow.internal.v0.models.HarmonizationColumnSetting[];
|
|
26065
26188
|
}
|
|
26066
26189
|
|
|
26190
|
+
interface ProductRecord {
|
|
26191
|
+
readonly organization_id: string;
|
|
26192
|
+
readonly order_number: string;
|
|
26193
|
+
readonly fulfillment_id: string;
|
|
26194
|
+
readonly currencies: io.flow.internal.v0.models.ProductCurrencies;
|
|
26195
|
+
readonly products: io.flow.internal.v0.models.ProductTransaction[];
|
|
26196
|
+
}
|
|
26197
|
+
|
|
26067
26198
|
interface ProductRestrictionResultValidationError {
|
|
26068
26199
|
readonly message: string;
|
|
26069
26200
|
readonly reason: string;
|
|
@@ -26109,6 +26240,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26109
26240
|
readonly reviews: io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
|
|
26110
26241
|
}
|
|
26111
26242
|
|
|
26243
|
+
interface ProductTransaction {
|
|
26244
|
+
readonly transaction_amount: number;
|
|
26245
|
+
readonly destination_amount: number;
|
|
26246
|
+
readonly quantity: number;
|
|
26247
|
+
}
|
|
26248
|
+
|
|
26112
26249
|
interface Profit {
|
|
26113
26250
|
readonly key: io.flow.internal.v0.enums.ProfitStreamKey;
|
|
26114
26251
|
readonly principal: io.flow.internal.v0.models.Principal;
|
|
@@ -26183,6 +26320,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26183
26320
|
readonly created_at: string;
|
|
26184
26321
|
}
|
|
26185
26322
|
|
|
26323
|
+
interface PublicHub {
|
|
26324
|
+
readonly id: string;
|
|
26325
|
+
readonly code: string;
|
|
26326
|
+
readonly third_party_logistics_reference: string;
|
|
26327
|
+
readonly contact: io.flow.common.v0.models.Contact;
|
|
26328
|
+
readonly location: io.flow.common.v0.models.Address;
|
|
26329
|
+
}
|
|
26330
|
+
|
|
26331
|
+
interface PublicHubForm {
|
|
26332
|
+
readonly code: string;
|
|
26333
|
+
readonly third_party_logistics_reference: string;
|
|
26334
|
+
readonly contact: io.flow.common.v0.models.Contact;
|
|
26335
|
+
readonly location: io.flow.common.v0.models.Address;
|
|
26336
|
+
}
|
|
26337
|
+
|
|
26186
26338
|
interface Quote {
|
|
26187
26339
|
readonly id: string;
|
|
26188
26340
|
readonly base: string;
|
|
@@ -26741,6 +26893,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26741
26893
|
interface ReportingConversionRates {
|
|
26742
26894
|
readonly merchant: number;
|
|
26743
26895
|
readonly entity: number;
|
|
26896
|
+
readonly destination_country?: number;
|
|
26744
26897
|
readonly usd: number;
|
|
26745
26898
|
readonly eur: number;
|
|
26746
26899
|
}
|
|
@@ -26754,6 +26907,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26754
26907
|
readonly transaction: string;
|
|
26755
26908
|
readonly merchant: string;
|
|
26756
26909
|
readonly entity: string;
|
|
26910
|
+
readonly destination_country?: string;
|
|
26757
26911
|
}
|
|
26758
26912
|
|
|
26759
26913
|
interface ReportingDebug {
|
|
@@ -26875,6 +27029,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26875
27029
|
readonly transaction: number;
|
|
26876
27030
|
readonly merchant: number;
|
|
26877
27031
|
readonly entity: number;
|
|
27032
|
+
readonly destination_country?: number;
|
|
26878
27033
|
readonly usd: number;
|
|
26879
27034
|
readonly eur: number;
|
|
26880
27035
|
}
|
|
@@ -28477,6 +28632,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28477
28632
|
readonly capture: io.flow.internal.v0.models.StripeInternalCapture;
|
|
28478
28633
|
}
|
|
28479
28634
|
|
|
28635
|
+
interface StripeDisputeDeleted {
|
|
28636
|
+
readonly discriminator: 'stripe_dispute_deleted';
|
|
28637
|
+
readonly event_id: string;
|
|
28638
|
+
readonly timestamp: string;
|
|
28639
|
+
readonly id: string;
|
|
28640
|
+
}
|
|
28641
|
+
|
|
28642
|
+
interface StripeDisputeUpserted {
|
|
28643
|
+
readonly discriminator: 'stripe_dispute_upserted';
|
|
28644
|
+
readonly event_id: string;
|
|
28645
|
+
readonly timestamp: string;
|
|
28646
|
+
readonly dispute: io.flow.internal.v0.models.StripeInternalDispute;
|
|
28647
|
+
}
|
|
28648
|
+
|
|
28480
28649
|
interface StripeInternalAuthorization {
|
|
28481
28650
|
readonly id: string;
|
|
28482
28651
|
readonly flow_authorization_id: string;
|
|
@@ -28498,6 +28667,34 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28498
28667
|
readonly response: any /*object*/;
|
|
28499
28668
|
}
|
|
28500
28669
|
|
|
28670
|
+
interface StripeInternalDispute {
|
|
28671
|
+
readonly id: string;
|
|
28672
|
+
readonly stripe_id: string;
|
|
28673
|
+
readonly amount: number;
|
|
28674
|
+
readonly charge_id: string;
|
|
28675
|
+
readonly currency: string;
|
|
28676
|
+
readonly evidence: any /*object*/;
|
|
28677
|
+
readonly metadata: any /*object*/;
|
|
28678
|
+
readonly payment_intent_id?: string;
|
|
28679
|
+
readonly reason: string;
|
|
28680
|
+
readonly status: string;
|
|
28681
|
+
readonly connected_account?: string;
|
|
28682
|
+
readonly balance_transactions: any /*object*/[];
|
|
28683
|
+
readonly dispute_created_at: string;
|
|
28684
|
+
readonly dispute_expires_at?: string;
|
|
28685
|
+
readonly has_evidence?: boolean;
|
|
28686
|
+
readonly past_due?: boolean;
|
|
28687
|
+
readonly submission_count?: number;
|
|
28688
|
+
readonly is_charge_refundable: boolean;
|
|
28689
|
+
readonly live_mode: boolean;
|
|
28690
|
+
readonly payment_method_type?: string;
|
|
28691
|
+
readonly payment_method_reason_code?: string;
|
|
28692
|
+
readonly payment_method_card_brand?: string;
|
|
28693
|
+
readonly updated_by_user_id: string;
|
|
28694
|
+
readonly created_at: string;
|
|
28695
|
+
readonly updated_at: string;
|
|
28696
|
+
}
|
|
28697
|
+
|
|
28501
28698
|
interface StripeInternalRefund {
|
|
28502
28699
|
readonly id: string;
|
|
28503
28700
|
readonly flow_refund_id: string;
|
|
@@ -29607,6 +29804,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29607
29804
|
| io.flow.internal.v0.models.AdyenCaptureUpserted
|
|
29608
29805
|
| io.flow.internal.v0.models.AdyenRefundDeleted
|
|
29609
29806
|
| io.flow.internal.v0.models.AdyenRefundUpserted
|
|
29807
|
+
| io.flow.internal.v0.models.AdyenDisputeUpserted
|
|
29808
|
+
| io.flow.internal.v0.models.AdyenDisputeDeleted
|
|
29610
29809
|
| io.flow.internal.v0.models.IndexAssignmentUpserted
|
|
29611
29810
|
| io.flow.internal.v0.models.IndexAssignmentDeleted
|
|
29612
29811
|
| io.flow.internal.v0.models.FulfillmentUpserted
|
|
@@ -29680,6 +29879,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29680
29879
|
| io.flow.internal.v0.models.CatalogSettingsDeleted
|
|
29681
29880
|
| io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted
|
|
29682
29881
|
| io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted
|
|
29882
|
+
| io.flow.internal.v0.models.ChannelOrderAcceptanceFailed
|
|
29683
29883
|
| io.flow.internal.v0.models.CheckoutConfigurationUpserted
|
|
29684
29884
|
| io.flow.internal.v0.models.CheckoutConfigurationDeleted
|
|
29685
29885
|
| io.flow.internal.v0.models.CommercialInvoiceInternalUpserted
|
|
@@ -29935,6 +30135,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29935
30135
|
| io.flow.internal.v0.models.StripeCaptureUpserted
|
|
29936
30136
|
| io.flow.internal.v0.models.StripeRefundDeleted
|
|
29937
30137
|
| io.flow.internal.v0.models.StripeRefundUpserted
|
|
30138
|
+
| io.flow.internal.v0.models.StripeDisputeUpserted
|
|
30139
|
+
| io.flow.internal.v0.models.StripeDisputeDeleted
|
|
29938
30140
|
| io.flow.internal.v0.models.LiabilityRemittancePlanUpserted
|
|
29939
30141
|
| io.flow.internal.v0.models.LiabilityRemittancePlanDeleted
|
|
29940
30142
|
| io.flow.internal.v0.models.SvitlanaItemUpserted
|
|
@@ -30305,6 +30507,10 @@ export type AdyenCaptureDeleted =
|
|
|
30305
30507
|
io.flow.internal.v0.models.AdyenCaptureDeleted;
|
|
30306
30508
|
export type AdyenCaptureUpserted =
|
|
30307
30509
|
io.flow.internal.v0.models.AdyenCaptureUpserted;
|
|
30510
|
+
export type AdyenDisputeDeleted =
|
|
30511
|
+
io.flow.internal.v0.models.AdyenDisputeDeleted;
|
|
30512
|
+
export type AdyenDisputeUpserted =
|
|
30513
|
+
io.flow.internal.v0.models.AdyenDisputeUpserted;
|
|
30308
30514
|
export type AdyenIntegrationType =
|
|
30309
30515
|
io.flow.internal.v0.enums.AdyenIntegrationType;
|
|
30310
30516
|
export type AdyenInternalAuthorization =
|
|
@@ -30313,6 +30519,8 @@ export type AdyenInternalCancel =
|
|
|
30313
30519
|
io.flow.internal.v0.models.AdyenInternalCancel;
|
|
30314
30520
|
export type AdyenInternalCapture =
|
|
30315
30521
|
io.flow.internal.v0.models.AdyenInternalCapture;
|
|
30522
|
+
export type AdyenInternalDispute =
|
|
30523
|
+
io.flow.internal.v0.models.AdyenInternalDispute;
|
|
30316
30524
|
export type AdyenInternalRefund =
|
|
30317
30525
|
io.flow.internal.v0.models.AdyenInternalRefund;
|
|
30318
30526
|
export type AdyenMerchant = io.flow.internal.v0.models.AdyenMerchant;
|
|
@@ -30559,6 +30767,7 @@ export type CalculatorOrganizationSettingsForm =
|
|
|
30559
30767
|
export type CalculatorOrganizationSettingsUpserted =
|
|
30560
30768
|
io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted;
|
|
30561
30769
|
export type CalculatorStamp = io.flow.internal.v0.unions.CalculatorStamp;
|
|
30770
|
+
export type CallRecord = io.flow.internal.v0.models.CallRecord;
|
|
30562
30771
|
export type CarrierAccount = io.flow.internal.v0.models.CarrierAccount;
|
|
30563
30772
|
export type CarrierAccountDeleted =
|
|
30564
30773
|
io.flow.internal.v0.models.CarrierAccountDeleted;
|
|
@@ -30679,6 +30888,12 @@ export type ChannelOrderAcceptanceDetails =
|
|
|
30679
30888
|
io.flow.internal.v0.models.ChannelOrderAcceptanceDetails;
|
|
30680
30889
|
export type ChannelOrderAcceptanceErrorAction =
|
|
30681
30890
|
io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction;
|
|
30891
|
+
export type ChannelOrderAcceptanceFailed =
|
|
30892
|
+
io.flow.internal.v0.models.ChannelOrderAcceptanceFailed;
|
|
30893
|
+
export type ChannelOrderAcceptanceFailure =
|
|
30894
|
+
io.flow.internal.v0.models.ChannelOrderAcceptanceFailure;
|
|
30895
|
+
export type ChannelOrderAcceptanceFailureReasonCode =
|
|
30896
|
+
io.flow.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode;
|
|
30682
30897
|
export type ChannelOrderAcceptanceForm =
|
|
30683
30898
|
io.flow.internal.v0.models.ChannelOrderAcceptanceForm;
|
|
30684
30899
|
export type ChannelOrderAcceptanceNextActionFrom =
|
|
@@ -31954,6 +32169,10 @@ export type MerchantGuidAssignmentDeleted =
|
|
|
31954
32169
|
io.flow.internal.v0.models.MerchantGuidAssignmentDeleted;
|
|
31955
32170
|
export type MerchantGuidAssignmentUpserted =
|
|
31956
32171
|
io.flow.internal.v0.models.MerchantGuidAssignmentUpserted;
|
|
32172
|
+
export type MerchantHubOverride =
|
|
32173
|
+
io.flow.internal.v0.models.MerchantHubOverride;
|
|
32174
|
+
export type MerchantHubOverrideForm =
|
|
32175
|
+
io.flow.internal.v0.models.MerchantHubOverrideForm;
|
|
31957
32176
|
export type MerchantOfRecordEntitySettings =
|
|
31958
32177
|
io.flow.internal.v0.models.MerchantOfRecordEntitySettings;
|
|
31959
32178
|
export type MerchantOfRecordEntitySettingsForm =
|
|
@@ -32459,6 +32678,7 @@ export type ProductClassificationJudgementForm =
|
|
|
32459
32678
|
io.flow.internal.v0.models.ProductClassificationJudgementForm;
|
|
32460
32679
|
export type ProductClassificationResult =
|
|
32461
32680
|
io.flow.internal.v0.models.ProductClassificationResult;
|
|
32681
|
+
export type ProductCurrencies = io.flow.internal.v0.models.ProductCurrencies;
|
|
32462
32682
|
export type ProductDetailSettingsForm =
|
|
32463
32683
|
io.flow.internal.v0.models.ProductDetailSettingsForm;
|
|
32464
32684
|
export type ProductHarmonization =
|
|
@@ -32468,6 +32688,7 @@ export type ProductHarmonizationForm =
|
|
|
32468
32688
|
export type ProductLabels = io.flow.internal.v0.models.ProductLabels;
|
|
32469
32689
|
export type ProductListSettingsForm =
|
|
32470
32690
|
io.flow.internal.v0.models.ProductListSettingsForm;
|
|
32691
|
+
export type ProductRecord = io.flow.internal.v0.models.ProductRecord;
|
|
32471
32692
|
export type ProductRestrictionResultValidationError =
|
|
32472
32693
|
io.flow.internal.v0.models.ProductRestrictionResultValidationError;
|
|
32473
32694
|
export type ProductRestrictionRuleDecision =
|
|
@@ -32479,6 +32700,7 @@ export type ProductRestrictionRuleDecisionUpserted =
|
|
|
32479
32700
|
export type ProductReviewHistory =
|
|
32480
32701
|
io.flow.internal.v0.models.ProductReviewHistory;
|
|
32481
32702
|
export type ProductStatus = io.flow.internal.v0.enums.ProductStatus;
|
|
32703
|
+
export type ProductTransaction = io.flow.internal.v0.models.ProductTransaction;
|
|
32482
32704
|
export type Profit = io.flow.internal.v0.models.Profit;
|
|
32483
32705
|
export type ProfitShare = io.flow.internal.v0.models.ProfitShare;
|
|
32484
32706
|
export type ProfitShareOrderReference =
|
|
@@ -32506,6 +32728,8 @@ export type ProofOfPostingShippingNotification =
|
|
|
32506
32728
|
io.flow.internal.v0.models.ProofOfPostingShippingNotification;
|
|
32507
32729
|
export type ProofOfPostingTimeElapsed =
|
|
32508
32730
|
io.flow.internal.v0.models.ProofOfPostingTimeElapsed;
|
|
32731
|
+
export type PublicHub = io.flow.internal.v0.models.PublicHub;
|
|
32732
|
+
export type PublicHubForm = io.flow.internal.v0.models.PublicHubForm;
|
|
32509
32733
|
export type Quote = io.flow.internal.v0.models.Quote;
|
|
32510
32734
|
export type QuoteDeleted = io.flow.internal.v0.models.QuoteDeleted;
|
|
32511
32735
|
export type QuoteRequest = io.flow.internal.v0.models.QuoteRequest;
|
|
@@ -33120,10 +33344,16 @@ export type StripeCaptureDeleted =
|
|
|
33120
33344
|
io.flow.internal.v0.models.StripeCaptureDeleted;
|
|
33121
33345
|
export type StripeCaptureUpserted =
|
|
33122
33346
|
io.flow.internal.v0.models.StripeCaptureUpserted;
|
|
33347
|
+
export type StripeDisputeDeleted =
|
|
33348
|
+
io.flow.internal.v0.models.StripeDisputeDeleted;
|
|
33349
|
+
export type StripeDisputeUpserted =
|
|
33350
|
+
io.flow.internal.v0.models.StripeDisputeUpserted;
|
|
33123
33351
|
export type StripeInternalAuthorization =
|
|
33124
33352
|
io.flow.internal.v0.models.StripeInternalAuthorization;
|
|
33125
33353
|
export type StripeInternalCapture =
|
|
33126
33354
|
io.flow.internal.v0.models.StripeInternalCapture;
|
|
33355
|
+
export type StripeInternalDispute =
|
|
33356
|
+
io.flow.internal.v0.models.StripeInternalDispute;
|
|
33127
33357
|
export type StripeInternalRefund =
|
|
33128
33358
|
io.flow.internal.v0.models.StripeInternalRefund;
|
|
33129
33359
|
export type StripeInternalReversal =
|
package/src/api.ts
CHANGED
|
@@ -3661,6 +3661,11 @@ declare namespace io.flow.v0.enums {
|
|
|
3661
3661
|
| 'deactivated'
|
|
3662
3662
|
| 'provisioned';
|
|
3663
3663
|
type OrganizationType = 'standalone' | 'channel';
|
|
3664
|
+
type OriginLocationSource =
|
|
3665
|
+
| 'public_hub_code'
|
|
3666
|
+
| 'merchant_hub_code_override'
|
|
3667
|
+
| 'shopify'
|
|
3668
|
+
| 'fallback_location';
|
|
3664
3669
|
type PackageDimensionsSource =
|
|
3665
3670
|
| 'provided'
|
|
3666
3671
|
| 'item_dimensions_estimated'
|
|
@@ -3834,6 +3839,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3834
3839
|
| 'Oversized'
|
|
3835
3840
|
| 'Restrict by Default'
|
|
3836
3841
|
| 'Supplements'
|
|
3842
|
+
| 'Tattoo Ink And PMU'
|
|
3837
3843
|
| 'Weapon'
|
|
3838
3844
|
| 'Wood';
|
|
3839
3845
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
@@ -4978,6 +4984,9 @@ declare namespace io.flow.v0.models {
|
|
|
4978
4984
|
readonly package?: io.flow.v0.models.ShippingLabelPackage;
|
|
4979
4985
|
readonly origin?: io.flow.v0.models.ShippingAddress;
|
|
4980
4986
|
readonly direction?: io.flow.v0.enums.Direction;
|
|
4987
|
+
readonly reference_id?: string;
|
|
4988
|
+
readonly origin_location_source?: io.flow.v0.enums.OriginLocationSource;
|
|
4989
|
+
readonly hub_code?: string;
|
|
4981
4990
|
}
|
|
4982
4991
|
|
|
4983
4992
|
interface BrowseOptinResponses {
|
|
@@ -6612,6 +6621,8 @@ declare namespace io.flow.v0.models {
|
|
|
6612
6621
|
readonly service?: string;
|
|
6613
6622
|
readonly shipment_recipient?: io.flow.v0.enums.ShipmentRecipient;
|
|
6614
6623
|
readonly package_dimensions_source?: io.flow.v0.enums.PackageDimensionsSource;
|
|
6624
|
+
readonly origin_location_source?: io.flow.v0.enums.OriginLocationSource;
|
|
6625
|
+
readonly reference_id?: string;
|
|
6615
6626
|
}
|
|
6616
6627
|
|
|
6617
6628
|
interface DetailedShippingNotificationForm {
|
|
@@ -8664,6 +8675,9 @@ declare namespace io.flow.v0.models {
|
|
|
8664
8675
|
readonly delivered?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
8665
8676
|
readonly rejected?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
8666
8677
|
readonly returned?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
8678
|
+
readonly crossed_border?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
8679
|
+
readonly destroyed?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
8680
|
+
readonly return_reversal?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
8667
8681
|
}
|
|
8668
8682
|
|
|
8669
8683
|
interface LabelTrackingSummaryUpdate {
|
|
@@ -13514,6 +13528,7 @@ declare namespace io.flow.v0.models {
|
|
|
13514
13528
|
readonly items: io.flow.v0.models.LineItemForm[];
|
|
13515
13529
|
readonly center_key?: string;
|
|
13516
13530
|
readonly direction?: io.flow.v0.enums.Direction;
|
|
13531
|
+
readonly reference_id?: string;
|
|
13517
13532
|
}
|
|
13518
13533
|
|
|
13519
13534
|
interface SummaryShippingNotificationForm {
|
|
@@ -16490,6 +16505,7 @@ export type OrganizationType = io.flow.v0.enums.OrganizationType;
|
|
|
16490
16505
|
export type OrganizationUpserted = io.flow.v0.models.OrganizationUpserted;
|
|
16491
16506
|
export type OrganizationUpsertedV2 = io.flow.v0.models.OrganizationUpsertedV2;
|
|
16492
16507
|
export type OrganizationVersion = io.flow.v0.models.OrganizationVersion;
|
|
16508
|
+
export type OriginLocationSource = io.flow.v0.enums.OriginLocationSource;
|
|
16493
16509
|
export type OriginalPrices = io.flow.v0.models.OriginalPrices;
|
|
16494
16510
|
export type OutboundCartonFee = io.flow.v0.models.OutboundCartonFee;
|
|
16495
16511
|
export type OversizePieceSurchargeRatecardFee =
|