@flowio/types 11.24.38 → 11.24.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +161 -27
- package/dist/api.d.ts +96 -12
- package/package.json +2 -2
- package/src/api-internal.ts +222 -27
- package/src/api.ts +135 -12
package/dist/api-internal.d.ts
CHANGED
|
@@ -5192,7 +5192,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5192
5192
|
readonly discount_applications: io.flow.shopify.markets.v0.models.ShopifyOrderDiscountApplication[];
|
|
5193
5193
|
readonly discount_codes: io.flow.shopify.markets.v0.models.ShopifyOrderDiscountCode[];
|
|
5194
5194
|
readonly email?: string;
|
|
5195
|
-
readonly financial_status
|
|
5195
|
+
readonly financial_status?: io.flow.shopify.markets.v0.enums.ShopifyOrderFinancialStatusType;
|
|
5196
5196
|
readonly fulfillments: io.flow.shopify.markets.v0.models.ShopifyOrderFulfillment[];
|
|
5197
5197
|
readonly fulfillment_status?: io.flow.shopify.markets.v0.enums.ShopifyOrderFulfillmentStatusType;
|
|
5198
5198
|
readonly landing_site?: string;
|
|
@@ -5958,7 +5958,7 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
5958
5958
|
readonly first_name?: string;
|
|
5959
5959
|
readonly last_name: string;
|
|
5960
5960
|
readonly email: string;
|
|
5961
|
-
readonly phone
|
|
5961
|
+
readonly phone?: string;
|
|
5962
5962
|
}
|
|
5963
5963
|
interface PaymentDiscount {
|
|
5964
5964
|
readonly amount: number;
|
|
@@ -8635,7 +8635,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
8635
8635
|
type AttachmentType = 'csv';
|
|
8636
8636
|
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer';
|
|
8637
8637
|
type PayoutStatusCode = 'scheduled' | 'sent' | 'cancelled' | 'failed' | 'succeeded';
|
|
8638
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
8638
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
8639
8639
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
8640
8640
|
}
|
|
8641
8641
|
declare namespace io.flow.billing.v0.models {
|
|
@@ -8651,6 +8651,9 @@ declare namespace io.flow.billing.v0.models {
|
|
|
8651
8651
|
readonly last4: string;
|
|
8652
8652
|
readonly info: io.flow.billing.bank.account.v0.unions.BankAccountInfo;
|
|
8653
8653
|
}
|
|
8654
|
+
interface BankAccountReference {
|
|
8655
|
+
readonly id: string;
|
|
8656
|
+
}
|
|
8654
8657
|
interface BillingChannelOrderSummary {
|
|
8655
8658
|
readonly organization: io.flow.billing.v0.models.BillingChannelOrganizationSummary;
|
|
8656
8659
|
readonly number: string;
|
|
@@ -8693,6 +8696,9 @@ declare namespace io.flow.billing.v0.models {
|
|
|
8693
8696
|
readonly identifiers: Record<string, string>;
|
|
8694
8697
|
readonly created_at: string;
|
|
8695
8698
|
}
|
|
8699
|
+
interface DefaultBankAccountForm {
|
|
8700
|
+
readonly bank_account_id: string;
|
|
8701
|
+
}
|
|
8696
8702
|
interface FeeDeduction {
|
|
8697
8703
|
readonly type: io.flow.billing.v0.enums.FeeDeductionType;
|
|
8698
8704
|
readonly amount: number;
|
|
@@ -8706,6 +8712,10 @@ declare namespace io.flow.billing.v0.models {
|
|
|
8706
8712
|
readonly id: string;
|
|
8707
8713
|
readonly last4: string;
|
|
8708
8714
|
}
|
|
8715
|
+
interface OrganizationDefaultBankAccount {
|
|
8716
|
+
readonly id: string;
|
|
8717
|
+
readonly bank_account: io.flow.billing.v0.models.BankAccountReference;
|
|
8718
|
+
}
|
|
8709
8719
|
interface Payout {
|
|
8710
8720
|
readonly discriminator: 'payout';
|
|
8711
8721
|
readonly status: io.flow.billing.v0.models.PayoutStatus;
|
|
@@ -10069,17 +10079,18 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10069
10079
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
10070
10080
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
10071
10081
|
type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
|
|
10072
|
-
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'all';
|
|
10082
|
+
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'all';
|
|
10073
10083
|
type BillingStatementBatchFileKey = 'archive' | 'summary';
|
|
10074
10084
|
type BillingStatementReviewStatus = 'approved' | 'pending';
|
|
10075
10085
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
10076
|
-
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order';
|
|
10086
|
+
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed';
|
|
10077
10087
|
type BlazeCheckoutEvent = 'begin_checkout' | 'select_promotion' | 'add_shipping_info' | 'add_payment_info' | 'purchase';
|
|
10078
10088
|
type BlazeCheckoutStep = 'customer_info' | 'delivery' | 'payment';
|
|
10079
10089
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
10080
10090
|
type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis';
|
|
10081
10091
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
10082
10092
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
10093
|
+
type ChannelBilledTransactionType = 'adjustment' | 'channel_initiated';
|
|
10083
10094
|
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information';
|
|
10084
10095
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
|
|
10085
10096
|
type ChannelTransactionType = 'adjustment' | 'processing';
|
|
@@ -10184,7 +10195,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10184
10195
|
type DutySelectionRule = 'lookup_by_tariff_code' | 'lookup_by_hs6_code' | 'fallback_for_jurisdiction' | 'domestic_sale' | 'intra_community_sale' | 'reimport' | 'override' | 'preferential_rate';
|
|
10185
10196
|
type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
|
|
10186
10197
|
type EmptyAttribute = 'irrelevant';
|
|
10187
|
-
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' | 'billable_label_upserted' | 'billable_label_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_deleted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_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' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_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' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | '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' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'pregenerated_request_event' | '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' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | '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' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_restriction_approval_upserted' | 'organization_restriction_approval_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_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' | 'virtual_card_provider_upserted' | 'virtual_card_provider_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' | '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' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_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' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
10198
|
+
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' | 'billable_label_upserted' | 'billable_label_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_deleted' | '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' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_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' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_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' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | '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' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'pregenerated_request_event' | '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' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | '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' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_restriction_approval_upserted' | 'organization_restriction_approval_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_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' | 'virtual_card_provider_upserted' | 'virtual_card_provider_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' | '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' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_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' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
10188
10199
|
type ExperienceImportType = 'experience_with_settings';
|
|
10189
10200
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
10190
10201
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -10247,8 +10258,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10247
10258
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
10248
10259
|
type OrganizationRestrictionApprovalStatus = 'ready' | 'not-ready';
|
|
10249
10260
|
type OrganizationRestrictionNoteType = 'internal' | 'rejection_reason';
|
|
10250
|
-
type OrganizationRestrictionRiskLevel = '5' | '
|
|
10251
|
-
type OrganizationRestrictionScreeningStatus = '
|
|
10261
|
+
type OrganizationRestrictionRiskLevel = '5' | '15';
|
|
10262
|
+
type OrganizationRestrictionScreeningStatus = 'in_review' | 'full_reviewed' | 'rejected' | 'unscreened';
|
|
10252
10263
|
type OutputStyle = 'flow' | 'shopify_p1';
|
|
10253
10264
|
type Owner = 'flow' | 'organization';
|
|
10254
10265
|
type PaymentSummaryStatus = 'authorized' | 'canceled' | 'declined' | 'expired' | 'failed' | 'pending' | 'processed' | 'reversed' | 'review' | 'succeeded';
|
|
@@ -11218,6 +11229,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11218
11229
|
readonly channel: io.flow.common.v0.models.Price;
|
|
11219
11230
|
readonly label: io.flow.common.v0.models.Price;
|
|
11220
11231
|
readonly order: io.flow.common.v0.models.Price;
|
|
11232
|
+
readonly channel_billed: io.flow.common.v0.models.Price;
|
|
11221
11233
|
readonly ending_balance: io.flow.common.v0.models.Price;
|
|
11222
11234
|
}
|
|
11223
11235
|
interface BillingStatementUpserted {
|
|
@@ -11619,6 +11631,49 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11619
11631
|
readonly timestamp: string;
|
|
11620
11632
|
readonly channel_account: io.flow.internal.v0.models.ChannelAccount;
|
|
11621
11633
|
}
|
|
11634
|
+
interface ChannelBilledTransaction {
|
|
11635
|
+
readonly discriminator: 'channel_billed_transaction';
|
|
11636
|
+
readonly id: string;
|
|
11637
|
+
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
11638
|
+
readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
11639
|
+
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
11640
|
+
readonly posted_at?: string;
|
|
11641
|
+
readonly value: io.flow.common.v0.models.Price;
|
|
11642
|
+
readonly description: string;
|
|
11643
|
+
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
11644
|
+
readonly created_at: string;
|
|
11645
|
+
}
|
|
11646
|
+
interface ChannelBilledTransactionDeleted {
|
|
11647
|
+
readonly discriminator: 'channel_billed_transaction_deleted';
|
|
11648
|
+
readonly event_id: string;
|
|
11649
|
+
readonly timestamp: string;
|
|
11650
|
+
readonly id: string;
|
|
11651
|
+
}
|
|
11652
|
+
interface ChannelBilledTransactionPair {
|
|
11653
|
+
readonly id: string;
|
|
11654
|
+
readonly key: string;
|
|
11655
|
+
readonly attributes?: Record<string, string>;
|
|
11656
|
+
readonly organization_transaction: io.flow.internal.v0.models.ChannelBilledTransactionReference;
|
|
11657
|
+
readonly channel_transaction: io.flow.internal.v0.models.ChannelBilledTransactionReference;
|
|
11658
|
+
}
|
|
11659
|
+
interface ChannelBilledTransactionPairForm {
|
|
11660
|
+
readonly channel_id: string;
|
|
11661
|
+
readonly organization_id: string;
|
|
11662
|
+
readonly amount: number;
|
|
11663
|
+
readonly currency: string;
|
|
11664
|
+
readonly description: string;
|
|
11665
|
+
readonly order_number?: string;
|
|
11666
|
+
readonly attributes?: Record<string, string>;
|
|
11667
|
+
}
|
|
11668
|
+
interface ChannelBilledTransactionReference {
|
|
11669
|
+
readonly id: string;
|
|
11670
|
+
}
|
|
11671
|
+
interface ChannelBilledTransactionUpserted {
|
|
11672
|
+
readonly discriminator: 'channel_billed_transaction_upserted';
|
|
11673
|
+
readonly event_id: string;
|
|
11674
|
+
readonly timestamp: string;
|
|
11675
|
+
readonly channel_billed_transaction: io.flow.internal.v0.models.ChannelBilledTransaction;
|
|
11676
|
+
}
|
|
11622
11677
|
interface ChannelBillingStatement {
|
|
11623
11678
|
readonly id: string;
|
|
11624
11679
|
readonly account: io.flow.internal.v0.models.AccountReference;
|
|
@@ -11754,12 +11809,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11754
11809
|
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
11755
11810
|
readonly created_at: string;
|
|
11756
11811
|
}
|
|
11812
|
+
interface ChannelTransactionDeleted {
|
|
11813
|
+
readonly discriminator: 'channel_transaction_deleted';
|
|
11814
|
+
readonly event_id: string;
|
|
11815
|
+
readonly timestamp: string;
|
|
11816
|
+
readonly id: string;
|
|
11817
|
+
}
|
|
11757
11818
|
interface ChannelTransactionRate {
|
|
11758
11819
|
readonly from: string;
|
|
11759
11820
|
readonly to: string;
|
|
11760
11821
|
readonly value: number;
|
|
11761
11822
|
readonly timestamp: string;
|
|
11762
11823
|
}
|
|
11824
|
+
interface ChannelTransactionUpserted {
|
|
11825
|
+
readonly discriminator: 'channel_transaction_upserted';
|
|
11826
|
+
readonly event_id: string;
|
|
11827
|
+
readonly timestamp: string;
|
|
11828
|
+
readonly channel_transaction: io.flow.internal.v0.models.ChannelTransaction;
|
|
11829
|
+
}
|
|
11763
11830
|
interface Chargeback {
|
|
11764
11831
|
readonly id: string;
|
|
11765
11832
|
readonly key: string;
|
|
@@ -14572,6 +14639,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14572
14639
|
readonly description?: string;
|
|
14573
14640
|
readonly order_number?: string;
|
|
14574
14641
|
}
|
|
14642
|
+
interface ExternalFulfillmentProof {
|
|
14643
|
+
readonly id: string;
|
|
14644
|
+
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
14645
|
+
readonly responsible_party: io.flow.internal.v0.enums.ResponsibleParty;
|
|
14646
|
+
readonly tracking: io.flow.internal.v0.models.ExternalFulfillmentProofTracking[];
|
|
14647
|
+
}
|
|
14648
|
+
interface ExternalFulfillmentProofForm {
|
|
14649
|
+
readonly responsible_party: io.flow.internal.v0.enums.ResponsibleParty;
|
|
14650
|
+
readonly tracking?: io.flow.internal.v0.models.ExternalFulfillmentProofTrackingForm[];
|
|
14651
|
+
}
|
|
14652
|
+
interface ExternalFulfillmentProofTracking {
|
|
14653
|
+
readonly carrier_id?: string;
|
|
14654
|
+
readonly service_id?: string;
|
|
14655
|
+
readonly carrier_tracking_number?: string;
|
|
14656
|
+
}
|
|
14657
|
+
interface ExternalFulfillmentProofTrackingForm {
|
|
14658
|
+
readonly carrier_id?: string;
|
|
14659
|
+
readonly service_id?: string;
|
|
14660
|
+
readonly carrier_tracking_number?: string;
|
|
14661
|
+
}
|
|
14575
14662
|
interface FacebookPixel {
|
|
14576
14663
|
readonly discriminator: 'facebook_pixel';
|
|
14577
14664
|
readonly name?: string;
|
|
@@ -15993,7 +16080,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15993
16080
|
}
|
|
15994
16081
|
interface InternalPaypalAuthorizationDetails {
|
|
15995
16082
|
readonly discriminator: 'internal_paypal_authorization_details';
|
|
15996
|
-
readonly paypal_authentication_data: io.flow.internal.v0.models.
|
|
16083
|
+
readonly paypal_authentication_data: io.flow.internal.v0.models.PaypalAccountReference;
|
|
15997
16084
|
}
|
|
15998
16085
|
interface InternalRedirectAuthorizationDetails {
|
|
15999
16086
|
readonly details: io.flow.payment.v0.models.RedirectAuthorizationDetails;
|
|
@@ -16412,6 +16499,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16412
16499
|
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
16413
16500
|
readonly created_at: string;
|
|
16414
16501
|
}
|
|
16502
|
+
interface LabelTransactionDeleted {
|
|
16503
|
+
readonly discriminator: 'label_transaction_deleted';
|
|
16504
|
+
readonly event_id: string;
|
|
16505
|
+
readonly timestamp: string;
|
|
16506
|
+
readonly id: string;
|
|
16507
|
+
}
|
|
16508
|
+
interface LabelTransactionUpserted {
|
|
16509
|
+
readonly discriminator: 'label_transaction_upserted';
|
|
16510
|
+
readonly event_id: string;
|
|
16511
|
+
readonly timestamp: string;
|
|
16512
|
+
readonly label_transaction: io.flow.internal.v0.models.LabelTransaction;
|
|
16513
|
+
}
|
|
16415
16514
|
interface LabeledContent {
|
|
16416
16515
|
readonly label: io.flow.internal.v0.models.ContentLabel;
|
|
16417
16516
|
readonly contents: io.flow.internal.v0.unions.ContentItem[];
|
|
@@ -17277,6 +17376,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17277
17376
|
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
17278
17377
|
readonly created_at: string;
|
|
17279
17378
|
}
|
|
17379
|
+
interface OrderTransactionDeleted {
|
|
17380
|
+
readonly discriminator: 'order_transaction_deleted';
|
|
17381
|
+
readonly event_id: string;
|
|
17382
|
+
readonly timestamp: string;
|
|
17383
|
+
readonly id: string;
|
|
17384
|
+
}
|
|
17385
|
+
interface OrderTransactionUpserted {
|
|
17386
|
+
readonly discriminator: 'order_transaction_upserted';
|
|
17387
|
+
readonly event_id: string;
|
|
17388
|
+
readonly timestamp: string;
|
|
17389
|
+
readonly order_transaction: io.flow.internal.v0.models.OrderTransaction;
|
|
17390
|
+
}
|
|
17280
17391
|
interface OrganizationAccount {
|
|
17281
17392
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
17282
17393
|
readonly id: string;
|
|
@@ -17438,6 +17549,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17438
17549
|
}
|
|
17439
17550
|
interface OrganizationRestrictionScreeningDecisionForm {
|
|
17440
17551
|
readonly organization_id: string;
|
|
17552
|
+
readonly approval_status: io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
17441
17553
|
readonly screening_status: io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
|
|
17442
17554
|
readonly risk_level?: io.flow.internal.v0.enums.OrganizationRestrictionRiskLevel;
|
|
17443
17555
|
readonly hs_code?: string;
|
|
@@ -17475,7 +17587,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17475
17587
|
readonly organization_id: string;
|
|
17476
17588
|
readonly approval: io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
17477
17589
|
readonly screening_status: io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
|
|
17478
|
-
readonly risk_level
|
|
17590
|
+
readonly risk_level?: io.flow.internal.v0.enums.OrganizationRestrictionRiskLevel;
|
|
17479
17591
|
readonly selective_review_start_date?: string;
|
|
17480
17592
|
readonly selective_review_end_date?: string;
|
|
17481
17593
|
readonly full_review_start_date?: string;
|
|
@@ -17567,6 +17679,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17567
17679
|
interface PartnerOrganizationAuthorizationForm {
|
|
17568
17680
|
readonly partner: string;
|
|
17569
17681
|
}
|
|
17682
|
+
interface PartnerOrganizationSettings {
|
|
17683
|
+
readonly glbe_merchant_guid: string;
|
|
17684
|
+
}
|
|
17685
|
+
interface PartnerOrganizationSettingsForm {
|
|
17686
|
+
readonly glbe_merchant_guid: string;
|
|
17687
|
+
}
|
|
17570
17688
|
interface Passphrase {
|
|
17571
17689
|
readonly id: string;
|
|
17572
17690
|
readonly tribe: io.flow.internal.v0.models.Tribe;
|
|
@@ -17677,22 +17795,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17677
17795
|
readonly authentication: io.flow.internal.v0.models.PaypalAuthenticationForm;
|
|
17678
17796
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
17679
17797
|
}
|
|
17798
|
+
interface PaypalAccountReference {
|
|
17799
|
+
readonly id: string;
|
|
17800
|
+
readonly flow_merchant_id?: string;
|
|
17801
|
+
}
|
|
17680
17802
|
interface PaypalAuthentication {
|
|
17681
17803
|
readonly username: string;
|
|
17682
17804
|
readonly password_reference: string;
|
|
17683
17805
|
}
|
|
17684
|
-
interface PaypalAuthenticationData {
|
|
17685
|
-
readonly id: string;
|
|
17686
|
-
readonly organization: string;
|
|
17687
|
-
readonly key: string;
|
|
17688
|
-
readonly environment: io.flow.common.v0.enums.Environment;
|
|
17689
|
-
readonly client_id: io.flow.internal.v0.models.CipherReference;
|
|
17690
|
-
readonly secret: io.flow.internal.v0.models.CipherReference;
|
|
17691
|
-
}
|
|
17692
|
-
interface PaypalAuthenticationDataReference {
|
|
17693
|
-
readonly id: string;
|
|
17694
|
-
readonly flow_merchant_id?: string;
|
|
17695
|
-
}
|
|
17696
17806
|
interface PaypalAuthenticationForm {
|
|
17697
17807
|
readonly username: string;
|
|
17698
17808
|
readonly password: string;
|
|
@@ -18065,6 +18175,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18065
18175
|
readonly product_id: string;
|
|
18066
18176
|
readonly reviews: io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
|
|
18067
18177
|
}
|
|
18178
|
+
interface ProofOfPostingExternallyFulfilled {
|
|
18179
|
+
readonly discriminator: 'external';
|
|
18180
|
+
readonly external_fulfillment_proof_id: string;
|
|
18181
|
+
}
|
|
18068
18182
|
interface ProofOfPostingFulfilled {
|
|
18069
18183
|
readonly discriminator: 'fulfilled';
|
|
18070
18184
|
readonly billable_label_id: string;
|
|
@@ -18461,6 +18575,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18461
18575
|
readonly name: string;
|
|
18462
18576
|
readonly environment: io.flow.common.v0.enums.Environment;
|
|
18463
18577
|
readonly url?: string;
|
|
18578
|
+
readonly approval_status?: io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
18464
18579
|
readonly screening_status?: io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
|
|
18465
18580
|
readonly risk_level?: io.flow.internal.v0.enums.OrganizationRestrictionRiskLevel;
|
|
18466
18581
|
readonly hs_code?: string;
|
|
@@ -19974,7 +20089,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
19974
20089
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
19975
20090
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
19976
20091
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
19977
|
-
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.BillableLabelUpserted | io.flow.internal.v0.models.BillableLabelDeleted | 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.BankPaymentDeleted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | 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.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.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | 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.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | 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.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | 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.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.PregeneratedRequestEvent | 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.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | 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.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.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.OrganizationRestrictionApprovalUpserted | io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | 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.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | 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.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.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | 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.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | 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.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
20092
|
+
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.BillableLabelUpserted | io.flow.internal.v0.models.BillableLabelDeleted | 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.BankPaymentDeleted | 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.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | 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.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | 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.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | 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.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | 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.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.PregeneratedRequestEvent | 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.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | 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.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.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.OrganizationRestrictionApprovalUpserted | io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | 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.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | 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.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.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | 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.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | 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.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
19978
20093
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
19979
20094
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
19980
20095
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -20010,7 +20125,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
20010
20125
|
type ProcessorMerchantForm = io.flow.internal.v0.models.StripeMerchantForm;
|
|
20011
20126
|
type ProcessorMerchantModificationForm = io.flow.internal.v0.models.StripeMerchantModificationForm | io.flow.internal.v0.models.AdyenMerchantModificationForm | io.flow.internal.v0.models.FiservMerchantModificationForm | io.flow.internal.v0.models.PaypalMerchantModificationForm;
|
|
20012
20127
|
type ProcessorMerchantPutForm = io.flow.internal.v0.models.StripeMerchantPutForm | io.flow.internal.v0.models.AdyenMerchantPutForm | io.flow.internal.v0.models.FiservMerchantPutForm | io.flow.internal.v0.models.PaypalMerchantPutForm;
|
|
20013
|
-
type ProofOfPosting = io.flow.internal.v0.models.ProofOfPostingFulfilled | io.flow.internal.v0.models.ProofOfPostingFullyRefunded;
|
|
20128
|
+
type ProofOfPosting = io.flow.internal.v0.models.ProofOfPostingFulfilled | io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.internal.v0.models.ProofOfPostingFullyRefunded;
|
|
20014
20129
|
type RoutingEntity = io.flow.internal.v0.models.RoutingProcessor | io.flow.internal.v0.models.RoutingAccount | io.flow.internal.v0.models.RoutingMerchant;
|
|
20015
20130
|
type ShopifyPromotionOfferDiscount = io.flow.internal.v0.models.ShopifyPromotionFixedAmount | io.flow.internal.v0.models.ShopifyPromotionPercent;
|
|
20016
20131
|
type ShopifyPromotionOfferEntitlement = io.flow.internal.v0.models.ShopifyPromotionItemEntitlement | io.flow.internal.v0.models.ShopifyPromotionOrderEntitlement;
|
|
@@ -20023,7 +20138,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
20023
20138
|
type TaskData = io.flow.internal.v0.models.TaskProcessQueuedEvent | io.flow.internal.v0.models.TaskSummarizeCode | io.flow.internal.v0.models.TaskItemUpserted | io.flow.internal.v0.models.TaskImport;
|
|
20024
20139
|
type TaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
20025
20140
|
type Tracker = io.flow.internal.v0.models.GoogleAnalytics | io.flow.internal.v0.models.GoogleGlobalSiteTag | io.flow.internal.v0.models.GoogleTagManager | io.flow.internal.v0.models.FacebookPixel | io.flow.internal.v0.models.SnapchatPixel;
|
|
20026
|
-
type Transaction = io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction;
|
|
20141
|
+
type Transaction = io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction;
|
|
20027
20142
|
type TransactionSummary = io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary;
|
|
20028
20143
|
type ValidationRule = io.flow.internal.v0.models.ValidationCharacterLength;
|
|
20029
20144
|
type Variant = io.flow.internal.v0.models.ExperienceVariant | io.flow.internal.v0.models.FeatureVariant;
|
|
@@ -20263,6 +20378,13 @@ export declare type ChangeSettingsIndexTask = io.flow.internal.v0.models.ChangeS
|
|
|
20263
20378
|
export declare type ChannelAccount = io.flow.internal.v0.models.ChannelAccount;
|
|
20264
20379
|
export declare type ChannelAccountDeleted = io.flow.internal.v0.models.ChannelAccountDeleted;
|
|
20265
20380
|
export declare type ChannelAccountUpsertedV2 = io.flow.internal.v0.models.ChannelAccountUpsertedV2;
|
|
20381
|
+
export declare type ChannelBilledTransaction = io.flow.internal.v0.models.ChannelBilledTransaction;
|
|
20382
|
+
export declare type ChannelBilledTransactionDeleted = io.flow.internal.v0.models.ChannelBilledTransactionDeleted;
|
|
20383
|
+
export declare type ChannelBilledTransactionPair = io.flow.internal.v0.models.ChannelBilledTransactionPair;
|
|
20384
|
+
export declare type ChannelBilledTransactionPairForm = io.flow.internal.v0.models.ChannelBilledTransactionPairForm;
|
|
20385
|
+
export declare type ChannelBilledTransactionReference = io.flow.internal.v0.models.ChannelBilledTransactionReference;
|
|
20386
|
+
export declare type ChannelBilledTransactionType = io.flow.internal.v0.enums.ChannelBilledTransactionType;
|
|
20387
|
+
export declare type ChannelBilledTransactionUpserted = io.flow.internal.v0.models.ChannelBilledTransactionUpserted;
|
|
20266
20388
|
export declare type ChannelBillingStatement = io.flow.internal.v0.models.ChannelBillingStatement;
|
|
20267
20389
|
export declare type ChannelCurrencyForm = io.flow.internal.v0.models.ChannelCurrencyForm;
|
|
20268
20390
|
export declare type ChannelCurrencySetting = io.flow.internal.v0.models.ChannelCurrencySetting;
|
|
@@ -20288,8 +20410,10 @@ export declare type ChannelRateMetadata = io.flow.internal.v0.unions.ChannelRate
|
|
|
20288
20410
|
export declare type ChannelRateMetadataIdentity = io.flow.internal.v0.models.ChannelRateMetadataIdentity;
|
|
20289
20411
|
export declare type ChannelRateMetadataRate = io.flow.internal.v0.models.ChannelRateMetadataRate;
|
|
20290
20412
|
export declare type ChannelTransaction = io.flow.internal.v0.models.ChannelTransaction;
|
|
20413
|
+
export declare type ChannelTransactionDeleted = io.flow.internal.v0.models.ChannelTransactionDeleted;
|
|
20291
20414
|
export declare type ChannelTransactionRate = io.flow.internal.v0.models.ChannelTransactionRate;
|
|
20292
20415
|
export declare type ChannelTransactionType = io.flow.internal.v0.enums.ChannelTransactionType;
|
|
20416
|
+
export declare type ChannelTransactionUpserted = io.flow.internal.v0.models.ChannelTransactionUpserted;
|
|
20293
20417
|
export declare type Chargeback = io.flow.internal.v0.models.Chargeback;
|
|
20294
20418
|
export declare type ChargebackDeleted = io.flow.internal.v0.models.ChargebackDeleted;
|
|
20295
20419
|
export declare type ChargebackPaymentStatus = io.flow.internal.v0.enums.ChargebackPaymentStatus;
|
|
@@ -21040,6 +21164,10 @@ export declare type ExportScheduleDaily = io.flow.internal.v0.models.ExportSched
|
|
|
21040
21164
|
export declare type ExportScheduleRepeated = io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
21041
21165
|
export declare type ExportTrackingLabel = io.flow.internal.v0.models.ExportTrackingLabel;
|
|
21042
21166
|
export declare type ExportTrackingLabelEvent = io.flow.internal.v0.models.ExportTrackingLabelEvent;
|
|
21167
|
+
export declare type ExternalFulfillmentProof = io.flow.internal.v0.models.ExternalFulfillmentProof;
|
|
21168
|
+
export declare type ExternalFulfillmentProofForm = io.flow.internal.v0.models.ExternalFulfillmentProofForm;
|
|
21169
|
+
export declare type ExternalFulfillmentProofTracking = io.flow.internal.v0.models.ExternalFulfillmentProofTracking;
|
|
21170
|
+
export declare type ExternalFulfillmentProofTrackingForm = io.flow.internal.v0.models.ExternalFulfillmentProofTrackingForm;
|
|
21043
21171
|
export declare type FacebookPixel = io.flow.internal.v0.models.FacebookPixel;
|
|
21044
21172
|
export declare type Feature = io.flow.internal.v0.models.Feature;
|
|
21045
21173
|
export declare type FeatureContextForm = io.flow.internal.v0.models.FeatureContextForm;
|
|
@@ -21322,7 +21450,9 @@ export declare type LabelTaxonomy = io.flow.internal.v0.models.LabelTaxonomy;
|
|
|
21322
21450
|
export declare type LabelTrackingSummaryDeleted = io.flow.internal.v0.models.LabelTrackingSummaryDeleted;
|
|
21323
21451
|
export declare type LabelTrackingSummaryUpserted = io.flow.internal.v0.models.LabelTrackingSummaryUpserted;
|
|
21324
21452
|
export declare type LabelTransaction = io.flow.internal.v0.models.LabelTransaction;
|
|
21453
|
+
export declare type LabelTransactionDeleted = io.flow.internal.v0.models.LabelTransactionDeleted;
|
|
21325
21454
|
export declare type LabelTransactionType = io.flow.internal.v0.enums.LabelTransactionType;
|
|
21455
|
+
export declare type LabelTransactionUpserted = io.flow.internal.v0.models.LabelTransactionUpserted;
|
|
21326
21456
|
export declare type LabeledContent = io.flow.internal.v0.models.LabeledContent;
|
|
21327
21457
|
export declare type LabelsPrediction = io.flow.internal.v0.models.LabelsPrediction;
|
|
21328
21458
|
export declare type LandedCostItem = io.flow.internal.v0.models.LandedCostItem;
|
|
@@ -21492,7 +21622,9 @@ export declare type OrderServiceChangeCsvForm = io.flow.internal.v0.models.Order
|
|
|
21492
21622
|
export declare type OrderShipped = io.flow.internal.v0.models.OrderShipped;
|
|
21493
21623
|
export declare type OrderSubmissionForm = io.flow.internal.v0.models.OrderSubmissionForm;
|
|
21494
21624
|
export declare type OrderTransaction = io.flow.internal.v0.models.OrderTransaction;
|
|
21625
|
+
export declare type OrderTransactionDeleted = io.flow.internal.v0.models.OrderTransactionDeleted;
|
|
21495
21626
|
export declare type OrderTransactionType = io.flow.internal.v0.enums.OrderTransactionType;
|
|
21627
|
+
export declare type OrderTransactionUpserted = io.flow.internal.v0.models.OrderTransactionUpserted;
|
|
21496
21628
|
export declare type OrganizationAccount = io.flow.internal.v0.models.OrganizationAccount;
|
|
21497
21629
|
export declare type OrganizationAccountDeleted = io.flow.internal.v0.models.OrganizationAccountDeleted;
|
|
21498
21630
|
export declare type OrganizationAccountUpsertedV2 = io.flow.internal.v0.models.OrganizationAccountUpsertedV2;
|
|
@@ -21547,6 +21679,8 @@ export declare type PartnerMembershipSummary = io.flow.internal.v0.models.Partne
|
|
|
21547
21679
|
export declare type PartnerMembershipVersion = io.flow.internal.v0.models.PartnerMembershipVersion;
|
|
21548
21680
|
export declare type PartnerOrganizationAuthorization = io.flow.internal.v0.models.PartnerOrganizationAuthorization;
|
|
21549
21681
|
export declare type PartnerOrganizationAuthorizationForm = io.flow.internal.v0.models.PartnerOrganizationAuthorizationForm;
|
|
21682
|
+
export declare type PartnerOrganizationSettings = io.flow.internal.v0.models.PartnerOrganizationSettings;
|
|
21683
|
+
export declare type PartnerOrganizationSettingsForm = io.flow.internal.v0.models.PartnerOrganizationSettingsForm;
|
|
21550
21684
|
export declare type Passphrase = io.flow.internal.v0.models.Passphrase;
|
|
21551
21685
|
export declare type PassphraseForm = io.flow.internal.v0.models.PassphraseForm;
|
|
21552
21686
|
export declare type PassphraseSummary = io.flow.internal.v0.models.PassphraseSummary;
|
|
@@ -21567,9 +21701,8 @@ export declare type PaymentTerm = io.flow.internal.v0.enums.PaymentTerm;
|
|
|
21567
21701
|
export declare type PaypalAccount = io.flow.internal.v0.models.PaypalAccount;
|
|
21568
21702
|
export declare type PaypalAccountModificationForm = io.flow.internal.v0.models.PaypalAccountModificationForm;
|
|
21569
21703
|
export declare type PaypalAccountPutForm = io.flow.internal.v0.models.PaypalAccountPutForm;
|
|
21704
|
+
export declare type PaypalAccountReference = io.flow.internal.v0.models.PaypalAccountReference;
|
|
21570
21705
|
export declare type PaypalAuthentication = io.flow.internal.v0.models.PaypalAuthentication;
|
|
21571
|
-
export declare type PaypalAuthenticationData = io.flow.internal.v0.models.PaypalAuthenticationData;
|
|
21572
|
-
export declare type PaypalAuthenticationDataReference = io.flow.internal.v0.models.PaypalAuthenticationDataReference;
|
|
21573
21706
|
export declare type PaypalAuthenticationForm = io.flow.internal.v0.models.PaypalAuthenticationForm;
|
|
21574
21707
|
export declare type PaypalAuthorizationPayload = io.flow.internal.v0.models.PaypalAuthorizationPayload;
|
|
21575
21708
|
export declare type PaypalExecutionDeleted = io.flow.internal.v0.models.PaypalExecutionDeleted;
|
|
@@ -21641,6 +21774,7 @@ export declare type PromptCheckoutDisplayPosition = io.flow.internal.v0.enums.Pr
|
|
|
21641
21774
|
export declare type PromptOptions = io.flow.internal.v0.enums.PromptOptions;
|
|
21642
21775
|
export declare type PromptTarget = io.flow.internal.v0.enums.PromptTarget;
|
|
21643
21776
|
export declare type ProofOfPosting = io.flow.internal.v0.unions.ProofOfPosting;
|
|
21777
|
+
export declare type ProofOfPostingExternallyFulfilled = io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled;
|
|
21644
21778
|
export declare type ProofOfPostingFulfilled = io.flow.internal.v0.models.ProofOfPostingFulfilled;
|
|
21645
21779
|
export declare type ProofOfPostingFullyRefunded = io.flow.internal.v0.models.ProofOfPostingFullyRefunded;
|
|
21646
21780
|
export declare type QuoteRequest = io.flow.internal.v0.models.QuoteRequest;
|