@flowio/types 11.24.36 → 11.24.38
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 +32 -15
- package/dist/api.d.ts +7 -12
- package/package.json +2 -2
- package/src/api-internal.ts +43 -14
- package/src/api.ts +11 -13
package/dist/api-internal.d.ts
CHANGED
|
@@ -7942,6 +7942,7 @@ declare namespace io.flow.tracking.v0.models {
|
|
|
7942
7942
|
}
|
|
7943
7943
|
}
|
|
7944
7944
|
declare namespace io.flow.merchant.onboarding.v0.enums {
|
|
7945
|
+
type LogisticsFormatPreference = 'shopify_console' | 'existing_3pl_integration' | 'byo_integration';
|
|
7945
7946
|
type OnboardingApplicationStatus = 'to_do' | 'in_progress' | 'on_hold' | 'rejected' | 'accepted';
|
|
7946
7947
|
type OnboardingTradeSector = 'accessories' | 'animals_and_pet_supplies' | 'apparel' | 'apparel_and_accessories' | 'arts_and_entertainment' | 'baby_and_toddler' | 'business_and_industrial' | 'cameras_and_optics' | 'electronics' | 'food_beverages_and_tobacco' | 'furniture' | 'gift_cards' | 'hardware' | 'health_and_beauty' | 'home_and_garden' | 'jewelry' | 'luggage_and_bags' | 'mature' | 'media' | 'office_supplies' | 'paper_and_art' | 'religious_and_ceremonial' | 'software' | 'sporting_goods' | 'sports_and_fitness' | 'toys_and_games' | 'toys_hobbies_gifts' | 'vehicles_and_parts' | 'other';
|
|
7947
7948
|
type RegionType = 'state' | 'province' | 'jurisdiction';
|
|
@@ -7952,7 +7953,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
7952
7953
|
readonly id?: string;
|
|
7953
7954
|
}
|
|
7954
7955
|
interface LogisticsFormat {
|
|
7955
|
-
readonly preference
|
|
7956
|
+
readonly preference: io.flow.merchant.onboarding.v0.enums.LogisticsFormatPreference;
|
|
7956
7957
|
readonly description?: string;
|
|
7957
7958
|
}
|
|
7958
7959
|
interface MerchantInfo {
|
|
@@ -8039,10 +8040,9 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
8039
8040
|
readonly status_updated_at?: string;
|
|
8040
8041
|
readonly logistics_format?: io.flow.merchant.onboarding.v0.models.LogisticsFormat;
|
|
8041
8042
|
readonly shop?: io.flow.merchant.onboarding.v0.models.Shop;
|
|
8042
|
-
readonly
|
|
8043
|
-
readonly
|
|
8043
|
+
readonly last_year_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
8044
|
+
readonly last_month_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
8044
8045
|
readonly average_order_value?: io.flow.common.v0.models.Money;
|
|
8045
|
-
readonly total_order?: io.flow.merchant.onboarding.v0.models.TotalOrder;
|
|
8046
8046
|
}
|
|
8047
8047
|
interface ShopifyMerchantApplicationForm {
|
|
8048
8048
|
readonly discriminator: 'shopify_merchant_application_form';
|
|
@@ -8072,10 +8072,9 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
8072
8072
|
readonly rate_card: string;
|
|
8073
8073
|
readonly logistics_format?: io.flow.merchant.onboarding.v0.models.LogisticsFormat;
|
|
8074
8074
|
readonly shop?: io.flow.merchant.onboarding.v0.models.Shop;
|
|
8075
|
-
readonly
|
|
8076
|
-
readonly
|
|
8075
|
+
readonly last_year_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
8076
|
+
readonly last_month_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
8077
8077
|
readonly average_order_value?: io.flow.common.v0.models.Money;
|
|
8078
|
-
readonly total_order?: io.flow.merchant.onboarding.v0.models.TotalOrder;
|
|
8079
8078
|
}
|
|
8080
8079
|
interface ShopifyMerchantApplicationPutForm {
|
|
8081
8080
|
readonly discriminator: 'shopify_merchant_application_put_form';
|
|
@@ -8093,10 +8092,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
8093
8092
|
readonly operations_contact: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
8094
8093
|
readonly center_id?: string;
|
|
8095
8094
|
}
|
|
8096
|
-
interface TotalOrder {
|
|
8097
|
-
readonly value?: io.flow.common.v0.models.Money;
|
|
8098
|
-
readonly count?: number;
|
|
8099
|
-
}
|
|
8100
8095
|
interface UltimateBeneficiaryOwner {
|
|
8101
8096
|
readonly name: string;
|
|
8102
8097
|
readonly dob: string;
|
|
@@ -8695,6 +8690,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
8695
8690
|
readonly withholdings: io.flow.billing.v0.models.WithholdingDeduction[];
|
|
8696
8691
|
readonly discounts: io.flow.billing.v0.models.BillingDiscount[];
|
|
8697
8692
|
readonly net: number;
|
|
8693
|
+
readonly identifiers: Record<string, string>;
|
|
8698
8694
|
readonly created_at: string;
|
|
8699
8695
|
}
|
|
8700
8696
|
interface FeeDeduction {
|
|
@@ -8740,6 +8736,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
8740
8736
|
readonly withholdings: io.flow.billing.v0.models.WithholdingDeduction[];
|
|
8741
8737
|
readonly discounts: io.flow.billing.v0.models.BillingDiscount[];
|
|
8742
8738
|
readonly net: number;
|
|
8739
|
+
readonly identifiers: Record<string, string>;
|
|
8743
8740
|
readonly created_at: string;
|
|
8744
8741
|
}
|
|
8745
8742
|
interface WithholdingDeduction {
|
|
@@ -10187,7 +10184,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10187
10184
|
type DutySelectionRule = 'lookup_by_tariff_code' | 'lookup_by_hs6_code' | 'fallback_for_jurisdiction' | 'domestic_sale' | 'intra_community_sale' | 'reimport' | 'override' | 'preferential_rate';
|
|
10188
10185
|
type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
|
|
10189
10186
|
type EmptyAttribute = 'irrelevant';
|
|
10190
|
-
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_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'organization_restriction_status_upserted' | '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';
|
|
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';
|
|
10191
10188
|
type ExperienceImportType = 'experience_with_settings';
|
|
10192
10189
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
10193
10190
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -15205,6 +15202,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15205
15202
|
interface HarmonizationItemSummary {
|
|
15206
15203
|
readonly number: string;
|
|
15207
15204
|
readonly product_id?: string;
|
|
15205
|
+
readonly product_name?: string;
|
|
15208
15206
|
}
|
|
15209
15207
|
interface HarmonizationMlModelSummary {
|
|
15210
15208
|
readonly id?: string;
|
|
@@ -17421,6 +17419,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17421
17419
|
readonly reason?: string;
|
|
17422
17420
|
readonly updated_at: string;
|
|
17423
17421
|
}
|
|
17422
|
+
interface OrganizationRestrictionApprovalDeleted {
|
|
17423
|
+
readonly discriminator: 'organization_restriction_approval_deleted';
|
|
17424
|
+
readonly event_id: string;
|
|
17425
|
+
readonly timestamp: string;
|
|
17426
|
+
readonly organization: string;
|
|
17427
|
+
readonly organization_restriction_approval: io.flow.internal.v0.models.OrganizationRestrictionApproval;
|
|
17428
|
+
}
|
|
17424
17429
|
interface OrganizationRestrictionApprovalUpserted {
|
|
17425
17430
|
readonly discriminator: 'organization_restriction_approval_upserted';
|
|
17426
17431
|
readonly event_id: string;
|
|
@@ -17428,6 +17433,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17428
17433
|
readonly organization: string;
|
|
17429
17434
|
readonly organization_restriction_approval: io.flow.internal.v0.models.OrganizationRestrictionApproval;
|
|
17430
17435
|
}
|
|
17436
|
+
interface OrganizationRestrictionNoteForm {
|
|
17437
|
+
readonly note: string;
|
|
17438
|
+
}
|
|
17431
17439
|
interface OrganizationRestrictionScreeningDecisionForm {
|
|
17432
17440
|
readonly organization_id: string;
|
|
17433
17441
|
readonly screening_status: io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
|
|
@@ -17473,6 +17481,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17473
17481
|
readonly full_review_start_date?: string;
|
|
17474
17482
|
readonly full_review_end_date?: string;
|
|
17475
17483
|
}
|
|
17484
|
+
interface OrganizationRestrictionStatusDeleted {
|
|
17485
|
+
readonly discriminator: 'organization_restriction_status_deleted';
|
|
17486
|
+
readonly event_id: string;
|
|
17487
|
+
readonly timestamp: string;
|
|
17488
|
+
readonly organization_restriction_status: io.flow.internal.v0.models.OrganizationRestrictionStatus;
|
|
17489
|
+
}
|
|
17476
17490
|
interface OrganizationRestrictionStatusNote {
|
|
17477
17491
|
readonly id: string;
|
|
17478
17492
|
readonly note: string;
|
|
@@ -18816,7 +18830,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18816
18830
|
readonly incorporation_country?: io.flow.internal.v0.models.ShopifyMarketsIncorporationCountry;
|
|
18817
18831
|
}
|
|
18818
18832
|
interface ShopifyMarketsSync {
|
|
18819
|
-
readonly
|
|
18833
|
+
readonly force_resync?: boolean;
|
|
18820
18834
|
}
|
|
18821
18835
|
interface ShopifyMarketsWebhookRegistration {
|
|
18822
18836
|
readonly response: io.flow.shopify.markets.v0.models.ShopifyWebhookResponse;
|
|
@@ -19007,7 +19021,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19007
19021
|
}
|
|
19008
19022
|
interface SingleClassificationAction {
|
|
19009
19023
|
readonly discriminator: 'single';
|
|
19010
|
-
readonly
|
|
19024
|
+
readonly organization: string;
|
|
19011
19025
|
readonly item_summary: io.flow.internal.v0.models.HarmonizationItemSummary;
|
|
19012
19026
|
readonly customs_description: string;
|
|
19013
19027
|
readonly labels?: io.flow.internal.v0.models.ProductLabels;
|
|
@@ -19960,7 +19974,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
19960
19974
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
19961
19975
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
19962
19976
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
19963
|
-
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.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | 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;
|
|
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;
|
|
19964
19978
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
19965
19979
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
19966
19980
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -21503,8 +21517,10 @@ export declare type OrganizationPaymentSettingUpserted = io.flow.internal.v0.mod
|
|
|
21503
21517
|
export declare type OrganizationPaymentSettingVersion = io.flow.internal.v0.models.OrganizationPaymentSettingVersion;
|
|
21504
21518
|
export declare type OrganizationPaymentStatus = io.flow.internal.v0.enums.OrganizationPaymentStatus;
|
|
21505
21519
|
export declare type OrganizationRestrictionApproval = io.flow.internal.v0.models.OrganizationRestrictionApproval;
|
|
21520
|
+
export declare type OrganizationRestrictionApprovalDeleted = io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted;
|
|
21506
21521
|
export declare type OrganizationRestrictionApprovalStatus = io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
21507
21522
|
export declare type OrganizationRestrictionApprovalUpserted = io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted;
|
|
21523
|
+
export declare type OrganizationRestrictionNoteForm = io.flow.internal.v0.models.OrganizationRestrictionNoteForm;
|
|
21508
21524
|
export declare type OrganizationRestrictionNoteType = io.flow.internal.v0.enums.OrganizationRestrictionNoteType;
|
|
21509
21525
|
export declare type OrganizationRestrictionRiskLevel = io.flow.internal.v0.enums.OrganizationRestrictionRiskLevel;
|
|
21510
21526
|
export declare type OrganizationRestrictionScreeningDecisionForm = io.flow.internal.v0.models.OrganizationRestrictionScreeningDecisionForm;
|
|
@@ -21513,6 +21529,7 @@ export declare type OrganizationRestrictionSnapshot = io.flow.internal.v0.models
|
|
|
21513
21529
|
export declare type OrganizationRestrictionSnapshotDeleted = io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted;
|
|
21514
21530
|
export declare type OrganizationRestrictionSnapshotUpserted = io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted;
|
|
21515
21531
|
export declare type OrganizationRestrictionStatus = io.flow.internal.v0.models.OrganizationRestrictionStatus;
|
|
21532
|
+
export declare type OrganizationRestrictionStatusDeleted = io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted;
|
|
21516
21533
|
export declare type OrganizationRestrictionStatusNote = io.flow.internal.v0.models.OrganizationRestrictionStatusNote;
|
|
21517
21534
|
export declare type OrganizationRestrictionStatusUpserted = io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted;
|
|
21518
21535
|
export declare type OrganizationSettings = io.flow.internal.v0.models.OrganizationSettings;
|
package/dist/api.d.ts
CHANGED
|
@@ -1737,6 +1737,7 @@ declare namespace io.flow.v0.enums {
|
|
|
1737
1737
|
type LevyInclusion = 'tax' | 'duty';
|
|
1738
1738
|
type LevyStrategy = 'minimum' | 'average' | 'maximum';
|
|
1739
1739
|
type LocationErrorCode = 'address_required' | 'ip_invalid' | 'ip_required' | 'timezone_unavailable';
|
|
1740
|
+
type LogisticsFormatPreference = 'shopify_console' | 'existing_3pl_integration' | 'byo_integration';
|
|
1740
1741
|
type MarginType = 'fixed' | 'percent';
|
|
1741
1742
|
type MeasurementSystem = 'imperial' | 'metric';
|
|
1742
1743
|
type MerchantGiftCardErrorCode = 'invalid' | 'expired' | 'empty' | 'insufficient_funds' | 'unsupported_currency';
|
|
@@ -5629,7 +5630,7 @@ declare namespace io.flow.v0.models {
|
|
|
5629
5630
|
readonly messages: string[];
|
|
5630
5631
|
}
|
|
5631
5632
|
interface LogisticsFormat {
|
|
5632
|
-
readonly preference
|
|
5633
|
+
readonly preference: io.flow.v0.enums.LogisticsFormatPreference;
|
|
5633
5634
|
readonly description?: string;
|
|
5634
5635
|
}
|
|
5635
5636
|
interface LogisticsSettings {
|
|
@@ -8989,10 +8990,9 @@ declare namespace io.flow.v0.models {
|
|
|
8989
8990
|
readonly status_updated_at?: string;
|
|
8990
8991
|
readonly logistics_format?: io.flow.v0.models.LogisticsFormat;
|
|
8991
8992
|
readonly shop?: io.flow.v0.models.Shop;
|
|
8992
|
-
readonly
|
|
8993
|
-
readonly
|
|
8993
|
+
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
8994
|
+
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
8994
8995
|
readonly average_order_value?: io.flow.v0.models.Money;
|
|
8995
|
-
readonly total_order?: io.flow.v0.models.TotalOrder;
|
|
8996
8996
|
}
|
|
8997
8997
|
interface ShopifyMerchantApplicationForm {
|
|
8998
8998
|
readonly discriminator: 'shopify_merchant_application_form';
|
|
@@ -9022,10 +9022,9 @@ declare namespace io.flow.v0.models {
|
|
|
9022
9022
|
readonly rate_card: string;
|
|
9023
9023
|
readonly logistics_format?: io.flow.v0.models.LogisticsFormat;
|
|
9024
9024
|
readonly shop?: io.flow.v0.models.Shop;
|
|
9025
|
-
readonly
|
|
9026
|
-
readonly
|
|
9025
|
+
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
9026
|
+
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
9027
9027
|
readonly average_order_value?: io.flow.v0.models.Money;
|
|
9028
|
-
readonly total_order?: io.flow.v0.models.TotalOrder;
|
|
9029
9028
|
}
|
|
9030
9029
|
interface ShopifyMerchantApplicationPutForm {
|
|
9031
9030
|
readonly discriminator: 'shopify_merchant_application_put_form';
|
|
@@ -9613,10 +9612,6 @@ declare namespace io.flow.v0.models {
|
|
|
9613
9612
|
interface TokenValidationForm {
|
|
9614
9613
|
readonly token: string;
|
|
9615
9614
|
}
|
|
9616
|
-
interface TotalOrder {
|
|
9617
|
-
readonly value?: io.flow.v0.models.Money;
|
|
9618
|
-
readonly count?: number;
|
|
9619
|
-
}
|
|
9620
9615
|
interface Tracking {
|
|
9621
9616
|
readonly id: string;
|
|
9622
9617
|
readonly labels: io.flow.v0.models.TrackingLabel[];
|
|
@@ -10831,6 +10826,7 @@ export declare type LocalizedTranslation = io.flow.v0.models.LocalizedTranslatio
|
|
|
10831
10826
|
export declare type LocationError = io.flow.v0.models.LocationError;
|
|
10832
10827
|
export declare type LocationErrorCode = io.flow.v0.enums.LocationErrorCode;
|
|
10833
10828
|
export declare type LogisticsFormat = io.flow.v0.models.LogisticsFormat;
|
|
10829
|
+
export declare type LogisticsFormatPreference = io.flow.v0.enums.LogisticsFormatPreference;
|
|
10834
10830
|
export declare type LogisticsSettings = io.flow.v0.models.LogisticsSettings;
|
|
10835
10831
|
export declare type LogoImage = io.flow.v0.unions.LogoImage;
|
|
10836
10832
|
export declare type LogoImageSetStatic = io.flow.v0.models.LogoImageSetStatic;
|
|
@@ -11614,7 +11610,6 @@ export declare type TokenReference = io.flow.v0.unions.TokenReference;
|
|
|
11614
11610
|
export declare type TokenType = io.flow.v0.enums.TokenType;
|
|
11615
11611
|
export declare type TokenValidation = io.flow.v0.models.TokenValidation;
|
|
11616
11612
|
export declare type TokenValidationForm = io.flow.v0.models.TokenValidationForm;
|
|
11617
|
-
export declare type TotalOrder = io.flow.v0.models.TotalOrder;
|
|
11618
11613
|
export declare type Tracking = io.flow.v0.models.Tracking;
|
|
11619
11614
|
export declare type TrackingEvent = io.flow.v0.models.TrackingEvent;
|
|
11620
11615
|
export declare type TrackingEventForm = io.flow.v0.models.TrackingEventForm;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/types",
|
|
3
|
-
"version": "11.24.
|
|
3
|
+
"version": "11.24.38",
|
|
4
4
|
"description": "TypeScript type definitions for custom types found in Flow API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"maintainers": [
|
|
26
26
|
"Christian Muñoz <christian.munoz@flow.io>"
|
|
27
27
|
],
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "8da9deb769d2ef8206130a68406e58109e9e5635"
|
|
29
29
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -10436,6 +10436,10 @@ declare namespace io.flow.tracking.v0.models {
|
|
|
10436
10436
|
}
|
|
10437
10437
|
|
|
10438
10438
|
declare namespace io.flow.merchant.onboarding.v0.enums {
|
|
10439
|
+
type LogisticsFormatPreference =
|
|
10440
|
+
| 'shopify_console'
|
|
10441
|
+
| 'existing_3pl_integration'
|
|
10442
|
+
| 'byo_integration';
|
|
10439
10443
|
type OnboardingApplicationStatus =
|
|
10440
10444
|
| 'to_do'
|
|
10441
10445
|
| 'in_progress'
|
|
@@ -10482,7 +10486,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
10482
10486
|
}
|
|
10483
10487
|
|
|
10484
10488
|
interface LogisticsFormat {
|
|
10485
|
-
readonly preference
|
|
10489
|
+
readonly preference: io.flow.merchant.onboarding.v0.enums.LogisticsFormatPreference;
|
|
10486
10490
|
readonly description?: string;
|
|
10487
10491
|
}
|
|
10488
10492
|
|
|
@@ -10580,10 +10584,9 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
10580
10584
|
readonly status_updated_at?: string;
|
|
10581
10585
|
readonly logistics_format?: io.flow.merchant.onboarding.v0.models.LogisticsFormat;
|
|
10582
10586
|
readonly shop?: io.flow.merchant.onboarding.v0.models.Shop;
|
|
10583
|
-
readonly
|
|
10584
|
-
readonly
|
|
10587
|
+
readonly last_year_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
10588
|
+
readonly last_month_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
10585
10589
|
readonly average_order_value?: io.flow.common.v0.models.Money;
|
|
10586
|
-
readonly total_order?: io.flow.merchant.onboarding.v0.models.TotalOrder;
|
|
10587
10590
|
}
|
|
10588
10591
|
|
|
10589
10592
|
interface ShopifyMerchantApplicationForm {
|
|
@@ -10614,10 +10617,9 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
10614
10617
|
readonly rate_card: string;
|
|
10615
10618
|
readonly logistics_format?: io.flow.merchant.onboarding.v0.models.LogisticsFormat;
|
|
10616
10619
|
readonly shop?: io.flow.merchant.onboarding.v0.models.Shop;
|
|
10617
|
-
readonly
|
|
10618
|
-
readonly
|
|
10620
|
+
readonly last_year_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
10621
|
+
readonly last_month_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
10619
10622
|
readonly average_order_value?: io.flow.common.v0.models.Money;
|
|
10620
|
-
readonly total_order?: io.flow.merchant.onboarding.v0.models.TotalOrder;
|
|
10621
10623
|
}
|
|
10622
10624
|
|
|
10623
10625
|
interface ShopifyMerchantApplicationPutForm {
|
|
@@ -10639,11 +10641,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
10639
10641
|
readonly center_id?: string;
|
|
10640
10642
|
}
|
|
10641
10643
|
|
|
10642
|
-
interface TotalOrder {
|
|
10643
|
-
readonly value?: io.flow.common.v0.models.Money;
|
|
10644
|
-
readonly count?: number;
|
|
10645
|
-
}
|
|
10646
|
-
|
|
10647
10644
|
interface UltimateBeneficiaryOwner {
|
|
10648
10645
|
readonly name: string;
|
|
10649
10646
|
readonly dob: string;
|
|
@@ -11451,6 +11448,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11451
11448
|
readonly withholdings: io.flow.billing.v0.models.WithholdingDeduction[];
|
|
11452
11449
|
readonly discounts: io.flow.billing.v0.models.BillingDiscount[];
|
|
11453
11450
|
readonly net: number;
|
|
11451
|
+
readonly identifiers: Record<string, string>;
|
|
11454
11452
|
readonly created_at: string;
|
|
11455
11453
|
}
|
|
11456
11454
|
|
|
@@ -11503,6 +11501,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11503
11501
|
readonly withholdings: io.flow.billing.v0.models.WithholdingDeduction[];
|
|
11504
11502
|
readonly discounts: io.flow.billing.v0.models.BillingDiscount[];
|
|
11505
11503
|
readonly net: number;
|
|
11504
|
+
readonly identifiers: Record<string, string>;
|
|
11506
11505
|
readonly created_at: string;
|
|
11507
11506
|
}
|
|
11508
11507
|
|
|
@@ -13751,9 +13750,11 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13751
13750
|
| 'order_shipped'
|
|
13752
13751
|
| 'items_shipped'
|
|
13753
13752
|
| 'organization_restriction_approval_upserted'
|
|
13753
|
+
| 'organization_restriction_approval_deleted'
|
|
13754
13754
|
| 'organization_restriction_snapshot_upserted'
|
|
13755
13755
|
| 'organization_restriction_snapshot_deleted'
|
|
13756
13756
|
| 'organization_restriction_status_upserted'
|
|
13757
|
+
| 'organization_restriction_status_deleted'
|
|
13757
13758
|
| 'internal_authorization_upserted'
|
|
13758
13759
|
| 'internal_authorization_deleted'
|
|
13759
13760
|
| 'afterpay_authorization_upserted'
|
|
@@ -19980,6 +19981,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19980
19981
|
interface HarmonizationItemSummary {
|
|
19981
19982
|
readonly number: string;
|
|
19982
19983
|
readonly product_id?: string;
|
|
19984
|
+
readonly product_name?: string;
|
|
19983
19985
|
}
|
|
19984
19986
|
|
|
19985
19987
|
interface HarmonizationMlModelSummary {
|
|
@@ -22507,6 +22509,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22507
22509
|
readonly updated_at: string;
|
|
22508
22510
|
}
|
|
22509
22511
|
|
|
22512
|
+
interface OrganizationRestrictionApprovalDeleted {
|
|
22513
|
+
readonly discriminator: 'organization_restriction_approval_deleted';
|
|
22514
|
+
readonly event_id: string;
|
|
22515
|
+
readonly timestamp: string;
|
|
22516
|
+
readonly organization: string;
|
|
22517
|
+
readonly organization_restriction_approval: io.flow.internal.v0.models.OrganizationRestrictionApproval;
|
|
22518
|
+
}
|
|
22519
|
+
|
|
22510
22520
|
interface OrganizationRestrictionApprovalUpserted {
|
|
22511
22521
|
readonly discriminator: 'organization_restriction_approval_upserted';
|
|
22512
22522
|
readonly event_id: string;
|
|
@@ -22515,6 +22525,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22515
22525
|
readonly organization_restriction_approval: io.flow.internal.v0.models.OrganizationRestrictionApproval;
|
|
22516
22526
|
}
|
|
22517
22527
|
|
|
22528
|
+
interface OrganizationRestrictionNoteForm {
|
|
22529
|
+
readonly note: string;
|
|
22530
|
+
}
|
|
22531
|
+
|
|
22518
22532
|
interface OrganizationRestrictionScreeningDecisionForm {
|
|
22519
22533
|
readonly organization_id: string;
|
|
22520
22534
|
readonly screening_status: io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
|
|
@@ -22565,6 +22579,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22565
22579
|
readonly full_review_end_date?: string;
|
|
22566
22580
|
}
|
|
22567
22581
|
|
|
22582
|
+
interface OrganizationRestrictionStatusDeleted {
|
|
22583
|
+
readonly discriminator: 'organization_restriction_status_deleted';
|
|
22584
|
+
readonly event_id: string;
|
|
22585
|
+
readonly timestamp: string;
|
|
22586
|
+
readonly organization_restriction_status: io.flow.internal.v0.models.OrganizationRestrictionStatus;
|
|
22587
|
+
}
|
|
22588
|
+
|
|
22568
22589
|
interface OrganizationRestrictionStatusNote {
|
|
22569
22590
|
readonly id: string;
|
|
22570
22591
|
readonly note: string;
|
|
@@ -24116,7 +24137,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24116
24137
|
}
|
|
24117
24138
|
|
|
24118
24139
|
interface ShopifyMarketsSync {
|
|
24119
|
-
readonly
|
|
24140
|
+
readonly force_resync?: boolean;
|
|
24120
24141
|
}
|
|
24121
24142
|
|
|
24122
24143
|
interface ShopifyMarketsWebhookRegistration {
|
|
@@ -24345,7 +24366,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24345
24366
|
|
|
24346
24367
|
interface SingleClassificationAction {
|
|
24347
24368
|
readonly discriminator: 'single';
|
|
24348
|
-
readonly
|
|
24369
|
+
readonly organization: string;
|
|
24349
24370
|
readonly item_summary: io.flow.internal.v0.models.HarmonizationItemSummary;
|
|
24350
24371
|
readonly customs_description: string;
|
|
24351
24372
|
readonly labels?: io.flow.internal.v0.models.ProductLabels;
|
|
@@ -25955,9 +25976,11 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25955
25976
|
| io.flow.internal.v0.models.OrderShipped
|
|
25956
25977
|
| io.flow.internal.v0.models.ItemsShipped
|
|
25957
25978
|
| io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted
|
|
25979
|
+
| io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted
|
|
25958
25980
|
| io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted
|
|
25959
25981
|
| io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted
|
|
25960
25982
|
| io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted
|
|
25983
|
+
| io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted
|
|
25961
25984
|
| io.flow.internal.v0.models.InternalAuthorizationUpserted
|
|
25962
25985
|
| io.flow.internal.v0.models.InternalAuthorizationDeleted
|
|
25963
25986
|
| io.flow.internal.v0.models.AfterpayAuthorizationUpserted
|
|
@@ -28883,10 +28906,14 @@ export type OrganizationPaymentStatus =
|
|
|
28883
28906
|
io.flow.internal.v0.enums.OrganizationPaymentStatus;
|
|
28884
28907
|
export type OrganizationRestrictionApproval =
|
|
28885
28908
|
io.flow.internal.v0.models.OrganizationRestrictionApproval;
|
|
28909
|
+
export type OrganizationRestrictionApprovalDeleted =
|
|
28910
|
+
io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted;
|
|
28886
28911
|
export type OrganizationRestrictionApprovalStatus =
|
|
28887
28912
|
io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
28888
28913
|
export type OrganizationRestrictionApprovalUpserted =
|
|
28889
28914
|
io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted;
|
|
28915
|
+
export type OrganizationRestrictionNoteForm =
|
|
28916
|
+
io.flow.internal.v0.models.OrganizationRestrictionNoteForm;
|
|
28890
28917
|
export type OrganizationRestrictionNoteType =
|
|
28891
28918
|
io.flow.internal.v0.enums.OrganizationRestrictionNoteType;
|
|
28892
28919
|
export type OrganizationRestrictionRiskLevel =
|
|
@@ -28903,6 +28930,8 @@ export type OrganizationRestrictionSnapshotUpserted =
|
|
|
28903
28930
|
io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted;
|
|
28904
28931
|
export type OrganizationRestrictionStatus =
|
|
28905
28932
|
io.flow.internal.v0.models.OrganizationRestrictionStatus;
|
|
28933
|
+
export type OrganizationRestrictionStatusDeleted =
|
|
28934
|
+
io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted;
|
|
28906
28935
|
export type OrganizationRestrictionStatusNote =
|
|
28907
28936
|
io.flow.internal.v0.models.OrganizationRestrictionStatusNote;
|
|
28908
28937
|
export type OrganizationRestrictionStatusUpserted =
|
package/src/api.ts
CHANGED
|
@@ -2571,6 +2571,10 @@ declare namespace io.flow.v0.enums {
|
|
|
2571
2571
|
| 'ip_invalid'
|
|
2572
2572
|
| 'ip_required'
|
|
2573
2573
|
| 'timezone_unavailable';
|
|
2574
|
+
type LogisticsFormatPreference =
|
|
2575
|
+
| 'shopify_console'
|
|
2576
|
+
| 'existing_3pl_integration'
|
|
2577
|
+
| 'byo_integration';
|
|
2574
2578
|
type MarginType = 'fixed' | 'percent';
|
|
2575
2579
|
type MeasurementSystem = 'imperial' | 'metric';
|
|
2576
2580
|
type MerchantGiftCardErrorCode =
|
|
@@ -7436,7 +7440,7 @@ declare namespace io.flow.v0.models {
|
|
|
7436
7440
|
}
|
|
7437
7441
|
|
|
7438
7442
|
interface LogisticsFormat {
|
|
7439
|
-
readonly preference
|
|
7443
|
+
readonly preference: io.flow.v0.enums.LogisticsFormatPreference;
|
|
7440
7444
|
readonly description?: string;
|
|
7441
7445
|
}
|
|
7442
7446
|
|
|
@@ -11349,10 +11353,9 @@ declare namespace io.flow.v0.models {
|
|
|
11349
11353
|
readonly status_updated_at?: string;
|
|
11350
11354
|
readonly logistics_format?: io.flow.v0.models.LogisticsFormat;
|
|
11351
11355
|
readonly shop?: io.flow.v0.models.Shop;
|
|
11352
|
-
readonly
|
|
11353
|
-
readonly
|
|
11356
|
+
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
11357
|
+
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
11354
11358
|
readonly average_order_value?: io.flow.v0.models.Money;
|
|
11355
|
-
readonly total_order?: io.flow.v0.models.TotalOrder;
|
|
11356
11359
|
}
|
|
11357
11360
|
|
|
11358
11361
|
interface ShopifyMerchantApplicationForm {
|
|
@@ -11383,10 +11386,9 @@ declare namespace io.flow.v0.models {
|
|
|
11383
11386
|
readonly rate_card: string;
|
|
11384
11387
|
readonly logistics_format?: io.flow.v0.models.LogisticsFormat;
|
|
11385
11388
|
readonly shop?: io.flow.v0.models.Shop;
|
|
11386
|
-
readonly
|
|
11387
|
-
readonly
|
|
11389
|
+
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
11390
|
+
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
11388
11391
|
readonly average_order_value?: io.flow.v0.models.Money;
|
|
11389
|
-
readonly total_order?: io.flow.v0.models.TotalOrder;
|
|
11390
11392
|
}
|
|
11391
11393
|
|
|
11392
11394
|
interface ShopifyMerchantApplicationPutForm {
|
|
@@ -12071,11 +12073,6 @@ declare namespace io.flow.v0.models {
|
|
|
12071
12073
|
readonly token: string;
|
|
12072
12074
|
}
|
|
12073
12075
|
|
|
12074
|
-
interface TotalOrder {
|
|
12075
|
-
readonly value?: io.flow.v0.models.Money;
|
|
12076
|
-
readonly count?: number;
|
|
12077
|
-
}
|
|
12078
|
-
|
|
12079
12076
|
interface Tracking {
|
|
12080
12077
|
readonly id: string;
|
|
12081
12078
|
readonly labels: io.flow.v0.models.TrackingLabel[];
|
|
@@ -13979,6 +13976,8 @@ export type LocalizedTranslation = io.flow.v0.models.LocalizedTranslation;
|
|
|
13979
13976
|
export type LocationError = io.flow.v0.models.LocationError;
|
|
13980
13977
|
export type LocationErrorCode = io.flow.v0.enums.LocationErrorCode;
|
|
13981
13978
|
export type LogisticsFormat = io.flow.v0.models.LogisticsFormat;
|
|
13979
|
+
export type LogisticsFormatPreference =
|
|
13980
|
+
io.flow.v0.enums.LogisticsFormatPreference;
|
|
13982
13981
|
export type LogisticsSettings = io.flow.v0.models.LogisticsSettings;
|
|
13983
13982
|
export type LogoImage = io.flow.v0.unions.LogoImage;
|
|
13984
13983
|
export type LogoImageSetStatic = io.flow.v0.models.LogoImageSetStatic;
|
|
@@ -14982,7 +14981,6 @@ export type TokenReference = io.flow.v0.unions.TokenReference;
|
|
|
14982
14981
|
export type TokenType = io.flow.v0.enums.TokenType;
|
|
14983
14982
|
export type TokenValidation = io.flow.v0.models.TokenValidation;
|
|
14984
14983
|
export type TokenValidationForm = io.flow.v0.models.TokenValidationForm;
|
|
14985
|
-
export type TotalOrder = io.flow.v0.models.TotalOrder;
|
|
14986
14984
|
export type Tracking = io.flow.v0.models.Tracking;
|
|
14987
14985
|
export type TrackingEvent = io.flow.v0.models.TrackingEvent;
|
|
14988
14986
|
export type TrackingEventForm = io.flow.v0.models.TrackingEventForm;
|