@flowio/types 11.24.102 → 11.24.103
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +158 -4
- package/dist/api.d.ts +13 -1
- package/package.json +2 -2
- package/src/api-internal.ts +215 -2
- package/src/api.ts +17 -1
package/dist/api-internal.d.ts
CHANGED
|
@@ -3730,6 +3730,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
3730
3730
|
readonly supporting_info?: io.flow.external.paypal.v1.models.SupportingInfo;
|
|
3731
3731
|
readonly allowed_response_options?: io.flow.external.paypal.v1.models.AllowedResponseOptions;
|
|
3732
3732
|
readonly links?: io.flow.external.paypal.v1.models.Link[];
|
|
3733
|
+
readonly previous_status?: io.flow.external.paypal.v1.enums.DisputeStatus;
|
|
3733
3734
|
}
|
|
3734
3735
|
interface DisputeExtension {
|
|
3735
3736
|
readonly merchant_contacted?: boolean;
|
|
@@ -4547,6 +4548,7 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
4547
4548
|
type Channel = 'web';
|
|
4548
4549
|
type Contract = 'RECURRING';
|
|
4549
4550
|
type DeviceChannel = 'app' | 'browser';
|
|
4551
|
+
type DisputeStatus = 'Accepted' | 'Expired' | 'Lost' | 'Pending' | 'Responded' | 'Undefended' | 'Unresponded' | 'Won';
|
|
4550
4552
|
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';
|
|
4551
4553
|
type HttpRedirectMethod = 'GET' | 'POST';
|
|
4552
4554
|
type Operation = 'cancel' | 'capture' | 'refund';
|
|
@@ -4687,6 +4689,8 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4687
4689
|
readonly modificationMerchantReferences: string;
|
|
4688
4690
|
readonly chargebackSchemeCode: string;
|
|
4689
4691
|
readonly defensePeriodEndsAt?: string;
|
|
4692
|
+
readonly disputeStatus?: io.flow.adyen.v0.enums.DisputeStatus;
|
|
4693
|
+
readonly defendable?: string;
|
|
4690
4694
|
}
|
|
4691
4695
|
interface Error {
|
|
4692
4696
|
readonly status: number;
|
|
@@ -6340,6 +6344,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6340
6344
|
readonly location_id?: number;
|
|
6341
6345
|
readonly subtotal?: number;
|
|
6342
6346
|
readonly total_tax?: number;
|
|
6347
|
+
readonly total_tax_set?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
6343
6348
|
}
|
|
6344
6349
|
interface ShopifyOrderShippingLine {
|
|
6345
6350
|
readonly code?: string;
|
|
@@ -7563,6 +7568,11 @@ declare namespace io.flow.experience.v0.models {
|
|
|
7563
7568
|
readonly available: io.flow.common.v0.enums.DeliveredDuty[];
|
|
7564
7569
|
readonly display?: io.flow.experience.v0.enums.DeliveredDutyDisplayType;
|
|
7565
7570
|
}
|
|
7571
|
+
interface DestinationContactDetail {
|
|
7572
|
+
readonly title: string;
|
|
7573
|
+
readonly country: string;
|
|
7574
|
+
readonly import_identifier: string;
|
|
7575
|
+
}
|
|
7566
7576
|
interface Discount {
|
|
7567
7577
|
readonly discriminator: 'discount';
|
|
7568
7578
|
readonly id: string;
|
|
@@ -7875,6 +7885,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
7875
7885
|
readonly tax_registration?: io.flow.harmonization.v0.models.TaxRegistration;
|
|
7876
7886
|
readonly geo?: io.flow.experience.v0.models.OrderGeo;
|
|
7877
7887
|
readonly device_details?: io.flow.payment.v0.unions.DeviceDetails;
|
|
7888
|
+
readonly destination_contact_details?: io.flow.experience.v0.models.DestinationContactDetail[];
|
|
7878
7889
|
}
|
|
7879
7890
|
interface OrderAddress {
|
|
7880
7891
|
readonly text?: string;
|
|
@@ -9290,6 +9301,7 @@ declare namespace io.flow.tracking.v0.models {
|
|
|
9290
9301
|
readonly in_transit: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
9291
9302
|
readonly delivered?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
9292
9303
|
readonly rejected?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
9304
|
+
readonly returned?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
9293
9305
|
}
|
|
9294
9306
|
interface LabelTrackingSummaryUpdate {
|
|
9295
9307
|
readonly timestamp: string;
|
|
@@ -9624,6 +9636,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
9624
9636
|
readonly local?: io.flow.catalog.v0.models.Local;
|
|
9625
9637
|
readonly created_at?: string;
|
|
9626
9638
|
readonly updated_at?: string;
|
|
9639
|
+
readonly deleted_at?: string;
|
|
9627
9640
|
}
|
|
9628
9641
|
interface ItemAttributesPatchForm {
|
|
9629
9642
|
readonly attributes: Record<string, string>;
|
|
@@ -9639,6 +9652,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
9639
9652
|
readonly attributes?: Record<string, string>;
|
|
9640
9653
|
readonly dimensions?: io.flow.common.v0.models.Dimensions;
|
|
9641
9654
|
readonly images?: io.flow.catalog.v0.models.ImageForm[];
|
|
9655
|
+
readonly deleted_at?: string;
|
|
9642
9656
|
}
|
|
9643
9657
|
interface ItemFormOverlay {
|
|
9644
9658
|
readonly id: string;
|
|
@@ -9651,6 +9665,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
9651
9665
|
readonly attributes?: Record<string, string>;
|
|
9652
9666
|
readonly dimensions?: io.flow.common.v0.models.Dimensions;
|
|
9653
9667
|
readonly images?: io.flow.catalog.v0.models.ImageForm[];
|
|
9668
|
+
readonly deleted_at?: string;
|
|
9654
9669
|
}
|
|
9655
9670
|
interface ItemFormOverlayForm {
|
|
9656
9671
|
readonly number: string;
|
|
@@ -9662,6 +9677,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
9662
9677
|
readonly attributes?: Record<string, string>;
|
|
9663
9678
|
readonly dimensions?: io.flow.common.v0.models.Dimensions;
|
|
9664
9679
|
readonly images?: io.flow.catalog.v0.models.ImageForm[];
|
|
9680
|
+
readonly deleted_at?: string;
|
|
9665
9681
|
}
|
|
9666
9682
|
interface ItemPriceUpdateForm {
|
|
9667
9683
|
readonly number: string;
|
|
@@ -10073,7 +10089,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
10073
10089
|
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer' | 'negative_balance_guarantee';
|
|
10074
10090
|
type PayoutAttachmentType = 'transactions';
|
|
10075
10091
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
10076
|
-
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';
|
|
10092
|
+
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';
|
|
10077
10093
|
type StatementAttachmentType = 'csv';
|
|
10078
10094
|
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';
|
|
10079
10095
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
@@ -12117,6 +12133,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12117
12133
|
type DiscountRequestOrderEntitlementKey = 'subtotal';
|
|
12118
12134
|
type DisputeBillable = 'flow' | 'organization';
|
|
12119
12135
|
type DisputeCategory = 'friendly_fraud' | 'true_fraud' | 'processing_error';
|
|
12136
|
+
type DisputeDefenseOutcome = 'defended' | 'undefended' | 'undefendable';
|
|
12120
12137
|
type DisputeEvidence = 'proof_of_delivery' | 'proof_of_fulfillment' | 'other';
|
|
12121
12138
|
type DisputeImportStatus = 'new' | 'processing' | 'completed' | 'failed';
|
|
12122
12139
|
type DisputeImportType = 'adyen_dispute' | 'paypal_dispute';
|
|
@@ -12136,7 +12153,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12136
12153
|
type EldarItemType = 'digital' | 'physical';
|
|
12137
12154
|
type EmptyAttribute = 'irrelevant';
|
|
12138
12155
|
type ErpFileType = 'vendor';
|
|
12139
|
-
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';
|
|
12156
|
+
type EventType = 'adjusted_estimates_upserted' | 'adjusted_estimates_deleted' | 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'eldar_item_upserted' | 'eldar_item_deleted' | 'harinath_item_upserted' | 'harinath_item_deleted' | 'konstantin_item_upserted' | 'konstantin_item_deleted' | 'matias_item_upserted' | 'matias_item_deleted' | 'michaelyan_item_upserted' | 'michaelyan_item_deleted' | 'miljenko_item_upserted' | 'miljenko_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'thiago_item_upserted' | 'thiago_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
12140
12157
|
type ExperienceImportType = 'experience_with_settings';
|
|
12141
12158
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
12142
12159
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -12171,6 +12188,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12171
12188
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
12172
12189
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
12173
12190
|
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_address_repair' | 'merchant_operations' | 'globale_system';
|
|
12191
|
+
type LabelRequestResultOrganizationType = 'all' | 'legacy_production' | 'managed_markets_production' | 'sandbox';
|
|
12192
|
+
type LabelRequestResultState = 'success' | 'failure';
|
|
12174
12193
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
12175
12194
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
12176
12195
|
type LogisticsCapability = 'logistics_address_correction';
|
|
@@ -12290,6 +12309,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12290
12309
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax' | 'refund';
|
|
12291
12310
|
type ThiagoItemType = 'digital' | 'physical';
|
|
12292
12311
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
12312
|
+
type TrackingLabelDimensionsSource = 'aftership' | 'carrier_api';
|
|
12293
12313
|
type TrackingProcessingFailureClassification = 'tracking_expired' | 'expired_tracking_number_new_event' | 'new_tracking_number_expired_event' | 'origin_mismatch' | 'destination_mismatch' | 'other';
|
|
12294
12314
|
type TransactionPostingMethod = 'time' | 'proof';
|
|
12295
12315
|
type TransferMethod = 'ach';
|
|
@@ -12526,6 +12546,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12526
12546
|
interface AddressConfigurationSettingForm {
|
|
12527
12547
|
readonly province_code: io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
12528
12548
|
}
|
|
12549
|
+
interface AdjustedEstimates {
|
|
12550
|
+
readonly id: string;
|
|
12551
|
+
readonly organization_id: string;
|
|
12552
|
+
readonly label_id: string;
|
|
12553
|
+
readonly estimates: io.flow.label.v0.models.ShippingLabelHopSummary[];
|
|
12554
|
+
}
|
|
12555
|
+
interface AdjustedEstimatesDeleted {
|
|
12556
|
+
readonly discriminator: 'adjusted_estimates_deleted';
|
|
12557
|
+
readonly event_id: string;
|
|
12558
|
+
readonly timestamp: string;
|
|
12559
|
+
readonly organization: string;
|
|
12560
|
+
readonly id: string;
|
|
12561
|
+
}
|
|
12562
|
+
interface AdjustedEstimatesUpserted {
|
|
12563
|
+
readonly discriminator: 'adjusted_estimates_upserted';
|
|
12564
|
+
readonly event_id: string;
|
|
12565
|
+
readonly timestamp: string;
|
|
12566
|
+
readonly organization: string;
|
|
12567
|
+
readonly adjusted_estimates: io.flow.internal.v0.models.AdjustedEstimates;
|
|
12568
|
+
}
|
|
12529
12569
|
interface AdjustmentAmountFixed {
|
|
12530
12570
|
readonly discriminator: 'fixed';
|
|
12531
12571
|
readonly amount: io.flow.common.v0.models.Money;
|
|
@@ -12918,6 +12958,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12918
12958
|
interface ApplyAtValueForm {
|
|
12919
12959
|
readonly value: string;
|
|
12920
12960
|
}
|
|
12961
|
+
interface AttemptStatistics {
|
|
12962
|
+
readonly merchant_count: number;
|
|
12963
|
+
readonly amount: number;
|
|
12964
|
+
readonly failed_merchant_count: number;
|
|
12965
|
+
readonly failed_amount: number;
|
|
12966
|
+
readonly success_ratio: number;
|
|
12967
|
+
}
|
|
12921
12968
|
interface AttributeLabel {
|
|
12922
12969
|
readonly value: string;
|
|
12923
12970
|
readonly unverified: boolean;
|
|
@@ -14314,6 +14361,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14314
14361
|
readonly status?: io.flow.internal.v0.enums.UnclassifiedProductStatus;
|
|
14315
14362
|
readonly customs_description_suggestions: io.flow.internal.v0.models.CustomsDescriptionSuggestion[];
|
|
14316
14363
|
}
|
|
14364
|
+
interface ClassificationMerchant {
|
|
14365
|
+
readonly MerchantId: string;
|
|
14366
|
+
readonly PlatformId: io.flow.internal.v0.enums.ClassificationPlatform;
|
|
14367
|
+
readonly Name: string;
|
|
14368
|
+
readonly DateLastUpdated?: string;
|
|
14369
|
+
readonly Order: number;
|
|
14370
|
+
}
|
|
14371
|
+
interface ClassificationMerchantEnvelope {
|
|
14372
|
+
readonly messageType: string[];
|
|
14373
|
+
readonly message: io.flow.internal.v0.models.ClassificationMerchant;
|
|
14374
|
+
}
|
|
14317
14375
|
interface ClassificationProduct {
|
|
14318
14376
|
readonly organization_id: string;
|
|
14319
14377
|
readonly product_id?: string;
|
|
@@ -14471,6 +14529,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14471
14529
|
readonly rex_number?: string;
|
|
14472
14530
|
readonly wee_number?: string;
|
|
14473
14531
|
readonly business_gst_numbers: string[];
|
|
14532
|
+
readonly destination_gst_numbers?: string[];
|
|
14474
14533
|
readonly vat_name: string;
|
|
14475
14534
|
readonly shipping_price: string;
|
|
14476
14535
|
readonly shipment_recipient?: string;
|
|
@@ -15008,7 +15067,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15008
15067
|
interface Dispute {
|
|
15009
15068
|
readonly id: string;
|
|
15010
15069
|
readonly organization_id: string;
|
|
15011
|
-
readonly order
|
|
15070
|
+
readonly order?: io.flow.internal.v0.models.DisputeOrderReference;
|
|
15012
15071
|
readonly authorization: io.flow.internal.v0.models.DisputeAuthorizationReference;
|
|
15013
15072
|
readonly processor: io.flow.internal.v0.enums.DisputeProcessor;
|
|
15014
15073
|
readonly key: string;
|
|
@@ -15021,6 +15080,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15021
15080
|
readonly status: io.flow.internal.v0.enums.DisputeStatus;
|
|
15022
15081
|
readonly liability: io.flow.internal.v0.enums.DisputeLiability;
|
|
15023
15082
|
readonly billable: io.flow.internal.v0.enums.DisputeBillable;
|
|
15083
|
+
readonly defense_outcome?: io.flow.internal.v0.enums.DisputeDefenseOutcome;
|
|
15024
15084
|
readonly details: io.flow.internal.v0.unions.DisputeDetails;
|
|
15025
15085
|
readonly issued_at: string;
|
|
15026
15086
|
readonly expires_at?: string;
|
|
@@ -15037,6 +15097,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15037
15097
|
readonly organization: string;
|
|
15038
15098
|
readonly id: string;
|
|
15039
15099
|
}
|
|
15100
|
+
interface DisputeDetail {
|
|
15101
|
+
readonly authorization: io.flow.internal.v0.models.SearchAuthorization;
|
|
15102
|
+
readonly dispute: io.flow.internal.v0.models.Dispute;
|
|
15103
|
+
}
|
|
15040
15104
|
interface DisputeDetailsAdyen {
|
|
15041
15105
|
readonly discriminator: 'adyen';
|
|
15042
15106
|
readonly psp_reference: string;
|
|
@@ -15079,6 +15143,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15079
15143
|
interface DisputeOrganizationReference {
|
|
15080
15144
|
readonly id: string;
|
|
15081
15145
|
}
|
|
15146
|
+
interface DisputeOverrideUpdateForm {
|
|
15147
|
+
readonly billable?: io.flow.internal.v0.enums.DisputeBillable;
|
|
15148
|
+
readonly reporting_category?: io.flow.internal.v0.enums.DisputeReportingCategory;
|
|
15149
|
+
readonly category?: io.flow.internal.v0.enums.DisputeCategory;
|
|
15150
|
+
readonly status?: io.flow.internal.v0.enums.DisputeStatus;
|
|
15151
|
+
}
|
|
15082
15152
|
interface DisputeStatusForm {
|
|
15083
15153
|
readonly status: io.flow.internal.v0.enums.DisputeStatus;
|
|
15084
15154
|
}
|
|
@@ -15601,6 +15671,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15601
15671
|
readonly description?: string;
|
|
15602
15672
|
readonly order_number?: string;
|
|
15603
15673
|
readonly raw_carrier_event_code?: string;
|
|
15674
|
+
readonly aggregator_status_code?: string;
|
|
15604
15675
|
readonly created_at?: string;
|
|
15605
15676
|
}
|
|
15606
15677
|
interface ExternalFulfillmentProof {
|
|
@@ -16261,6 +16332,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16261
16332
|
readonly organization: string;
|
|
16262
16333
|
readonly id: string;
|
|
16263
16334
|
}
|
|
16335
|
+
interface FulfillmentFallbacks {
|
|
16336
|
+
readonly id: string;
|
|
16337
|
+
readonly packaging: io.flow.fulfillment.v0.models.Packaging[];
|
|
16338
|
+
readonly contact: io.flow.common.v0.models.Contact;
|
|
16339
|
+
readonly location?: io.flow.common.v0.models.Address;
|
|
16340
|
+
}
|
|
16341
|
+
interface FulfillmentFallbacksDeleted {
|
|
16342
|
+
readonly discriminator: 'fulfillment_fallbacks_deleted';
|
|
16343
|
+
readonly event_id: string;
|
|
16344
|
+
readonly timestamp: string;
|
|
16345
|
+
readonly organization: string;
|
|
16346
|
+
readonly id: string;
|
|
16347
|
+
}
|
|
16348
|
+
interface FulfillmentFallbacksUpserted {
|
|
16349
|
+
readonly discriminator: 'fulfillment_fallbacks_upserted';
|
|
16350
|
+
readonly event_id: string;
|
|
16351
|
+
readonly timestamp: string;
|
|
16352
|
+
readonly organization: string;
|
|
16353
|
+
readonly fulfillment_fallbacks: io.flow.internal.v0.models.FulfillmentFallbacks;
|
|
16354
|
+
}
|
|
16264
16355
|
interface FulfillmentInternalExperienceReference {
|
|
16265
16356
|
readonly id: string;
|
|
16266
16357
|
readonly key: string;
|
|
@@ -17247,6 +17338,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17247
17338
|
readonly organization: string;
|
|
17248
17339
|
readonly label_request_error: io.flow.internal.v0.models.LabelRequestError;
|
|
17249
17340
|
}
|
|
17341
|
+
interface LabelRequestResult {
|
|
17342
|
+
readonly id: string;
|
|
17343
|
+
readonly created_at: string;
|
|
17344
|
+
readonly state: io.flow.internal.v0.enums.LabelRequestResultState;
|
|
17345
|
+
readonly organization_id: string;
|
|
17346
|
+
readonly order_number: string;
|
|
17347
|
+
readonly label_request_method: io.flow.label.v0.enums.LabelRequestMethod;
|
|
17348
|
+
readonly carrier_id?: string;
|
|
17349
|
+
readonly carrier_tracking_number?: string;
|
|
17350
|
+
readonly url?: string;
|
|
17351
|
+
readonly error?: string;
|
|
17352
|
+
readonly suggested_responsibility?: io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
17353
|
+
readonly origin_country?: string;
|
|
17354
|
+
readonly destination_country?: string;
|
|
17355
|
+
}
|
|
17250
17356
|
interface LabelSummary {
|
|
17251
17357
|
readonly id: string;
|
|
17252
17358
|
readonly commercial_invoice?: string;
|
|
@@ -18182,6 +18288,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18182
18288
|
readonly discriminator: 'percentage';
|
|
18183
18289
|
readonly percent: number;
|
|
18184
18290
|
}
|
|
18291
|
+
interface NegativeDebitMetrics {
|
|
18292
|
+
readonly current_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
18293
|
+
readonly second_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
18294
|
+
readonly third_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
18295
|
+
}
|
|
18185
18296
|
interface NextBillingStatement {
|
|
18186
18297
|
readonly date: string;
|
|
18187
18298
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -18421,6 +18532,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18421
18532
|
readonly created_at: string;
|
|
18422
18533
|
readonly updated_at: string;
|
|
18423
18534
|
readonly shopify_order_id?: string;
|
|
18535
|
+
readonly disputes: io.flow.internal.v0.models.DisputeDetail[];
|
|
18424
18536
|
}
|
|
18425
18537
|
interface OrderFulfillmentDeleted {
|
|
18426
18538
|
readonly discriminator: 'order_fulfillment_deleted';
|
|
@@ -22306,6 +22418,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22306
22418
|
readonly organization: string;
|
|
22307
22419
|
readonly tracking_label: io.flow.internal.v0.models.ExportTrackingLabel;
|
|
22308
22420
|
}
|
|
22421
|
+
interface TrackingLabelDimensions {
|
|
22422
|
+
readonly id: string;
|
|
22423
|
+
readonly organization_id: string;
|
|
22424
|
+
readonly tracking_label_id: string;
|
|
22425
|
+
readonly source: io.flow.internal.v0.enums.TrackingLabelDimensionsSource;
|
|
22426
|
+
readonly created_at: string;
|
|
22427
|
+
readonly dimensions: io.flow.common.v0.models.Dimensions;
|
|
22428
|
+
}
|
|
22429
|
+
interface TrackingLabelDimensionsDeleted {
|
|
22430
|
+
readonly discriminator: 'tracking_label_dimensions_deleted';
|
|
22431
|
+
readonly event_id: string;
|
|
22432
|
+
readonly timestamp: string;
|
|
22433
|
+
readonly organization: string;
|
|
22434
|
+
readonly id: string;
|
|
22435
|
+
}
|
|
22436
|
+
interface TrackingLabelDimensionsUpserted {
|
|
22437
|
+
readonly discriminator: 'tracking_label_dimensions_upserted';
|
|
22438
|
+
readonly event_id: string;
|
|
22439
|
+
readonly timestamp: string;
|
|
22440
|
+
readonly organization: string;
|
|
22441
|
+
readonly tracking_label_dimensions: io.flow.internal.v0.models.TrackingLabelDimensions;
|
|
22442
|
+
}
|
|
22309
22443
|
interface TrackingLabelEventDeletedV2 {
|
|
22310
22444
|
readonly discriminator: 'tracking_label_event_deleted_v2';
|
|
22311
22445
|
readonly event_id: string;
|
|
@@ -22670,7 +22804,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
22670
22804
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
22671
22805
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
|
|
22672
22806
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
22673
|
-
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;
|
|
22807
|
+
type Event = io.flow.internal.v0.models.AdjustedEstimatesUpserted | io.flow.internal.v0.models.AdjustedEstimatesDeleted | io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.EldarItemUpserted | io.flow.internal.v0.models.EldarItemDeleted | io.flow.internal.v0.models.HarinathItemUpserted | io.flow.internal.v0.models.HarinathItemDeleted | io.flow.internal.v0.models.KonstantinItemUpserted | io.flow.internal.v0.models.KonstantinItemDeleted | io.flow.internal.v0.models.MatiasItemUpserted | io.flow.internal.v0.models.MatiasItemDeleted | io.flow.internal.v0.models.MichaelyanItemUpserted | io.flow.internal.v0.models.MichaelyanItemDeleted | io.flow.internal.v0.models.MiljenkoItemUpserted | io.flow.internal.v0.models.MiljenkoItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | io.flow.internal.v0.models.ThiagoItemUpserted | io.flow.internal.v0.models.ThiagoItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
22674
22808
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
22675
22809
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
22676
22810
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -22769,6 +22903,9 @@ export declare type AddressConfigurationProvinceSetting = io.flow.internal.v0.mo
|
|
|
22769
22903
|
export declare type AddressConfigurationSetting = io.flow.internal.v0.models.AddressConfigurationSetting;
|
|
22770
22904
|
export declare type AddressConfigurationSettingForm = io.flow.internal.v0.models.AddressConfigurationSettingForm;
|
|
22771
22905
|
export declare type AddressConfigurationSettingProvinceCode = io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
22906
|
+
export declare type AdjustedEstimates = io.flow.internal.v0.models.AdjustedEstimates;
|
|
22907
|
+
export declare type AdjustedEstimatesDeleted = io.flow.internal.v0.models.AdjustedEstimatesDeleted;
|
|
22908
|
+
export declare type AdjustedEstimatesUpserted = io.flow.internal.v0.models.AdjustedEstimatesUpserted;
|
|
22772
22909
|
export declare type AdjustmentAmount = io.flow.internal.v0.unions.AdjustmentAmount;
|
|
22773
22910
|
export declare type AdjustmentAmountFixed = io.flow.internal.v0.models.AdjustmentAmountFixed;
|
|
22774
22911
|
export declare type AdjustmentAmountPercentage = io.flow.internal.v0.models.AdjustmentAmountPercentage;
|
|
@@ -22836,6 +22973,7 @@ export declare type ApiCallReferenceId = io.flow.internal.v0.enums.ApiCallRefere
|
|
|
22836
22973
|
export declare type ApmContent = io.flow.internal.v0.models.ApmContent;
|
|
22837
22974
|
export declare type ApplePayAuthorizationPayload = io.flow.internal.v0.models.ApplePayAuthorizationPayload;
|
|
22838
22975
|
export declare type ApplyAtValueForm = io.flow.internal.v0.models.ApplyAtValueForm;
|
|
22976
|
+
export declare type AttemptStatistics = io.flow.internal.v0.models.AttemptStatistics;
|
|
22839
22977
|
export declare type AttributeLabel = io.flow.internal.v0.models.AttributeLabel;
|
|
22840
22978
|
export declare type AuthenticationForm = io.flow.internal.v0.models.AuthenticationForm;
|
|
22841
22979
|
export declare type AuthorizationBundle = io.flow.internal.v0.models.AuthorizationBundle;
|
|
@@ -23101,6 +23239,8 @@ export declare type ClassificationFormWrapper = io.flow.internal.v0.models.Class
|
|
|
23101
23239
|
export declare type ClassificationItem = io.flow.internal.v0.models.ClassificationItem;
|
|
23102
23240
|
export declare type ClassificationJudgementForm = io.flow.internal.v0.unions.ClassificationJudgementForm;
|
|
23103
23241
|
export declare type ClassificationLabelAttribute = io.flow.internal.v0.unions.ClassificationLabelAttribute;
|
|
23242
|
+
export declare type ClassificationMerchant = io.flow.internal.v0.models.ClassificationMerchant;
|
|
23243
|
+
export declare type ClassificationMerchantEnvelope = io.flow.internal.v0.models.ClassificationMerchantEnvelope;
|
|
23104
23244
|
export declare type ClassificationPlatform = io.flow.internal.v0.enums.ClassificationPlatform;
|
|
23105
23245
|
export declare type ClassificationProduct = io.flow.internal.v0.models.ClassificationProduct;
|
|
23106
23246
|
export declare type ClassificationProductHarmonization = io.flow.internal.v0.models.ClassificationProductHarmonization;
|
|
@@ -23238,7 +23378,9 @@ export declare type Dispute = io.flow.internal.v0.models.Dispute;
|
|
|
23238
23378
|
export declare type DisputeAuthorizationReference = io.flow.internal.v0.models.DisputeAuthorizationReference;
|
|
23239
23379
|
export declare type DisputeBillable = io.flow.internal.v0.enums.DisputeBillable;
|
|
23240
23380
|
export declare type DisputeCategory = io.flow.internal.v0.enums.DisputeCategory;
|
|
23381
|
+
export declare type DisputeDefenseOutcome = io.flow.internal.v0.enums.DisputeDefenseOutcome;
|
|
23241
23382
|
export declare type DisputeDeleted = io.flow.internal.v0.models.DisputeDeleted;
|
|
23383
|
+
export declare type DisputeDetail = io.flow.internal.v0.models.DisputeDetail;
|
|
23242
23384
|
export declare type DisputeDetails = io.flow.internal.v0.unions.DisputeDetails;
|
|
23243
23385
|
export declare type DisputeDetailsAdyen = io.flow.internal.v0.models.DisputeDetailsAdyen;
|
|
23244
23386
|
export declare type DisputeDetailsPaypal = io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
@@ -23253,6 +23395,7 @@ export declare type DisputeImportType = io.flow.internal.v0.enums.DisputeImportT
|
|
|
23253
23395
|
export declare type DisputeLiability = io.flow.internal.v0.enums.DisputeLiability;
|
|
23254
23396
|
export declare type DisputeOrderReference = io.flow.internal.v0.models.DisputeOrderReference;
|
|
23255
23397
|
export declare type DisputeOrganizationReference = io.flow.internal.v0.models.DisputeOrganizationReference;
|
|
23398
|
+
export declare type DisputeOverrideUpdateForm = io.flow.internal.v0.models.DisputeOverrideUpdateForm;
|
|
23256
23399
|
export declare type DisputeProcessor = io.flow.internal.v0.enums.DisputeProcessor;
|
|
23257
23400
|
export declare type DisputeReportingCategory = io.flow.internal.v0.enums.DisputeReportingCategory;
|
|
23258
23401
|
export declare type DisputeStatus = io.flow.internal.v0.enums.DisputeStatus;
|
|
@@ -23453,6 +23596,9 @@ export declare type FulfillmentBusiness = io.flow.internal.v0.models.Fulfillment
|
|
|
23453
23596
|
export declare type FulfillmentCancel = io.flow.internal.v0.models.FulfillmentCancel;
|
|
23454
23597
|
export declare type FulfillmentCarrier = io.flow.internal.v0.models.FulfillmentCarrier;
|
|
23455
23598
|
export declare type FulfillmentDeleted = io.flow.internal.v0.models.FulfillmentDeleted;
|
|
23599
|
+
export declare type FulfillmentFallbacks = io.flow.internal.v0.models.FulfillmentFallbacks;
|
|
23600
|
+
export declare type FulfillmentFallbacksDeleted = io.flow.internal.v0.models.FulfillmentFallbacksDeleted;
|
|
23601
|
+
export declare type FulfillmentFallbacksUpserted = io.flow.internal.v0.models.FulfillmentFallbacksUpserted;
|
|
23456
23602
|
export declare type FulfillmentInternalExperienceReference = io.flow.internal.v0.models.FulfillmentInternalExperienceReference;
|
|
23457
23603
|
export declare type FulfillmentOrigin = io.flow.internal.v0.models.FulfillmentOrigin;
|
|
23458
23604
|
export declare type FulfillmentProof = io.flow.internal.v0.unions.FulfillmentProof;
|
|
@@ -23638,6 +23784,9 @@ export declare type LabelRequestError = io.flow.internal.v0.models.LabelRequestE
|
|
|
23638
23784
|
export declare type LabelRequestErrorDeleted = io.flow.internal.v0.models.LabelRequestErrorDeleted;
|
|
23639
23785
|
export declare type LabelRequestErrorHandlingResponsibility = io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
23640
23786
|
export declare type LabelRequestErrorUpserted = io.flow.internal.v0.models.LabelRequestErrorUpserted;
|
|
23787
|
+
export declare type LabelRequestResult = io.flow.internal.v0.models.LabelRequestResult;
|
|
23788
|
+
export declare type LabelRequestResultOrganizationType = io.flow.internal.v0.enums.LabelRequestResultOrganizationType;
|
|
23789
|
+
export declare type LabelRequestResultState = io.flow.internal.v0.enums.LabelRequestResultState;
|
|
23641
23790
|
export declare type LabelSummary = io.flow.internal.v0.models.LabelSummary;
|
|
23642
23791
|
export declare type LabelSurchargeForm = io.flow.internal.v0.models.LabelSurchargeForm;
|
|
23643
23792
|
export declare type LabelSurchargeSingleForm = io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
@@ -23809,6 +23958,7 @@ export declare type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|
|
|
23809
23958
|
export declare type MoneyPercentage = io.flow.internal.v0.models.MoneyPercentage;
|
|
23810
23959
|
export declare type MoneyRule = io.flow.internal.v0.unions.MoneyRule;
|
|
23811
23960
|
export declare type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
|
|
23961
|
+
export declare type NegativeDebitMetrics = io.flow.internal.v0.models.NegativeDebitMetrics;
|
|
23812
23962
|
export declare type NextBillingStatement = io.flow.internal.v0.models.NextBillingStatement;
|
|
23813
23963
|
export declare type NoCalculatedTaxAmount = io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
23814
23964
|
export declare type NoClassificationForm = io.flow.internal.v0.models.NoClassificationForm;
|
|
@@ -24580,6 +24730,10 @@ export declare type TrackingDeleted = io.flow.internal.v0.models.TrackingDeleted
|
|
|
24580
24730
|
export declare type TrackingEvent = io.flow.internal.v0.models.TrackingEvent;
|
|
24581
24731
|
export declare type TrackingIntegrationType = io.flow.internal.v0.enums.TrackingIntegrationType;
|
|
24582
24732
|
export declare type TrackingLabelDeleted = io.flow.internal.v0.models.TrackingLabelDeleted;
|
|
24733
|
+
export declare type TrackingLabelDimensions = io.flow.internal.v0.models.TrackingLabelDimensions;
|
|
24734
|
+
export declare type TrackingLabelDimensionsDeleted = io.flow.internal.v0.models.TrackingLabelDimensionsDeleted;
|
|
24735
|
+
export declare type TrackingLabelDimensionsSource = io.flow.internal.v0.enums.TrackingLabelDimensionsSource;
|
|
24736
|
+
export declare type TrackingLabelDimensionsUpserted = io.flow.internal.v0.models.TrackingLabelDimensionsUpserted;
|
|
24583
24737
|
export declare type TrackingLabelEventDeletedV2 = io.flow.internal.v0.models.TrackingLabelEventDeletedV2;
|
|
24584
24738
|
export declare type TrackingLabelEventUpsertedV2 = io.flow.internal.v0.models.TrackingLabelEventUpsertedV2;
|
|
24585
24739
|
export declare type TrackingLabelUpserted = io.flow.internal.v0.models.TrackingLabelUpserted;
|
package/dist/api.d.ts
CHANGED
|
@@ -2303,7 +2303,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2303
2303
|
type PaymentType = 'card' | 'klarna' | 'googlepay' | 'paypal' | 'applepay' | 'ideal' | 'sofort' | 'afterpay' | 'bancontact' | 'twint' | 'przelewy24' | 'mobilepay' | 'grabpay' | 'vipps' | 'kcp_creditcard';
|
|
2304
2304
|
type PayoutAttachmentType = 'transactions';
|
|
2305
2305
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
2306
|
-
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';
|
|
2306
|
+
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';
|
|
2307
2307
|
type PermittedHttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
2308
2308
|
type PhysicalDeliverySpecialSerivce = 'cold_storage' | 'hazardous' | 'perishable';
|
|
2309
2309
|
type PostalType = 'eircode' | 'pin' | 'postal' | 'zip';
|
|
@@ -4551,6 +4551,11 @@ declare namespace io.flow.v0.models {
|
|
|
4551
4551
|
readonly components: io.flow.v0.enums.LevyComponent[];
|
|
4552
4552
|
readonly minimum?: number;
|
|
4553
4553
|
}
|
|
4554
|
+
interface DestinationContactDetail {
|
|
4555
|
+
readonly title: string;
|
|
4556
|
+
readonly country: string;
|
|
4557
|
+
readonly import_identifier: string;
|
|
4558
|
+
}
|
|
4554
4559
|
interface DetailedShippingLabelForm {
|
|
4555
4560
|
readonly discriminator: 'detailed_shipping_label_form';
|
|
4556
4561
|
readonly destination: io.flow.v0.models.ShippingAddress;
|
|
@@ -5991,6 +5996,7 @@ declare namespace io.flow.v0.models {
|
|
|
5991
5996
|
readonly local?: io.flow.v0.models.Local;
|
|
5992
5997
|
readonly created_at?: string;
|
|
5993
5998
|
readonly updated_at?: string;
|
|
5999
|
+
readonly deleted_at?: string;
|
|
5994
6000
|
}
|
|
5995
6001
|
interface ItemAttributesPatchForm {
|
|
5996
6002
|
readonly attributes: Record<string, string>;
|
|
@@ -6013,6 +6019,7 @@ declare namespace io.flow.v0.models {
|
|
|
6013
6019
|
readonly attributes?: Record<string, string>;
|
|
6014
6020
|
readonly dimensions?: io.flow.v0.models.Dimensions;
|
|
6015
6021
|
readonly images?: io.flow.v0.models.ImageForm[];
|
|
6022
|
+
readonly deleted_at?: string;
|
|
6016
6023
|
}
|
|
6017
6024
|
interface ItemFormOverlay {
|
|
6018
6025
|
readonly id: string;
|
|
@@ -6025,6 +6032,7 @@ declare namespace io.flow.v0.models {
|
|
|
6025
6032
|
readonly attributes?: Record<string, string>;
|
|
6026
6033
|
readonly dimensions?: io.flow.v0.models.Dimensions;
|
|
6027
6034
|
readonly images?: io.flow.v0.models.ImageForm[];
|
|
6035
|
+
readonly deleted_at?: string;
|
|
6028
6036
|
}
|
|
6029
6037
|
interface ItemFormOverlayForm {
|
|
6030
6038
|
readonly number: string;
|
|
@@ -6036,6 +6044,7 @@ declare namespace io.flow.v0.models {
|
|
|
6036
6044
|
readonly attributes?: Record<string, string>;
|
|
6037
6045
|
readonly dimensions?: io.flow.v0.models.Dimensions;
|
|
6038
6046
|
readonly images?: io.flow.v0.models.ImageForm[];
|
|
6047
|
+
readonly deleted_at?: string;
|
|
6039
6048
|
}
|
|
6040
6049
|
interface ItemInserted {
|
|
6041
6050
|
readonly discriminator: 'item_inserted';
|
|
@@ -6314,6 +6323,7 @@ declare namespace io.flow.v0.models {
|
|
|
6314
6323
|
readonly in_transit: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
6315
6324
|
readonly delivered?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
6316
6325
|
readonly rejected?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
6326
|
+
readonly returned?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
6317
6327
|
}
|
|
6318
6328
|
interface LabelTrackingSummaryUpdate {
|
|
6319
6329
|
readonly timestamp: string;
|
|
@@ -6951,6 +6961,7 @@ declare namespace io.flow.v0.models {
|
|
|
6951
6961
|
readonly tax_registration?: io.flow.v0.models.TaxRegistration;
|
|
6952
6962
|
readonly geo?: io.flow.v0.models.OrderGeo;
|
|
6953
6963
|
readonly device_details?: io.flow.v0.unions.DeviceDetails;
|
|
6964
|
+
readonly destination_contact_details?: io.flow.v0.models.DestinationContactDetail[];
|
|
6954
6965
|
}
|
|
6955
6966
|
interface OrderAddress {
|
|
6956
6967
|
readonly text?: string;
|
|
@@ -11872,6 +11883,7 @@ export declare type DeliveryWindowSummary = io.flow.v0.models.DeliveryWindowSumm
|
|
|
11872
11883
|
export declare type Deminimis = io.flow.v0.unions.Deminimis;
|
|
11873
11884
|
export declare type DeminimisPerItem = io.flow.v0.models.DeminimisPerItem;
|
|
11874
11885
|
export declare type DeminimisSimple = io.flow.v0.models.DeminimisSimple;
|
|
11886
|
+
export declare type DestinationContactDetail = io.flow.v0.models.DestinationContactDetail;
|
|
11875
11887
|
export declare type DetailedShippingLabelForm = io.flow.v0.models.DetailedShippingLabelForm;
|
|
11876
11888
|
export declare type DetailedShippingNotificationForm = io.flow.v0.models.DetailedShippingNotificationForm;
|
|
11877
11889
|
export declare type DetailedTaxRegistration = io.flow.v0.models.DetailedTaxRegistration;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/types",
|
|
3
|
-
"version": "11.24.
|
|
3
|
+
"version": "11.24.103",
|
|
4
4
|
"description": "TypeScript type definitions for custom types found in Flow API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"maintainers": [
|
|
26
26
|
"Christian Muñoz <christian.munoz@flow.io>"
|
|
27
27
|
],
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "f75564e8d259c34e55cd55031e0f18ad6abc6a96"
|
|
29
29
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -5347,6 +5347,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
5347
5347
|
readonly supporting_info?: io.flow.external.paypal.v1.models.SupportingInfo;
|
|
5348
5348
|
readonly allowed_response_options?: io.flow.external.paypal.v1.models.AllowedResponseOptions;
|
|
5349
5349
|
readonly links?: io.flow.external.paypal.v1.models.Link[];
|
|
5350
|
+
readonly previous_status?: io.flow.external.paypal.v1.enums.DisputeStatus;
|
|
5350
5351
|
}
|
|
5351
5352
|
|
|
5352
5353
|
interface DisputeExtension {
|
|
@@ -6395,6 +6396,15 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
6395
6396
|
type Channel = 'web';
|
|
6396
6397
|
type Contract = 'RECURRING';
|
|
6397
6398
|
type DeviceChannel = 'app' | 'browser';
|
|
6399
|
+
type DisputeStatus =
|
|
6400
|
+
| 'Accepted'
|
|
6401
|
+
| 'Expired'
|
|
6402
|
+
| 'Lost'
|
|
6403
|
+
| 'Pending'
|
|
6404
|
+
| 'Responded'
|
|
6405
|
+
| 'Undefended'
|
|
6406
|
+
| 'Unresponded'
|
|
6407
|
+
| 'Won';
|
|
6398
6408
|
type EventCode =
|
|
6399
6409
|
| 'AUTHORISATION'
|
|
6400
6410
|
| 'CANCELLATION'
|
|
@@ -6652,6 +6662,8 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
6652
6662
|
readonly modificationMerchantReferences: string;
|
|
6653
6663
|
readonly chargebackSchemeCode: string;
|
|
6654
6664
|
readonly defensePeriodEndsAt?: string;
|
|
6665
|
+
readonly disputeStatus?: io.flow.adyen.v0.enums.DisputeStatus;
|
|
6666
|
+
readonly defendable?: string;
|
|
6655
6667
|
}
|
|
6656
6668
|
|
|
6657
6669
|
interface Error {
|
|
@@ -8790,6 +8802,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
8790
8802
|
readonly location_id?: number;
|
|
8791
8803
|
readonly subtotal?: number;
|
|
8792
8804
|
readonly total_tax?: number;
|
|
8805
|
+
readonly total_tax_set?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
8793
8806
|
}
|
|
8794
8807
|
|
|
8795
8808
|
interface ShopifyOrderShippingLine {
|
|
@@ -10411,6 +10424,12 @@ declare namespace io.flow.experience.v0.models {
|
|
|
10411
10424
|
readonly display?: io.flow.experience.v0.enums.DeliveredDutyDisplayType;
|
|
10412
10425
|
}
|
|
10413
10426
|
|
|
10427
|
+
interface DestinationContactDetail {
|
|
10428
|
+
readonly title: string;
|
|
10429
|
+
readonly country: string;
|
|
10430
|
+
readonly import_identifier: string;
|
|
10431
|
+
}
|
|
10432
|
+
|
|
10414
10433
|
interface Discount {
|
|
10415
10434
|
readonly discriminator: 'discount';
|
|
10416
10435
|
readonly id: string;
|
|
@@ -10773,6 +10792,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
10773
10792
|
readonly tax_registration?: io.flow.harmonization.v0.models.TaxRegistration;
|
|
10774
10793
|
readonly geo?: io.flow.experience.v0.models.OrderGeo;
|
|
10775
10794
|
readonly device_details?: io.flow.payment.v0.unions.DeviceDetails;
|
|
10795
|
+
readonly destination_contact_details?: io.flow.experience.v0.models.DestinationContactDetail[];
|
|
10776
10796
|
}
|
|
10777
10797
|
|
|
10778
10798
|
interface OrderAddress {
|
|
@@ -12579,6 +12599,7 @@ declare namespace io.flow.tracking.v0.models {
|
|
|
12579
12599
|
readonly in_transit: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
12580
12600
|
readonly delivered?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
12581
12601
|
readonly rejected?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
12602
|
+
readonly returned?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
12582
12603
|
}
|
|
12583
12604
|
|
|
12584
12605
|
interface LabelTrackingSummaryUpdate {
|
|
@@ -13022,6 +13043,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
13022
13043
|
readonly local?: io.flow.catalog.v0.models.Local;
|
|
13023
13044
|
readonly created_at?: string;
|
|
13024
13045
|
readonly updated_at?: string;
|
|
13046
|
+
readonly deleted_at?: string;
|
|
13025
13047
|
}
|
|
13026
13048
|
|
|
13027
13049
|
interface ItemAttributesPatchForm {
|
|
@@ -13039,6 +13061,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
13039
13061
|
readonly attributes?: Record<string, string>;
|
|
13040
13062
|
readonly dimensions?: io.flow.common.v0.models.Dimensions;
|
|
13041
13063
|
readonly images?: io.flow.catalog.v0.models.ImageForm[];
|
|
13064
|
+
readonly deleted_at?: string;
|
|
13042
13065
|
}
|
|
13043
13066
|
|
|
13044
13067
|
interface ItemFormOverlay {
|
|
@@ -13052,6 +13075,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
13052
13075
|
readonly attributes?: Record<string, string>;
|
|
13053
13076
|
readonly dimensions?: io.flow.common.v0.models.Dimensions;
|
|
13054
13077
|
readonly images?: io.flow.catalog.v0.models.ImageForm[];
|
|
13078
|
+
readonly deleted_at?: string;
|
|
13055
13079
|
}
|
|
13056
13080
|
|
|
13057
13081
|
interface ItemFormOverlayForm {
|
|
@@ -13064,6 +13088,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
13064
13088
|
readonly attributes?: Record<string, string>;
|
|
13065
13089
|
readonly dimensions?: io.flow.common.v0.models.Dimensions;
|
|
13066
13090
|
readonly images?: io.flow.catalog.v0.models.ImageForm[];
|
|
13091
|
+
readonly deleted_at?: string;
|
|
13067
13092
|
}
|
|
13068
13093
|
|
|
13069
13094
|
interface ItemPriceUpdateForm {
|
|
@@ -13622,7 +13647,9 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
13622
13647
|
| 'waiting_for_in_transit'
|
|
13623
13648
|
| 'waiting_for_next_payout_date'
|
|
13624
13649
|
| 'waiting_for_tracking_info'
|
|
13625
|
-
| 'waiting_for_positive_account_balance'
|
|
13650
|
+
| 'waiting_for_positive_account_balance'
|
|
13651
|
+
| 'unfulfilled_amount_greater_than_negative_balance'
|
|
13652
|
+
| 'account_payment_hold';
|
|
13626
13653
|
type StatementAttachmentType = 'csv';
|
|
13627
13654
|
type TransactionSource =
|
|
13628
13655
|
| 'capture'
|
|
@@ -16459,6 +16486,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16459
16486
|
type DiscountRequestOrderEntitlementKey = 'subtotal';
|
|
16460
16487
|
type DisputeBillable = 'flow' | 'organization';
|
|
16461
16488
|
type DisputeCategory = 'friendly_fraud' | 'true_fraud' | 'processing_error';
|
|
16489
|
+
type DisputeDefenseOutcome = 'defended' | 'undefended' | 'undefendable';
|
|
16462
16490
|
type DisputeEvidence = 'proof_of_delivery' | 'proof_of_fulfillment' | 'other';
|
|
16463
16491
|
type DisputeImportStatus = 'new' | 'processing' | 'completed' | 'failed';
|
|
16464
16492
|
type DisputeImportType = 'adyen_dispute' | 'paypal_dispute';
|
|
@@ -16501,6 +16529,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16501
16529
|
type EmptyAttribute = 'irrelevant';
|
|
16502
16530
|
type ErpFileType = 'vendor';
|
|
16503
16531
|
type EventType =
|
|
16532
|
+
| 'adjusted_estimates_upserted'
|
|
16533
|
+
| 'adjusted_estimates_deleted'
|
|
16504
16534
|
| 'adyen_authorization_deleted'
|
|
16505
16535
|
| 'adyen_authorization_upserted'
|
|
16506
16536
|
| 'adyen_cancel_deleted'
|
|
@@ -16674,6 +16704,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16674
16704
|
| 'ftp_file_to_process_uploaded'
|
|
16675
16705
|
| 'center_defaults_upserted'
|
|
16676
16706
|
| 'center_defaults_deleted'
|
|
16707
|
+
| 'fulfillment_fallbacks_upserted'
|
|
16708
|
+
| 'fulfillment_fallbacks_deleted'
|
|
16677
16709
|
| 'pregenerated_request_event'
|
|
16678
16710
|
| 'quote_upserted'
|
|
16679
16711
|
| 'quote_deleted'
|
|
@@ -16871,6 +16903,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16871
16903
|
| 'tracking_assurance_analysis_deleted'
|
|
16872
16904
|
| 'tracking_assurance_job_upserted'
|
|
16873
16905
|
| 'tracking_assurance_job_deleted'
|
|
16906
|
+
| 'tracking_label_dimensions_upserted'
|
|
16907
|
+
| 'tracking_label_dimensions_deleted'
|
|
16874
16908
|
| 'tracking_request_upserted'
|
|
16875
16909
|
| 'tracking_response_upserted'
|
|
16876
16910
|
| 'user_upserted_v2'
|
|
@@ -16953,6 +16987,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16953
16987
|
| 'globale_address_repair'
|
|
16954
16988
|
| 'merchant_operations'
|
|
16955
16989
|
| 'globale_system';
|
|
16990
|
+
type LabelRequestResultOrganizationType =
|
|
16991
|
+
| 'all'
|
|
16992
|
+
| 'legacy_production'
|
|
16993
|
+
| 'managed_markets_production'
|
|
16994
|
+
| 'sandbox';
|
|
16995
|
+
type LabelRequestResultState = 'success' | 'failure';
|
|
16956
16996
|
type LabelTransactionType =
|
|
16957
16997
|
| 'adjustment'
|
|
16958
16998
|
| 'reversal'
|
|
@@ -17370,6 +17410,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17370
17410
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax' | 'refund';
|
|
17371
17411
|
type ThiagoItemType = 'digital' | 'physical';
|
|
17372
17412
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
17413
|
+
type TrackingLabelDimensionsSource = 'aftership' | 'carrier_api';
|
|
17373
17414
|
type TrackingProcessingFailureClassification =
|
|
17374
17415
|
| 'tracking_expired'
|
|
17375
17416
|
| 'expired_tracking_number_new_event'
|
|
@@ -17653,6 +17694,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17653
17694
|
readonly province_code: io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
17654
17695
|
}
|
|
17655
17696
|
|
|
17697
|
+
interface AdjustedEstimates {
|
|
17698
|
+
readonly id: string;
|
|
17699
|
+
readonly organization_id: string;
|
|
17700
|
+
readonly label_id: string;
|
|
17701
|
+
readonly estimates: io.flow.label.v0.models.ShippingLabelHopSummary[];
|
|
17702
|
+
}
|
|
17703
|
+
|
|
17704
|
+
interface AdjustedEstimatesDeleted {
|
|
17705
|
+
readonly discriminator: 'adjusted_estimates_deleted';
|
|
17706
|
+
readonly event_id: string;
|
|
17707
|
+
readonly timestamp: string;
|
|
17708
|
+
readonly organization: string;
|
|
17709
|
+
readonly id: string;
|
|
17710
|
+
}
|
|
17711
|
+
|
|
17712
|
+
interface AdjustedEstimatesUpserted {
|
|
17713
|
+
readonly discriminator: 'adjusted_estimates_upserted';
|
|
17714
|
+
readonly event_id: string;
|
|
17715
|
+
readonly timestamp: string;
|
|
17716
|
+
readonly organization: string;
|
|
17717
|
+
readonly adjusted_estimates: io.flow.internal.v0.models.AdjustedEstimates;
|
|
17718
|
+
}
|
|
17719
|
+
|
|
17656
17720
|
interface AdjustmentAmountFixed {
|
|
17657
17721
|
readonly discriminator: 'fixed';
|
|
17658
17722
|
readonly amount: io.flow.common.v0.models.Money;
|
|
@@ -18106,6 +18170,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18106
18170
|
readonly value: string;
|
|
18107
18171
|
}
|
|
18108
18172
|
|
|
18173
|
+
interface AttemptStatistics {
|
|
18174
|
+
readonly merchant_count: number;
|
|
18175
|
+
readonly amount: number;
|
|
18176
|
+
readonly failed_merchant_count: number;
|
|
18177
|
+
readonly failed_amount: number;
|
|
18178
|
+
readonly success_ratio: number;
|
|
18179
|
+
}
|
|
18180
|
+
|
|
18109
18181
|
interface AttributeLabel {
|
|
18110
18182
|
readonly value: string;
|
|
18111
18183
|
readonly unverified: boolean;
|
|
@@ -19718,6 +19790,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19718
19790
|
readonly customs_description_suggestions: io.flow.internal.v0.models.CustomsDescriptionSuggestion[];
|
|
19719
19791
|
}
|
|
19720
19792
|
|
|
19793
|
+
interface ClassificationMerchant {
|
|
19794
|
+
readonly MerchantId: string;
|
|
19795
|
+
readonly PlatformId: io.flow.internal.v0.enums.ClassificationPlatform;
|
|
19796
|
+
readonly Name: string;
|
|
19797
|
+
readonly DateLastUpdated?: string;
|
|
19798
|
+
readonly Order: number;
|
|
19799
|
+
}
|
|
19800
|
+
|
|
19801
|
+
interface ClassificationMerchantEnvelope {
|
|
19802
|
+
readonly messageType: string[];
|
|
19803
|
+
readonly message: io.flow.internal.v0.models.ClassificationMerchant;
|
|
19804
|
+
}
|
|
19805
|
+
|
|
19721
19806
|
interface ClassificationProduct {
|
|
19722
19807
|
readonly organization_id: string;
|
|
19723
19808
|
readonly product_id?: string;
|
|
@@ -19897,6 +19982,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19897
19982
|
readonly rex_number?: string;
|
|
19898
19983
|
readonly wee_number?: string;
|
|
19899
19984
|
readonly business_gst_numbers: string[];
|
|
19985
|
+
readonly destination_gst_numbers?: string[];
|
|
19900
19986
|
readonly vat_name: string;
|
|
19901
19987
|
readonly shipping_price: string;
|
|
19902
19988
|
readonly shipment_recipient?: string;
|
|
@@ -20533,7 +20619,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20533
20619
|
interface Dispute {
|
|
20534
20620
|
readonly id: string;
|
|
20535
20621
|
readonly organization_id: string;
|
|
20536
|
-
readonly order
|
|
20622
|
+
readonly order?: io.flow.internal.v0.models.DisputeOrderReference;
|
|
20537
20623
|
readonly authorization: io.flow.internal.v0.models.DisputeAuthorizationReference;
|
|
20538
20624
|
readonly processor: io.flow.internal.v0.enums.DisputeProcessor;
|
|
20539
20625
|
readonly key: string;
|
|
@@ -20546,6 +20632,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20546
20632
|
readonly status: io.flow.internal.v0.enums.DisputeStatus;
|
|
20547
20633
|
readonly liability: io.flow.internal.v0.enums.DisputeLiability;
|
|
20548
20634
|
readonly billable: io.flow.internal.v0.enums.DisputeBillable;
|
|
20635
|
+
readonly defense_outcome?: io.flow.internal.v0.enums.DisputeDefenseOutcome;
|
|
20549
20636
|
readonly details: io.flow.internal.v0.unions.DisputeDetails;
|
|
20550
20637
|
readonly issued_at: string;
|
|
20551
20638
|
readonly expires_at?: string;
|
|
@@ -20565,6 +20652,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20565
20652
|
readonly id: string;
|
|
20566
20653
|
}
|
|
20567
20654
|
|
|
20655
|
+
interface DisputeDetail {
|
|
20656
|
+
readonly authorization: io.flow.internal.v0.models.SearchAuthorization;
|
|
20657
|
+
readonly dispute: io.flow.internal.v0.models.Dispute;
|
|
20658
|
+
}
|
|
20659
|
+
|
|
20568
20660
|
interface DisputeDetailsAdyen {
|
|
20569
20661
|
readonly discriminator: 'adyen';
|
|
20570
20662
|
readonly psp_reference: string;
|
|
@@ -20616,6 +20708,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20616
20708
|
readonly id: string;
|
|
20617
20709
|
}
|
|
20618
20710
|
|
|
20711
|
+
interface DisputeOverrideUpdateForm {
|
|
20712
|
+
readonly billable?: io.flow.internal.v0.enums.DisputeBillable;
|
|
20713
|
+
readonly reporting_category?: io.flow.internal.v0.enums.DisputeReportingCategory;
|
|
20714
|
+
readonly category?: io.flow.internal.v0.enums.DisputeCategory;
|
|
20715
|
+
readonly status?: io.flow.internal.v0.enums.DisputeStatus;
|
|
20716
|
+
}
|
|
20717
|
+
|
|
20619
20718
|
interface DisputeStatusForm {
|
|
20620
20719
|
readonly status: io.flow.internal.v0.enums.DisputeStatus;
|
|
20621
20720
|
}
|
|
@@ -21200,6 +21299,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21200
21299
|
readonly description?: string;
|
|
21201
21300
|
readonly order_number?: string;
|
|
21202
21301
|
readonly raw_carrier_event_code?: string;
|
|
21302
|
+
readonly aggregator_status_code?: string;
|
|
21203
21303
|
readonly created_at?: string;
|
|
21204
21304
|
}
|
|
21205
21305
|
|
|
@@ -21954,6 +22054,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21954
22054
|
readonly id: string;
|
|
21955
22055
|
}
|
|
21956
22056
|
|
|
22057
|
+
interface FulfillmentFallbacks {
|
|
22058
|
+
readonly id: string;
|
|
22059
|
+
readonly packaging: io.flow.fulfillment.v0.models.Packaging[];
|
|
22060
|
+
readonly contact: io.flow.common.v0.models.Contact;
|
|
22061
|
+
readonly location?: io.flow.common.v0.models.Address;
|
|
22062
|
+
}
|
|
22063
|
+
|
|
22064
|
+
interface FulfillmentFallbacksDeleted {
|
|
22065
|
+
readonly discriminator: 'fulfillment_fallbacks_deleted';
|
|
22066
|
+
readonly event_id: string;
|
|
22067
|
+
readonly timestamp: string;
|
|
22068
|
+
readonly organization: string;
|
|
22069
|
+
readonly id: string;
|
|
22070
|
+
}
|
|
22071
|
+
|
|
22072
|
+
interface FulfillmentFallbacksUpserted {
|
|
22073
|
+
readonly discriminator: 'fulfillment_fallbacks_upserted';
|
|
22074
|
+
readonly event_id: string;
|
|
22075
|
+
readonly timestamp: string;
|
|
22076
|
+
readonly organization: string;
|
|
22077
|
+
readonly fulfillment_fallbacks: io.flow.internal.v0.models.FulfillmentFallbacks;
|
|
22078
|
+
}
|
|
22079
|
+
|
|
21957
22080
|
interface FulfillmentInternalExperienceReference {
|
|
21958
22081
|
readonly id: string;
|
|
21959
22082
|
readonly key: string;
|
|
@@ -23100,6 +23223,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23100
23223
|
readonly label_request_error: io.flow.internal.v0.models.LabelRequestError;
|
|
23101
23224
|
}
|
|
23102
23225
|
|
|
23226
|
+
interface LabelRequestResult {
|
|
23227
|
+
readonly id: string;
|
|
23228
|
+
readonly created_at: string;
|
|
23229
|
+
readonly state: io.flow.internal.v0.enums.LabelRequestResultState;
|
|
23230
|
+
readonly organization_id: string;
|
|
23231
|
+
readonly order_number: string;
|
|
23232
|
+
readonly label_request_method: io.flow.label.v0.enums.LabelRequestMethod;
|
|
23233
|
+
readonly carrier_id?: string;
|
|
23234
|
+
readonly carrier_tracking_number?: string;
|
|
23235
|
+
readonly url?: string;
|
|
23236
|
+
readonly error?: string;
|
|
23237
|
+
readonly suggested_responsibility?: io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
23238
|
+
readonly origin_country?: string;
|
|
23239
|
+
readonly destination_country?: string;
|
|
23240
|
+
}
|
|
23241
|
+
|
|
23103
23242
|
interface LabelSummary {
|
|
23104
23243
|
readonly id: string;
|
|
23105
23244
|
readonly commercial_invoice?: string;
|
|
@@ -24183,6 +24322,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24183
24322
|
readonly percent: number;
|
|
24184
24323
|
}
|
|
24185
24324
|
|
|
24325
|
+
interface NegativeDebitMetrics {
|
|
24326
|
+
readonly current_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
24327
|
+
readonly second_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
24328
|
+
readonly third_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
24329
|
+
}
|
|
24330
|
+
|
|
24186
24331
|
interface NextBillingStatement {
|
|
24187
24332
|
readonly date: string;
|
|
24188
24333
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -24459,6 +24604,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24459
24604
|
readonly created_at: string;
|
|
24460
24605
|
readonly updated_at: string;
|
|
24461
24606
|
readonly shopify_order_id?: string;
|
|
24607
|
+
readonly disputes: io.flow.internal.v0.models.DisputeDetail[];
|
|
24462
24608
|
}
|
|
24463
24609
|
|
|
24464
24610
|
interface OrderFulfillmentDeleted {
|
|
@@ -28952,6 +29098,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28952
29098
|
readonly tracking_label: io.flow.internal.v0.models.ExportTrackingLabel;
|
|
28953
29099
|
}
|
|
28954
29100
|
|
|
29101
|
+
interface TrackingLabelDimensions {
|
|
29102
|
+
readonly id: string;
|
|
29103
|
+
readonly organization_id: string;
|
|
29104
|
+
readonly tracking_label_id: string;
|
|
29105
|
+
readonly source: io.flow.internal.v0.enums.TrackingLabelDimensionsSource;
|
|
29106
|
+
readonly created_at: string;
|
|
29107
|
+
readonly dimensions: io.flow.common.v0.models.Dimensions;
|
|
29108
|
+
}
|
|
29109
|
+
|
|
29110
|
+
interface TrackingLabelDimensionsDeleted {
|
|
29111
|
+
readonly discriminator: 'tracking_label_dimensions_deleted';
|
|
29112
|
+
readonly event_id: string;
|
|
29113
|
+
readonly timestamp: string;
|
|
29114
|
+
readonly organization: string;
|
|
29115
|
+
readonly id: string;
|
|
29116
|
+
}
|
|
29117
|
+
|
|
29118
|
+
interface TrackingLabelDimensionsUpserted {
|
|
29119
|
+
readonly discriminator: 'tracking_label_dimensions_upserted';
|
|
29120
|
+
readonly event_id: string;
|
|
29121
|
+
readonly timestamp: string;
|
|
29122
|
+
readonly organization: string;
|
|
29123
|
+
readonly tracking_label_dimensions: io.flow.internal.v0.models.TrackingLabelDimensions;
|
|
29124
|
+
}
|
|
29125
|
+
|
|
28955
29126
|
interface TrackingLabelEventDeletedV2 {
|
|
28956
29127
|
readonly discriminator: 'tracking_label_event_deleted_v2';
|
|
28957
29128
|
readonly event_id: string;
|
|
@@ -29426,6 +29597,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29426
29597
|
| io.flow.internal.v0.models.DutyCompoundExpression
|
|
29427
29598
|
| io.flow.internal.v0.models.DutySimpleExpression;
|
|
29428
29599
|
type Event =
|
|
29600
|
+
| io.flow.internal.v0.models.AdjustedEstimatesUpserted
|
|
29601
|
+
| io.flow.internal.v0.models.AdjustedEstimatesDeleted
|
|
29429
29602
|
| io.flow.internal.v0.models.AdyenAuthorizationDeleted
|
|
29430
29603
|
| io.flow.internal.v0.models.AdyenAuthorizationUpserted
|
|
29431
29604
|
| io.flow.internal.v0.models.AdyenCancelDeleted
|
|
@@ -29599,6 +29772,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29599
29772
|
| io.flow.internal.v0.models.FtpFileToProcessUploaded
|
|
29600
29773
|
| io.flow.internal.v0.models.CenterDefaultsUpserted
|
|
29601
29774
|
| io.flow.internal.v0.models.CenterDefaultsDeleted
|
|
29775
|
+
| io.flow.internal.v0.models.FulfillmentFallbacksUpserted
|
|
29776
|
+
| io.flow.internal.v0.models.FulfillmentFallbacksDeleted
|
|
29602
29777
|
| io.flow.internal.v0.models.PregeneratedRequestEvent
|
|
29603
29778
|
| io.flow.internal.v0.models.QuoteUpserted
|
|
29604
29779
|
| io.flow.internal.v0.models.QuoteDeleted
|
|
@@ -29796,6 +29971,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29796
29971
|
| io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted
|
|
29797
29972
|
| io.flow.internal.v0.models.TrackingAssuranceJobUpserted
|
|
29798
29973
|
| io.flow.internal.v0.models.TrackingAssuranceJobDeleted
|
|
29974
|
+
| io.flow.internal.v0.models.TrackingLabelDimensionsUpserted
|
|
29975
|
+
| io.flow.internal.v0.models.TrackingLabelDimensionsDeleted
|
|
29799
29976
|
| io.flow.internal.v0.models.TrackingRequestUpserted
|
|
29800
29977
|
| io.flow.internal.v0.models.TrackingResponseUpserted
|
|
29801
29978
|
| io.flow.internal.v0.models.UserUpsertedV2
|
|
@@ -30083,6 +30260,11 @@ export type AddressConfigurationSettingForm =
|
|
|
30083
30260
|
io.flow.internal.v0.models.AddressConfigurationSettingForm;
|
|
30084
30261
|
export type AddressConfigurationSettingProvinceCode =
|
|
30085
30262
|
io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
30263
|
+
export type AdjustedEstimates = io.flow.internal.v0.models.AdjustedEstimates;
|
|
30264
|
+
export type AdjustedEstimatesDeleted =
|
|
30265
|
+
io.flow.internal.v0.models.AdjustedEstimatesDeleted;
|
|
30266
|
+
export type AdjustedEstimatesUpserted =
|
|
30267
|
+
io.flow.internal.v0.models.AdjustedEstimatesUpserted;
|
|
30086
30268
|
export type AdjustmentAmount = io.flow.internal.v0.unions.AdjustmentAmount;
|
|
30087
30269
|
export type AdjustmentAmountFixed =
|
|
30088
30270
|
io.flow.internal.v0.models.AdjustmentAmountFixed;
|
|
@@ -30199,6 +30381,7 @@ export type ApmContent = io.flow.internal.v0.models.ApmContent;
|
|
|
30199
30381
|
export type ApplePayAuthorizationPayload =
|
|
30200
30382
|
io.flow.internal.v0.models.ApplePayAuthorizationPayload;
|
|
30201
30383
|
export type ApplyAtValueForm = io.flow.internal.v0.models.ApplyAtValueForm;
|
|
30384
|
+
export type AttemptStatistics = io.flow.internal.v0.models.AttemptStatistics;
|
|
30202
30385
|
export type AttributeLabel = io.flow.internal.v0.models.AttributeLabel;
|
|
30203
30386
|
export type AuthenticationForm = io.flow.internal.v0.models.AuthenticationForm;
|
|
30204
30387
|
export type AuthorizationBundle =
|
|
@@ -30656,6 +30839,10 @@ export type ClassificationJudgementForm =
|
|
|
30656
30839
|
io.flow.internal.v0.unions.ClassificationJudgementForm;
|
|
30657
30840
|
export type ClassificationLabelAttribute =
|
|
30658
30841
|
io.flow.internal.v0.unions.ClassificationLabelAttribute;
|
|
30842
|
+
export type ClassificationMerchant =
|
|
30843
|
+
io.flow.internal.v0.models.ClassificationMerchant;
|
|
30844
|
+
export type ClassificationMerchantEnvelope =
|
|
30845
|
+
io.flow.internal.v0.models.ClassificationMerchantEnvelope;
|
|
30659
30846
|
export type ClassificationPlatform =
|
|
30660
30847
|
io.flow.internal.v0.enums.ClassificationPlatform;
|
|
30661
30848
|
export type ClassificationProduct =
|
|
@@ -30874,7 +31061,10 @@ export type DisputeAuthorizationReference =
|
|
|
30874
31061
|
io.flow.internal.v0.models.DisputeAuthorizationReference;
|
|
30875
31062
|
export type DisputeBillable = io.flow.internal.v0.enums.DisputeBillable;
|
|
30876
31063
|
export type DisputeCategory = io.flow.internal.v0.enums.DisputeCategory;
|
|
31064
|
+
export type DisputeDefenseOutcome =
|
|
31065
|
+
io.flow.internal.v0.enums.DisputeDefenseOutcome;
|
|
30877
31066
|
export type DisputeDeleted = io.flow.internal.v0.models.DisputeDeleted;
|
|
31067
|
+
export type DisputeDetail = io.flow.internal.v0.models.DisputeDetail;
|
|
30878
31068
|
export type DisputeDetails = io.flow.internal.v0.unions.DisputeDetails;
|
|
30879
31069
|
export type DisputeDetailsAdyen =
|
|
30880
31070
|
io.flow.internal.v0.models.DisputeDetailsAdyen;
|
|
@@ -30895,6 +31085,8 @@ export type DisputeOrderReference =
|
|
|
30895
31085
|
io.flow.internal.v0.models.DisputeOrderReference;
|
|
30896
31086
|
export type DisputeOrganizationReference =
|
|
30897
31087
|
io.flow.internal.v0.models.DisputeOrganizationReference;
|
|
31088
|
+
export type DisputeOverrideUpdateForm =
|
|
31089
|
+
io.flow.internal.v0.models.DisputeOverrideUpdateForm;
|
|
30898
31090
|
export type DisputeProcessor = io.flow.internal.v0.enums.DisputeProcessor;
|
|
30899
31091
|
export type DisputeReportingCategory =
|
|
30900
31092
|
io.flow.internal.v0.enums.DisputeReportingCategory;
|
|
@@ -31192,6 +31384,12 @@ export type FulfillmentBusiness =
|
|
|
31192
31384
|
export type FulfillmentCancel = io.flow.internal.v0.models.FulfillmentCancel;
|
|
31193
31385
|
export type FulfillmentCarrier = io.flow.internal.v0.models.FulfillmentCarrier;
|
|
31194
31386
|
export type FulfillmentDeleted = io.flow.internal.v0.models.FulfillmentDeleted;
|
|
31387
|
+
export type FulfillmentFallbacks =
|
|
31388
|
+
io.flow.internal.v0.models.FulfillmentFallbacks;
|
|
31389
|
+
export type FulfillmentFallbacksDeleted =
|
|
31390
|
+
io.flow.internal.v0.models.FulfillmentFallbacksDeleted;
|
|
31391
|
+
export type FulfillmentFallbacksUpserted =
|
|
31392
|
+
io.flow.internal.v0.models.FulfillmentFallbacksUpserted;
|
|
31195
31393
|
export type FulfillmentInternalExperienceReference =
|
|
31196
31394
|
io.flow.internal.v0.models.FulfillmentInternalExperienceReference;
|
|
31197
31395
|
export type FulfillmentOrigin = io.flow.internal.v0.models.FulfillmentOrigin;
|
|
@@ -31498,6 +31696,11 @@ export type LabelRequestErrorHandlingResponsibility =
|
|
|
31498
31696
|
io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
31499
31697
|
export type LabelRequestErrorUpserted =
|
|
31500
31698
|
io.flow.internal.v0.models.LabelRequestErrorUpserted;
|
|
31699
|
+
export type LabelRequestResult = io.flow.internal.v0.models.LabelRequestResult;
|
|
31700
|
+
export type LabelRequestResultOrganizationType =
|
|
31701
|
+
io.flow.internal.v0.enums.LabelRequestResultOrganizationType;
|
|
31702
|
+
export type LabelRequestResultState =
|
|
31703
|
+
io.flow.internal.v0.enums.LabelRequestResultState;
|
|
31501
31704
|
export type LabelSummary = io.flow.internal.v0.models.LabelSummary;
|
|
31502
31705
|
export type LabelSurchargeForm = io.flow.internal.v0.models.LabelSurchargeForm;
|
|
31503
31706
|
export type LabelSurchargeSingleForm =
|
|
@@ -31784,6 +31987,8 @@ export type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|
|
|
31784
31987
|
export type MoneyPercentage = io.flow.internal.v0.models.MoneyPercentage;
|
|
31785
31988
|
export type MoneyRule = io.flow.internal.v0.unions.MoneyRule;
|
|
31786
31989
|
export type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
|
|
31990
|
+
export type NegativeDebitMetrics =
|
|
31991
|
+
io.flow.internal.v0.models.NegativeDebitMetrics;
|
|
31787
31992
|
export type NextBillingStatement =
|
|
31788
31993
|
io.flow.internal.v0.models.NextBillingStatement;
|
|
31789
31994
|
export type NoCalculatedTaxAmount =
|
|
@@ -33061,6 +33266,14 @@ export type TrackingIntegrationType =
|
|
|
33061
33266
|
io.flow.internal.v0.enums.TrackingIntegrationType;
|
|
33062
33267
|
export type TrackingLabelDeleted =
|
|
33063
33268
|
io.flow.internal.v0.models.TrackingLabelDeleted;
|
|
33269
|
+
export type TrackingLabelDimensions =
|
|
33270
|
+
io.flow.internal.v0.models.TrackingLabelDimensions;
|
|
33271
|
+
export type TrackingLabelDimensionsDeleted =
|
|
33272
|
+
io.flow.internal.v0.models.TrackingLabelDimensionsDeleted;
|
|
33273
|
+
export type TrackingLabelDimensionsSource =
|
|
33274
|
+
io.flow.internal.v0.enums.TrackingLabelDimensionsSource;
|
|
33275
|
+
export type TrackingLabelDimensionsUpserted =
|
|
33276
|
+
io.flow.internal.v0.models.TrackingLabelDimensionsUpserted;
|
|
33064
33277
|
export type TrackingLabelEventDeletedV2 =
|
|
33065
33278
|
io.flow.internal.v0.models.TrackingLabelEventDeletedV2;
|
|
33066
33279
|
export type TrackingLabelEventUpsertedV2 =
|
package/src/api.ts
CHANGED
|
@@ -3759,7 +3759,9 @@ declare namespace io.flow.v0.enums {
|
|
|
3759
3759
|
| 'waiting_for_in_transit'
|
|
3760
3760
|
| 'waiting_for_next_payout_date'
|
|
3761
3761
|
| 'waiting_for_tracking_info'
|
|
3762
|
-
| 'waiting_for_positive_account_balance'
|
|
3762
|
+
| 'waiting_for_positive_account_balance'
|
|
3763
|
+
| 'unfulfilled_amount_greater_than_negative_balance'
|
|
3764
|
+
| 'account_payment_hold';
|
|
3763
3765
|
type PermittedHttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
3764
3766
|
type PhysicalDeliverySpecialSerivce =
|
|
3765
3767
|
| 'cold_storage'
|
|
@@ -6592,6 +6594,12 @@ declare namespace io.flow.v0.models {
|
|
|
6592
6594
|
readonly minimum?: number;
|
|
6593
6595
|
}
|
|
6594
6596
|
|
|
6597
|
+
interface DestinationContactDetail {
|
|
6598
|
+
readonly title: string;
|
|
6599
|
+
readonly country: string;
|
|
6600
|
+
readonly import_identifier: string;
|
|
6601
|
+
}
|
|
6602
|
+
|
|
6595
6603
|
interface DetailedShippingLabelForm {
|
|
6596
6604
|
readonly discriminator: 'detailed_shipping_label_form';
|
|
6597
6605
|
readonly destination: io.flow.v0.models.ShippingAddress;
|
|
@@ -8279,6 +8287,7 @@ declare namespace io.flow.v0.models {
|
|
|
8279
8287
|
readonly local?: io.flow.v0.models.Local;
|
|
8280
8288
|
readonly created_at?: string;
|
|
8281
8289
|
readonly updated_at?: string;
|
|
8290
|
+
readonly deleted_at?: string;
|
|
8282
8291
|
}
|
|
8283
8292
|
|
|
8284
8293
|
interface ItemAttributesPatchForm {
|
|
@@ -8304,6 +8313,7 @@ declare namespace io.flow.v0.models {
|
|
|
8304
8313
|
readonly attributes?: Record<string, string>;
|
|
8305
8314
|
readonly dimensions?: io.flow.v0.models.Dimensions;
|
|
8306
8315
|
readonly images?: io.flow.v0.models.ImageForm[];
|
|
8316
|
+
readonly deleted_at?: string;
|
|
8307
8317
|
}
|
|
8308
8318
|
|
|
8309
8319
|
interface ItemFormOverlay {
|
|
@@ -8317,6 +8327,7 @@ declare namespace io.flow.v0.models {
|
|
|
8317
8327
|
readonly attributes?: Record<string, string>;
|
|
8318
8328
|
readonly dimensions?: io.flow.v0.models.Dimensions;
|
|
8319
8329
|
readonly images?: io.flow.v0.models.ImageForm[];
|
|
8330
|
+
readonly deleted_at?: string;
|
|
8320
8331
|
}
|
|
8321
8332
|
|
|
8322
8333
|
interface ItemFormOverlayForm {
|
|
@@ -8329,6 +8340,7 @@ declare namespace io.flow.v0.models {
|
|
|
8329
8340
|
readonly attributes?: Record<string, string>;
|
|
8330
8341
|
readonly dimensions?: io.flow.v0.models.Dimensions;
|
|
8331
8342
|
readonly images?: io.flow.v0.models.ImageForm[];
|
|
8343
|
+
readonly deleted_at?: string;
|
|
8332
8344
|
}
|
|
8333
8345
|
|
|
8334
8346
|
interface ItemInserted {
|
|
@@ -8651,6 +8663,7 @@ declare namespace io.flow.v0.models {
|
|
|
8651
8663
|
readonly in_transit: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
8652
8664
|
readonly delivered?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
8653
8665
|
readonly rejected?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
8666
|
+
readonly returned?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
8654
8667
|
}
|
|
8655
8668
|
|
|
8656
8669
|
interface LabelTrackingSummaryUpdate {
|
|
@@ -9389,6 +9402,7 @@ declare namespace io.flow.v0.models {
|
|
|
9389
9402
|
readonly tax_registration?: io.flow.v0.models.TaxRegistration;
|
|
9390
9403
|
readonly geo?: io.flow.v0.models.OrderGeo;
|
|
9391
9404
|
readonly device_details?: io.flow.v0.unions.DeviceDetails;
|
|
9405
|
+
readonly destination_contact_details?: io.flow.v0.models.DestinationContactDetail[];
|
|
9392
9406
|
}
|
|
9393
9407
|
|
|
9394
9408
|
interface OrderAddress {
|
|
@@ -15660,6 +15674,8 @@ export type DeliveryWindowSummary = io.flow.v0.models.DeliveryWindowSummary;
|
|
|
15660
15674
|
export type Deminimis = io.flow.v0.unions.Deminimis;
|
|
15661
15675
|
export type DeminimisPerItem = io.flow.v0.models.DeminimisPerItem;
|
|
15662
15676
|
export type DeminimisSimple = io.flow.v0.models.DeminimisSimple;
|
|
15677
|
+
export type DestinationContactDetail =
|
|
15678
|
+
io.flow.v0.models.DestinationContactDetail;
|
|
15663
15679
|
export type DetailedShippingLabelForm =
|
|
15664
15680
|
io.flow.v0.models.DetailedShippingLabelForm;
|
|
15665
15681
|
export type DetailedShippingNotificationForm =
|