@flowio/api-internal-prop-types 9.24.100 → 9.24.101
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api-internal.d.ts +175 -4
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +175 -4
- package/src/api-internal.js +248 -50
package/lib/api-internal.d.ts
CHANGED
|
@@ -4267,6 +4267,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4267
4267
|
readonly 'supporting_info'?: io.flow.external.paypal.v1.models.SupportingInfo;
|
|
4268
4268
|
readonly 'allowed_response_options'?: io.flow.external.paypal.v1.models.AllowedResponseOptions;
|
|
4269
4269
|
readonly 'links'?: io.flow.external.paypal.v1.models.Link[];
|
|
4270
|
+
readonly 'previous_status'?: io.flow.external.paypal.v1.enums.DisputeStatus;
|
|
4270
4271
|
}
|
|
4271
4272
|
|
|
4272
4273
|
interface DisputeExtension {
|
|
@@ -5209,6 +5210,7 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
5209
5210
|
type Channel = 'web';
|
|
5210
5211
|
type Contract = 'RECURRING';
|
|
5211
5212
|
type DeviceChannel = 'app' | 'browser';
|
|
5213
|
+
type DisputeStatus = 'Accepted' | 'Expired' | 'Lost' | 'Pending' | 'Responded' | 'Undefended' | 'Unresponded' | 'Won';
|
|
5212
5214
|
type EventCode = 'AUTHORISATION' | 'CANCELLATION' | 'REFUND' | 'CANCEL_OR_REFUND' | 'CAPTURE' | 'CAPTURE_FAILED' | 'REFUND_FAILED' | 'REFUNDED_REVERSED' | 'PAIDOUT_REVERSED' | 'REQUEST_FOR_INFORMATION' | 'CHARGEBACK' | 'CHARGEBACK_REVERSED' | 'NOTIFICATION_OF_CHARGEBACK' | 'NOTIFICATION_OF_FRAUD' | 'MANUAL_REVIEW_ACCEPT' | 'MANUAL_REVIEW_REJECT' | 'RECURRING_CONTRACT' | 'PAYOUT_EXPIRE' | 'PAYOUT_DECLINE' | 'PAYOUT_THIRDPARTY' | 'REFUND_WITH_DATA' | 'AUTHORISE_REFERRAL' | 'EXPIRE' | 'FRAUD_ONLY' | 'FUND_TRANSFER' | 'HANDLED_EXTERNALLY' | 'OFFER_CLOSED' | 'ORDER_OPENED' | 'ORDER_CLOSED' | 'PENDING' | 'PROCESS_RETRY' | 'REPORT_AVAILABLE' | 'SECOND_CHARGEBACK' | 'PREARBITRATION_WON' | 'PREARBITRATION_LOST' | 'INFORMATION_SUPPLIED' | 'DISPUTE_DEFENSE_PERIOD_ENDED' | 'ISSUER_RESPONSE_TIMEFRAME_EXPIRED';
|
|
5213
5215
|
type HttpRedirectMethod = 'GET' | 'POST';
|
|
5214
5216
|
type Operation = 'cancel' | 'capture' | 'refund';
|
|
@@ -5367,6 +5369,8 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5367
5369
|
readonly 'modificationMerchantReferences': string;
|
|
5368
5370
|
readonly 'chargebackSchemeCode': string;
|
|
5369
5371
|
readonly 'defensePeriodEndsAt'?: string;
|
|
5372
|
+
readonly 'disputeStatus'?: io.flow.adyen.v0.enums.DisputeStatus;
|
|
5373
|
+
readonly 'defendable'?: string;
|
|
5370
5374
|
}
|
|
5371
5375
|
|
|
5372
5376
|
interface Error {
|
|
@@ -7220,6 +7224,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7220
7224
|
readonly 'location_id'?: number;
|
|
7221
7225
|
readonly 'subtotal'?: number;
|
|
7222
7226
|
readonly 'total_tax'?: number;
|
|
7227
|
+
readonly 'total_tax_set'?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
7223
7228
|
}
|
|
7224
7229
|
|
|
7225
7230
|
interface ShopifyOrderShippingLine {
|
|
@@ -8642,6 +8647,12 @@ declare namespace io.flow.experience.v0.models {
|
|
|
8642
8647
|
readonly 'display'?: io.flow.experience.v0.enums.DeliveredDutyDisplayType;
|
|
8643
8648
|
}
|
|
8644
8649
|
|
|
8650
|
+
interface DestinationContactDetail {
|
|
8651
|
+
readonly 'title': string;
|
|
8652
|
+
readonly 'country': string;
|
|
8653
|
+
readonly 'import_identifier': string;
|
|
8654
|
+
}
|
|
8655
|
+
|
|
8645
8656
|
interface Discount {
|
|
8646
8657
|
readonly 'discriminator': 'discount';
|
|
8647
8658
|
readonly 'id': string;
|
|
@@ -9004,6 +9015,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
9004
9015
|
readonly 'tax_registration'?: io.flow.harmonization.v0.models.TaxRegistration;
|
|
9005
9016
|
readonly 'geo'?: io.flow.experience.v0.models.OrderGeo;
|
|
9006
9017
|
readonly 'device_details'?: io.flow.payment.v0.unions.DeviceDetails;
|
|
9018
|
+
readonly 'destination_contact_details'?: io.flow.experience.v0.models.DestinationContactDetail[];
|
|
9007
9019
|
}
|
|
9008
9020
|
|
|
9009
9021
|
interface OrderAddress {
|
|
@@ -10656,6 +10668,7 @@ declare namespace io.flow.tracking.v0.models {
|
|
|
10656
10668
|
readonly 'in_transit': io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
10657
10669
|
readonly 'delivered'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
10658
10670
|
readonly 'rejected'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
10671
|
+
readonly 'returned'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
10659
10672
|
}
|
|
10660
10673
|
|
|
10661
10674
|
interface LabelTrackingSummaryUpdate {
|
|
@@ -11036,6 +11049,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
11036
11049
|
readonly 'local'?: io.flow.catalog.v0.models.Local;
|
|
11037
11050
|
readonly 'created_at'?: string;
|
|
11038
11051
|
readonly 'updated_at'?: string;
|
|
11052
|
+
readonly 'deleted_at'?: string;
|
|
11039
11053
|
}
|
|
11040
11054
|
|
|
11041
11055
|
interface ItemAttributesPatchForm {
|
|
@@ -11053,6 +11067,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
11053
11067
|
readonly 'attributes'?: Record<string, string>;
|
|
11054
11068
|
readonly 'dimensions'?: io.flow.common.v0.models.Dimensions;
|
|
11055
11069
|
readonly 'images'?: io.flow.catalog.v0.models.ImageForm[];
|
|
11070
|
+
readonly 'deleted_at'?: string;
|
|
11056
11071
|
}
|
|
11057
11072
|
|
|
11058
11073
|
interface ItemFormOverlay {
|
|
@@ -11066,6 +11081,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
11066
11081
|
readonly 'attributes'?: Record<string, string>;
|
|
11067
11082
|
readonly 'dimensions'?: io.flow.common.v0.models.Dimensions;
|
|
11068
11083
|
readonly 'images'?: io.flow.catalog.v0.models.ImageForm[];
|
|
11084
|
+
readonly 'deleted_at'?: string;
|
|
11069
11085
|
}
|
|
11070
11086
|
|
|
11071
11087
|
interface ItemFormOverlayForm {
|
|
@@ -11078,6 +11094,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
11078
11094
|
readonly 'attributes'?: Record<string, string>;
|
|
11079
11095
|
readonly 'dimensions'?: io.flow.common.v0.models.Dimensions;
|
|
11080
11096
|
readonly 'images'?: io.flow.catalog.v0.models.ImageForm[];
|
|
11097
|
+
readonly 'deleted_at'?: string;
|
|
11081
11098
|
}
|
|
11082
11099
|
|
|
11083
11100
|
interface ItemPriceUpdateForm {
|
|
@@ -11567,7 +11584,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
11567
11584
|
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer' | 'negative_balance_guarantee';
|
|
11568
11585
|
type PayoutAttachmentType = 'transactions';
|
|
11569
11586
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
11570
|
-
type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance';
|
|
11587
|
+
type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance' | 'unfulfilled_amount_greater_than_negative_balance' | 'account_payment_hold';
|
|
11571
11588
|
type StatementAttachmentType = 'csv';
|
|
11572
11589
|
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund';
|
|
11573
11590
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
@@ -13939,6 +13956,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13939
13956
|
type DiscountRequestOrderEntitlementKey = 'subtotal';
|
|
13940
13957
|
type DisputeBillable = 'flow' | 'organization';
|
|
13941
13958
|
type DisputeCategory = 'friendly_fraud' | 'true_fraud' | 'processing_error';
|
|
13959
|
+
type DisputeDefenseOutcome = 'defended' | 'undefended' | 'undefendable';
|
|
13942
13960
|
type DisputeEvidence = 'proof_of_delivery' | 'proof_of_fulfillment' | 'other';
|
|
13943
13961
|
type DisputeImportStatus = 'new' | 'processing' | 'completed' | 'failed';
|
|
13944
13962
|
type DisputeImportType = 'adyen_dispute' | 'paypal_dispute';
|
|
@@ -13958,7 +13976,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13958
13976
|
type EldarItemType = 'digital' | 'physical';
|
|
13959
13977
|
type EmptyAttribute = 'irrelevant';
|
|
13960
13978
|
type ErpFileType = 'vendor';
|
|
13961
|
-
type EventType = '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' | '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_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
13979
|
+
type EventType = 'adjusted_estimates_upserted' | 'adjusted_estimates_deleted' | 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'eldar_item_upserted' | 'eldar_item_deleted' | 'harinath_item_upserted' | 'harinath_item_deleted' | 'konstantin_item_upserted' | 'konstantin_item_deleted' | 'matias_item_upserted' | 'matias_item_deleted' | 'michaelyan_item_upserted' | 'michaelyan_item_deleted' | 'miljenko_item_upserted' | 'miljenko_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'thiago_item_upserted' | 'thiago_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
13962
13980
|
type ExperienceImportType = 'experience_with_settings';
|
|
13963
13981
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
13964
13982
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -13993,6 +14011,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13993
14011
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
13994
14012
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
13995
14013
|
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_address_repair' | 'merchant_operations' | 'globale_system';
|
|
14014
|
+
type LabelRequestResultOrganizationType = 'all' | 'legacy_production' | 'managed_markets_production' | 'sandbox';
|
|
14015
|
+
type LabelRequestResultState = 'success' | 'failure';
|
|
13996
14016
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
13997
14017
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
13998
14018
|
type LogisticsCapability = 'logistics_address_correction';
|
|
@@ -14112,6 +14132,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14112
14132
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax' | 'refund';
|
|
14113
14133
|
type ThiagoItemType = 'digital' | 'physical';
|
|
14114
14134
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
14135
|
+
type TrackingLabelDimensionsSource = 'aftership' | 'carrier_api';
|
|
14115
14136
|
type TrackingProcessingFailureClassification = 'tracking_expired' | 'expired_tracking_number_new_event' | 'new_tracking_number_expired_event' | 'origin_mismatch' | 'destination_mismatch' | 'other';
|
|
14116
14137
|
type TransactionPostingMethod = 'time' | 'proof';
|
|
14117
14138
|
type TransferMethod = 'ach';
|
|
@@ -14383,6 +14404,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14383
14404
|
readonly 'province_code': io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
14384
14405
|
}
|
|
14385
14406
|
|
|
14407
|
+
interface AdjustedEstimates {
|
|
14408
|
+
readonly 'id': string;
|
|
14409
|
+
readonly 'organization_id': string;
|
|
14410
|
+
readonly 'label_id': string;
|
|
14411
|
+
readonly 'estimates': io.flow.label.v0.models.ShippingLabelHopSummary[];
|
|
14412
|
+
}
|
|
14413
|
+
|
|
14414
|
+
interface AdjustedEstimatesDeleted {
|
|
14415
|
+
readonly 'discriminator': 'adjusted_estimates_deleted';
|
|
14416
|
+
readonly 'event_id': string;
|
|
14417
|
+
readonly 'timestamp': string;
|
|
14418
|
+
readonly 'organization': string;
|
|
14419
|
+
readonly 'id': string;
|
|
14420
|
+
}
|
|
14421
|
+
|
|
14422
|
+
interface AdjustedEstimatesUpserted {
|
|
14423
|
+
readonly 'discriminator': 'adjusted_estimates_upserted';
|
|
14424
|
+
readonly 'event_id': string;
|
|
14425
|
+
readonly 'timestamp': string;
|
|
14426
|
+
readonly 'organization': string;
|
|
14427
|
+
readonly 'adjusted_estimates': io.flow.internal.v0.models.AdjustedEstimates;
|
|
14428
|
+
}
|
|
14429
|
+
|
|
14386
14430
|
interface AdjustmentAmountFixed {
|
|
14387
14431
|
readonly 'discriminator': 'fixed';
|
|
14388
14432
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
@@ -14836,6 +14880,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14836
14880
|
readonly 'value': string;
|
|
14837
14881
|
}
|
|
14838
14882
|
|
|
14883
|
+
interface AttemptStatistics {
|
|
14884
|
+
readonly 'merchant_count': number;
|
|
14885
|
+
readonly 'amount': number;
|
|
14886
|
+
readonly 'failed_merchant_count': number;
|
|
14887
|
+
readonly 'failed_amount': number;
|
|
14888
|
+
readonly 'success_ratio': number;
|
|
14889
|
+
}
|
|
14890
|
+
|
|
14839
14891
|
interface AttributeLabel {
|
|
14840
14892
|
readonly 'value': string;
|
|
14841
14893
|
readonly 'unverified': boolean;
|
|
@@ -16448,6 +16500,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16448
16500
|
readonly 'customs_description_suggestions': io.flow.internal.v0.models.CustomsDescriptionSuggestion[];
|
|
16449
16501
|
}
|
|
16450
16502
|
|
|
16503
|
+
interface ClassificationMerchant {
|
|
16504
|
+
readonly 'MerchantId': string;
|
|
16505
|
+
readonly 'PlatformId': io.flow.internal.v0.enums.ClassificationPlatform;
|
|
16506
|
+
readonly 'Name': string;
|
|
16507
|
+
readonly 'DateLastUpdated'?: string;
|
|
16508
|
+
readonly 'Order': number;
|
|
16509
|
+
}
|
|
16510
|
+
|
|
16511
|
+
interface ClassificationMerchantEnvelope {
|
|
16512
|
+
readonly 'messageType': string[];
|
|
16513
|
+
readonly 'message': io.flow.internal.v0.models.ClassificationMerchant;
|
|
16514
|
+
}
|
|
16515
|
+
|
|
16451
16516
|
interface ClassificationProduct {
|
|
16452
16517
|
readonly 'organization_id': string;
|
|
16453
16518
|
readonly 'product_id'?: string;
|
|
@@ -16627,6 +16692,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16627
16692
|
readonly 'rex_number'?: string;
|
|
16628
16693
|
readonly 'wee_number'?: string;
|
|
16629
16694
|
readonly 'business_gst_numbers': string[];
|
|
16695
|
+
readonly 'destination_gst_numbers'?: string[];
|
|
16630
16696
|
readonly 'vat_name': string;
|
|
16631
16697
|
readonly 'shipping_price': string;
|
|
16632
16698
|
readonly 'shipment_recipient'?: string;
|
|
@@ -17251,7 +17317,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17251
17317
|
interface Dispute {
|
|
17252
17318
|
readonly 'id': string;
|
|
17253
17319
|
readonly 'organization_id': string;
|
|
17254
|
-
readonly 'order'
|
|
17320
|
+
readonly 'order'?: io.flow.internal.v0.models.DisputeOrderReference;
|
|
17255
17321
|
readonly 'authorization': io.flow.internal.v0.models.DisputeAuthorizationReference;
|
|
17256
17322
|
readonly 'processor': io.flow.internal.v0.enums.DisputeProcessor;
|
|
17257
17323
|
readonly 'key': string;
|
|
@@ -17264,6 +17330,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17264
17330
|
readonly 'status': io.flow.internal.v0.enums.DisputeStatus;
|
|
17265
17331
|
readonly 'liability': io.flow.internal.v0.enums.DisputeLiability;
|
|
17266
17332
|
readonly 'billable': io.flow.internal.v0.enums.DisputeBillable;
|
|
17333
|
+
readonly 'defense_outcome'?: io.flow.internal.v0.enums.DisputeDefenseOutcome;
|
|
17267
17334
|
readonly 'details': io.flow.internal.v0.unions.DisputeDetails;
|
|
17268
17335
|
readonly 'issued_at': string;
|
|
17269
17336
|
readonly 'expires_at'?: string;
|
|
@@ -17283,6 +17350,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17283
17350
|
readonly 'id': string;
|
|
17284
17351
|
}
|
|
17285
17352
|
|
|
17353
|
+
interface DisputeDetail {
|
|
17354
|
+
readonly 'authorization': io.flow.internal.v0.models.SearchAuthorization;
|
|
17355
|
+
readonly 'dispute': io.flow.internal.v0.models.Dispute;
|
|
17356
|
+
}
|
|
17357
|
+
|
|
17286
17358
|
interface DisputeDetailsAdyen {
|
|
17287
17359
|
readonly 'discriminator': 'adyen';
|
|
17288
17360
|
readonly 'psp_reference': string;
|
|
@@ -17334,6 +17406,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17334
17406
|
readonly 'id': string;
|
|
17335
17407
|
}
|
|
17336
17408
|
|
|
17409
|
+
interface DisputeOverrideUpdateForm {
|
|
17410
|
+
readonly 'billable'?: io.flow.internal.v0.enums.DisputeBillable;
|
|
17411
|
+
readonly 'reporting_category'?: io.flow.internal.v0.enums.DisputeReportingCategory;
|
|
17412
|
+
readonly 'category'?: io.flow.internal.v0.enums.DisputeCategory;
|
|
17413
|
+
readonly 'status'?: io.flow.internal.v0.enums.DisputeStatus;
|
|
17414
|
+
}
|
|
17415
|
+
|
|
17337
17416
|
interface DisputeStatusForm {
|
|
17338
17417
|
readonly 'status': io.flow.internal.v0.enums.DisputeStatus;
|
|
17339
17418
|
}
|
|
@@ -17918,6 +17997,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17918
17997
|
readonly 'description'?: string;
|
|
17919
17998
|
readonly 'order_number'?: string;
|
|
17920
17999
|
readonly 'raw_carrier_event_code'?: string;
|
|
18000
|
+
readonly 'aggregator_status_code'?: string;
|
|
17921
18001
|
readonly 'created_at'?: string;
|
|
17922
18002
|
}
|
|
17923
18003
|
|
|
@@ -18672,6 +18752,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18672
18752
|
readonly 'id': string;
|
|
18673
18753
|
}
|
|
18674
18754
|
|
|
18755
|
+
interface FulfillmentFallbacks {
|
|
18756
|
+
readonly 'id': string;
|
|
18757
|
+
readonly 'packaging': io.flow.fulfillment.v0.models.Packaging[];
|
|
18758
|
+
readonly 'contact': io.flow.common.v0.models.Contact;
|
|
18759
|
+
readonly 'location'?: io.flow.common.v0.models.Address;
|
|
18760
|
+
}
|
|
18761
|
+
|
|
18762
|
+
interface FulfillmentFallbacksDeleted {
|
|
18763
|
+
readonly 'discriminator': 'fulfillment_fallbacks_deleted';
|
|
18764
|
+
readonly 'event_id': string;
|
|
18765
|
+
readonly 'timestamp': string;
|
|
18766
|
+
readonly 'organization': string;
|
|
18767
|
+
readonly 'id': string;
|
|
18768
|
+
}
|
|
18769
|
+
|
|
18770
|
+
interface FulfillmentFallbacksUpserted {
|
|
18771
|
+
readonly 'discriminator': 'fulfillment_fallbacks_upserted';
|
|
18772
|
+
readonly 'event_id': string;
|
|
18773
|
+
readonly 'timestamp': string;
|
|
18774
|
+
readonly 'organization': string;
|
|
18775
|
+
readonly 'fulfillment_fallbacks': io.flow.internal.v0.models.FulfillmentFallbacks;
|
|
18776
|
+
}
|
|
18777
|
+
|
|
18675
18778
|
interface FulfillmentInternalExperienceReference {
|
|
18676
18779
|
readonly 'id': string;
|
|
18677
18780
|
readonly 'key': string;
|
|
@@ -19815,6 +19918,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19815
19918
|
readonly 'label_request_error': io.flow.internal.v0.models.LabelRequestError;
|
|
19816
19919
|
}
|
|
19817
19920
|
|
|
19921
|
+
interface LabelRequestResult {
|
|
19922
|
+
readonly 'id': string;
|
|
19923
|
+
readonly 'created_at': string;
|
|
19924
|
+
readonly 'state': io.flow.internal.v0.enums.LabelRequestResultState;
|
|
19925
|
+
readonly 'organization_id': string;
|
|
19926
|
+
readonly 'order_number': string;
|
|
19927
|
+
readonly 'label_request_method': io.flow.label.v0.enums.LabelRequestMethod;
|
|
19928
|
+
readonly 'carrier_id'?: string;
|
|
19929
|
+
readonly 'carrier_tracking_number'?: string;
|
|
19930
|
+
readonly 'url'?: string;
|
|
19931
|
+
readonly 'error'?: string;
|
|
19932
|
+
readonly 'suggested_responsibility'?: io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
19933
|
+
readonly 'origin_country'?: string;
|
|
19934
|
+
readonly 'destination_country'?: string;
|
|
19935
|
+
}
|
|
19936
|
+
|
|
19818
19937
|
interface LabelSummary {
|
|
19819
19938
|
readonly 'id': string;
|
|
19820
19939
|
readonly 'commercial_invoice'?: string;
|
|
@@ -20892,6 +21011,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20892
21011
|
readonly 'percent': number;
|
|
20893
21012
|
}
|
|
20894
21013
|
|
|
21014
|
+
interface NegativeDebitMetrics {
|
|
21015
|
+
readonly 'current_attempt': io.flow.internal.v0.models.AttemptStatistics;
|
|
21016
|
+
readonly 'second_attempt': io.flow.internal.v0.models.AttemptStatistics;
|
|
21017
|
+
readonly 'third_attempt': io.flow.internal.v0.models.AttemptStatistics;
|
|
21018
|
+
}
|
|
21019
|
+
|
|
20895
21020
|
interface NextBillingStatement {
|
|
20896
21021
|
readonly 'date': string;
|
|
20897
21022
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -21168,6 +21293,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21168
21293
|
readonly 'created_at': string;
|
|
21169
21294
|
readonly 'updated_at': string;
|
|
21170
21295
|
readonly 'shopify_order_id'?: string;
|
|
21296
|
+
readonly 'disputes': io.flow.internal.v0.models.DisputeDetail[];
|
|
21171
21297
|
}
|
|
21172
21298
|
|
|
21173
21299
|
interface OrderFulfillmentDeleted {
|
|
@@ -25661,6 +25787,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25661
25787
|
readonly 'tracking_label': io.flow.internal.v0.models.ExportTrackingLabel;
|
|
25662
25788
|
}
|
|
25663
25789
|
|
|
25790
|
+
interface TrackingLabelDimensions {
|
|
25791
|
+
readonly 'id': string;
|
|
25792
|
+
readonly 'organization_id': string;
|
|
25793
|
+
readonly 'tracking_label_id': string;
|
|
25794
|
+
readonly 'source': io.flow.internal.v0.enums.TrackingLabelDimensionsSource;
|
|
25795
|
+
readonly 'created_at': string;
|
|
25796
|
+
readonly 'dimensions': io.flow.common.v0.models.Dimensions;
|
|
25797
|
+
}
|
|
25798
|
+
|
|
25799
|
+
interface TrackingLabelDimensionsDeleted {
|
|
25800
|
+
readonly 'discriminator': 'tracking_label_dimensions_deleted';
|
|
25801
|
+
readonly 'event_id': string;
|
|
25802
|
+
readonly 'timestamp': string;
|
|
25803
|
+
readonly 'organization': string;
|
|
25804
|
+
readonly 'id': string;
|
|
25805
|
+
}
|
|
25806
|
+
|
|
25807
|
+
interface TrackingLabelDimensionsUpserted {
|
|
25808
|
+
readonly 'discriminator': 'tracking_label_dimensions_upserted';
|
|
25809
|
+
readonly 'event_id': string;
|
|
25810
|
+
readonly 'timestamp': string;
|
|
25811
|
+
readonly 'organization': string;
|
|
25812
|
+
readonly 'tracking_label_dimensions': io.flow.internal.v0.models.TrackingLabelDimensions;
|
|
25813
|
+
}
|
|
25814
|
+
|
|
25664
25815
|
interface TrackingLabelEventDeletedV2 {
|
|
25665
25816
|
readonly 'discriminator': 'tracking_label_event_deleted_v2';
|
|
25666
25817
|
readonly 'event_id': string;
|
|
@@ -26080,7 +26231,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26080
26231
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
26081
26232
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
|
|
26082
26233
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
26083
|
-
type Event = (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.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.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
26234
|
+
type Event = (io.flow.internal.v0.models.AdjustedEstimatesUpserted | io.flow.internal.v0.models.AdjustedEstimatesDeleted | io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.EldarItemUpserted | io.flow.internal.v0.models.EldarItemDeleted | io.flow.internal.v0.models.HarinathItemUpserted | io.flow.internal.v0.models.HarinathItemDeleted | io.flow.internal.v0.models.KonstantinItemUpserted | io.flow.internal.v0.models.KonstantinItemDeleted | io.flow.internal.v0.models.MatiasItemUpserted | io.flow.internal.v0.models.MatiasItemDeleted | io.flow.internal.v0.models.MichaelyanItemUpserted | io.flow.internal.v0.models.MichaelyanItemDeleted | io.flow.internal.v0.models.MiljenkoItemUpserted | io.flow.internal.v0.models.MiljenkoItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | io.flow.internal.v0.models.ThiagoItemUpserted | io.flow.internal.v0.models.ThiagoItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
26084
26235
|
type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
|
|
26085
26236
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
26086
26237
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -26203,6 +26354,7 @@ export const deminimisAdjustmentType: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
26203
26354
|
export const discountRequestOrderEntitlementKey: PropTypes.Requireable<io.flow.internal.v0.enums.DiscountRequestOrderEntitlementKey>;
|
|
26204
26355
|
export const disputeBillable: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeBillable>;
|
|
26205
26356
|
export const disputeCategory: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeCategory>;
|
|
26357
|
+
export const disputeDefenseOutcome: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeDefenseOutcome>;
|
|
26206
26358
|
export const disputeEvidence: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeEvidence>;
|
|
26207
26359
|
export const disputeImportStatus: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeImportStatus>;
|
|
26208
26360
|
export const disputeImportType: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeImportType>;
|
|
@@ -26257,6 +26409,8 @@ export const labelBillingStrategy: PropTypes.Requireable<io.flow.internal.v0.enu
|
|
|
26257
26409
|
export const labelCancellationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCancellationErrorCode>;
|
|
26258
26410
|
export const labelCreationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCreationStatus>;
|
|
26259
26411
|
export const labelRequestErrorHandlingResponsibility: PropTypes.Requireable<io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility>;
|
|
26412
|
+
export const labelRequestResultOrganizationType: PropTypes.Requireable<io.flow.internal.v0.enums.LabelRequestResultOrganizationType>;
|
|
26413
|
+
export const labelRequestResultState: PropTypes.Requireable<io.flow.internal.v0.enums.LabelRequestResultState>;
|
|
26260
26414
|
export const labelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.LabelTransactionType>;
|
|
26261
26415
|
export const liabilityType: PropTypes.Requireable<io.flow.internal.v0.enums.LiabilityType>;
|
|
26262
26416
|
export const logisticsCapability: PropTypes.Requireable<io.flow.internal.v0.enums.LogisticsCapability>;
|
|
@@ -26376,6 +26530,7 @@ export const taxParty: PropTypes.Requireable<io.flow.internal.v0.enums.TaxParty>
|
|
|
26376
26530
|
export const taxTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.TaxTransactionType>;
|
|
26377
26531
|
export const thiagoItemType: PropTypes.Requireable<io.flow.internal.v0.enums.ThiagoItemType>;
|
|
26378
26532
|
export const trackingIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.TrackingIntegrationType>;
|
|
26533
|
+
export const trackingLabelDimensionsSource: PropTypes.Requireable<io.flow.internal.v0.enums.TrackingLabelDimensionsSource>;
|
|
26379
26534
|
export const trackingProcessingFailureClassification: PropTypes.Requireable<io.flow.internal.v0.enums.TrackingProcessingFailureClassification>;
|
|
26380
26535
|
export const transactionPostingMethod: PropTypes.Requireable<io.flow.internal.v0.enums.TransactionPostingMethod>;
|
|
26381
26536
|
export const transferMethod: PropTypes.Requireable<io.flow.internal.v0.enums.TransferMethod>;
|
|
@@ -26415,6 +26570,9 @@ export const additionalImportTax: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
26415
26570
|
export const addressConfigurationProvinceSetting: PropTypes.Requireable<io.flow.internal.v0.models.AddressConfigurationProvinceSetting>;
|
|
26416
26571
|
export const addressConfigurationSetting: PropTypes.Requireable<io.flow.internal.v0.models.AddressConfigurationSetting>;
|
|
26417
26572
|
export const addressConfigurationSettingForm: PropTypes.Requireable<io.flow.internal.v0.models.AddressConfigurationSettingForm>;
|
|
26573
|
+
export const adjustedEstimates: PropTypes.Requireable<io.flow.internal.v0.models.AdjustedEstimates>;
|
|
26574
|
+
export const adjustedEstimatesDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AdjustedEstimatesDeleted>;
|
|
26575
|
+
export const adjustedEstimatesUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdjustedEstimatesUpserted>;
|
|
26418
26576
|
export const adjustmentAmountFixed: PropTypes.Requireable<io.flow.internal.v0.models.AdjustmentAmountFixed>;
|
|
26419
26577
|
export const adjustmentAmountPercentage: PropTypes.Requireable<io.flow.internal.v0.models.AdjustmentAmountPercentage>;
|
|
26420
26578
|
export const adjustmentDetailsAmountFixed: PropTypes.Requireable<io.flow.internal.v0.models.AdjustmentDetailsAmountFixed>;
|
|
@@ -26476,6 +26634,7 @@ export const allowedLabels: PropTypes.Requireable<io.flow.internal.v0.models.All
|
|
|
26476
26634
|
export const apmContent: PropTypes.Requireable<io.flow.internal.v0.models.ApmContent>;
|
|
26477
26635
|
export const applePayAuthorizationPayload: PropTypes.Requireable<io.flow.internal.v0.models.ApplePayAuthorizationPayload>;
|
|
26478
26636
|
export const applyAtValueForm: PropTypes.Requireable<io.flow.internal.v0.models.ApplyAtValueForm>;
|
|
26637
|
+
export const attemptStatistics: PropTypes.Requireable<io.flow.internal.v0.models.AttemptStatistics>;
|
|
26479
26638
|
export const attributeLabel: PropTypes.Requireable<io.flow.internal.v0.models.AttributeLabel>;
|
|
26480
26639
|
export const authenticationForm: PropTypes.Requireable<io.flow.internal.v0.models.AuthenticationForm>;
|
|
26481
26640
|
export const authorizationBundle: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizationBundle>;
|
|
@@ -26692,6 +26851,8 @@ export const classificationDetails: PropTypes.Requireable<io.flow.internal.v0.mo
|
|
|
26692
26851
|
export const classificationError: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationError>;
|
|
26693
26852
|
export const classificationFormWrapper: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationFormWrapper>;
|
|
26694
26853
|
export const classificationItem: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationItem>;
|
|
26854
|
+
export const classificationMerchant: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationMerchant>;
|
|
26855
|
+
export const classificationMerchantEnvelope: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationMerchantEnvelope>;
|
|
26695
26856
|
export const classificationProduct: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationProduct>;
|
|
26696
26857
|
export const classificationProductHarmonization: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationProductHarmonization>;
|
|
26697
26858
|
export const classificationProductId: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationProductId>;
|
|
@@ -26804,6 +26965,7 @@ export const discountRequestOrderForm: PropTypes.Requireable<io.flow.internal.v0
|
|
|
26804
26965
|
export const dispute: PropTypes.Requireable<io.flow.internal.v0.models.Dispute>;
|
|
26805
26966
|
export const disputeAuthorizationReference: PropTypes.Requireable<io.flow.internal.v0.models.DisputeAuthorizationReference>;
|
|
26806
26967
|
export const disputeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.DisputeDeleted>;
|
|
26968
|
+
export const disputeDetail: PropTypes.Requireable<io.flow.internal.v0.models.DisputeDetail>;
|
|
26807
26969
|
export const disputeDetailsAdyen: PropTypes.Requireable<io.flow.internal.v0.models.DisputeDetailsAdyen>;
|
|
26808
26970
|
export const disputeDetailsPaypal: PropTypes.Requireable<io.flow.internal.v0.models.DisputeDetailsPaypal>;
|
|
26809
26971
|
export const disputeDetailsStripe: PropTypes.Requireable<io.flow.internal.v0.models.DisputeDetailsStripe>;
|
|
@@ -26813,6 +26975,7 @@ export const disputeImportErrors: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
26813
26975
|
export const disputeImportForm: PropTypes.Requireable<io.flow.internal.v0.models.DisputeImportForm>;
|
|
26814
26976
|
export const disputeOrderReference: PropTypes.Requireable<io.flow.internal.v0.models.DisputeOrderReference>;
|
|
26815
26977
|
export const disputeOrganizationReference: PropTypes.Requireable<io.flow.internal.v0.models.DisputeOrganizationReference>;
|
|
26978
|
+
export const disputeOverrideUpdateForm: PropTypes.Requireable<io.flow.internal.v0.models.DisputeOverrideUpdateForm>;
|
|
26816
26979
|
export const disputeStatusForm: PropTypes.Requireable<io.flow.internal.v0.models.DisputeStatusForm>;
|
|
26817
26980
|
export const disputeTransaction: PropTypes.Requireable<io.flow.internal.v0.models.DisputeTransaction>;
|
|
26818
26981
|
export const disputeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.DisputeUpserted>;
|
|
@@ -26969,6 +27132,9 @@ export const fulfillmentBusiness: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
26969
27132
|
export const fulfillmentCancel: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentCancel>;
|
|
26970
27133
|
export const fulfillmentCarrier: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentCarrier>;
|
|
26971
27134
|
export const fulfillmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentDeleted>;
|
|
27135
|
+
export const fulfillmentFallbacks: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentFallbacks>;
|
|
27136
|
+
export const fulfillmentFallbacksDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentFallbacksDeleted>;
|
|
27137
|
+
export const fulfillmentFallbacksUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentFallbacksUpserted>;
|
|
26972
27138
|
export const fulfillmentInternalExperienceReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentInternalExperienceReference>;
|
|
26973
27139
|
export const fulfillmentOrigin: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentOrigin>;
|
|
26974
27140
|
export const fulfillmentProofExternalFulfillmentProofReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference>;
|
|
@@ -27126,6 +27292,7 @@ export const labelMetadata: PropTypes.Requireable<io.flow.internal.v0.models.Lab
|
|
|
27126
27292
|
export const labelRequestError: PropTypes.Requireable<io.flow.internal.v0.models.LabelRequestError>;
|
|
27127
27293
|
export const labelRequestErrorDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelRequestErrorDeleted>;
|
|
27128
27294
|
export const labelRequestErrorUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelRequestErrorUpserted>;
|
|
27295
|
+
export const labelRequestResult: PropTypes.Requireable<io.flow.internal.v0.models.LabelRequestResult>;
|
|
27129
27296
|
export const labelSummary: PropTypes.Requireable<io.flow.internal.v0.models.LabelSummary>;
|
|
27130
27297
|
export const labelSurchargeForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurchargeForm>;
|
|
27131
27298
|
export const labelSurchargeSingleForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurchargeSingleForm>;
|
|
@@ -27268,6 +27435,7 @@ export const miljenkoItemDeleted: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
27268
27435
|
export const miljenkoItemForm: PropTypes.Requireable<io.flow.internal.v0.models.MiljenkoItemForm>;
|
|
27269
27436
|
export const miljenkoItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MiljenkoItemUpserted>;
|
|
27270
27437
|
export const moneyPercentage: PropTypes.Requireable<io.flow.internal.v0.models.MoneyPercentage>;
|
|
27438
|
+
export const negativeDebitMetrics: PropTypes.Requireable<io.flow.internal.v0.models.NegativeDebitMetrics>;
|
|
27271
27439
|
export const nextBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.NextBillingStatement>;
|
|
27272
27440
|
export const noCalculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.NoCalculatedTaxAmount>;
|
|
27273
27441
|
export const noClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.NoClassificationForm>;
|
|
@@ -27913,6 +28081,9 @@ export const trackingDebugLabelLocation: PropTypes.Requireable<io.flow.internal.
|
|
|
27913
28081
|
export const trackingDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingDeleted>;
|
|
27914
28082
|
export const trackingEvent: PropTypes.Requireable<io.flow.internal.v0.models.TrackingEvent>;
|
|
27915
28083
|
export const trackingLabelDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingLabelDeleted>;
|
|
28084
|
+
export const trackingLabelDimensions: PropTypes.Requireable<io.flow.internal.v0.models.TrackingLabelDimensions>;
|
|
28085
|
+
export const trackingLabelDimensionsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingLabelDimensionsDeleted>;
|
|
28086
|
+
export const trackingLabelDimensionsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingLabelDimensionsUpserted>;
|
|
27916
28087
|
export const trackingLabelEventDeletedV2: PropTypes.Requireable<io.flow.internal.v0.models.TrackingLabelEventDeletedV2>;
|
|
27917
28088
|
export const trackingLabelEventUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.TrackingLabelEventUpsertedV2>;
|
|
27918
28089
|
export const trackingLabelUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingLabelUpserted>;
|