@flowio/types 11.24.37 → 11.24.39
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 +101 -17
- package/dist/api.d.ts +22 -12
- package/package.json +2 -2
- package/src/api-internal.ts +146 -15
- package/src/api.ts +30 -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;
|
|
@@ -8656,6 +8651,9 @@ declare namespace io.flow.billing.v0.models {
|
|
|
8656
8651
|
readonly last4: string;
|
|
8657
8652
|
readonly info: io.flow.billing.bank.account.v0.unions.BankAccountInfo;
|
|
8658
8653
|
}
|
|
8654
|
+
interface BankAccountReference {
|
|
8655
|
+
readonly id: string;
|
|
8656
|
+
}
|
|
8659
8657
|
interface BillingChannelOrderSummary {
|
|
8660
8658
|
readonly organization: io.flow.billing.v0.models.BillingChannelOrganizationSummary;
|
|
8661
8659
|
readonly number: string;
|
|
@@ -8695,8 +8693,12 @@ declare namespace io.flow.billing.v0.models {
|
|
|
8695
8693
|
readonly withholdings: io.flow.billing.v0.models.WithholdingDeduction[];
|
|
8696
8694
|
readonly discounts: io.flow.billing.v0.models.BillingDiscount[];
|
|
8697
8695
|
readonly net: number;
|
|
8696
|
+
readonly identifiers: Record<string, string>;
|
|
8698
8697
|
readonly created_at: string;
|
|
8699
8698
|
}
|
|
8699
|
+
interface DefaultBankAccountForm {
|
|
8700
|
+
readonly bank_account_id: string;
|
|
8701
|
+
}
|
|
8700
8702
|
interface FeeDeduction {
|
|
8701
8703
|
readonly type: io.flow.billing.v0.enums.FeeDeductionType;
|
|
8702
8704
|
readonly amount: number;
|
|
@@ -8710,6 +8712,10 @@ declare namespace io.flow.billing.v0.models {
|
|
|
8710
8712
|
readonly id: string;
|
|
8711
8713
|
readonly last4: string;
|
|
8712
8714
|
}
|
|
8715
|
+
interface OrganizationDefaultBankAccount {
|
|
8716
|
+
readonly id: string;
|
|
8717
|
+
readonly bank_account: io.flow.billing.v0.models.BankAccountReference;
|
|
8718
|
+
}
|
|
8713
8719
|
interface Payout {
|
|
8714
8720
|
readonly discriminator: 'payout';
|
|
8715
8721
|
readonly status: io.flow.billing.v0.models.PayoutStatus;
|
|
@@ -8740,6 +8746,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
8740
8746
|
readonly withholdings: io.flow.billing.v0.models.WithholdingDeduction[];
|
|
8741
8747
|
readonly discounts: io.flow.billing.v0.models.BillingDiscount[];
|
|
8742
8748
|
readonly net: number;
|
|
8749
|
+
readonly identifiers: Record<string, string>;
|
|
8743
8750
|
readonly created_at: string;
|
|
8744
8751
|
}
|
|
8745
8752
|
interface WithholdingDeduction {
|
|
@@ -10187,7 +10194,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10187
10194
|
type DutySelectionRule = 'lookup_by_tariff_code' | 'lookup_by_hs6_code' | 'fallback_for_jurisdiction' | 'domestic_sale' | 'intra_community_sale' | 'reimport' | 'override' | 'preferential_rate';
|
|
10188
10195
|
type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
|
|
10189
10196
|
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_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';
|
|
10197
|
+
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' | '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
10198
|
type ExperienceImportType = 'experience_with_settings';
|
|
10192
10199
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
10193
10200
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -10250,7 +10257,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10250
10257
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
10251
10258
|
type OrganizationRestrictionApprovalStatus = 'ready' | 'not-ready';
|
|
10252
10259
|
type OrganizationRestrictionNoteType = 'internal' | 'rejection_reason';
|
|
10253
|
-
type
|
|
10260
|
+
type OrganizationRestrictionQueue = 'in_review' | 'reviewed' | 'rejected' | 'unscreened';
|
|
10261
|
+
type OrganizationRestrictionRiskLevel = '5' | '15';
|
|
10254
10262
|
type OrganizationRestrictionScreeningStatus = 'approved' | 'pending' | 'rejected' | 'unscreened';
|
|
10255
10263
|
type OutputStyle = 'flow' | 'shopify_p1';
|
|
10256
10264
|
type Owner = 'flow' | 'organization';
|
|
@@ -11757,12 +11765,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11757
11765
|
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
11758
11766
|
readonly created_at: string;
|
|
11759
11767
|
}
|
|
11768
|
+
interface ChannelTransactionDeleted {
|
|
11769
|
+
readonly discriminator: 'channel_transaction_deleted';
|
|
11770
|
+
readonly event_id: string;
|
|
11771
|
+
readonly timestamp: string;
|
|
11772
|
+
readonly id: string;
|
|
11773
|
+
}
|
|
11760
11774
|
interface ChannelTransactionRate {
|
|
11761
11775
|
readonly from: string;
|
|
11762
11776
|
readonly to: string;
|
|
11763
11777
|
readonly value: number;
|
|
11764
11778
|
readonly timestamp: string;
|
|
11765
11779
|
}
|
|
11780
|
+
interface ChannelTransactionUpserted {
|
|
11781
|
+
readonly discriminator: 'channel_transaction_upserted';
|
|
11782
|
+
readonly event_id: string;
|
|
11783
|
+
readonly timestamp: string;
|
|
11784
|
+
readonly channel_transaction: io.flow.internal.v0.models.ChannelTransaction;
|
|
11785
|
+
}
|
|
11766
11786
|
interface Chargeback {
|
|
11767
11787
|
readonly id: string;
|
|
11768
11788
|
readonly key: string;
|
|
@@ -14575,6 +14595,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14575
14595
|
readonly description?: string;
|
|
14576
14596
|
readonly order_number?: string;
|
|
14577
14597
|
}
|
|
14598
|
+
interface ExternalFulfillmentProof {
|
|
14599
|
+
readonly id: string;
|
|
14600
|
+
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
14601
|
+
readonly responsible_party: io.flow.internal.v0.enums.ResponsibleParty;
|
|
14602
|
+
readonly tracking: io.flow.internal.v0.models.ExternalFulfillmentProofTracking[];
|
|
14603
|
+
}
|
|
14604
|
+
interface ExternalFulfillmentProofForm {
|
|
14605
|
+
readonly responsible_party: io.flow.internal.v0.enums.ResponsibleParty;
|
|
14606
|
+
readonly tracking?: io.flow.internal.v0.models.ExternalFulfillmentProofTrackingForm[];
|
|
14607
|
+
}
|
|
14608
|
+
interface ExternalFulfillmentProofTracking {
|
|
14609
|
+
readonly carrier_id?: string;
|
|
14610
|
+
readonly service_id?: string;
|
|
14611
|
+
readonly carrier_tracking_number?: string;
|
|
14612
|
+
}
|
|
14613
|
+
interface ExternalFulfillmentProofTrackingForm {
|
|
14614
|
+
readonly carrier_id?: string;
|
|
14615
|
+
readonly service_id?: string;
|
|
14616
|
+
readonly carrier_tracking_number?: string;
|
|
14617
|
+
}
|
|
14578
14618
|
interface FacebookPixel {
|
|
14579
14619
|
readonly discriminator: 'facebook_pixel';
|
|
14580
14620
|
readonly name?: string;
|
|
@@ -16415,6 +16455,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16415
16455
|
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
16416
16456
|
readonly created_at: string;
|
|
16417
16457
|
}
|
|
16458
|
+
interface LabelTransactionDeleted {
|
|
16459
|
+
readonly discriminator: 'label_transaction_deleted';
|
|
16460
|
+
readonly event_id: string;
|
|
16461
|
+
readonly timestamp: string;
|
|
16462
|
+
readonly id: string;
|
|
16463
|
+
}
|
|
16464
|
+
interface LabelTransactionUpserted {
|
|
16465
|
+
readonly discriminator: 'label_transaction_upserted';
|
|
16466
|
+
readonly event_id: string;
|
|
16467
|
+
readonly timestamp: string;
|
|
16468
|
+
readonly label_transaction: io.flow.internal.v0.models.LabelTransaction;
|
|
16469
|
+
}
|
|
16418
16470
|
interface LabeledContent {
|
|
16419
16471
|
readonly label: io.flow.internal.v0.models.ContentLabel;
|
|
16420
16472
|
readonly contents: io.flow.internal.v0.unions.ContentItem[];
|
|
@@ -17280,6 +17332,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17280
17332
|
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
17281
17333
|
readonly created_at: string;
|
|
17282
17334
|
}
|
|
17335
|
+
interface OrderTransactionDeleted {
|
|
17336
|
+
readonly discriminator: 'order_transaction_deleted';
|
|
17337
|
+
readonly event_id: string;
|
|
17338
|
+
readonly timestamp: string;
|
|
17339
|
+
readonly id: string;
|
|
17340
|
+
}
|
|
17341
|
+
interface OrderTransactionUpserted {
|
|
17342
|
+
readonly discriminator: 'order_transaction_upserted';
|
|
17343
|
+
readonly event_id: string;
|
|
17344
|
+
readonly timestamp: string;
|
|
17345
|
+
readonly order_transaction: io.flow.internal.v0.models.OrderTransaction;
|
|
17346
|
+
}
|
|
17283
17347
|
interface OrganizationAccount {
|
|
17284
17348
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
17285
17349
|
readonly id: string;
|
|
@@ -17436,6 +17500,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17436
17500
|
readonly organization: string;
|
|
17437
17501
|
readonly organization_restriction_approval: io.flow.internal.v0.models.OrganizationRestrictionApproval;
|
|
17438
17502
|
}
|
|
17503
|
+
interface OrganizationRestrictionNoteForm {
|
|
17504
|
+
readonly note: string;
|
|
17505
|
+
}
|
|
17439
17506
|
interface OrganizationRestrictionScreeningDecisionForm {
|
|
17440
17507
|
readonly organization_id: string;
|
|
17441
17508
|
readonly screening_status: io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
|
|
@@ -17475,7 +17542,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17475
17542
|
readonly organization_id: string;
|
|
17476
17543
|
readonly approval: io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
17477
17544
|
readonly screening_status: io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
|
|
17478
|
-
readonly risk_level
|
|
17545
|
+
readonly risk_level?: io.flow.internal.v0.enums.OrganizationRestrictionRiskLevel;
|
|
17479
17546
|
readonly selective_review_start_date?: string;
|
|
17480
17547
|
readonly selective_review_end_date?: string;
|
|
17481
17548
|
readonly full_review_start_date?: string;
|
|
@@ -18065,6 +18132,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18065
18132
|
readonly product_id: string;
|
|
18066
18133
|
readonly reviews: io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
|
|
18067
18134
|
}
|
|
18135
|
+
interface ProofOfPostingExternallyFulfilled {
|
|
18136
|
+
readonly discriminator: 'external';
|
|
18137
|
+
readonly external_fulfillment_proof_id: string;
|
|
18138
|
+
}
|
|
18068
18139
|
interface ProofOfPostingFulfilled {
|
|
18069
18140
|
readonly discriminator: 'fulfilled';
|
|
18070
18141
|
readonly billable_label_id: string;
|
|
@@ -18830,7 +18901,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18830
18901
|
readonly incorporation_country?: io.flow.internal.v0.models.ShopifyMarketsIncorporationCountry;
|
|
18831
18902
|
}
|
|
18832
18903
|
interface ShopifyMarketsSync {
|
|
18833
|
-
readonly
|
|
18904
|
+
readonly force_resync?: boolean;
|
|
18834
18905
|
}
|
|
18835
18906
|
interface ShopifyMarketsWebhookRegistration {
|
|
18836
18907
|
readonly response: io.flow.shopify.markets.v0.models.ShopifyWebhookResponse;
|
|
@@ -19974,7 +20045,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
19974
20045
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
19975
20046
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
19976
20047
|
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;
|
|
20048
|
+
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.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
20049
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
19979
20050
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
19980
20051
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -20010,7 +20081,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
20010
20081
|
type ProcessorMerchantForm = io.flow.internal.v0.models.StripeMerchantForm;
|
|
20011
20082
|
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
20083
|
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;
|
|
20084
|
+
type ProofOfPosting = io.flow.internal.v0.models.ProofOfPostingFulfilled | io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.internal.v0.models.ProofOfPostingFullyRefunded;
|
|
20014
20085
|
type RoutingEntity = io.flow.internal.v0.models.RoutingProcessor | io.flow.internal.v0.models.RoutingAccount | io.flow.internal.v0.models.RoutingMerchant;
|
|
20015
20086
|
type ShopifyPromotionOfferDiscount = io.flow.internal.v0.models.ShopifyPromotionFixedAmount | io.flow.internal.v0.models.ShopifyPromotionPercent;
|
|
20016
20087
|
type ShopifyPromotionOfferEntitlement = io.flow.internal.v0.models.ShopifyPromotionItemEntitlement | io.flow.internal.v0.models.ShopifyPromotionOrderEntitlement;
|
|
@@ -20288,8 +20359,10 @@ export declare type ChannelRateMetadata = io.flow.internal.v0.unions.ChannelRate
|
|
|
20288
20359
|
export declare type ChannelRateMetadataIdentity = io.flow.internal.v0.models.ChannelRateMetadataIdentity;
|
|
20289
20360
|
export declare type ChannelRateMetadataRate = io.flow.internal.v0.models.ChannelRateMetadataRate;
|
|
20290
20361
|
export declare type ChannelTransaction = io.flow.internal.v0.models.ChannelTransaction;
|
|
20362
|
+
export declare type ChannelTransactionDeleted = io.flow.internal.v0.models.ChannelTransactionDeleted;
|
|
20291
20363
|
export declare type ChannelTransactionRate = io.flow.internal.v0.models.ChannelTransactionRate;
|
|
20292
20364
|
export declare type ChannelTransactionType = io.flow.internal.v0.enums.ChannelTransactionType;
|
|
20365
|
+
export declare type ChannelTransactionUpserted = io.flow.internal.v0.models.ChannelTransactionUpserted;
|
|
20293
20366
|
export declare type Chargeback = io.flow.internal.v0.models.Chargeback;
|
|
20294
20367
|
export declare type ChargebackDeleted = io.flow.internal.v0.models.ChargebackDeleted;
|
|
20295
20368
|
export declare type ChargebackPaymentStatus = io.flow.internal.v0.enums.ChargebackPaymentStatus;
|
|
@@ -21040,6 +21113,10 @@ export declare type ExportScheduleDaily = io.flow.internal.v0.models.ExportSched
|
|
|
21040
21113
|
export declare type ExportScheduleRepeated = io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
21041
21114
|
export declare type ExportTrackingLabel = io.flow.internal.v0.models.ExportTrackingLabel;
|
|
21042
21115
|
export declare type ExportTrackingLabelEvent = io.flow.internal.v0.models.ExportTrackingLabelEvent;
|
|
21116
|
+
export declare type ExternalFulfillmentProof = io.flow.internal.v0.models.ExternalFulfillmentProof;
|
|
21117
|
+
export declare type ExternalFulfillmentProofForm = io.flow.internal.v0.models.ExternalFulfillmentProofForm;
|
|
21118
|
+
export declare type ExternalFulfillmentProofTracking = io.flow.internal.v0.models.ExternalFulfillmentProofTracking;
|
|
21119
|
+
export declare type ExternalFulfillmentProofTrackingForm = io.flow.internal.v0.models.ExternalFulfillmentProofTrackingForm;
|
|
21043
21120
|
export declare type FacebookPixel = io.flow.internal.v0.models.FacebookPixel;
|
|
21044
21121
|
export declare type Feature = io.flow.internal.v0.models.Feature;
|
|
21045
21122
|
export declare type FeatureContextForm = io.flow.internal.v0.models.FeatureContextForm;
|
|
@@ -21322,7 +21399,9 @@ export declare type LabelTaxonomy = io.flow.internal.v0.models.LabelTaxonomy;
|
|
|
21322
21399
|
export declare type LabelTrackingSummaryDeleted = io.flow.internal.v0.models.LabelTrackingSummaryDeleted;
|
|
21323
21400
|
export declare type LabelTrackingSummaryUpserted = io.flow.internal.v0.models.LabelTrackingSummaryUpserted;
|
|
21324
21401
|
export declare type LabelTransaction = io.flow.internal.v0.models.LabelTransaction;
|
|
21402
|
+
export declare type LabelTransactionDeleted = io.flow.internal.v0.models.LabelTransactionDeleted;
|
|
21325
21403
|
export declare type LabelTransactionType = io.flow.internal.v0.enums.LabelTransactionType;
|
|
21404
|
+
export declare type LabelTransactionUpserted = io.flow.internal.v0.models.LabelTransactionUpserted;
|
|
21326
21405
|
export declare type LabeledContent = io.flow.internal.v0.models.LabeledContent;
|
|
21327
21406
|
export declare type LabelsPrediction = io.flow.internal.v0.models.LabelsPrediction;
|
|
21328
21407
|
export declare type LandedCostItem = io.flow.internal.v0.models.LandedCostItem;
|
|
@@ -21492,7 +21571,9 @@ export declare type OrderServiceChangeCsvForm = io.flow.internal.v0.models.Order
|
|
|
21492
21571
|
export declare type OrderShipped = io.flow.internal.v0.models.OrderShipped;
|
|
21493
21572
|
export declare type OrderSubmissionForm = io.flow.internal.v0.models.OrderSubmissionForm;
|
|
21494
21573
|
export declare type OrderTransaction = io.flow.internal.v0.models.OrderTransaction;
|
|
21574
|
+
export declare type OrderTransactionDeleted = io.flow.internal.v0.models.OrderTransactionDeleted;
|
|
21495
21575
|
export declare type OrderTransactionType = io.flow.internal.v0.enums.OrderTransactionType;
|
|
21576
|
+
export declare type OrderTransactionUpserted = io.flow.internal.v0.models.OrderTransactionUpserted;
|
|
21496
21577
|
export declare type OrganizationAccount = io.flow.internal.v0.models.OrganizationAccount;
|
|
21497
21578
|
export declare type OrganizationAccountDeleted = io.flow.internal.v0.models.OrganizationAccountDeleted;
|
|
21498
21579
|
export declare type OrganizationAccountUpsertedV2 = io.flow.internal.v0.models.OrganizationAccountUpsertedV2;
|
|
@@ -21520,7 +21601,9 @@ export declare type OrganizationRestrictionApproval = io.flow.internal.v0.models
|
|
|
21520
21601
|
export declare type OrganizationRestrictionApprovalDeleted = io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted;
|
|
21521
21602
|
export declare type OrganizationRestrictionApprovalStatus = io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
21522
21603
|
export declare type OrganizationRestrictionApprovalUpserted = io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted;
|
|
21604
|
+
export declare type OrganizationRestrictionNoteForm = io.flow.internal.v0.models.OrganizationRestrictionNoteForm;
|
|
21523
21605
|
export declare type OrganizationRestrictionNoteType = io.flow.internal.v0.enums.OrganizationRestrictionNoteType;
|
|
21606
|
+
export declare type OrganizationRestrictionQueue = io.flow.internal.v0.enums.OrganizationRestrictionQueue;
|
|
21524
21607
|
export declare type OrganizationRestrictionRiskLevel = io.flow.internal.v0.enums.OrganizationRestrictionRiskLevel;
|
|
21525
21608
|
export declare type OrganizationRestrictionScreeningDecisionForm = io.flow.internal.v0.models.OrganizationRestrictionScreeningDecisionForm;
|
|
21526
21609
|
export declare type OrganizationRestrictionScreeningStatus = io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
|
|
@@ -21640,6 +21723,7 @@ export declare type PromptCheckoutDisplayPosition = io.flow.internal.v0.enums.Pr
|
|
|
21640
21723
|
export declare type PromptOptions = io.flow.internal.v0.enums.PromptOptions;
|
|
21641
21724
|
export declare type PromptTarget = io.flow.internal.v0.enums.PromptTarget;
|
|
21642
21725
|
export declare type ProofOfPosting = io.flow.internal.v0.unions.ProofOfPosting;
|
|
21726
|
+
export declare type ProofOfPostingExternallyFulfilled = io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled;
|
|
21643
21727
|
export declare type ProofOfPostingFulfilled = io.flow.internal.v0.models.ProofOfPostingFulfilled;
|
|
21644
21728
|
export declare type ProofOfPostingFullyRefunded = io.flow.internal.v0.models.ProofOfPostingFullyRefunded;
|
|
21645
21729
|
export declare type QuoteRequest = io.flow.internal.v0.models.QuoteRequest;
|
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';
|
|
@@ -2501,6 +2502,9 @@ declare namespace io.flow.v0.models {
|
|
|
2501
2502
|
readonly routing_number: string;
|
|
2502
2503
|
readonly account_number: string;
|
|
2503
2504
|
}
|
|
2505
|
+
interface BankAccountReference {
|
|
2506
|
+
readonly id: string;
|
|
2507
|
+
}
|
|
2504
2508
|
interface BehaviorAudit {
|
|
2505
2509
|
readonly behavior: io.flow.v0.enums.FlowBehavior;
|
|
2506
2510
|
readonly authentication_techniques: io.flow.v0.enums.AuthenticationTechnique[];
|
|
@@ -3116,6 +3120,7 @@ declare namespace io.flow.v0.models {
|
|
|
3116
3120
|
readonly withholdings: io.flow.v0.models.WithholdingDeduction[];
|
|
3117
3121
|
readonly discounts: io.flow.v0.models.BillingDiscount[];
|
|
3118
3122
|
readonly net: number;
|
|
3123
|
+
readonly identifiers: Record<string, string>;
|
|
3119
3124
|
readonly created_at: string;
|
|
3120
3125
|
}
|
|
3121
3126
|
interface ChannelTransactionDeleted {
|
|
@@ -3688,6 +3693,9 @@ declare namespace io.flow.v0.models {
|
|
|
3688
3693
|
readonly discriminator: 'ddp_ratecard_fee';
|
|
3689
3694
|
readonly amount: number;
|
|
3690
3695
|
}
|
|
3696
|
+
interface DefaultBankAccountForm {
|
|
3697
|
+
readonly bank_account_id: string;
|
|
3698
|
+
}
|
|
3691
3699
|
interface DeliveredDutySetting {
|
|
3692
3700
|
readonly default: io.flow.v0.enums.DeliveredDuty;
|
|
3693
3701
|
readonly available: io.flow.v0.enums.DeliveredDuty[];
|
|
@@ -5629,7 +5637,7 @@ declare namespace io.flow.v0.models {
|
|
|
5629
5637
|
readonly messages: string[];
|
|
5630
5638
|
}
|
|
5631
5639
|
interface LogisticsFormat {
|
|
5632
|
-
readonly preference
|
|
5640
|
+
readonly preference: io.flow.v0.enums.LogisticsFormatPreference;
|
|
5633
5641
|
readonly description?: string;
|
|
5634
5642
|
}
|
|
5635
5643
|
interface LogisticsSettings {
|
|
@@ -6640,6 +6648,10 @@ declare namespace io.flow.v0.models {
|
|
|
6640
6648
|
interface OrganizationConfigurationReference {
|
|
6641
6649
|
readonly id: string;
|
|
6642
6650
|
}
|
|
6651
|
+
interface OrganizationDefaultBankAccount {
|
|
6652
|
+
readonly id: string;
|
|
6653
|
+
readonly bank_account: io.flow.v0.models.BankAccountReference;
|
|
6654
|
+
}
|
|
6643
6655
|
interface OrganizationDefaultConfigurations {
|
|
6644
6656
|
readonly id: string;
|
|
6645
6657
|
readonly checkout_configuration: io.flow.v0.models.OrganizationConfigurationReference;
|
|
@@ -8989,10 +9001,9 @@ declare namespace io.flow.v0.models {
|
|
|
8989
9001
|
readonly status_updated_at?: string;
|
|
8990
9002
|
readonly logistics_format?: io.flow.v0.models.LogisticsFormat;
|
|
8991
9003
|
readonly shop?: io.flow.v0.models.Shop;
|
|
8992
|
-
readonly
|
|
8993
|
-
readonly
|
|
9004
|
+
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
9005
|
+
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
8994
9006
|
readonly average_order_value?: io.flow.v0.models.Money;
|
|
8995
|
-
readonly total_order?: io.flow.v0.models.TotalOrder;
|
|
8996
9007
|
}
|
|
8997
9008
|
interface ShopifyMerchantApplicationForm {
|
|
8998
9009
|
readonly discriminator: 'shopify_merchant_application_form';
|
|
@@ -9022,10 +9033,9 @@ declare namespace io.flow.v0.models {
|
|
|
9022
9033
|
readonly rate_card: string;
|
|
9023
9034
|
readonly logistics_format?: io.flow.v0.models.LogisticsFormat;
|
|
9024
9035
|
readonly shop?: io.flow.v0.models.Shop;
|
|
9025
|
-
readonly
|
|
9026
|
-
readonly
|
|
9036
|
+
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
9037
|
+
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
9027
9038
|
readonly average_order_value?: io.flow.v0.models.Money;
|
|
9028
|
-
readonly total_order?: io.flow.v0.models.TotalOrder;
|
|
9029
9039
|
}
|
|
9030
9040
|
interface ShopifyMerchantApplicationPutForm {
|
|
9031
9041
|
readonly discriminator: 'shopify_merchant_application_put_form';
|
|
@@ -9613,10 +9623,6 @@ declare namespace io.flow.v0.models {
|
|
|
9613
9623
|
interface TokenValidationForm {
|
|
9614
9624
|
readonly token: string;
|
|
9615
9625
|
}
|
|
9616
|
-
interface TotalOrder {
|
|
9617
|
-
readonly value?: io.flow.v0.models.Money;
|
|
9618
|
-
readonly count?: number;
|
|
9619
|
-
}
|
|
9620
9626
|
interface Tracking {
|
|
9621
9627
|
readonly id: string;
|
|
9622
9628
|
readonly labels: io.flow.v0.models.TrackingLabel[];
|
|
@@ -9751,6 +9757,7 @@ declare namespace io.flow.v0.models {
|
|
|
9751
9757
|
readonly withholdings: io.flow.v0.models.WithholdingDeduction[];
|
|
9752
9758
|
readonly discounts: io.flow.v0.models.BillingDiscount[];
|
|
9753
9759
|
readonly net: number;
|
|
9760
|
+
readonly identifiers: Record<string, string>;
|
|
9754
9761
|
readonly created_at: string;
|
|
9755
9762
|
}
|
|
9756
9763
|
interface TransactionDeleted {
|
|
@@ -10206,6 +10213,7 @@ export declare type B2BInvoiceUpserted = io.flow.v0.models.B2BInvoiceUpserted;
|
|
|
10206
10213
|
export declare type BankAccountForm = io.flow.v0.models.BankAccountForm;
|
|
10207
10214
|
export declare type BankAccountInfo = io.flow.v0.unions.BankAccountInfo;
|
|
10208
10215
|
export declare type BankAccountInfoUsa = io.flow.v0.models.BankAccountInfoUsa;
|
|
10216
|
+
export declare type BankAccountReference = io.flow.v0.models.BankAccountReference;
|
|
10209
10217
|
export declare type BehaviorAudit = io.flow.v0.models.BehaviorAudit;
|
|
10210
10218
|
export declare type BillingAddress = io.flow.v0.models.BillingAddress;
|
|
10211
10219
|
export declare type BillingChannelOrderSummary = io.flow.v0.models.BillingChannelOrderSummary;
|
|
@@ -10427,6 +10435,7 @@ export declare type DatetimeRange = io.flow.v0.models.DatetimeRange;
|
|
|
10427
10435
|
export declare type DatetimeWithTimezone = io.flow.v0.models.DatetimeWithTimezone;
|
|
10428
10436
|
export declare type DayOfWeek = io.flow.v0.enums.DayOfWeek;
|
|
10429
10437
|
export declare type DdpRatecardFee = io.flow.v0.models.DdpRatecardFee;
|
|
10438
|
+
export declare type DefaultBankAccountForm = io.flow.v0.models.DefaultBankAccountForm;
|
|
10430
10439
|
export declare type DeliveredDuty = io.flow.v0.enums.DeliveredDuty;
|
|
10431
10440
|
export declare type DeliveredDutyDisplayType = io.flow.v0.enums.DeliveredDutyDisplayType;
|
|
10432
10441
|
export declare type DeliveredDutySetting = io.flow.v0.models.DeliveredDutySetting;
|
|
@@ -10831,6 +10840,7 @@ export declare type LocalizedTranslation = io.flow.v0.models.LocalizedTranslatio
|
|
|
10831
10840
|
export declare type LocationError = io.flow.v0.models.LocationError;
|
|
10832
10841
|
export declare type LocationErrorCode = io.flow.v0.enums.LocationErrorCode;
|
|
10833
10842
|
export declare type LogisticsFormat = io.flow.v0.models.LogisticsFormat;
|
|
10843
|
+
export declare type LogisticsFormatPreference = io.flow.v0.enums.LogisticsFormatPreference;
|
|
10834
10844
|
export declare type LogisticsSettings = io.flow.v0.models.LogisticsSettings;
|
|
10835
10845
|
export declare type LogoImage = io.flow.v0.unions.LogoImage;
|
|
10836
10846
|
export declare type LogoImageSetStatic = io.flow.v0.models.LogoImageSetStatic;
|
|
@@ -11030,6 +11040,7 @@ export declare type OrganizationAuthorization = io.flow.v0.models.OrganizationAu
|
|
|
11030
11040
|
export declare type OrganizationAuthorizationForm = io.flow.v0.models.OrganizationAuthorizationForm;
|
|
11031
11041
|
export declare type OrganizationBankAccount = io.flow.v0.models.OrganizationBankAccount;
|
|
11032
11042
|
export declare type OrganizationConfigurationReference = io.flow.v0.models.OrganizationConfigurationReference;
|
|
11043
|
+
export declare type OrganizationDefaultBankAccount = io.flow.v0.models.OrganizationDefaultBankAccount;
|
|
11033
11044
|
export declare type OrganizationDefaultConfigurations = io.flow.v0.models.OrganizationDefaultConfigurations;
|
|
11034
11045
|
export declare type OrganizationDefaultConfigurationsDeleted = io.flow.v0.models.OrganizationDefaultConfigurationsDeleted;
|
|
11035
11046
|
export declare type OrganizationDefaultConfigurationsForm = io.flow.v0.models.OrganizationDefaultConfigurationsForm;
|
|
@@ -11614,7 +11625,6 @@ export declare type TokenReference = io.flow.v0.unions.TokenReference;
|
|
|
11614
11625
|
export declare type TokenType = io.flow.v0.enums.TokenType;
|
|
11615
11626
|
export declare type TokenValidation = io.flow.v0.models.TokenValidation;
|
|
11616
11627
|
export declare type TokenValidationForm = io.flow.v0.models.TokenValidationForm;
|
|
11617
|
-
export declare type TotalOrder = io.flow.v0.models.TotalOrder;
|
|
11618
11628
|
export declare type Tracking = io.flow.v0.models.Tracking;
|
|
11619
11629
|
export declare type TrackingEvent = io.flow.v0.models.TrackingEvent;
|
|
11620
11630
|
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.39",
|
|
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": "63128f7f46bbcdec0b463b602b669f1a441dc197"
|
|
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;
|
|
@@ -11406,6 +11403,10 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11406
11403
|
readonly info: io.flow.billing.bank.account.v0.unions.BankAccountInfo;
|
|
11407
11404
|
}
|
|
11408
11405
|
|
|
11406
|
+
interface BankAccountReference {
|
|
11407
|
+
readonly id: string;
|
|
11408
|
+
}
|
|
11409
|
+
|
|
11409
11410
|
interface BillingChannelOrderSummary {
|
|
11410
11411
|
readonly organization: io.flow.billing.v0.models.BillingChannelOrganizationSummary;
|
|
11411
11412
|
readonly number: string;
|
|
@@ -11451,9 +11452,14 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11451
11452
|
readonly withholdings: io.flow.billing.v0.models.WithholdingDeduction[];
|
|
11452
11453
|
readonly discounts: io.flow.billing.v0.models.BillingDiscount[];
|
|
11453
11454
|
readonly net: number;
|
|
11455
|
+
readonly identifiers: Record<string, string>;
|
|
11454
11456
|
readonly created_at: string;
|
|
11455
11457
|
}
|
|
11456
11458
|
|
|
11459
|
+
interface DefaultBankAccountForm {
|
|
11460
|
+
readonly bank_account_id: string;
|
|
11461
|
+
}
|
|
11462
|
+
|
|
11457
11463
|
interface FeeDeduction {
|
|
11458
11464
|
readonly type: io.flow.billing.v0.enums.FeeDeductionType;
|
|
11459
11465
|
readonly amount: number;
|
|
@@ -11470,6 +11476,11 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11470
11476
|
readonly last4: string;
|
|
11471
11477
|
}
|
|
11472
11478
|
|
|
11479
|
+
interface OrganizationDefaultBankAccount {
|
|
11480
|
+
readonly id: string;
|
|
11481
|
+
readonly bank_account: io.flow.billing.v0.models.BankAccountReference;
|
|
11482
|
+
}
|
|
11483
|
+
|
|
11473
11484
|
interface Payout {
|
|
11474
11485
|
readonly discriminator: 'payout';
|
|
11475
11486
|
readonly status: io.flow.billing.v0.models.PayoutStatus;
|
|
@@ -11503,6 +11514,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11503
11514
|
readonly withholdings: io.flow.billing.v0.models.WithholdingDeduction[];
|
|
11504
11515
|
readonly discounts: io.flow.billing.v0.models.BillingDiscount[];
|
|
11505
11516
|
readonly net: number;
|
|
11517
|
+
readonly identifiers: Record<string, string>;
|
|
11506
11518
|
readonly created_at: string;
|
|
11507
11519
|
}
|
|
11508
11520
|
|
|
@@ -13606,6 +13618,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13606
13618
|
| 'bank_payment_deleted'
|
|
13607
13619
|
| 'bank_payment_upserted_v2'
|
|
13608
13620
|
| 'bank_payment_deleted_v2'
|
|
13621
|
+
| 'channel_transaction_upserted'
|
|
13622
|
+
| 'channel_transaction_deleted'
|
|
13623
|
+
| 'order_transaction_upserted'
|
|
13624
|
+
| 'order_transaction_deleted'
|
|
13625
|
+
| 'label_transaction_upserted'
|
|
13626
|
+
| 'label_transaction_deleted'
|
|
13609
13627
|
| 'calculator_organization_settings_upserted'
|
|
13610
13628
|
| 'calculator_organization_settings_deleted'
|
|
13611
13629
|
| 'carrier_account_upserted_v2'
|
|
@@ -14009,7 +14027,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14009
14027
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
14010
14028
|
type OrganizationRestrictionApprovalStatus = 'ready' | 'not-ready';
|
|
14011
14029
|
type OrganizationRestrictionNoteType = 'internal' | 'rejection_reason';
|
|
14012
|
-
type
|
|
14030
|
+
type OrganizationRestrictionQueue =
|
|
14031
|
+
| 'in_review'
|
|
14032
|
+
| 'reviewed'
|
|
14033
|
+
| 'rejected'
|
|
14034
|
+
| 'unscreened';
|
|
14035
|
+
type OrganizationRestrictionRiskLevel = '5' | '15';
|
|
14013
14036
|
type OrganizationRestrictionScreeningStatus =
|
|
14014
14037
|
| 'approved'
|
|
14015
14038
|
| 'pending'
|
|
@@ -15870,6 +15893,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15870
15893
|
readonly created_at: string;
|
|
15871
15894
|
}
|
|
15872
15895
|
|
|
15896
|
+
interface ChannelTransactionDeleted {
|
|
15897
|
+
readonly discriminator: 'channel_transaction_deleted';
|
|
15898
|
+
readonly event_id: string;
|
|
15899
|
+
readonly timestamp: string;
|
|
15900
|
+
readonly id: string;
|
|
15901
|
+
}
|
|
15902
|
+
|
|
15873
15903
|
interface ChannelTransactionRate {
|
|
15874
15904
|
readonly from: string;
|
|
15875
15905
|
readonly to: string;
|
|
@@ -15877,6 +15907,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15877
15907
|
readonly timestamp: string;
|
|
15878
15908
|
}
|
|
15879
15909
|
|
|
15910
|
+
interface ChannelTransactionUpserted {
|
|
15911
|
+
readonly discriminator: 'channel_transaction_upserted';
|
|
15912
|
+
readonly event_id: string;
|
|
15913
|
+
readonly timestamp: string;
|
|
15914
|
+
readonly channel_transaction: io.flow.internal.v0.models.ChannelTransaction;
|
|
15915
|
+
}
|
|
15916
|
+
|
|
15880
15917
|
interface Chargeback {
|
|
15881
15918
|
readonly id: string;
|
|
15882
15919
|
readonly key: string;
|
|
@@ -19255,6 +19292,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19255
19292
|
readonly order_number?: string;
|
|
19256
19293
|
}
|
|
19257
19294
|
|
|
19295
|
+
interface ExternalFulfillmentProof {
|
|
19296
|
+
readonly id: string;
|
|
19297
|
+
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
19298
|
+
readonly responsible_party: io.flow.internal.v0.enums.ResponsibleParty;
|
|
19299
|
+
readonly tracking: io.flow.internal.v0.models.ExternalFulfillmentProofTracking[];
|
|
19300
|
+
}
|
|
19301
|
+
|
|
19302
|
+
interface ExternalFulfillmentProofForm {
|
|
19303
|
+
readonly responsible_party: io.flow.internal.v0.enums.ResponsibleParty;
|
|
19304
|
+
readonly tracking?: io.flow.internal.v0.models.ExternalFulfillmentProofTrackingForm[];
|
|
19305
|
+
}
|
|
19306
|
+
|
|
19307
|
+
interface ExternalFulfillmentProofTracking {
|
|
19308
|
+
readonly carrier_id?: string;
|
|
19309
|
+
readonly service_id?: string;
|
|
19310
|
+
readonly carrier_tracking_number?: string;
|
|
19311
|
+
}
|
|
19312
|
+
|
|
19313
|
+
interface ExternalFulfillmentProofTrackingForm {
|
|
19314
|
+
readonly carrier_id?: string;
|
|
19315
|
+
readonly service_id?: string;
|
|
19316
|
+
readonly carrier_tracking_number?: string;
|
|
19317
|
+
}
|
|
19318
|
+
|
|
19258
19319
|
interface FacebookPixel {
|
|
19259
19320
|
readonly discriminator: 'facebook_pixel';
|
|
19260
19321
|
readonly name?: string;
|
|
@@ -21339,6 +21400,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21339
21400
|
readonly created_at: string;
|
|
21340
21401
|
}
|
|
21341
21402
|
|
|
21403
|
+
interface LabelTransactionDeleted {
|
|
21404
|
+
readonly discriminator: 'label_transaction_deleted';
|
|
21405
|
+
readonly event_id: string;
|
|
21406
|
+
readonly timestamp: string;
|
|
21407
|
+
readonly id: string;
|
|
21408
|
+
}
|
|
21409
|
+
|
|
21410
|
+
interface LabelTransactionUpserted {
|
|
21411
|
+
readonly discriminator: 'label_transaction_upserted';
|
|
21412
|
+
readonly event_id: string;
|
|
21413
|
+
readonly timestamp: string;
|
|
21414
|
+
readonly label_transaction: io.flow.internal.v0.models.LabelTransaction;
|
|
21415
|
+
}
|
|
21416
|
+
|
|
21342
21417
|
interface LabeledContent {
|
|
21343
21418
|
readonly label: io.flow.internal.v0.models.ContentLabel;
|
|
21344
21419
|
readonly contents: io.flow.internal.v0.unions.ContentItem[];
|
|
@@ -22346,6 +22421,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22346
22421
|
readonly created_at: string;
|
|
22347
22422
|
}
|
|
22348
22423
|
|
|
22424
|
+
interface OrderTransactionDeleted {
|
|
22425
|
+
readonly discriminator: 'order_transaction_deleted';
|
|
22426
|
+
readonly event_id: string;
|
|
22427
|
+
readonly timestamp: string;
|
|
22428
|
+
readonly id: string;
|
|
22429
|
+
}
|
|
22430
|
+
|
|
22431
|
+
interface OrderTransactionUpserted {
|
|
22432
|
+
readonly discriminator: 'order_transaction_upserted';
|
|
22433
|
+
readonly event_id: string;
|
|
22434
|
+
readonly timestamp: string;
|
|
22435
|
+
readonly order_transaction: io.flow.internal.v0.models.OrderTransaction;
|
|
22436
|
+
}
|
|
22437
|
+
|
|
22349
22438
|
interface OrganizationAccount {
|
|
22350
22439
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
22351
22440
|
readonly id: string;
|
|
@@ -22526,6 +22615,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22526
22615
|
readonly organization_restriction_approval: io.flow.internal.v0.models.OrganizationRestrictionApproval;
|
|
22527
22616
|
}
|
|
22528
22617
|
|
|
22618
|
+
interface OrganizationRestrictionNoteForm {
|
|
22619
|
+
readonly note: string;
|
|
22620
|
+
}
|
|
22621
|
+
|
|
22529
22622
|
interface OrganizationRestrictionScreeningDecisionForm {
|
|
22530
22623
|
readonly organization_id: string;
|
|
22531
22624
|
readonly screening_status: io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
|
|
@@ -22569,7 +22662,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22569
22662
|
readonly organization_id: string;
|
|
22570
22663
|
readonly approval: io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
22571
22664
|
readonly screening_status: io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
|
|
22572
|
-
readonly risk_level
|
|
22665
|
+
readonly risk_level?: io.flow.internal.v0.enums.OrganizationRestrictionRiskLevel;
|
|
22573
22666
|
readonly selective_review_start_date?: string;
|
|
22574
22667
|
readonly selective_review_end_date?: string;
|
|
22575
22668
|
readonly full_review_start_date?: string;
|
|
@@ -23245,6 +23338,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23245
23338
|
readonly reviews: io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
|
|
23246
23339
|
}
|
|
23247
23340
|
|
|
23341
|
+
interface ProofOfPostingExternallyFulfilled {
|
|
23342
|
+
readonly discriminator: 'external';
|
|
23343
|
+
readonly external_fulfillment_proof_id: string;
|
|
23344
|
+
}
|
|
23345
|
+
|
|
23248
23346
|
interface ProofOfPostingFulfilled {
|
|
23249
23347
|
readonly discriminator: 'fulfilled';
|
|
23250
23348
|
readonly billable_label_id: string;
|
|
@@ -24134,7 +24232,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24134
24232
|
}
|
|
24135
24233
|
|
|
24136
24234
|
interface ShopifyMarketsSync {
|
|
24137
|
-
readonly
|
|
24235
|
+
readonly force_resync?: boolean;
|
|
24138
24236
|
}
|
|
24139
24237
|
|
|
24140
24238
|
interface ShopifyMarketsWebhookRegistration {
|
|
@@ -25828,6 +25926,12 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25828
25926
|
| io.flow.internal.v0.models.BankPaymentDeleted
|
|
25829
25927
|
| io.flow.internal.v0.models.BankPaymentUpsertedV2
|
|
25830
25928
|
| io.flow.internal.v0.models.BankPaymentDeletedV2
|
|
25929
|
+
| io.flow.internal.v0.models.ChannelTransactionUpserted
|
|
25930
|
+
| io.flow.internal.v0.models.ChannelTransactionDeleted
|
|
25931
|
+
| io.flow.internal.v0.models.OrderTransactionUpserted
|
|
25932
|
+
| io.flow.internal.v0.models.OrderTransactionDeleted
|
|
25933
|
+
| io.flow.internal.v0.models.LabelTransactionUpserted
|
|
25934
|
+
| io.flow.internal.v0.models.LabelTransactionDeleted
|
|
25831
25935
|
| io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted
|
|
25832
25936
|
| io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted
|
|
25833
25937
|
| io.flow.internal.v0.models.CarrierAccountUpsertedV2
|
|
@@ -26226,6 +26330,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26226
26330
|
| io.flow.internal.v0.models.PaypalMerchantPutForm;
|
|
26227
26331
|
type ProofOfPosting =
|
|
26228
26332
|
| io.flow.internal.v0.models.ProofOfPostingFulfilled
|
|
26333
|
+
| io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled
|
|
26229
26334
|
| io.flow.internal.v0.models.ProofOfPostingFullyRefunded;
|
|
26230
26335
|
type RoutingEntity =
|
|
26231
26336
|
| io.flow.internal.v0.models.RoutingProcessor
|
|
@@ -26745,10 +26850,14 @@ export type ChannelRateMetadataIdentity =
|
|
|
26745
26850
|
export type ChannelRateMetadataRate =
|
|
26746
26851
|
io.flow.internal.v0.models.ChannelRateMetadataRate;
|
|
26747
26852
|
export type ChannelTransaction = io.flow.internal.v0.models.ChannelTransaction;
|
|
26853
|
+
export type ChannelTransactionDeleted =
|
|
26854
|
+
io.flow.internal.v0.models.ChannelTransactionDeleted;
|
|
26748
26855
|
export type ChannelTransactionRate =
|
|
26749
26856
|
io.flow.internal.v0.models.ChannelTransactionRate;
|
|
26750
26857
|
export type ChannelTransactionType =
|
|
26751
26858
|
io.flow.internal.v0.enums.ChannelTransactionType;
|
|
26859
|
+
export type ChannelTransactionUpserted =
|
|
26860
|
+
io.flow.internal.v0.models.ChannelTransactionUpserted;
|
|
26752
26861
|
export type Chargeback = io.flow.internal.v0.models.Chargeback;
|
|
26753
26862
|
export type ChargebackDeleted = io.flow.internal.v0.models.ChargebackDeleted;
|
|
26754
26863
|
export type ChargebackPaymentStatus =
|
|
@@ -28123,6 +28232,14 @@ export type ExportTrackingLabel =
|
|
|
28123
28232
|
io.flow.internal.v0.models.ExportTrackingLabel;
|
|
28124
28233
|
export type ExportTrackingLabelEvent =
|
|
28125
28234
|
io.flow.internal.v0.models.ExportTrackingLabelEvent;
|
|
28235
|
+
export type ExternalFulfillmentProof =
|
|
28236
|
+
io.flow.internal.v0.models.ExternalFulfillmentProof;
|
|
28237
|
+
export type ExternalFulfillmentProofForm =
|
|
28238
|
+
io.flow.internal.v0.models.ExternalFulfillmentProofForm;
|
|
28239
|
+
export type ExternalFulfillmentProofTracking =
|
|
28240
|
+
io.flow.internal.v0.models.ExternalFulfillmentProofTracking;
|
|
28241
|
+
export type ExternalFulfillmentProofTrackingForm =
|
|
28242
|
+
io.flow.internal.v0.models.ExternalFulfillmentProofTrackingForm;
|
|
28126
28243
|
export type FacebookPixel = io.flow.internal.v0.models.FacebookPixel;
|
|
28127
28244
|
export type Feature = io.flow.internal.v0.models.Feature;
|
|
28128
28245
|
export type FeatureContextForm = io.flow.internal.v0.models.FeatureContextForm;
|
|
@@ -28560,8 +28677,12 @@ export type LabelTrackingSummaryDeleted =
|
|
|
28560
28677
|
export type LabelTrackingSummaryUpserted =
|
|
28561
28678
|
io.flow.internal.v0.models.LabelTrackingSummaryUpserted;
|
|
28562
28679
|
export type LabelTransaction = io.flow.internal.v0.models.LabelTransaction;
|
|
28680
|
+
export type LabelTransactionDeleted =
|
|
28681
|
+
io.flow.internal.v0.models.LabelTransactionDeleted;
|
|
28563
28682
|
export type LabelTransactionType =
|
|
28564
28683
|
io.flow.internal.v0.enums.LabelTransactionType;
|
|
28684
|
+
export type LabelTransactionUpserted =
|
|
28685
|
+
io.flow.internal.v0.models.LabelTransactionUpserted;
|
|
28565
28686
|
export type LabeledContent = io.flow.internal.v0.models.LabeledContent;
|
|
28566
28687
|
export type LabelsPrediction = io.flow.internal.v0.models.LabelsPrediction;
|
|
28567
28688
|
export type LandedCostItem = io.flow.internal.v0.models.LandedCostItem;
|
|
@@ -28853,8 +28974,12 @@ export type OrderShipped = io.flow.internal.v0.models.OrderShipped;
|
|
|
28853
28974
|
export type OrderSubmissionForm =
|
|
28854
28975
|
io.flow.internal.v0.models.OrderSubmissionForm;
|
|
28855
28976
|
export type OrderTransaction = io.flow.internal.v0.models.OrderTransaction;
|
|
28977
|
+
export type OrderTransactionDeleted =
|
|
28978
|
+
io.flow.internal.v0.models.OrderTransactionDeleted;
|
|
28856
28979
|
export type OrderTransactionType =
|
|
28857
28980
|
io.flow.internal.v0.enums.OrderTransactionType;
|
|
28981
|
+
export type OrderTransactionUpserted =
|
|
28982
|
+
io.flow.internal.v0.models.OrderTransactionUpserted;
|
|
28858
28983
|
export type OrganizationAccount =
|
|
28859
28984
|
io.flow.internal.v0.models.OrganizationAccount;
|
|
28860
28985
|
export type OrganizationAccountDeleted =
|
|
@@ -28909,8 +29034,12 @@ export type OrganizationRestrictionApprovalStatus =
|
|
|
28909
29034
|
io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
28910
29035
|
export type OrganizationRestrictionApprovalUpserted =
|
|
28911
29036
|
io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted;
|
|
29037
|
+
export type OrganizationRestrictionNoteForm =
|
|
29038
|
+
io.flow.internal.v0.models.OrganizationRestrictionNoteForm;
|
|
28912
29039
|
export type OrganizationRestrictionNoteType =
|
|
28913
29040
|
io.flow.internal.v0.enums.OrganizationRestrictionNoteType;
|
|
29041
|
+
export type OrganizationRestrictionQueue =
|
|
29042
|
+
io.flow.internal.v0.enums.OrganizationRestrictionQueue;
|
|
28914
29043
|
export type OrganizationRestrictionRiskLevel =
|
|
28915
29044
|
io.flow.internal.v0.enums.OrganizationRestrictionRiskLevel;
|
|
28916
29045
|
export type OrganizationRestrictionScreeningDecisionForm =
|
|
@@ -29114,6 +29243,8 @@ export type PromptCheckoutDisplayPosition =
|
|
|
29114
29243
|
export type PromptOptions = io.flow.internal.v0.enums.PromptOptions;
|
|
29115
29244
|
export type PromptTarget = io.flow.internal.v0.enums.PromptTarget;
|
|
29116
29245
|
export type ProofOfPosting = io.flow.internal.v0.unions.ProofOfPosting;
|
|
29246
|
+
export type ProofOfPostingExternallyFulfilled =
|
|
29247
|
+
io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled;
|
|
29117
29248
|
export type ProofOfPostingFulfilled =
|
|
29118
29249
|
io.flow.internal.v0.models.ProofOfPostingFulfilled;
|
|
29119
29250
|
export type ProofOfPostingFullyRefunded =
|
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 =
|
|
@@ -3791,6 +3795,10 @@ declare namespace io.flow.v0.models {
|
|
|
3791
3795
|
readonly account_number: string;
|
|
3792
3796
|
}
|
|
3793
3797
|
|
|
3798
|
+
interface BankAccountReference {
|
|
3799
|
+
readonly id: string;
|
|
3800
|
+
}
|
|
3801
|
+
|
|
3794
3802
|
interface BehaviorAudit {
|
|
3795
3803
|
readonly behavior: io.flow.v0.enums.FlowBehavior;
|
|
3796
3804
|
readonly authentication_techniques: io.flow.v0.enums.AuthenticationTechnique[];
|
|
@@ -4501,6 +4509,7 @@ declare namespace io.flow.v0.models {
|
|
|
4501
4509
|
readonly withholdings: io.flow.v0.models.WithholdingDeduction[];
|
|
4502
4510
|
readonly discounts: io.flow.v0.models.BillingDiscount[];
|
|
4503
4511
|
readonly net: number;
|
|
4512
|
+
readonly identifiers: Record<string, string>;
|
|
4504
4513
|
readonly created_at: string;
|
|
4505
4514
|
}
|
|
4506
4515
|
|
|
@@ -5171,6 +5180,10 @@ declare namespace io.flow.v0.models {
|
|
|
5171
5180
|
readonly amount: number;
|
|
5172
5181
|
}
|
|
5173
5182
|
|
|
5183
|
+
interface DefaultBankAccountForm {
|
|
5184
|
+
readonly bank_account_id: string;
|
|
5185
|
+
}
|
|
5186
|
+
|
|
5174
5187
|
interface DeliveredDutySetting {
|
|
5175
5188
|
readonly default: io.flow.v0.enums.DeliveredDuty;
|
|
5176
5189
|
readonly available: io.flow.v0.enums.DeliveredDuty[];
|
|
@@ -7436,7 +7449,7 @@ declare namespace io.flow.v0.models {
|
|
|
7436
7449
|
}
|
|
7437
7450
|
|
|
7438
7451
|
interface LogisticsFormat {
|
|
7439
|
-
readonly preference
|
|
7452
|
+
readonly preference: io.flow.v0.enums.LogisticsFormatPreference;
|
|
7440
7453
|
readonly description?: string;
|
|
7441
7454
|
}
|
|
7442
7455
|
|
|
@@ -8616,6 +8629,11 @@ declare namespace io.flow.v0.models {
|
|
|
8616
8629
|
readonly id: string;
|
|
8617
8630
|
}
|
|
8618
8631
|
|
|
8632
|
+
interface OrganizationDefaultBankAccount {
|
|
8633
|
+
readonly id: string;
|
|
8634
|
+
readonly bank_account: io.flow.v0.models.BankAccountReference;
|
|
8635
|
+
}
|
|
8636
|
+
|
|
8619
8637
|
interface OrganizationDefaultConfigurations {
|
|
8620
8638
|
readonly id: string;
|
|
8621
8639
|
readonly checkout_configuration: io.flow.v0.models.OrganizationConfigurationReference;
|
|
@@ -11349,10 +11367,9 @@ declare namespace io.flow.v0.models {
|
|
|
11349
11367
|
readonly status_updated_at?: string;
|
|
11350
11368
|
readonly logistics_format?: io.flow.v0.models.LogisticsFormat;
|
|
11351
11369
|
readonly shop?: io.flow.v0.models.Shop;
|
|
11352
|
-
readonly
|
|
11353
|
-
readonly
|
|
11370
|
+
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
11371
|
+
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
11354
11372
|
readonly average_order_value?: io.flow.v0.models.Money;
|
|
11355
|
-
readonly total_order?: io.flow.v0.models.TotalOrder;
|
|
11356
11373
|
}
|
|
11357
11374
|
|
|
11358
11375
|
interface ShopifyMerchantApplicationForm {
|
|
@@ -11383,10 +11400,9 @@ declare namespace io.flow.v0.models {
|
|
|
11383
11400
|
readonly rate_card: string;
|
|
11384
11401
|
readonly logistics_format?: io.flow.v0.models.LogisticsFormat;
|
|
11385
11402
|
readonly shop?: io.flow.v0.models.Shop;
|
|
11386
|
-
readonly
|
|
11387
|
-
readonly
|
|
11403
|
+
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
11404
|
+
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
11388
11405
|
readonly average_order_value?: io.flow.v0.models.Money;
|
|
11389
|
-
readonly total_order?: io.flow.v0.models.TotalOrder;
|
|
11390
11406
|
}
|
|
11391
11407
|
|
|
11392
11408
|
interface ShopifyMerchantApplicationPutForm {
|
|
@@ -12071,11 +12087,6 @@ declare namespace io.flow.v0.models {
|
|
|
12071
12087
|
readonly token: string;
|
|
12072
12088
|
}
|
|
12073
12089
|
|
|
12074
|
-
interface TotalOrder {
|
|
12075
|
-
readonly value?: io.flow.v0.models.Money;
|
|
12076
|
-
readonly count?: number;
|
|
12077
|
-
}
|
|
12078
|
-
|
|
12079
12090
|
interface Tracking {
|
|
12080
12091
|
readonly id: string;
|
|
12081
12092
|
readonly labels: io.flow.v0.models.TrackingLabel[];
|
|
@@ -12226,6 +12237,7 @@ declare namespace io.flow.v0.models {
|
|
|
12226
12237
|
readonly withholdings: io.flow.v0.models.WithholdingDeduction[];
|
|
12227
12238
|
readonly discounts: io.flow.v0.models.BillingDiscount[];
|
|
12228
12239
|
readonly net: number;
|
|
12240
|
+
readonly identifiers: Record<string, string>;
|
|
12229
12241
|
readonly created_at: string;
|
|
12230
12242
|
}
|
|
12231
12243
|
|
|
@@ -13198,6 +13210,7 @@ export type B2BInvoiceUpserted = io.flow.v0.models.B2BInvoiceUpserted;
|
|
|
13198
13210
|
export type BankAccountForm = io.flow.v0.models.BankAccountForm;
|
|
13199
13211
|
export type BankAccountInfo = io.flow.v0.unions.BankAccountInfo;
|
|
13200
13212
|
export type BankAccountInfoUsa = io.flow.v0.models.BankAccountInfoUsa;
|
|
13213
|
+
export type BankAccountReference = io.flow.v0.models.BankAccountReference;
|
|
13201
13214
|
export type BehaviorAudit = io.flow.v0.models.BehaviorAudit;
|
|
13202
13215
|
export type BillingAddress = io.flow.v0.models.BillingAddress;
|
|
13203
13216
|
export type BillingChannelOrderSummary =
|
|
@@ -13473,6 +13486,7 @@ export type DatetimeRange = io.flow.v0.models.DatetimeRange;
|
|
|
13473
13486
|
export type DatetimeWithTimezone = io.flow.v0.models.DatetimeWithTimezone;
|
|
13474
13487
|
export type DayOfWeek = io.flow.v0.enums.DayOfWeek;
|
|
13475
13488
|
export type DdpRatecardFee = io.flow.v0.models.DdpRatecardFee;
|
|
13489
|
+
export type DefaultBankAccountForm = io.flow.v0.models.DefaultBankAccountForm;
|
|
13476
13490
|
export type DeliveredDuty = io.flow.v0.enums.DeliveredDuty;
|
|
13477
13491
|
export type DeliveredDutyDisplayType =
|
|
13478
13492
|
io.flow.v0.enums.DeliveredDutyDisplayType;
|
|
@@ -13979,6 +13993,8 @@ export type LocalizedTranslation = io.flow.v0.models.LocalizedTranslation;
|
|
|
13979
13993
|
export type LocationError = io.flow.v0.models.LocationError;
|
|
13980
13994
|
export type LocationErrorCode = io.flow.v0.enums.LocationErrorCode;
|
|
13981
13995
|
export type LogisticsFormat = io.flow.v0.models.LogisticsFormat;
|
|
13996
|
+
export type LogisticsFormatPreference =
|
|
13997
|
+
io.flow.v0.enums.LogisticsFormatPreference;
|
|
13982
13998
|
export type LogisticsSettings = io.flow.v0.models.LogisticsSettings;
|
|
13983
13999
|
export type LogoImage = io.flow.v0.unions.LogoImage;
|
|
13984
14000
|
export type LogoImageSetStatic = io.flow.v0.models.LogoImageSetStatic;
|
|
@@ -14239,6 +14255,8 @@ export type OrganizationAuthorizationForm =
|
|
|
14239
14255
|
export type OrganizationBankAccount = io.flow.v0.models.OrganizationBankAccount;
|
|
14240
14256
|
export type OrganizationConfigurationReference =
|
|
14241
14257
|
io.flow.v0.models.OrganizationConfigurationReference;
|
|
14258
|
+
export type OrganizationDefaultBankAccount =
|
|
14259
|
+
io.flow.v0.models.OrganizationDefaultBankAccount;
|
|
14242
14260
|
export type OrganizationDefaultConfigurations =
|
|
14243
14261
|
io.flow.v0.models.OrganizationDefaultConfigurations;
|
|
14244
14262
|
export type OrganizationDefaultConfigurationsDeleted =
|
|
@@ -14982,7 +15000,6 @@ export type TokenReference = io.flow.v0.unions.TokenReference;
|
|
|
14982
15000
|
export type TokenType = io.flow.v0.enums.TokenType;
|
|
14983
15001
|
export type TokenValidation = io.flow.v0.models.TokenValidation;
|
|
14984
15002
|
export type TokenValidationForm = io.flow.v0.models.TokenValidationForm;
|
|
14985
|
-
export type TotalOrder = io.flow.v0.models.TotalOrder;
|
|
14986
15003
|
export type Tracking = io.flow.v0.models.Tracking;
|
|
14987
15004
|
export type TrackingEvent = io.flow.v0.models.TrackingEvent;
|
|
14988
15005
|
export type TrackingEventForm = io.flow.v0.models.TrackingEventForm;
|