@flowio/api-types 0.0.232 → 0.0.234
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/generated/io.flow.adyen.v0.adyen.d.ts +3 -0
- package/generated/io.flow.billing.v0.billing.d.ts +1 -1
- package/generated/io.flow.catalog.v0.catalog.d.ts +4 -0
- package/generated/io.flow.channel.internal.v0.channel-internal.d.ts +10 -0
- package/generated/io.flow.experience.v0.experience.d.ts +7 -0
- package/generated/io.flow.external.paypal.v1.paypal.d.ts +1 -0
- package/generated/io.flow.internal.v0.api-internal.d.ts +258 -4
- package/generated/io.flow.label.v0.label.d.ts +4 -0
- package/generated/io.flow.shopify.markets.v0.shopify-markets.d.ts +1 -0
- package/generated/io.flow.tracking.v0.tracking.d.ts +4 -0
- package/generated/io.flow.v0.api.d.ts +21 -2
- package/package.json +2 -2
|
@@ -2,6 +2,7 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
2
2
|
type Channel = 'web';
|
|
3
3
|
type Contract = 'RECURRING';
|
|
4
4
|
type DeviceChannel = 'app' | 'browser';
|
|
5
|
+
type DisputeStatus = 'Accepted' | 'Expired' | 'Lost' | 'Pending' | 'Responded' | 'Undefended' | 'Unresponded' | 'Won';
|
|
5
6
|
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';
|
|
6
7
|
type HttpRedirectMethod = 'GET' | 'POST';
|
|
7
8
|
type Operation = 'cancel' | 'capture' | 'refund';
|
|
@@ -160,6 +161,8 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
160
161
|
readonly 'modificationMerchantReferences': string;
|
|
161
162
|
readonly 'chargebackSchemeCode': string;
|
|
162
163
|
readonly 'defensePeriodEndsAt'?: string;
|
|
164
|
+
readonly 'disputeStatus'?: io.flow.adyen.v0.enums.DisputeStatus;
|
|
165
|
+
readonly 'defendable'?: string;
|
|
163
166
|
}
|
|
164
167
|
|
|
165
168
|
interface Error {
|
|
@@ -2,7 +2,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
2
2
|
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer' | 'negative_balance_guarantee';
|
|
3
3
|
type PayoutAttachmentType = 'transactions';
|
|
4
4
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
5
|
-
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';
|
|
5
|
+
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';
|
|
6
6
|
type StatementAttachmentType = 'csv';
|
|
7
7
|
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';
|
|
8
8
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
@@ -94,6 +94,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
94
94
|
readonly 'local'?: io.flow.catalog.v0.models.Local;
|
|
95
95
|
readonly 'created_at'?: string;
|
|
96
96
|
readonly 'updated_at'?: string;
|
|
97
|
+
readonly 'deleted_at'?: string;
|
|
97
98
|
}
|
|
98
99
|
|
|
99
100
|
interface ItemAttributesPatchForm {
|
|
@@ -111,6 +112,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
111
112
|
readonly 'attributes'?: Record<string, string>;
|
|
112
113
|
readonly 'dimensions'?: io.flow.common.v0.models.Dimensions;
|
|
113
114
|
readonly 'images'?: io.flow.catalog.v0.models.ImageForm[];
|
|
115
|
+
readonly 'deleted_at'?: string;
|
|
114
116
|
}
|
|
115
117
|
|
|
116
118
|
interface ItemFormOverlay {
|
|
@@ -124,6 +126,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
124
126
|
readonly 'attributes'?: Record<string, string>;
|
|
125
127
|
readonly 'dimensions'?: io.flow.common.v0.models.Dimensions;
|
|
126
128
|
readonly 'images'?: io.flow.catalog.v0.models.ImageForm[];
|
|
129
|
+
readonly 'deleted_at'?: string;
|
|
127
130
|
}
|
|
128
131
|
|
|
129
132
|
interface ItemFormOverlayForm {
|
|
@@ -136,6 +139,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
136
139
|
readonly 'attributes'?: Record<string, string>;
|
|
137
140
|
readonly 'dimensions'?: io.flow.common.v0.models.Dimensions;
|
|
138
141
|
readonly 'images'?: io.flow.catalog.v0.models.ImageForm[];
|
|
142
|
+
readonly 'deleted_at'?: string;
|
|
139
143
|
}
|
|
140
144
|
|
|
141
145
|
interface ItemPriceUpdateForm {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
declare namespace io.flow.channel.internal.v0.enums {
|
|
2
2
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
3
|
+
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
3
4
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
4
5
|
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
|
|
5
6
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
@@ -55,6 +56,15 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
55
56
|
readonly 'external_order': any/*object*/;
|
|
56
57
|
}
|
|
57
58
|
|
|
59
|
+
interface ChannelOrderAcceptanceFailure {
|
|
60
|
+
readonly 'id': string;
|
|
61
|
+
readonly 'organization_id': string;
|
|
62
|
+
readonly 'channel_id': string;
|
|
63
|
+
readonly 'payment_request_id': string;
|
|
64
|
+
readonly 'code': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode;
|
|
65
|
+
readonly 'reason': string;
|
|
66
|
+
}
|
|
67
|
+
|
|
58
68
|
interface ChannelOrderAcceptanceForm {
|
|
59
69
|
readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
60
70
|
}
|
|
@@ -249,6 +249,12 @@ declare namespace io.flow.experience.v0.models {
|
|
|
249
249
|
readonly 'display'?: io.flow.experience.v0.enums.DeliveredDutyDisplayType;
|
|
250
250
|
}
|
|
251
251
|
|
|
252
|
+
interface DestinationContactDetail {
|
|
253
|
+
readonly 'title': string;
|
|
254
|
+
readonly 'country': string;
|
|
255
|
+
readonly 'import_identifier': string;
|
|
256
|
+
}
|
|
257
|
+
|
|
252
258
|
interface Discount {
|
|
253
259
|
readonly 'discriminator': 'discount';
|
|
254
260
|
readonly 'id': string;
|
|
@@ -611,6 +617,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
611
617
|
readonly 'tax_registration'?: io.flow.harmonization.v0.models.TaxRegistration;
|
|
612
618
|
readonly 'geo'?: io.flow.experience.v0.models.OrderGeo;
|
|
613
619
|
readonly 'device_details'?: io.flow.payment.v0.unions.DeviceDetails;
|
|
620
|
+
readonly 'destination_contact_details'?: io.flow.experience.v0.models.DestinationContactDetail[];
|
|
614
621
|
}
|
|
615
622
|
|
|
616
623
|
interface OrderAddress {
|
|
@@ -160,6 +160,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
160
160
|
readonly 'supporting_info'?: io.flow.external.paypal.v1.models.SupportingInfo;
|
|
161
161
|
readonly 'allowed_response_options'?: io.flow.external.paypal.v1.models.AllowedResponseOptions;
|
|
162
162
|
readonly 'links'?: io.flow.external.paypal.v1.models.Link[];
|
|
163
|
+
readonly 'previous_status'?: io.flow.external.paypal.v1.enums.DisputeStatus;
|
|
163
164
|
}
|
|
164
165
|
|
|
165
166
|
interface DisputeExtension {
|
|
@@ -25,6 +25,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
25
25
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
26
26
|
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
27
27
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
28
|
+
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
28
29
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
29
30
|
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
|
|
30
31
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
@@ -60,6 +61,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
60
61
|
type DiscountRequestOrderEntitlementKey = 'subtotal';
|
|
61
62
|
type DisputeBillable = 'flow' | 'organization';
|
|
62
63
|
type DisputeCategory = 'friendly_fraud' | 'true_fraud' | 'processing_error';
|
|
64
|
+
type DisputeDefenseOutcome = 'defended' | 'undefended' | 'undefendable';
|
|
63
65
|
type DisputeEvidence = 'proof_of_delivery' | 'proof_of_fulfillment' | 'other';
|
|
64
66
|
type DisputeImportStatus = 'new' | 'processing' | 'completed' | 'failed';
|
|
65
67
|
type DisputeImportType = 'adyen_dispute' | 'paypal_dispute';
|
|
@@ -79,7 +81,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
79
81
|
type EldarItemType = 'digital' | 'physical';
|
|
80
82
|
type EmptyAttribute = 'irrelevant';
|
|
81
83
|
type ErpFileType = 'vendor';
|
|
82
|
-
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';
|
|
84
|
+
type EventType = 'adjusted_estimates_upserted' | 'adjusted_estimates_deleted' | 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | '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';
|
|
83
85
|
type ExperienceImportType = 'experience_with_settings';
|
|
84
86
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
85
87
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -114,6 +116,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
114
116
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
115
117
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
116
118
|
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_address_repair' | 'merchant_operations' | 'globale_system';
|
|
119
|
+
type LabelRequestResultOrganizationType = 'all' | 'legacy_production' | 'managed_markets_production' | 'sandbox';
|
|
120
|
+
type LabelRequestResultState = 'success' | 'failure';
|
|
117
121
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
118
122
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
119
123
|
type LogisticsCapability = 'logistics_address_correction';
|
|
@@ -187,7 +191,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
187
191
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
188
192
|
type ReportPaymentType = 'credit' | 'debit';
|
|
189
193
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
190
|
-
type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'account_quarterly_balances' | 'invariants' | 'payments';
|
|
194
|
+
type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'account_quarterly_balances' | 'invariants' | 'payments' | 'reconcile_not_recorded' | 'products_record';
|
|
191
195
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
192
196
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
193
197
|
type ResponsibleParty = 'flow' | 'organization';
|
|
@@ -233,6 +237,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
233
237
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax' | 'refund';
|
|
234
238
|
type ThiagoItemType = 'digital' | 'physical';
|
|
235
239
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
240
|
+
type TrackingLabelDimensionsSource = 'aftership' | 'carrier_api';
|
|
236
241
|
type TrackingProcessingFailureClassification = 'tracking_expired' | 'expired_tracking_number_new_event' | 'new_tracking_number_expired_event' | 'origin_mismatch' | 'destination_mismatch' | 'other';
|
|
237
242
|
type TransactionPostingMethod = 'time' | 'proof';
|
|
238
243
|
type TransferMethod = 'ach';
|
|
@@ -504,6 +509,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
504
509
|
readonly 'province_code': io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
505
510
|
}
|
|
506
511
|
|
|
512
|
+
interface AdjustedEstimates {
|
|
513
|
+
readonly 'id': string;
|
|
514
|
+
readonly 'organization_id': string;
|
|
515
|
+
readonly 'label_id': string;
|
|
516
|
+
readonly 'estimates': io.flow.label.v0.models.ShippingLabelHopSummary[];
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
interface AdjustedEstimatesDeleted {
|
|
520
|
+
readonly 'discriminator': 'adjusted_estimates_deleted';
|
|
521
|
+
readonly 'event_id': string;
|
|
522
|
+
readonly 'timestamp': string;
|
|
523
|
+
readonly 'organization': string;
|
|
524
|
+
readonly 'id': string;
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
interface AdjustedEstimatesUpserted {
|
|
528
|
+
readonly 'discriminator': 'adjusted_estimates_upserted';
|
|
529
|
+
readonly 'event_id': string;
|
|
530
|
+
readonly 'timestamp': string;
|
|
531
|
+
readonly 'organization': string;
|
|
532
|
+
readonly 'adjusted_estimates': io.flow.internal.v0.models.AdjustedEstimates;
|
|
533
|
+
}
|
|
534
|
+
|
|
507
535
|
interface AdjustmentAmountFixed {
|
|
508
536
|
readonly 'discriminator': 'fixed';
|
|
509
537
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
@@ -635,6 +663,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
635
663
|
readonly 'capture': io.flow.internal.v0.models.AdyenInternalCapture;
|
|
636
664
|
}
|
|
637
665
|
|
|
666
|
+
interface AdyenDisputeDeleted {
|
|
667
|
+
readonly 'discriminator': 'adyen_dispute_deleted';
|
|
668
|
+
readonly 'event_id': string;
|
|
669
|
+
readonly 'timestamp': string;
|
|
670
|
+
readonly 'id': string;
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
interface AdyenDisputeUpserted {
|
|
674
|
+
readonly 'discriminator': 'adyen_dispute_upserted';
|
|
675
|
+
readonly 'event_id': string;
|
|
676
|
+
readonly 'timestamp': string;
|
|
677
|
+
readonly 'dispute': io.flow.internal.v0.models.AdyenInternalDispute;
|
|
678
|
+
}
|
|
679
|
+
|
|
638
680
|
interface AdyenInternalAuthorization {
|
|
639
681
|
readonly 'id': string;
|
|
640
682
|
readonly 'flow_authorization_id': string;
|
|
@@ -676,6 +718,32 @@ declare namespace io.flow.internal.v0.models {
|
|
|
676
718
|
readonly 'response': string;
|
|
677
719
|
}
|
|
678
720
|
|
|
721
|
+
interface AdyenInternalDispute {
|
|
722
|
+
readonly 'id': string;
|
|
723
|
+
readonly 'amount': number;
|
|
724
|
+
readonly 'currency': string;
|
|
725
|
+
readonly 'psp_reference': string;
|
|
726
|
+
readonly 'original_reference'?: string;
|
|
727
|
+
readonly 'event_code': string;
|
|
728
|
+
readonly 'event_date': string;
|
|
729
|
+
readonly 'chargeback_reason_code'?: string;
|
|
730
|
+
readonly 'modification_merchant_references'?: string;
|
|
731
|
+
readonly 'chargeback_scheme_code'?: string;
|
|
732
|
+
readonly 'defense_period_ends_at'?: string;
|
|
733
|
+
readonly 'dispute_status'?: string;
|
|
734
|
+
readonly 'defendable'?: string;
|
|
735
|
+
readonly 'merchant_account_code': string;
|
|
736
|
+
readonly 'operations'?: string[];
|
|
737
|
+
readonly 'merchant_reference': string;
|
|
738
|
+
readonly 'payment_method'?: string;
|
|
739
|
+
readonly 'reason'?: string;
|
|
740
|
+
readonly 'success': string;
|
|
741
|
+
readonly 'livemode': boolean;
|
|
742
|
+
readonly 'updated_by_user_id': string;
|
|
743
|
+
readonly 'created_at': string;
|
|
744
|
+
readonly 'updated_at': string;
|
|
745
|
+
}
|
|
746
|
+
|
|
679
747
|
interface AdyenInternalRefund {
|
|
680
748
|
readonly 'id': string;
|
|
681
749
|
readonly 'flow_refund_id': string;
|
|
@@ -957,6 +1025,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
957
1025
|
readonly 'value': string;
|
|
958
1026
|
}
|
|
959
1027
|
|
|
1028
|
+
interface AttemptStatistics {
|
|
1029
|
+
readonly 'merchant_count': number;
|
|
1030
|
+
readonly 'amount': number;
|
|
1031
|
+
readonly 'failed_merchant_count': number;
|
|
1032
|
+
readonly 'failed_amount': number;
|
|
1033
|
+
readonly 'success_ratio': number;
|
|
1034
|
+
}
|
|
1035
|
+
|
|
960
1036
|
interface AttributeLabel {
|
|
961
1037
|
readonly 'value': string;
|
|
962
1038
|
readonly 'unverified': boolean;
|
|
@@ -2069,6 +2145,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
2069
2145
|
readonly 'external_order': any/*object*/;
|
|
2070
2146
|
}
|
|
2071
2147
|
|
|
2148
|
+
interface ChannelOrderAcceptanceFailed {
|
|
2149
|
+
readonly 'discriminator': 'channel_order_acceptance_failed';
|
|
2150
|
+
readonly 'event_id': string;
|
|
2151
|
+
readonly 'timestamp': string;
|
|
2152
|
+
readonly 'organization': string;
|
|
2153
|
+
readonly 'channel_id': string;
|
|
2154
|
+
readonly 'channel_order_acceptance_failure': io.flow.internal.v0.models.ChannelOrderAcceptanceFailure;
|
|
2155
|
+
}
|
|
2156
|
+
|
|
2157
|
+
interface ChannelOrderAcceptanceFailure {
|
|
2158
|
+
readonly 'id': string;
|
|
2159
|
+
readonly 'organization_id': string;
|
|
2160
|
+
readonly 'channel_id': string;
|
|
2161
|
+
readonly 'payment_request_id': string;
|
|
2162
|
+
readonly 'code': io.flow.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode;
|
|
2163
|
+
readonly 'reason': string;
|
|
2164
|
+
}
|
|
2165
|
+
|
|
2072
2166
|
interface ChannelOrderAcceptanceForm {
|
|
2073
2167
|
readonly 'status': io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
2074
2168
|
}
|
|
@@ -2569,6 +2663,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
2569
2663
|
readonly 'customs_description_suggestions': io.flow.internal.v0.models.CustomsDescriptionSuggestion[];
|
|
2570
2664
|
}
|
|
2571
2665
|
|
|
2666
|
+
interface ClassificationMerchant {
|
|
2667
|
+
readonly 'MerchantId': string;
|
|
2668
|
+
readonly 'PlatformId': io.flow.internal.v0.enums.ClassificationPlatform;
|
|
2669
|
+
readonly 'Name': string;
|
|
2670
|
+
readonly 'DateLastUpdated'?: string;
|
|
2671
|
+
readonly 'Order': number;
|
|
2672
|
+
}
|
|
2673
|
+
|
|
2674
|
+
interface ClassificationMerchantEnvelope {
|
|
2675
|
+
readonly 'messageType': string[];
|
|
2676
|
+
readonly 'message': io.flow.internal.v0.models.ClassificationMerchant;
|
|
2677
|
+
}
|
|
2678
|
+
|
|
2572
2679
|
interface ClassificationProduct {
|
|
2573
2680
|
readonly 'organization_id': string;
|
|
2574
2681
|
readonly 'product_id'?: string;
|
|
@@ -2748,6 +2855,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
2748
2855
|
readonly 'rex_number'?: string;
|
|
2749
2856
|
readonly 'wee_number'?: string;
|
|
2750
2857
|
readonly 'business_gst_numbers': string[];
|
|
2858
|
+
readonly 'destination_gst_numbers'?: string[];
|
|
2751
2859
|
readonly 'vat_name': string;
|
|
2752
2860
|
readonly 'shipping_price': string;
|
|
2753
2861
|
readonly 'shipment_recipient'?: string;
|
|
@@ -3372,7 +3480,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
3372
3480
|
interface Dispute {
|
|
3373
3481
|
readonly 'id': string;
|
|
3374
3482
|
readonly 'organization_id': string;
|
|
3375
|
-
readonly 'order'
|
|
3483
|
+
readonly 'order'?: io.flow.internal.v0.models.DisputeOrderReference;
|
|
3376
3484
|
readonly 'authorization': io.flow.internal.v0.models.DisputeAuthorizationReference;
|
|
3377
3485
|
readonly 'processor': io.flow.internal.v0.enums.DisputeProcessor;
|
|
3378
3486
|
readonly 'key': string;
|
|
@@ -3385,10 +3493,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
3385
3493
|
readonly 'status': io.flow.internal.v0.enums.DisputeStatus;
|
|
3386
3494
|
readonly 'liability': io.flow.internal.v0.enums.DisputeLiability;
|
|
3387
3495
|
readonly 'billable': io.flow.internal.v0.enums.DisputeBillable;
|
|
3496
|
+
readonly 'defense_outcome'?: io.flow.internal.v0.enums.DisputeDefenseOutcome;
|
|
3388
3497
|
readonly 'details': io.flow.internal.v0.unions.DisputeDetails;
|
|
3389
3498
|
readonly 'issued_at': string;
|
|
3390
3499
|
readonly 'expires_at'?: string;
|
|
3391
3500
|
readonly 'created_at': string;
|
|
3501
|
+
readonly 'updated_at'?: string;
|
|
3392
3502
|
}
|
|
3393
3503
|
|
|
3394
3504
|
interface DisputeAuthorizationReference {
|
|
@@ -3404,6 +3514,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
3404
3514
|
readonly 'id': string;
|
|
3405
3515
|
}
|
|
3406
3516
|
|
|
3517
|
+
interface DisputeDetail {
|
|
3518
|
+
readonly 'authorization': io.flow.internal.v0.models.SearchAuthorization;
|
|
3519
|
+
readonly 'dispute': io.flow.internal.v0.models.Dispute;
|
|
3520
|
+
}
|
|
3521
|
+
|
|
3407
3522
|
interface DisputeDetailsAdyen {
|
|
3408
3523
|
readonly 'discriminator': 'adyen';
|
|
3409
3524
|
readonly 'psp_reference': string;
|
|
@@ -3455,6 +3570,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
3455
3570
|
readonly 'id': string;
|
|
3456
3571
|
}
|
|
3457
3572
|
|
|
3573
|
+
interface DisputeOverrideUpdateForm {
|
|
3574
|
+
readonly 'billable'?: io.flow.internal.v0.enums.DisputeBillable;
|
|
3575
|
+
readonly 'reporting_category'?: io.flow.internal.v0.enums.DisputeReportingCategory;
|
|
3576
|
+
readonly 'category'?: io.flow.internal.v0.enums.DisputeCategory;
|
|
3577
|
+
readonly 'status'?: io.flow.internal.v0.enums.DisputeStatus;
|
|
3578
|
+
}
|
|
3579
|
+
|
|
3458
3580
|
interface DisputeStatusForm {
|
|
3459
3581
|
readonly 'status': io.flow.internal.v0.enums.DisputeStatus;
|
|
3460
3582
|
}
|
|
@@ -4039,6 +4161,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
4039
4161
|
readonly 'description'?: string;
|
|
4040
4162
|
readonly 'order_number'?: string;
|
|
4041
4163
|
readonly 'raw_carrier_event_code'?: string;
|
|
4164
|
+
readonly 'aggregator_status_code'?: string;
|
|
4042
4165
|
readonly 'created_at'?: string;
|
|
4043
4166
|
}
|
|
4044
4167
|
|
|
@@ -4793,6 +4916,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
4793
4916
|
readonly 'id': string;
|
|
4794
4917
|
}
|
|
4795
4918
|
|
|
4919
|
+
interface FulfillmentFallbacks {
|
|
4920
|
+
readonly 'id': string;
|
|
4921
|
+
readonly 'packaging': io.flow.fulfillment.v0.models.Packaging[];
|
|
4922
|
+
readonly 'contact': io.flow.common.v0.models.Contact;
|
|
4923
|
+
readonly 'location'?: io.flow.common.v0.models.Address;
|
|
4924
|
+
}
|
|
4925
|
+
|
|
4926
|
+
interface FulfillmentFallbacksDeleted {
|
|
4927
|
+
readonly 'discriminator': 'fulfillment_fallbacks_deleted';
|
|
4928
|
+
readonly 'event_id': string;
|
|
4929
|
+
readonly 'timestamp': string;
|
|
4930
|
+
readonly 'organization': string;
|
|
4931
|
+
readonly 'id': string;
|
|
4932
|
+
}
|
|
4933
|
+
|
|
4934
|
+
interface FulfillmentFallbacksUpserted {
|
|
4935
|
+
readonly 'discriminator': 'fulfillment_fallbacks_upserted';
|
|
4936
|
+
readonly 'event_id': string;
|
|
4937
|
+
readonly 'timestamp': string;
|
|
4938
|
+
readonly 'organization': string;
|
|
4939
|
+
readonly 'fulfillment_fallbacks': io.flow.internal.v0.models.FulfillmentFallbacks;
|
|
4940
|
+
}
|
|
4941
|
+
|
|
4796
4942
|
interface FulfillmentInternalExperienceReference {
|
|
4797
4943
|
readonly 'id': string;
|
|
4798
4944
|
readonly 'key': string;
|
|
@@ -5936,6 +6082,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
5936
6082
|
readonly 'label_request_error': io.flow.internal.v0.models.LabelRequestError;
|
|
5937
6083
|
}
|
|
5938
6084
|
|
|
6085
|
+
interface LabelRequestResult {
|
|
6086
|
+
readonly 'id': string;
|
|
6087
|
+
readonly 'created_at': string;
|
|
6088
|
+
readonly 'state': io.flow.internal.v0.enums.LabelRequestResultState;
|
|
6089
|
+
readonly 'organization_id': string;
|
|
6090
|
+
readonly 'order_number': string;
|
|
6091
|
+
readonly 'label_request_method': io.flow.label.v0.enums.LabelRequestMethod;
|
|
6092
|
+
readonly 'carrier_id'?: string;
|
|
6093
|
+
readonly 'carrier_tracking_number'?: string;
|
|
6094
|
+
readonly 'url'?: string;
|
|
6095
|
+
readonly 'error'?: string;
|
|
6096
|
+
readonly 'suggested_responsibility'?: io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
6097
|
+
readonly 'origin_country'?: string;
|
|
6098
|
+
readonly 'destination_country'?: string;
|
|
6099
|
+
readonly 'reference_id'?: string;
|
|
6100
|
+
readonly 'logistics_integration_provider'?: string;
|
|
6101
|
+
}
|
|
6102
|
+
|
|
5939
6103
|
interface LabelSummary {
|
|
5940
6104
|
readonly 'id': string;
|
|
5941
6105
|
readonly 'commercial_invoice'?: string;
|
|
@@ -6866,6 +7030,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
6866
7030
|
readonly 'merchant_guid_assignment': io.flow.internal.v0.models.MerchantGuidAssignment;
|
|
6867
7031
|
}
|
|
6868
7032
|
|
|
7033
|
+
interface MerchantHubOverride {
|
|
7034
|
+
readonly 'id': string;
|
|
7035
|
+
readonly 'organization_id': string;
|
|
7036
|
+
readonly 'code': string;
|
|
7037
|
+
readonly 'contact': io.flow.common.v0.models.Contact;
|
|
7038
|
+
readonly 'location': io.flow.common.v0.models.Address;
|
|
7039
|
+
}
|
|
7040
|
+
|
|
7041
|
+
interface MerchantHubOverrideForm {
|
|
7042
|
+
readonly 'code': string;
|
|
7043
|
+
readonly 'contact': io.flow.common.v0.models.Contact;
|
|
7044
|
+
readonly 'location': io.flow.common.v0.models.Address;
|
|
7045
|
+
}
|
|
7046
|
+
|
|
6869
7047
|
interface MerchantOfRecordEntitySettings {
|
|
6870
7048
|
readonly 'id': string;
|
|
6871
7049
|
readonly 'merchant_of_record_entity': io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
@@ -7013,6 +7191,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
7013
7191
|
readonly 'percent': number;
|
|
7014
7192
|
}
|
|
7015
7193
|
|
|
7194
|
+
interface NegativeDebitMetrics {
|
|
7195
|
+
readonly 'current_attempt': io.flow.internal.v0.models.AttemptStatistics;
|
|
7196
|
+
readonly 'second_attempt': io.flow.internal.v0.models.AttemptStatistics;
|
|
7197
|
+
readonly 'third_attempt': io.flow.internal.v0.models.AttemptStatistics;
|
|
7198
|
+
}
|
|
7199
|
+
|
|
7016
7200
|
interface NextBillingStatement {
|
|
7017
7201
|
readonly 'date': string;
|
|
7018
7202
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -7289,6 +7473,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
7289
7473
|
readonly 'created_at': string;
|
|
7290
7474
|
readonly 'updated_at': string;
|
|
7291
7475
|
readonly 'shopify_order_id'?: string;
|
|
7476
|
+
readonly 'disputes': io.flow.internal.v0.models.DisputeDetail[];
|
|
7292
7477
|
}
|
|
7293
7478
|
|
|
7294
7479
|
interface OrderFulfillmentDeleted {
|
|
@@ -8155,6 +8340,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
8155
8340
|
readonly 'partner_organization_settings': io.flow.internal.v0.models.PartnerOrganizationSettings;
|
|
8156
8341
|
}
|
|
8157
8342
|
|
|
8343
|
+
interface PartnerRequest {
|
|
8344
|
+
readonly 'id': string;
|
|
8345
|
+
readonly 'partner_id': string;
|
|
8346
|
+
readonly 'organization_id': string;
|
|
8347
|
+
readonly 'request_body'?: any/*json*/;
|
|
8348
|
+
}
|
|
8349
|
+
|
|
8158
8350
|
interface Passphrase {
|
|
8159
8351
|
readonly 'id': string;
|
|
8160
8352
|
readonly 'tribe': io.flow.internal.v0.models.Tribe;
|
|
@@ -8721,6 +8913,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
8721
8913
|
readonly 'next_product'?: io.flow.internal.v0.models.ClassificationProductId;
|
|
8722
8914
|
}
|
|
8723
8915
|
|
|
8916
|
+
interface ProductCurrencies {
|
|
8917
|
+
readonly 'transaction': string;
|
|
8918
|
+
readonly 'destination': string;
|
|
8919
|
+
}
|
|
8920
|
+
|
|
8724
8921
|
interface ProductDetailSettingsForm {
|
|
8725
8922
|
readonly 'keys': string[];
|
|
8726
8923
|
}
|
|
@@ -8748,6 +8945,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
8748
8945
|
readonly 'column_settings': io.flow.internal.v0.models.HarmonizationColumnSetting[];
|
|
8749
8946
|
}
|
|
8750
8947
|
|
|
8948
|
+
interface ProductRecord {
|
|
8949
|
+
readonly 'organization_id': string;
|
|
8950
|
+
readonly 'order_number': string;
|
|
8951
|
+
readonly 'fulfillment_id': string;
|
|
8952
|
+
readonly 'currencies': io.flow.internal.v0.models.ProductCurrencies;
|
|
8953
|
+
readonly 'products': io.flow.internal.v0.models.ProductTransaction[];
|
|
8954
|
+
}
|
|
8955
|
+
|
|
8751
8956
|
interface ProductRestrictionResultValidationError {
|
|
8752
8957
|
readonly 'message': string;
|
|
8753
8958
|
readonly 'reason': string;
|
|
@@ -8793,6 +8998,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
8793
8998
|
readonly 'reviews': io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
|
|
8794
8999
|
}
|
|
8795
9000
|
|
|
9001
|
+
interface ProductTransaction {
|
|
9002
|
+
readonly 'transaction_amount': number;
|
|
9003
|
+
readonly 'destination_amount': number;
|
|
9004
|
+
readonly 'quantity': number;
|
|
9005
|
+
}
|
|
9006
|
+
|
|
8796
9007
|
interface Profit {
|
|
8797
9008
|
readonly 'key': io.flow.internal.v0.enums.ProfitStreamKey;
|
|
8798
9009
|
readonly 'principal': io.flow.internal.v0.models.Principal;
|
|
@@ -8867,6 +9078,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
8867
9078
|
readonly 'created_at': string;
|
|
8868
9079
|
}
|
|
8869
9080
|
|
|
9081
|
+
interface PublicHub {
|
|
9082
|
+
readonly 'id': string;
|
|
9083
|
+
readonly 'code': string;
|
|
9084
|
+
readonly 'third_party_logistics_reference': string;
|
|
9085
|
+
readonly 'contact': io.flow.common.v0.models.Contact;
|
|
9086
|
+
readonly 'location': io.flow.common.v0.models.Address;
|
|
9087
|
+
}
|
|
9088
|
+
|
|
9089
|
+
interface PublicHubForm {
|
|
9090
|
+
readonly 'code': string;
|
|
9091
|
+
readonly 'third_party_logistics_reference': string;
|
|
9092
|
+
readonly 'contact': io.flow.common.v0.models.Contact;
|
|
9093
|
+
readonly 'location': io.flow.common.v0.models.Address;
|
|
9094
|
+
}
|
|
9095
|
+
|
|
8870
9096
|
interface Quote {
|
|
8871
9097
|
readonly 'id': string;
|
|
8872
9098
|
readonly 'base': string;
|
|
@@ -9425,6 +9651,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
9425
9651
|
interface ReportingConversionRates {
|
|
9426
9652
|
readonly 'merchant': number;
|
|
9427
9653
|
readonly 'entity': number;
|
|
9654
|
+
readonly 'destination_country': number;
|
|
9428
9655
|
readonly 'usd': number;
|
|
9429
9656
|
readonly 'eur': number;
|
|
9430
9657
|
}
|
|
@@ -9438,6 +9665,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
9438
9665
|
readonly 'transaction': string;
|
|
9439
9666
|
readonly 'merchant': string;
|
|
9440
9667
|
readonly 'entity': string;
|
|
9668
|
+
readonly 'destination_country'?: string;
|
|
9441
9669
|
}
|
|
9442
9670
|
|
|
9443
9671
|
interface ReportingDebug {
|
|
@@ -9559,6 +9787,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
9559
9787
|
readonly 'transaction': number;
|
|
9560
9788
|
readonly 'merchant': number;
|
|
9561
9789
|
readonly 'entity': number;
|
|
9790
|
+
readonly 'destination_country': number;
|
|
9562
9791
|
readonly 'usd': number;
|
|
9563
9792
|
readonly 'eur': number;
|
|
9564
9793
|
}
|
|
@@ -11782,6 +12011,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11782
12011
|
readonly 'tracking_label': io.flow.internal.v0.models.ExportTrackingLabel;
|
|
11783
12012
|
}
|
|
11784
12013
|
|
|
12014
|
+
interface TrackingLabelDimensions {
|
|
12015
|
+
readonly 'id': string;
|
|
12016
|
+
readonly 'organization_id': string;
|
|
12017
|
+
readonly 'tracking_label_id': string;
|
|
12018
|
+
readonly 'source': io.flow.internal.v0.enums.TrackingLabelDimensionsSource;
|
|
12019
|
+
readonly 'created_at': string;
|
|
12020
|
+
readonly 'dimensions': io.flow.common.v0.models.Dimensions;
|
|
12021
|
+
}
|
|
12022
|
+
|
|
12023
|
+
interface TrackingLabelDimensionsDeleted {
|
|
12024
|
+
readonly 'discriminator': 'tracking_label_dimensions_deleted';
|
|
12025
|
+
readonly 'event_id': string;
|
|
12026
|
+
readonly 'timestamp': string;
|
|
12027
|
+
readonly 'organization': string;
|
|
12028
|
+
readonly 'id': string;
|
|
12029
|
+
}
|
|
12030
|
+
|
|
12031
|
+
interface TrackingLabelDimensionsUpserted {
|
|
12032
|
+
readonly 'discriminator': 'tracking_label_dimensions_upserted';
|
|
12033
|
+
readonly 'event_id': string;
|
|
12034
|
+
readonly 'timestamp': string;
|
|
12035
|
+
readonly 'organization': string;
|
|
12036
|
+
readonly 'tracking_label_dimensions': io.flow.internal.v0.models.TrackingLabelDimensions;
|
|
12037
|
+
}
|
|
12038
|
+
|
|
11785
12039
|
interface TrackingLabelEventDeletedV2 {
|
|
11786
12040
|
readonly 'discriminator': 'tracking_label_event_deleted_v2';
|
|
11787
12041
|
readonly 'event_id': string;
|
|
@@ -12201,7 +12455,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
12201
12455
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
12202
12456
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
|
|
12203
12457
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
12204
|
-
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);
|
|
12458
|
+
type Event = (io.flow.internal.v0.models.AdjustedEstimatesUpserted | io.flow.internal.v0.models.AdjustedEstimatesDeleted | io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.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);
|
|
12205
12459
|
type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
|
|
12206
12460
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
12207
12461
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -32,6 +32,8 @@ declare namespace io.flow.label.v0.models {
|
|
|
32
32
|
readonly 'package'?: io.flow.label.v0.models.ShippingLabelPackage;
|
|
33
33
|
readonly 'origin'?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
34
34
|
readonly 'direction'?: io.flow.label.v0.enums.Direction;
|
|
35
|
+
readonly 'reference_id'?: string;
|
|
36
|
+
readonly 'hub_code'?: string;
|
|
35
37
|
}
|
|
36
38
|
|
|
37
39
|
interface CrossdockShipment {
|
|
@@ -54,6 +56,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
54
56
|
readonly 'service'?: string;
|
|
55
57
|
readonly 'shipment_recipient'?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
56
58
|
readonly 'package_dimensions_source'?: io.flow.label.v0.enums.PackageDimensionsSource;
|
|
59
|
+
readonly 'reference_id'?: string;
|
|
57
60
|
}
|
|
58
61
|
|
|
59
62
|
interface DetailedShippingNotificationForm {
|
|
@@ -232,6 +235,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
232
235
|
readonly 'items': io.flow.common.v0.models.LineItemForm[];
|
|
233
236
|
readonly 'center_key'?: string;
|
|
234
237
|
readonly 'direction'?: io.flow.label.v0.enums.Direction;
|
|
238
|
+
readonly 'reference_id'?: string;
|
|
235
239
|
}
|
|
236
240
|
|
|
237
241
|
interface SummaryShippingNotificationForm {
|
|
@@ -561,6 +561,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
561
561
|
readonly 'location_id'?: number;
|
|
562
562
|
readonly 'subtotal'?: number;
|
|
563
563
|
readonly 'total_tax'?: number;
|
|
564
|
+
readonly 'total_tax_set'?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
564
565
|
}
|
|
565
566
|
|
|
566
567
|
interface ShopifyOrderShippingLine {
|
|
@@ -17,6 +17,10 @@ declare namespace io.flow.tracking.v0.models {
|
|
|
17
17
|
readonly 'in_transit': io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
18
18
|
readonly 'delivered'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
19
19
|
readonly 'rejected'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
20
|
+
readonly 'returned'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
21
|
+
readonly 'crossed_border'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
22
|
+
readonly 'destroyed'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
23
|
+
readonly 'return_reversal'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
20
24
|
}
|
|
21
25
|
|
|
22
26
|
interface LabelTrackingSummaryUpdate {
|
|
@@ -139,7 +139,7 @@ declare namespace io.flow.v0.enums {
|
|
|
139
139
|
type PaymentType = 'card' | 'klarna' | 'googlepay' | 'paypal' | 'applepay' | 'ideal' | 'sofort' | 'afterpay' | 'bancontact' | 'twint' | 'przelewy24' | 'mobilepay' | 'grabpay' | 'vipps' | 'kcp_creditcard';
|
|
140
140
|
type PayoutAttachmentType = 'transactions';
|
|
141
141
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
142
|
-
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';
|
|
142
|
+
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';
|
|
143
143
|
type PermittedHttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
144
144
|
type PhysicalDeliverySpecialSerivce = 'cold_storage' | 'hazardous' | 'perishable';
|
|
145
145
|
type PostalType = 'eircode' | 'pin' | 'postal' | 'zip';
|
|
@@ -150,7 +150,7 @@ declare namespace io.flow.v0.enums {
|
|
|
150
150
|
type PriceDetailKey = 'item_price' | 'margins' | 'vat' | 'duty' | 'rounding' | 'adjustment';
|
|
151
151
|
type PriceFacetBoundary = 'min' | 'max';
|
|
152
152
|
type PricingLevySetting = 'included' | 'displayed' | 'ignored';
|
|
153
|
-
type ProductRestrictionRule = 'Adult Products' | 'Alcohol' | 'Anti Money Laundering' | 'Collagen' | 'Consumer Safety' | 'Cosmetics' | 'DG - Batteries' | 'DG - Hazmat' | 'Drugs' | 'Dual Use' | 'Fine Art' | 'Fish & Wildlife - CITES' | 'Fish & Wildlife - Plant' | 'Fish & Wildlife - USFWS' | 'Food' | 'Gambling' | 'Health' | 'Human hair' | 'Insufficient Details' | 'Intangible' | 'Jewelry' | 'Jewelry & Watches Over 5000' | 'Knives' | 'Liquids' | 'Oversized' | 'Restrict by Default' | 'Supplements' | 'Weapon' | 'Wood';
|
|
153
|
+
type ProductRestrictionRule = 'Adult Products' | 'Alcohol' | 'Anti Money Laundering' | 'Collagen' | 'Consumer Safety' | 'Cosmetics' | 'DG - Batteries' | 'DG - Hazmat' | 'Drugs' | 'Dual Use' | 'Fine Art' | 'Fish & Wildlife - CITES' | 'Fish & Wildlife - Plant' | 'Fish & Wildlife - USFWS' | 'Food' | 'Gambling' | 'Health' | 'Human hair' | 'Insufficient Details' | 'Intangible' | 'Jewelry' | 'Jewelry & Watches Over 5000' | 'Knives' | 'Liquids' | 'Oversized' | 'Restrict by Default' | 'Supplements' | 'Tattoo Ink And PMU' | 'Weapon' | 'Wood';
|
|
154
154
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
155
155
|
type ProvinceType = 'area' | 'city' | 'county' | 'department' | 'dependency' | 'district' | 'do_si' | 'emirate' | 'entity' | 'island' | 'municipality' | 'oblast' | 'outlying_area' | 'parish' | 'prefecture' | 'province' | 'state' | 'territory' | 'other';
|
|
156
156
|
type QuoteErrorCode = 'generic_error' | 'items_not_available' | 'shipping_unavailable';
|
|
@@ -1120,6 +1120,8 @@ declare namespace io.flow.v0.models {
|
|
|
1120
1120
|
readonly 'package'?: io.flow.v0.models.ShippingLabelPackage;
|
|
1121
1121
|
readonly 'origin'?: io.flow.v0.models.ShippingAddress;
|
|
1122
1122
|
readonly 'direction'?: io.flow.v0.enums.Direction;
|
|
1123
|
+
readonly 'reference_id'?: string;
|
|
1124
|
+
readonly 'hub_code'?: string;
|
|
1123
1125
|
}
|
|
1124
1126
|
|
|
1125
1127
|
interface BrowseOptinResponses {
|
|
@@ -2736,6 +2738,12 @@ declare namespace io.flow.v0.models {
|
|
|
2736
2738
|
readonly 'minimum'?: number;
|
|
2737
2739
|
}
|
|
2738
2740
|
|
|
2741
|
+
interface DestinationContactDetail {
|
|
2742
|
+
readonly 'title': string;
|
|
2743
|
+
readonly 'country': string;
|
|
2744
|
+
readonly 'import_identifier': string;
|
|
2745
|
+
}
|
|
2746
|
+
|
|
2739
2747
|
interface DetailedShippingLabelForm {
|
|
2740
2748
|
readonly 'discriminator': 'detailed_shipping_label_form';
|
|
2741
2749
|
readonly 'destination': io.flow.v0.models.ShippingAddress;
|
|
@@ -2748,6 +2756,7 @@ declare namespace io.flow.v0.models {
|
|
|
2748
2756
|
readonly 'service'?: string;
|
|
2749
2757
|
readonly 'shipment_recipient'?: io.flow.v0.enums.ShipmentRecipient;
|
|
2750
2758
|
readonly 'package_dimensions_source'?: io.flow.v0.enums.PackageDimensionsSource;
|
|
2759
|
+
readonly 'reference_id'?: string;
|
|
2751
2760
|
}
|
|
2752
2761
|
|
|
2753
2762
|
interface DetailedShippingNotificationForm {
|
|
@@ -4423,6 +4432,7 @@ declare namespace io.flow.v0.models {
|
|
|
4423
4432
|
readonly 'local'?: io.flow.v0.models.Local;
|
|
4424
4433
|
readonly 'created_at'?: string;
|
|
4425
4434
|
readonly 'updated_at'?: string;
|
|
4435
|
+
readonly 'deleted_at'?: string;
|
|
4426
4436
|
}
|
|
4427
4437
|
|
|
4428
4438
|
interface ItemAttributesPatchForm {
|
|
@@ -4448,6 +4458,7 @@ declare namespace io.flow.v0.models {
|
|
|
4448
4458
|
readonly 'attributes'?: Record<string, string>;
|
|
4449
4459
|
readonly 'dimensions'?: io.flow.v0.models.Dimensions;
|
|
4450
4460
|
readonly 'images'?: io.flow.v0.models.ImageForm[];
|
|
4461
|
+
readonly 'deleted_at'?: string;
|
|
4451
4462
|
}
|
|
4452
4463
|
|
|
4453
4464
|
interface ItemFormOverlay {
|
|
@@ -4461,6 +4472,7 @@ declare namespace io.flow.v0.models {
|
|
|
4461
4472
|
readonly 'attributes'?: Record<string, string>;
|
|
4462
4473
|
readonly 'dimensions'?: io.flow.v0.models.Dimensions;
|
|
4463
4474
|
readonly 'images'?: io.flow.v0.models.ImageForm[];
|
|
4475
|
+
readonly 'deleted_at'?: string;
|
|
4464
4476
|
}
|
|
4465
4477
|
|
|
4466
4478
|
interface ItemFormOverlayForm {
|
|
@@ -4473,6 +4485,7 @@ declare namespace io.flow.v0.models {
|
|
|
4473
4485
|
readonly 'attributes'?: Record<string, string>;
|
|
4474
4486
|
readonly 'dimensions'?: io.flow.v0.models.Dimensions;
|
|
4475
4487
|
readonly 'images'?: io.flow.v0.models.ImageForm[];
|
|
4488
|
+
readonly 'deleted_at'?: string;
|
|
4476
4489
|
}
|
|
4477
4490
|
|
|
4478
4491
|
interface ItemInserted {
|
|
@@ -4795,6 +4808,10 @@ declare namespace io.flow.v0.models {
|
|
|
4795
4808
|
readonly 'in_transit': io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
4796
4809
|
readonly 'delivered'?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
4797
4810
|
readonly 'rejected'?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
4811
|
+
readonly 'returned'?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
4812
|
+
readonly 'crossed_border'?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
4813
|
+
readonly 'destroyed'?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
4814
|
+
readonly 'return_reversal'?: io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
4798
4815
|
}
|
|
4799
4816
|
|
|
4800
4817
|
interface LabelTrackingSummaryUpdate {
|
|
@@ -5530,6 +5547,7 @@ declare namespace io.flow.v0.models {
|
|
|
5530
5547
|
readonly 'tax_registration'?: io.flow.v0.models.TaxRegistration;
|
|
5531
5548
|
readonly 'geo'?: io.flow.v0.models.OrderGeo;
|
|
5532
5549
|
readonly 'device_details'?: io.flow.v0.unions.DeviceDetails;
|
|
5550
|
+
readonly 'destination_contact_details'?: io.flow.v0.models.DestinationContactDetail[];
|
|
5533
5551
|
}
|
|
5534
5552
|
|
|
5535
5553
|
interface OrderAddress {
|
|
@@ -9638,6 +9656,7 @@ declare namespace io.flow.v0.models {
|
|
|
9638
9656
|
readonly 'items': io.flow.v0.models.LineItemForm[];
|
|
9639
9657
|
readonly 'center_key'?: string;
|
|
9640
9658
|
readonly 'direction'?: io.flow.v0.enums.Direction;
|
|
9659
|
+
readonly 'reference_id'?: string;
|
|
9641
9660
|
}
|
|
9642
9661
|
|
|
9643
9662
|
interface SummaryShippingNotificationForm {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-types",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.234",
|
|
4
4
|
"description": "Global TypeScript typings for Flow Commerce API",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,5 +14,5 @@
|
|
|
14
14
|
"scripts": {
|
|
15
15
|
"generate": "apibuilder update && node scripts/generate-index.js"
|
|
16
16
|
},
|
|
17
|
-
"gitHead": "
|
|
17
|
+
"gitHead": "0dd960b5d48f8ac9f314c8593a3597630199ba40"
|
|
18
18
|
}
|