@flowio/types 11.24.58 → 11.24.60
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 +282 -27
- package/dist/api.d.ts +17 -2
- package/package.json +2 -2
- package/src/api-internal.ts +359 -34
- package/src/api.ts +22 -2
package/dist/api-internal.d.ts
CHANGED
|
@@ -1243,6 +1243,15 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1243
1243
|
readonly discriminator: 'card_browser_action_configuration';
|
|
1244
1244
|
readonly viewport: io.flow.payment.v0.enums.ThreedsTwoChallengeViewport;
|
|
1245
1245
|
}
|
|
1246
|
+
interface CardConfirmationSummary {
|
|
1247
|
+
readonly discriminator: 'card_confirmation_summary';
|
|
1248
|
+
readonly type?: io.flow.payment.v0.enums.CardType;
|
|
1249
|
+
readonly funding_type?: string;
|
|
1250
|
+
readonly expiration?: io.flow.payment.v0.models.Expiration;
|
|
1251
|
+
readonly iin?: string;
|
|
1252
|
+
readonly issuer?: io.flow.payment.v0.models.IssuerSummary;
|
|
1253
|
+
readonly last4?: string;
|
|
1254
|
+
}
|
|
1246
1255
|
interface CardError {
|
|
1247
1256
|
readonly code: io.flow.payment.v0.enums.CardErrorCode;
|
|
1248
1257
|
readonly messages: string[];
|
|
@@ -1800,7 +1809,7 @@ declare namespace io.flow.payment.v0.unions {
|
|
|
1800
1809
|
type AuthorizationResultAction = io.flow.payment.v0.models.AuthorizationResultActionGet | io.flow.payment.v0.models.AuthorizationResultActionPost | io.flow.payment.v0.models.AuthorizationResultActionWait | io.flow.payment.v0.models.AuthorizationResultActionNative;
|
|
1801
1810
|
type AuthorizationResultActionDetails = io.flow.payment.v0.models.AdyenNativeActionDetails | io.flow.payment.v0.models.StripeAuthorizationResultActionDetails | io.flow.payment.v0.models.ThreedsIdentifyActionDetails | io.flow.payment.v0.models.ThreedsChallengeActionDetails | io.flow.payment.v0.models.ApplepaySdkCreateResultActionDetails | io.flow.payment.v0.models.ApplepaySdkValidateResultActionDetails | io.flow.payment.v0.models.KlarnaSdkAuthorizationResultActionDetails | io.flow.payment.v0.models.SelectIssuerOptionActionDetails;
|
|
1802
1811
|
type BrowserActionConfiguration = io.flow.payment.v0.models.CardBrowserActionConfiguration;
|
|
1803
|
-
type ConfirmationDetails = io.flow.payment.v0.models.DirectDebit;
|
|
1812
|
+
type ConfirmationDetails = io.flow.payment.v0.models.DirectDebit | io.flow.payment.v0.models.CardConfirmationSummary;
|
|
1804
1813
|
type ExpandableCard = io.flow.payment.v0.models.Card | io.flow.payment.v0.models.CardReference | io.flow.payment.v0.models.CardSummary;
|
|
1805
1814
|
type ExpandablePaymentProcessor = io.flow.payment.v0.models.PaymentProcessor | io.flow.payment.v0.models.PaymentProcessorReference;
|
|
1806
1815
|
type GatewayAuthenticationData = io.flow.payment.v0.models.StripeAuthenticationData;
|
|
@@ -2714,7 +2723,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
2714
2723
|
readonly order_identifier?: string;
|
|
2715
2724
|
readonly fulfillment_key?: string;
|
|
2716
2725
|
readonly shipment_recipient?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
2717
|
-
readonly updated_at
|
|
2726
|
+
readonly updated_at?: string;
|
|
2718
2727
|
}
|
|
2719
2728
|
interface ShippingNotificationVersion {
|
|
2720
2729
|
readonly id: string;
|
|
@@ -3709,6 +3718,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3709
3718
|
readonly threeDOfferedResponse?: string;
|
|
3710
3719
|
readonly threeDSVersion?: string;
|
|
3711
3720
|
readonly eci?: string;
|
|
3721
|
+
readonly cavv?: string;
|
|
3712
3722
|
readonly scaExemptionRequested?: string;
|
|
3713
3723
|
readonly paymentMethod?: string;
|
|
3714
3724
|
readonly paymentMethodVariant?: string;
|
|
@@ -3724,6 +3734,9 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
3724
3734
|
readonly issuerBin?: string;
|
|
3725
3735
|
readonly cardSummary?: string;
|
|
3726
3736
|
readonly untokenisedCardSummary?: string;
|
|
3737
|
+
readonly expiryDate?: string;
|
|
3738
|
+
readonly cardHolderName?: string;
|
|
3739
|
+
readonly fundingSource?: string;
|
|
3727
3740
|
readonly ownerName?: string;
|
|
3728
3741
|
readonly bankName?: string;
|
|
3729
3742
|
readonly issuerCountry?: string;
|
|
@@ -5705,6 +5718,10 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
5705
5718
|
readonly capturable_before?: string;
|
|
5706
5719
|
readonly authorizations: io.flow.payment.gateway.v0.models.PaymentAuthorization[];
|
|
5707
5720
|
}
|
|
5721
|
+
interface PaymentMethodActionCancellation {
|
|
5722
|
+
readonly reason_code?: io.flow.payment.gateway.v0.enums.PaymentFailureCode;
|
|
5723
|
+
readonly data?: any;
|
|
5724
|
+
}
|
|
5708
5725
|
interface PaymentMethodBrand {
|
|
5709
5726
|
readonly id: string;
|
|
5710
5727
|
readonly name: string;
|
|
@@ -6007,7 +6024,7 @@ declare namespace io.flow.partner.v0.enums {
|
|
|
6007
6024
|
declare namespace io.flow.partner.v0.models {
|
|
6008
6025
|
interface BridgeHub {
|
|
6009
6026
|
readonly hub_code: string;
|
|
6010
|
-
readonly address
|
|
6027
|
+
readonly address: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
6011
6028
|
}
|
|
6012
6029
|
interface BridgeLabelForm {
|
|
6013
6030
|
readonly discriminator: 'bridge_label_form';
|
|
@@ -8412,6 +8429,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
8412
8429
|
readonly id: string;
|
|
8413
8430
|
}
|
|
8414
8431
|
interface CatalogStatistics {
|
|
8432
|
+
readonly id: string;
|
|
8415
8433
|
readonly items: number;
|
|
8416
8434
|
readonly categories: number;
|
|
8417
8435
|
}
|
|
@@ -10589,7 +10607,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10589
10607
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
10590
10608
|
type EmptyAttribute = 'irrelevant';
|
|
10591
10609
|
type ErpFileType = 'vendor';
|
|
10592
|
-
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' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_deleted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_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' | 'catalog_settings_upserted' | 'catalog_settings_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' | 'harmonization_classification_statistics_published' | '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_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | '
|
|
10610
|
+
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' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_deleted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | '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' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_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_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_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' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | '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';
|
|
10593
10611
|
type ExperienceImportType = 'experience_with_settings';
|
|
10594
10612
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
10595
10613
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -10621,6 +10639,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10621
10639
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
10622
10640
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
10623
10641
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
10642
|
+
type LabelInputSource = 'estimate';
|
|
10624
10643
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
10625
10644
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
10626
10645
|
type MainTransactionStatus = 'scheduled' | 'pending_proof';
|
|
@@ -10710,6 +10729,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10710
10729
|
type Status = 'draft' | 'scheduled' | 'live' | 'ended' | 'archived';
|
|
10711
10730
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
10712
10731
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
10732
|
+
type SurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid';
|
|
10713
10733
|
type TariffEligibilityType = 'rex';
|
|
10714
10734
|
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'label_generation_settings' | 'ratecard' | 'logistics_center' | 'center_defaults';
|
|
10715
10735
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
@@ -11596,6 +11616,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11596
11616
|
readonly label: io.flow.common.v0.models.Price;
|
|
11597
11617
|
readonly order: io.flow.common.v0.models.Price;
|
|
11598
11618
|
readonly channel_billed: io.flow.common.v0.models.Price;
|
|
11619
|
+
readonly tax: io.flow.common.v0.models.Price;
|
|
11620
|
+
readonly duty: io.flow.common.v0.models.Price;
|
|
11599
11621
|
readonly ending_balance: io.flow.common.v0.models.Price;
|
|
11600
11622
|
}
|
|
11601
11623
|
interface BillingStatementUpserted {
|
|
@@ -11978,13 +12000,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11978
12000
|
readonly catalog_settings: io.flow.internal.v0.models.CatalogSettings;
|
|
11979
12001
|
}
|
|
11980
12002
|
interface CenterDefaults {
|
|
12003
|
+
readonly id: string;
|
|
11981
12004
|
readonly packaging: io.flow.fulfillment.v0.models.Packaging[];
|
|
11982
12005
|
readonly shipping_address_contact: io.flow.common.v0.models.Contact;
|
|
11983
12006
|
}
|
|
12007
|
+
interface CenterDefaultsDeleted {
|
|
12008
|
+
readonly discriminator: 'center_defaults_deleted';
|
|
12009
|
+
readonly event_id: string;
|
|
12010
|
+
readonly timestamp: string;
|
|
12011
|
+
readonly organization: string;
|
|
12012
|
+
readonly id: string;
|
|
12013
|
+
}
|
|
11984
12014
|
interface CenterDefaultsForm {
|
|
11985
12015
|
readonly packaging: io.flow.fulfillment.v0.models.Packaging[];
|
|
11986
12016
|
readonly shipping_address_contact: io.flow.common.v0.models.Contact;
|
|
11987
12017
|
}
|
|
12018
|
+
interface CenterDefaultsUpserted {
|
|
12019
|
+
readonly discriminator: 'center_defaults_upserted';
|
|
12020
|
+
readonly event_id: string;
|
|
12021
|
+
readonly timestamp: string;
|
|
12022
|
+
readonly organization: string;
|
|
12023
|
+
readonly center_defaults: io.flow.internal.v0.models.CenterDefaults;
|
|
12024
|
+
}
|
|
11988
12025
|
interface CenterQueryBuilder {
|
|
11989
12026
|
readonly placeholder: string;
|
|
11990
12027
|
}
|
|
@@ -14239,6 +14276,114 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14239
14276
|
readonly secret_key: string;
|
|
14240
14277
|
readonly signature_secret: string;
|
|
14241
14278
|
}
|
|
14279
|
+
interface CsvActual {
|
|
14280
|
+
readonly id: string;
|
|
14281
|
+
readonly currency: string;
|
|
14282
|
+
readonly base_amount: number;
|
|
14283
|
+
readonly surcharges: io.flow.internal.v0.models.CsvSurcharges;
|
|
14284
|
+
readonly total: number;
|
|
14285
|
+
readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
14286
|
+
readonly weight: number;
|
|
14287
|
+
readonly ratecard: io.flow.internal.v0.models.CsvActualRatecard;
|
|
14288
|
+
}
|
|
14289
|
+
interface CsvActualRatecard {
|
|
14290
|
+
readonly base_amount?: number;
|
|
14291
|
+
}
|
|
14292
|
+
interface CsvDimensions {
|
|
14293
|
+
readonly unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
14294
|
+
readonly length: number;
|
|
14295
|
+
readonly width: number;
|
|
14296
|
+
readonly depth: number;
|
|
14297
|
+
}
|
|
14298
|
+
interface CsvFlowRatecard {
|
|
14299
|
+
readonly id: string;
|
|
14300
|
+
readonly number: string;
|
|
14301
|
+
readonly owner: io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
14302
|
+
readonly lane: io.flow.internal.v0.models.LaneReference;
|
|
14303
|
+
readonly dim_factor: number;
|
|
14304
|
+
readonly surcharges: io.flow.internal.v0.models.CsvFlowRatecardSurcharges;
|
|
14305
|
+
readonly base_amount?: number;
|
|
14306
|
+
}
|
|
14307
|
+
interface CsvFlowRatecardSurcharges {
|
|
14308
|
+
readonly fuel?: io.flow.internal.v0.models.CsvServiceFee;
|
|
14309
|
+
readonly remote_area?: io.flow.internal.v0.models.CsvServiceFee;
|
|
14310
|
+
readonly oversize?: io.flow.internal.v0.models.CsvServiceFee;
|
|
14311
|
+
readonly duties_paid?: io.flow.internal.v0.models.CsvServiceFee;
|
|
14312
|
+
}
|
|
14313
|
+
interface CsvGlobalEProposition {
|
|
14314
|
+
readonly name: string;
|
|
14315
|
+
}
|
|
14316
|
+
interface CsvGlobalEShippingMethod {
|
|
14317
|
+
readonly id: string;
|
|
14318
|
+
readonly proposition: io.flow.internal.v0.models.CsvGlobalEProposition;
|
|
14319
|
+
}
|
|
14320
|
+
interface CsvInput {
|
|
14321
|
+
readonly id: string;
|
|
14322
|
+
readonly source: io.flow.internal.v0.enums.LabelInputSource;
|
|
14323
|
+
readonly currency: string;
|
|
14324
|
+
readonly base_amount: number;
|
|
14325
|
+
readonly surcharges: io.flow.internal.v0.models.CsvSurcharges;
|
|
14326
|
+
readonly total: number;
|
|
14327
|
+
readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
14328
|
+
readonly weight: number;
|
|
14329
|
+
}
|
|
14330
|
+
interface CsvLabel {
|
|
14331
|
+
readonly id: string;
|
|
14332
|
+
readonly cost: io.flow.internal.v0.models.CsvLabelCost;
|
|
14333
|
+
readonly created_at: string;
|
|
14334
|
+
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
14335
|
+
readonly trigger_method?: io.flow.label.v0.enums.LabelTriggerMethod;
|
|
14336
|
+
}
|
|
14337
|
+
interface CsvLabelCost {
|
|
14338
|
+
readonly amount: number;
|
|
14339
|
+
readonly currency: string;
|
|
14340
|
+
readonly source: io.flow.label.v0.enums.CostEstimateSource;
|
|
14341
|
+
}
|
|
14342
|
+
interface CsvOrder {
|
|
14343
|
+
readonly organization: io.flow.internal.v0.models.OrganizationReference;
|
|
14344
|
+
readonly number: string;
|
|
14345
|
+
readonly destination: io.flow.experience.v0.models.OrderAddress;
|
|
14346
|
+
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
14347
|
+
readonly tax: io.flow.common.v0.models.Money;
|
|
14348
|
+
readonly duty: io.flow.common.v0.models.Money;
|
|
14349
|
+
readonly total: io.flow.common.v0.models.Money;
|
|
14350
|
+
readonly number_items: number;
|
|
14351
|
+
}
|
|
14352
|
+
interface CsvRecord {
|
|
14353
|
+
readonly label: io.flow.internal.v0.models.CsvLabel;
|
|
14354
|
+
readonly carrier_service_id: string;
|
|
14355
|
+
readonly carrier_tracking_number: string;
|
|
14356
|
+
readonly order: io.flow.internal.v0.models.CsvOrder;
|
|
14357
|
+
readonly flow_ratecard: io.flow.internal.v0.models.CsvFlowRatecard;
|
|
14358
|
+
readonly global_e_shipping_method?: io.flow.internal.v0.models.CsvGlobalEShippingMethod;
|
|
14359
|
+
readonly weight: io.flow.internal.v0.models.CsvWeight;
|
|
14360
|
+
readonly dimensions: io.flow.internal.v0.models.CsvDimensions;
|
|
14361
|
+
readonly input?: io.flow.internal.v0.models.CsvInput;
|
|
14362
|
+
readonly actual?: io.flow.internal.v0.models.CsvActual;
|
|
14363
|
+
readonly deltas?: string[];
|
|
14364
|
+
readonly outliers?: string[];
|
|
14365
|
+
}
|
|
14366
|
+
interface CsvServiceFee {
|
|
14367
|
+
readonly amount?: number;
|
|
14368
|
+
readonly currency?: string;
|
|
14369
|
+
readonly percentage?: number;
|
|
14370
|
+
}
|
|
14371
|
+
interface CsvSurchargePercentage {
|
|
14372
|
+
readonly percentage: number;
|
|
14373
|
+
readonly amount: number;
|
|
14374
|
+
}
|
|
14375
|
+
interface CsvSurcharges {
|
|
14376
|
+
readonly fuel: io.flow.internal.v0.models.CsvSurchargePercentage;
|
|
14377
|
+
readonly remote_area: number;
|
|
14378
|
+
readonly oversize: number;
|
|
14379
|
+
readonly duties_paid: number;
|
|
14380
|
+
}
|
|
14381
|
+
interface CsvWeight {
|
|
14382
|
+
readonly unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
14383
|
+
readonly provided: number;
|
|
14384
|
+
readonly dimensional: number;
|
|
14385
|
+
readonly lookup: number;
|
|
14386
|
+
}
|
|
14242
14387
|
interface CurrencyInternalRate {
|
|
14243
14388
|
readonly id: string;
|
|
14244
14389
|
readonly organization_id: string;
|
|
@@ -16991,11 +17136,25 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16991
17136
|
readonly auto_generate_query?: string;
|
|
16992
17137
|
readonly commercial_invoice_only_query?: string;
|
|
16993
17138
|
}
|
|
17139
|
+
interface LabelGenerationSettingsDeleted {
|
|
17140
|
+
readonly discriminator: 'label_generation_settings_deleted';
|
|
17141
|
+
readonly event_id: string;
|
|
17142
|
+
readonly timestamp: string;
|
|
17143
|
+
readonly organization: string;
|
|
17144
|
+
readonly id: string;
|
|
17145
|
+
}
|
|
16994
17146
|
interface LabelGenerationSettingsForm {
|
|
16995
17147
|
readonly item_identifier?: string;
|
|
16996
17148
|
readonly auto_generate_query?: string;
|
|
16997
17149
|
readonly commercial_invoice_only_query?: string;
|
|
16998
17150
|
}
|
|
17151
|
+
interface LabelGenerationSettingsUpserted {
|
|
17152
|
+
readonly discriminator: 'label_generation_settings_upserted';
|
|
17153
|
+
readonly event_id: string;
|
|
17154
|
+
readonly timestamp: string;
|
|
17155
|
+
readonly organization: string;
|
|
17156
|
+
readonly label_generation_settings: io.flow.internal.v0.models.LabelGenerationSettings;
|
|
17157
|
+
}
|
|
16999
17158
|
interface LabelSummary {
|
|
17000
17159
|
readonly id: string;
|
|
17001
17160
|
readonly commercial_invoice?: string;
|
|
@@ -17079,6 +17238,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17079
17238
|
readonly client_id: string;
|
|
17080
17239
|
readonly region: string;
|
|
17081
17240
|
}
|
|
17241
|
+
interface LaneReference {
|
|
17242
|
+
readonly id: string;
|
|
17243
|
+
}
|
|
17082
17244
|
interface LevyRateSummary {
|
|
17083
17245
|
readonly id: string;
|
|
17084
17246
|
readonly number: string;
|
|
@@ -17373,16 +17535,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17373
17535
|
readonly main_transaction: io.flow.internal.v0.models.MainTransaction;
|
|
17374
17536
|
}
|
|
17375
17537
|
interface ManualReviewRule {
|
|
17538
|
+
readonly id: string;
|
|
17376
17539
|
readonly responsible_party: io.flow.internal.v0.enums.FraudReviewResponsibleParty;
|
|
17377
17540
|
readonly status: io.flow.internal.v0.enums.ManualReviewRuleStatus;
|
|
17378
17541
|
readonly duration: io.flow.common.v0.models.Duration;
|
|
17379
17542
|
readonly emails: string[];
|
|
17380
17543
|
}
|
|
17544
|
+
interface ManualReviewRuleDeleted {
|
|
17545
|
+
readonly discriminator: 'manual_review_rule_deleted';
|
|
17546
|
+
readonly event_id: string;
|
|
17547
|
+
readonly timestamp: string;
|
|
17548
|
+
readonly organization: string;
|
|
17549
|
+
readonly id: string;
|
|
17550
|
+
}
|
|
17381
17551
|
interface ManualReviewRuleForm {
|
|
17382
17552
|
readonly status: io.flow.internal.v0.enums.ManualReviewRuleStatus;
|
|
17383
17553
|
readonly duration: io.flow.common.v0.models.Duration;
|
|
17384
17554
|
readonly emails: string[];
|
|
17385
17555
|
}
|
|
17556
|
+
interface ManualReviewRuleUpserted {
|
|
17557
|
+
readonly discriminator: 'manual_review_rule_upserted';
|
|
17558
|
+
readonly event_id: string;
|
|
17559
|
+
readonly timestamp: string;
|
|
17560
|
+
readonly organization: string;
|
|
17561
|
+
readonly rule: io.flow.internal.v0.models.ManualReviewRule;
|
|
17562
|
+
}
|
|
17386
17563
|
interface ManualTransaction {
|
|
17387
17564
|
readonly discriminator: 'manual_transaction';
|
|
17388
17565
|
readonly category?: io.flow.internal.v0.enums.ManualTransactionCategory;
|
|
@@ -17720,6 +17897,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17720
17897
|
readonly gmv: number;
|
|
17721
17898
|
readonly health_score: number;
|
|
17722
17899
|
}
|
|
17900
|
+
interface OnboardingStateForm {
|
|
17901
|
+
readonly onboarding_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
17902
|
+
readonly transitioned_at: string;
|
|
17903
|
+
}
|
|
17723
17904
|
interface OneTimeTokenRedemptionForm {
|
|
17724
17905
|
readonly token: string;
|
|
17725
17906
|
}
|
|
@@ -18090,6 +18271,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18090
18271
|
readonly to: string;
|
|
18091
18272
|
}
|
|
18092
18273
|
interface OrganizationPaymentSetting {
|
|
18274
|
+
readonly id: string;
|
|
18093
18275
|
readonly organization_id: string;
|
|
18094
18276
|
readonly default_capture_option: io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
|
|
18095
18277
|
readonly status: io.flow.internal.v0.enums.OrganizationPaymentStatus;
|
|
@@ -18127,25 +18309,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18127
18309
|
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
18128
18310
|
readonly organization_payment_setting: io.flow.internal.v0.models.OrganizationPaymentSetting;
|
|
18129
18311
|
}
|
|
18130
|
-
interface
|
|
18312
|
+
interface OrganizationReference {
|
|
18131
18313
|
readonly id: string;
|
|
18132
|
-
readonly status: io.flow.internal.v0.models.OrganizationRestrictionStatus;
|
|
18133
|
-
readonly reason?: string;
|
|
18134
|
-
readonly updated_at: string;
|
|
18135
|
-
}
|
|
18136
|
-
interface OrganizationRestrictionApprovalDeleted {
|
|
18137
|
-
readonly discriminator: 'organization_restriction_approval_deleted';
|
|
18138
|
-
readonly event_id: string;
|
|
18139
|
-
readonly timestamp: string;
|
|
18140
|
-
readonly organization: string;
|
|
18141
|
-
readonly organization_restriction_approval: io.flow.internal.v0.models.OrganizationRestrictionApproval;
|
|
18142
|
-
}
|
|
18143
|
-
interface OrganizationRestrictionApprovalUpserted {
|
|
18144
|
-
readonly discriminator: 'organization_restriction_approval_upserted';
|
|
18145
|
-
readonly event_id: string;
|
|
18146
|
-
readonly timestamp: string;
|
|
18147
|
-
readonly organization: string;
|
|
18148
|
-
readonly organization_restriction_approval: io.flow.internal.v0.models.OrganizationRestrictionApproval;
|
|
18149
18314
|
}
|
|
18150
18315
|
interface OrganizationRestrictionNoteForm {
|
|
18151
18316
|
readonly note: string;
|
|
@@ -18195,6 +18360,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18195
18360
|
readonly selective_review_end_date?: string;
|
|
18196
18361
|
readonly full_review_start_date?: string;
|
|
18197
18362
|
readonly full_review_end_date?: string;
|
|
18363
|
+
readonly merchant_category_code?: string;
|
|
18364
|
+
readonly reason?: string;
|
|
18365
|
+
readonly updated_at: string;
|
|
18366
|
+
}
|
|
18367
|
+
interface OrganizationRestrictionStatusDeleted {
|
|
18368
|
+
readonly discriminator: 'organization_restriction_status_deleted';
|
|
18369
|
+
readonly event_id: string;
|
|
18370
|
+
readonly timestamp: string;
|
|
18371
|
+
readonly id: string;
|
|
18198
18372
|
}
|
|
18199
18373
|
interface OrganizationRestrictionStatusNote {
|
|
18200
18374
|
readonly id: string;
|
|
@@ -18204,6 +18378,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18204
18378
|
readonly updated_by: io.flow.common.v0.models.User;
|
|
18205
18379
|
readonly updated_at: string;
|
|
18206
18380
|
}
|
|
18381
|
+
interface OrganizationRestrictionStatusUpserted {
|
|
18382
|
+
readonly discriminator: 'organization_restriction_status_upserted';
|
|
18383
|
+
readonly event_id: string;
|
|
18384
|
+
readonly timestamp: string;
|
|
18385
|
+
readonly organization_restriction_status: io.flow.internal.v0.models.OrganizationRestrictionStatus;
|
|
18386
|
+
}
|
|
18207
18387
|
interface OrganizationSettings {
|
|
18208
18388
|
readonly default_currency_format_symbol: io.flow.common.v0.enums.CurrencySymbolFormat;
|
|
18209
18389
|
readonly default_currency_label_formatters: io.flow.common.v0.enums.CurrencyLabelFormatter[];
|
|
@@ -18222,7 +18402,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18222
18402
|
}
|
|
18223
18403
|
interface OrganizationStatusChange {
|
|
18224
18404
|
readonly id: string;
|
|
18225
|
-
readonly organization: string;
|
|
18226
18405
|
readonly previous_status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
18227
18406
|
readonly status: io.flow.common.v0.enums.OrganizationStatus;
|
|
18228
18407
|
readonly status_set_at: string;
|
|
@@ -18231,12 +18410,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18231
18410
|
readonly discriminator: 'organization_status_change_deleted';
|
|
18232
18411
|
readonly event_id: string;
|
|
18233
18412
|
readonly timestamp: string;
|
|
18413
|
+
readonly organization: string;
|
|
18234
18414
|
readonly id: string;
|
|
18235
18415
|
}
|
|
18236
18416
|
interface OrganizationStatusChangeUpserted {
|
|
18237
18417
|
readonly discriminator: 'organization_status_change_upserted';
|
|
18238
18418
|
readonly event_id: string;
|
|
18239
18419
|
readonly timestamp: string;
|
|
18420
|
+
readonly organization: string;
|
|
18240
18421
|
readonly organization_status_change: io.flow.internal.v0.models.OrganizationStatusChange;
|
|
18241
18422
|
}
|
|
18242
18423
|
interface Partner {
|
|
@@ -18290,13 +18471,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18290
18471
|
readonly partner: string;
|
|
18291
18472
|
}
|
|
18292
18473
|
interface PartnerOrganizationSettings {
|
|
18474
|
+
readonly id: string;
|
|
18293
18475
|
readonly label_format: io.flow.partner.v0.enums.LabelFormat;
|
|
18294
18476
|
readonly glbe_merchant_guid: string;
|
|
18295
18477
|
}
|
|
18478
|
+
interface PartnerOrganizationSettingsDeleted {
|
|
18479
|
+
readonly discriminator: 'partner_organization_settings_deleted';
|
|
18480
|
+
readonly event_id: string;
|
|
18481
|
+
readonly timestamp: string;
|
|
18482
|
+
readonly organization: string;
|
|
18483
|
+
readonly id: string;
|
|
18484
|
+
}
|
|
18296
18485
|
interface PartnerOrganizationSettingsForm {
|
|
18297
18486
|
readonly label_format: io.flow.partner.v0.enums.LabelFormat;
|
|
18298
18487
|
readonly glbe_merchant_guid?: string;
|
|
18299
18488
|
}
|
|
18489
|
+
interface PartnerOrganizationSettingsUpserted {
|
|
18490
|
+
readonly discriminator: 'partner_organization_settings_upserted';
|
|
18491
|
+
readonly event_id: string;
|
|
18492
|
+
readonly timestamp: string;
|
|
18493
|
+
readonly organization: string;
|
|
18494
|
+
readonly partner_organization_settings: io.flow.internal.v0.models.PartnerOrganizationSettings;
|
|
18495
|
+
}
|
|
18300
18496
|
interface Passphrase {
|
|
18301
18497
|
readonly id: string;
|
|
18302
18498
|
readonly tribe: io.flow.internal.v0.models.Tribe;
|
|
@@ -19503,6 +19699,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19503
19699
|
interface SessionRolloutForm {
|
|
19504
19700
|
readonly percent: number;
|
|
19505
19701
|
}
|
|
19702
|
+
interface SetupBlockPutForm {
|
|
19703
|
+
readonly reasons: io.flow.organization.onboarding.state.v0.enums.OnboardingBlockedReason[];
|
|
19704
|
+
}
|
|
19506
19705
|
interface SfExpress {
|
|
19507
19706
|
readonly discriminator: 'sf_express';
|
|
19508
19707
|
readonly checkword: string;
|
|
@@ -19689,8 +19888,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19689
19888
|
readonly force_resync?: boolean;
|
|
19690
19889
|
}
|
|
19691
19890
|
interface ShopifyMarketsWebhookRegistration {
|
|
19891
|
+
readonly id: string;
|
|
19692
19892
|
readonly response: io.flow.shopify.markets.v0.models.ShopifyWebhookResponse;
|
|
19693
19893
|
}
|
|
19894
|
+
interface ShopifyMarketsWebhookRegistrationDeleted {
|
|
19895
|
+
readonly discriminator: 'shopify_markets_webhook_registration_deleted';
|
|
19896
|
+
readonly event_id: string;
|
|
19897
|
+
readonly timestamp: string;
|
|
19898
|
+
readonly organization: string;
|
|
19899
|
+
readonly id: string;
|
|
19900
|
+
}
|
|
19901
|
+
interface ShopifyMarketsWebhookRegistrationUpserted {
|
|
19902
|
+
readonly discriminator: 'shopify_markets_webhook_registration_upserted';
|
|
19903
|
+
readonly event_id: string;
|
|
19904
|
+
readonly timestamp: string;
|
|
19905
|
+
readonly organization: string;
|
|
19906
|
+
readonly registration: io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
19907
|
+
}
|
|
19694
19908
|
interface ShopifyMetadata {
|
|
19695
19909
|
readonly domain: string;
|
|
19696
19910
|
readonly myshopify_domain: string;
|
|
@@ -20280,6 +20494,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20280
20494
|
readonly discriminator: 'supported_labels';
|
|
20281
20495
|
readonly values: io.flow.internal.v0.models.LabelAliases[];
|
|
20282
20496
|
}
|
|
20497
|
+
interface Surcharge {
|
|
20498
|
+
readonly amount?: number;
|
|
20499
|
+
readonly percentage?: number;
|
|
20500
|
+
readonly type: io.flow.internal.v0.enums.SurchargeType;
|
|
20501
|
+
}
|
|
20283
20502
|
interface SvbVirtualCardClearing {
|
|
20284
20503
|
readonly id: string;
|
|
20285
20504
|
readonly virtual_card_id: string;
|
|
@@ -20850,6 +21069,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20850
21069
|
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
20851
21070
|
readonly created_at: string;
|
|
20852
21071
|
}
|
|
21072
|
+
interface WashExportRequest {
|
|
21073
|
+
readonly url: string;
|
|
21074
|
+
}
|
|
20853
21075
|
interface WasteElectricalAndElectronicEquipmentComplianceData {
|
|
20854
21076
|
readonly discriminator: 'weee';
|
|
20855
21077
|
readonly label: string;
|
|
@@ -20969,7 +21191,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
20969
21191
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
20970
21192
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
20971
21193
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
20972
|
-
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.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentDeleted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | 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.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.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.HarmonizationClassificationStatisticsPublished | 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.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted | io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted | 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.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.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;
|
|
21194
|
+
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.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentDeleted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.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.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.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.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | 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.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.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;
|
|
20973
21195
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
20974
21196
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
20975
21197
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -21259,7 +21481,9 @@ export declare type CatalogSettingsDeleted = io.flow.internal.v0.models.CatalogS
|
|
|
21259
21481
|
export declare type CatalogSettingsPutForm = io.flow.internal.v0.models.CatalogSettingsPutForm;
|
|
21260
21482
|
export declare type CatalogSettingsUpserted = io.flow.internal.v0.models.CatalogSettingsUpserted;
|
|
21261
21483
|
export declare type CenterDefaults = io.flow.internal.v0.models.CenterDefaults;
|
|
21484
|
+
export declare type CenterDefaultsDeleted = io.flow.internal.v0.models.CenterDefaultsDeleted;
|
|
21262
21485
|
export declare type CenterDefaultsForm = io.flow.internal.v0.models.CenterDefaultsForm;
|
|
21486
|
+
export declare type CenterDefaultsUpserted = io.flow.internal.v0.models.CenterDefaultsUpserted;
|
|
21263
21487
|
export declare type CenterQueryBuilder = io.flow.internal.v0.models.CenterQueryBuilder;
|
|
21264
21488
|
export declare type ChangeSettingsIndexTask = io.flow.internal.v0.models.ChangeSettingsIndexTask;
|
|
21265
21489
|
export declare type ChannelAccount = io.flow.internal.v0.models.ChannelAccount;
|
|
@@ -21897,6 +22121,22 @@ export declare type CryptoAccountModificationForm = io.flow.internal.v0.models.C
|
|
|
21897
22121
|
export declare type CryptoAccountPutForm = io.flow.internal.v0.models.CryptoAccountPutForm;
|
|
21898
22122
|
export declare type CryptoAuthentication = io.flow.internal.v0.models.CryptoAuthentication;
|
|
21899
22123
|
export declare type CryptoAuthenticationForm = io.flow.internal.v0.models.CryptoAuthenticationForm;
|
|
22124
|
+
export declare type CsvActual = io.flow.internal.v0.models.CsvActual;
|
|
22125
|
+
export declare type CsvActualRatecard = io.flow.internal.v0.models.CsvActualRatecard;
|
|
22126
|
+
export declare type CsvDimensions = io.flow.internal.v0.models.CsvDimensions;
|
|
22127
|
+
export declare type CsvFlowRatecard = io.flow.internal.v0.models.CsvFlowRatecard;
|
|
22128
|
+
export declare type CsvFlowRatecardSurcharges = io.flow.internal.v0.models.CsvFlowRatecardSurcharges;
|
|
22129
|
+
export declare type CsvGlobalEProposition = io.flow.internal.v0.models.CsvGlobalEProposition;
|
|
22130
|
+
export declare type CsvGlobalEShippingMethod = io.flow.internal.v0.models.CsvGlobalEShippingMethod;
|
|
22131
|
+
export declare type CsvInput = io.flow.internal.v0.models.CsvInput;
|
|
22132
|
+
export declare type CsvLabel = io.flow.internal.v0.models.CsvLabel;
|
|
22133
|
+
export declare type CsvLabelCost = io.flow.internal.v0.models.CsvLabelCost;
|
|
22134
|
+
export declare type CsvOrder = io.flow.internal.v0.models.CsvOrder;
|
|
22135
|
+
export declare type CsvRecord = io.flow.internal.v0.models.CsvRecord;
|
|
22136
|
+
export declare type CsvServiceFee = io.flow.internal.v0.models.CsvServiceFee;
|
|
22137
|
+
export declare type CsvSurchargePercentage = io.flow.internal.v0.models.CsvSurchargePercentage;
|
|
22138
|
+
export declare type CsvSurcharges = io.flow.internal.v0.models.CsvSurcharges;
|
|
22139
|
+
export declare type CsvWeight = io.flow.internal.v0.models.CsvWeight;
|
|
21900
22140
|
export declare type CurrencyInternalRate = io.flow.internal.v0.models.CurrencyInternalRate;
|
|
21901
22141
|
export declare type CustomerPurgeUpserted = io.flow.internal.v0.models.CustomerPurgeUpserted;
|
|
21902
22142
|
export declare type CustomerSecret = io.flow.internal.v0.models.CustomerSecret;
|
|
@@ -22362,7 +22602,10 @@ export declare type LabelCreationJobSummary = io.flow.internal.v0.models.LabelCr
|
|
|
22362
22602
|
export declare type LabelCreationRequestForm = io.flow.internal.v0.models.LabelCreationRequestForm;
|
|
22363
22603
|
export declare type LabelCreationStatus = io.flow.internal.v0.enums.LabelCreationStatus;
|
|
22364
22604
|
export declare type LabelGenerationSettings = io.flow.internal.v0.models.LabelGenerationSettings;
|
|
22605
|
+
export declare type LabelGenerationSettingsDeleted = io.flow.internal.v0.models.LabelGenerationSettingsDeleted;
|
|
22365
22606
|
export declare type LabelGenerationSettingsForm = io.flow.internal.v0.models.LabelGenerationSettingsForm;
|
|
22607
|
+
export declare type LabelGenerationSettingsUpserted = io.flow.internal.v0.models.LabelGenerationSettingsUpserted;
|
|
22608
|
+
export declare type LabelInputSource = io.flow.internal.v0.enums.LabelInputSource;
|
|
22366
22609
|
export declare type LabelSummary = io.flow.internal.v0.models.LabelSummary;
|
|
22367
22610
|
export declare type LabelTaxonomy = io.flow.internal.v0.models.LabelTaxonomy;
|
|
22368
22611
|
export declare type LabelTrackingSummaryDeleted = io.flow.internal.v0.models.LabelTrackingSummaryDeleted;
|
|
@@ -22375,6 +22618,7 @@ export declare type LabeledContent = io.flow.internal.v0.models.LabeledContent;
|
|
|
22375
22618
|
export declare type LabelsPrediction = io.flow.internal.v0.models.LabelsPrediction;
|
|
22376
22619
|
export declare type LandedCostItem = io.flow.internal.v0.models.LandedCostItem;
|
|
22377
22620
|
export declare type Landmark = io.flow.internal.v0.models.Landmark;
|
|
22621
|
+
export declare type LaneReference = io.flow.internal.v0.models.LaneReference;
|
|
22378
22622
|
export declare type LevyRateSummary = io.flow.internal.v0.models.LevyRateSummary;
|
|
22379
22623
|
export declare type LevyRateSummaryUpserted = io.flow.internal.v0.models.LevyRateSummaryUpserted;
|
|
22380
22624
|
export declare type Liability = io.flow.internal.v0.models.Liability;
|
|
@@ -22423,8 +22667,10 @@ export declare type MainTransactionStatus = io.flow.internal.v0.enums.MainTransa
|
|
|
22423
22667
|
export declare type MainTransactionUpserted = io.flow.internal.v0.models.MainTransactionUpserted;
|
|
22424
22668
|
export declare type MainTransactionUpsertedV2 = io.flow.internal.v0.models.MainTransactionUpsertedV2;
|
|
22425
22669
|
export declare type ManualReviewRule = io.flow.internal.v0.models.ManualReviewRule;
|
|
22670
|
+
export declare type ManualReviewRuleDeleted = io.flow.internal.v0.models.ManualReviewRuleDeleted;
|
|
22426
22671
|
export declare type ManualReviewRuleForm = io.flow.internal.v0.models.ManualReviewRuleForm;
|
|
22427
22672
|
export declare type ManualReviewRuleStatus = io.flow.internal.v0.enums.ManualReviewRuleStatus;
|
|
22673
|
+
export declare type ManualReviewRuleUpserted = io.flow.internal.v0.models.ManualReviewRuleUpserted;
|
|
22428
22674
|
export declare type ManualTransaction = io.flow.internal.v0.models.ManualTransaction;
|
|
22429
22675
|
export declare type ManualTransactionCategory = io.flow.internal.v0.enums.ManualTransactionCategory;
|
|
22430
22676
|
export declare type ManualTransactionForm = io.flow.internal.v0.models.ManualTransactionForm;
|
|
@@ -22504,6 +22750,7 @@ export declare type OnboardingAuditThemeReport = io.flow.internal.v0.models.Onbo
|
|
|
22504
22750
|
export declare type OnboardingAutomationProcessState = io.flow.internal.v0.enums.OnboardingAutomationProcessState;
|
|
22505
22751
|
export declare type OnboardingAutomationTaskState = io.flow.internal.v0.enums.OnboardingAutomationTaskState;
|
|
22506
22752
|
export declare type OnboardingOrganization = io.flow.internal.v0.models.OnboardingOrganization;
|
|
22753
|
+
export declare type OnboardingStateForm = io.flow.internal.v0.models.OnboardingStateForm;
|
|
22507
22754
|
export declare type OneTimeTokenRedemptionForm = io.flow.internal.v0.models.OneTimeTokenRedemptionForm;
|
|
22508
22755
|
export declare type OnlineAuthorizationCompleted = io.flow.internal.v0.models.OnlineAuthorizationCompleted;
|
|
22509
22756
|
export declare type OptinAttribute = io.flow.internal.v0.models.OptinAttribute;
|
|
@@ -22577,10 +22824,8 @@ export declare type OrganizationPaymentSettingForm = io.flow.internal.v0.models.
|
|
|
22577
22824
|
export declare type OrganizationPaymentSettingUpserted = io.flow.internal.v0.models.OrganizationPaymentSettingUpserted;
|
|
22578
22825
|
export declare type OrganizationPaymentSettingVersion = io.flow.internal.v0.models.OrganizationPaymentSettingVersion;
|
|
22579
22826
|
export declare type OrganizationPaymentStatus = io.flow.internal.v0.enums.OrganizationPaymentStatus;
|
|
22580
|
-
export declare type
|
|
22581
|
-
export declare type OrganizationRestrictionApprovalDeleted = io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted;
|
|
22827
|
+
export declare type OrganizationReference = io.flow.internal.v0.models.OrganizationReference;
|
|
22582
22828
|
export declare type OrganizationRestrictionApprovalStatus = io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
22583
|
-
export declare type OrganizationRestrictionApprovalUpserted = io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted;
|
|
22584
22829
|
export declare type OrganizationRestrictionNoteForm = io.flow.internal.v0.models.OrganizationRestrictionNoteForm;
|
|
22585
22830
|
export declare type OrganizationRestrictionNoteType = io.flow.internal.v0.enums.OrganizationRestrictionNoteType;
|
|
22586
22831
|
export declare type OrganizationRestrictionRiskLevel = io.flow.internal.v0.enums.OrganizationRestrictionRiskLevel;
|
|
@@ -22590,7 +22835,9 @@ export declare type OrganizationRestrictionSnapshot = io.flow.internal.v0.models
|
|
|
22590
22835
|
export declare type OrganizationRestrictionSnapshotDeleted = io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted;
|
|
22591
22836
|
export declare type OrganizationRestrictionSnapshotUpserted = io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted;
|
|
22592
22837
|
export declare type OrganizationRestrictionStatus = io.flow.internal.v0.models.OrganizationRestrictionStatus;
|
|
22838
|
+
export declare type OrganizationRestrictionStatusDeleted = io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted;
|
|
22593
22839
|
export declare type OrganizationRestrictionStatusNote = io.flow.internal.v0.models.OrganizationRestrictionStatusNote;
|
|
22840
|
+
export declare type OrganizationRestrictionStatusUpserted = io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted;
|
|
22594
22841
|
export declare type OrganizationSettings = io.flow.internal.v0.models.OrganizationSettings;
|
|
22595
22842
|
export declare type OrganizationSettingsForm = io.flow.internal.v0.models.OrganizationSettingsForm;
|
|
22596
22843
|
export declare type OrganizationStatusChange = io.flow.internal.v0.models.OrganizationStatusChange;
|
|
@@ -22610,7 +22857,9 @@ export declare type PartnerMembershipVersion = io.flow.internal.v0.models.Partne
|
|
|
22610
22857
|
export declare type PartnerOrganizationAuthorization = io.flow.internal.v0.models.PartnerOrganizationAuthorization;
|
|
22611
22858
|
export declare type PartnerOrganizationAuthorizationForm = io.flow.internal.v0.models.PartnerOrganizationAuthorizationForm;
|
|
22612
22859
|
export declare type PartnerOrganizationSettings = io.flow.internal.v0.models.PartnerOrganizationSettings;
|
|
22860
|
+
export declare type PartnerOrganizationSettingsDeleted = io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted;
|
|
22613
22861
|
export declare type PartnerOrganizationSettingsForm = io.flow.internal.v0.models.PartnerOrganizationSettingsForm;
|
|
22862
|
+
export declare type PartnerOrganizationSettingsUpserted = io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted;
|
|
22614
22863
|
export declare type Passphrase = io.flow.internal.v0.models.Passphrase;
|
|
22615
22864
|
export declare type PassphraseForm = io.flow.internal.v0.models.PassphraseForm;
|
|
22616
22865
|
export declare type PassphraseSummary = io.flow.internal.v0.models.PassphraseSummary;
|
|
@@ -22837,6 +23086,7 @@ export declare type SessionCountryStatus = io.flow.internal.v0.enums.SessionCoun
|
|
|
22837
23086
|
export declare type SessionOrderData = io.flow.internal.v0.models.SessionOrderData;
|
|
22838
23087
|
export declare type SessionRollout = io.flow.internal.v0.models.SessionRollout;
|
|
22839
23088
|
export declare type SessionRolloutForm = io.flow.internal.v0.models.SessionRolloutForm;
|
|
23089
|
+
export declare type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
|
|
22840
23090
|
export declare type SfExpress = io.flow.internal.v0.models.SfExpress;
|
|
22841
23091
|
export declare type ShippedItemValue = io.flow.internal.v0.models.ShippedItemValue;
|
|
22842
23092
|
export declare type ShipperAccountInfoForm = io.flow.internal.v0.models.ShipperAccountInfoForm;
|
|
@@ -22876,6 +23126,8 @@ export declare type ShopifyMarketsSubsidiaryCompany = io.flow.internal.v0.models
|
|
|
22876
23126
|
export declare type ShopifyMarketsSync = io.flow.internal.v0.models.ShopifyMarketsSync;
|
|
22877
23127
|
export declare type ShopifyMarketsTradeSector = io.flow.internal.v0.enums.ShopifyMarketsTradeSector;
|
|
22878
23128
|
export declare type ShopifyMarketsWebhookRegistration = io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
23129
|
+
export declare type ShopifyMarketsWebhookRegistrationDeleted = io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted;
|
|
23130
|
+
export declare type ShopifyMarketsWebhookRegistrationUpserted = io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted;
|
|
22879
23131
|
export declare type ShopifyMetadata = io.flow.internal.v0.models.ShopifyMetadata;
|
|
22880
23132
|
export declare type ShopifyMonitoringCarrierService = io.flow.internal.v0.models.ShopifyMonitoringCarrierService;
|
|
22881
23133
|
export declare type ShopifyMonitoringFulfillmentExternal = io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal;
|
|
@@ -22997,6 +23249,8 @@ export declare type SubscriptionFrequency = io.flow.internal.v0.enums.Subscripti
|
|
|
22997
23249
|
export declare type SubscriptionTransaction = io.flow.internal.v0.models.SubscriptionTransaction;
|
|
22998
23250
|
export declare type SuggestionAction = io.flow.internal.v0.enums.SuggestionAction;
|
|
22999
23251
|
export declare type SupportedLabels = io.flow.internal.v0.models.SupportedLabels;
|
|
23252
|
+
export declare type Surcharge = io.flow.internal.v0.models.Surcharge;
|
|
23253
|
+
export declare type SurchargeType = io.flow.internal.v0.enums.SurchargeType;
|
|
23000
23254
|
export declare type SvbVirtualCardClearing = io.flow.internal.v0.models.SvbVirtualCardClearing;
|
|
23001
23255
|
export declare type SvbVirtualCardClearingDeleted = io.flow.internal.v0.models.SvbVirtualCardClearingDeleted;
|
|
23002
23256
|
export declare type SvbVirtualCardClearingUpserted = io.flow.internal.v0.models.SvbVirtualCardClearingUpserted;
|
|
@@ -23104,6 +23358,7 @@ export declare type VirtualCardProvider = io.flow.internal.v0.models.VirtualCard
|
|
|
23104
23358
|
export declare type VirtualCardProviderDeleted = io.flow.internal.v0.models.VirtualCardProviderDeleted;
|
|
23105
23359
|
export declare type VirtualCardProviderUpserted = io.flow.internal.v0.models.VirtualCardProviderUpserted;
|
|
23106
23360
|
export declare type VirtualCardTransaction = io.flow.internal.v0.models.VirtualCardTransaction;
|
|
23361
|
+
export declare type WashExportRequest = io.flow.internal.v0.models.WashExportRequest;
|
|
23107
23362
|
export declare type WasteElectricalAndElectronicEquipmentComplianceData = io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceData;
|
|
23108
23363
|
export declare type WasteElectricalAndElectronicEquipmentComplianceForm = io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceForm;
|
|
23109
23364
|
export declare type Webhook = io.flow.internal.v0.models.Webhook;
|