@flowio/api-internal-prop-types 9.24.57 → 9.24.59
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/lib/api-internal.d.ts +317 -29
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +317 -29
- package/src/api-internal.js +705 -390
package/lib/api-internal.d.ts
CHANGED
|
@@ -1438,6 +1438,16 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1438
1438
|
readonly 'viewport': io.flow.payment.v0.enums.ThreedsTwoChallengeViewport;
|
|
1439
1439
|
}
|
|
1440
1440
|
|
|
1441
|
+
interface CardConfirmationSummary {
|
|
1442
|
+
readonly 'discriminator': 'card_confirmation_summary';
|
|
1443
|
+
readonly 'type'?: io.flow.payment.v0.enums.CardType;
|
|
1444
|
+
readonly 'funding_type'?: string;
|
|
1445
|
+
readonly 'expiration'?: io.flow.payment.v0.models.Expiration;
|
|
1446
|
+
readonly 'iin'?: string;
|
|
1447
|
+
readonly 'issuer'?: io.flow.payment.v0.models.IssuerSummary;
|
|
1448
|
+
readonly 'last4'?: string;
|
|
1449
|
+
}
|
|
1450
|
+
|
|
1441
1451
|
interface CardError {
|
|
1442
1452
|
readonly 'code': io.flow.payment.v0.enums.CardErrorCode;
|
|
1443
1453
|
readonly 'messages': string[];
|
|
@@ -2078,7 +2088,7 @@ declare namespace io.flow.payment.v0.unions {
|
|
|
2078
2088
|
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);
|
|
2079
2089
|
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);
|
|
2080
2090
|
type BrowserActionConfiguration = (io.flow.payment.v0.models.CardBrowserActionConfiguration);
|
|
2081
|
-
type ConfirmationDetails = (io.flow.payment.v0.models.DirectDebit);
|
|
2091
|
+
type ConfirmationDetails = (io.flow.payment.v0.models.DirectDebit | io.flow.payment.v0.models.CardConfirmationSummary);
|
|
2082
2092
|
type ExpandableCard = (io.flow.payment.v0.models.Card | io.flow.payment.v0.models.CardReference | io.flow.payment.v0.models.CardSummary);
|
|
2083
2093
|
type ExpandablePaymentProcessor = (io.flow.payment.v0.models.PaymentProcessor | io.flow.payment.v0.models.PaymentProcessorReference);
|
|
2084
2094
|
type GatewayAuthenticationData = (io.flow.payment.v0.models.StripeAuthenticationData);
|
|
@@ -3098,7 +3108,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
3098
3108
|
readonly 'order_identifier'?: string;
|
|
3099
3109
|
readonly 'fulfillment_key'?: string;
|
|
3100
3110
|
readonly 'shipment_recipient'?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
3101
|
-
readonly 'updated_at'
|
|
3111
|
+
readonly 'updated_at'?: string;
|
|
3102
3112
|
}
|
|
3103
3113
|
|
|
3104
3114
|
interface ShippingNotificationVersion {
|
|
@@ -4229,6 +4239,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4229
4239
|
readonly 'threeDOfferedResponse'?: string;
|
|
4230
4240
|
readonly 'threeDSVersion'?: string;
|
|
4231
4241
|
readonly 'eci'?: string;
|
|
4242
|
+
readonly 'cavv'?: string;
|
|
4232
4243
|
readonly 'scaExemptionRequested'?: string;
|
|
4233
4244
|
readonly 'paymentMethod'?: string;
|
|
4234
4245
|
readonly 'paymentMethodVariant'?: string;
|
|
@@ -4244,6 +4255,9 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4244
4255
|
readonly 'issuerBin'?: string;
|
|
4245
4256
|
readonly 'cardSummary'?: string;
|
|
4246
4257
|
readonly 'untokenisedCardSummary'?: string;
|
|
4258
|
+
readonly 'expiryDate'?: string;
|
|
4259
|
+
readonly 'cardHolderName'?: string;
|
|
4260
|
+
readonly 'fundingSource'?: string;
|
|
4247
4261
|
readonly 'ownerName'?: string;
|
|
4248
4262
|
readonly 'bankName'?: string;
|
|
4249
4263
|
readonly 'issuerCountry'?: string;
|
|
@@ -6484,6 +6498,11 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
6484
6498
|
readonly 'authorizations': io.flow.payment.gateway.v0.models.PaymentAuthorization[];
|
|
6485
6499
|
}
|
|
6486
6500
|
|
|
6501
|
+
interface PaymentMethodActionCancellation {
|
|
6502
|
+
readonly 'reason_code'?: io.flow.payment.gateway.v0.enums.PaymentFailureCode;
|
|
6503
|
+
readonly 'data'?: any/*object*/;
|
|
6504
|
+
}
|
|
6505
|
+
|
|
6487
6506
|
interface PaymentMethodBrand {
|
|
6488
6507
|
readonly 'id': string;
|
|
6489
6508
|
readonly 'name': string;
|
|
@@ -6841,7 +6860,7 @@ declare namespace io.flow.partner.v0.enums {
|
|
|
6841
6860
|
declare namespace io.flow.partner.v0.models {
|
|
6842
6861
|
interface BridgeHub {
|
|
6843
6862
|
readonly 'hub_code': string;
|
|
6844
|
-
readonly 'address'
|
|
6863
|
+
readonly 'address': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
6845
6864
|
}
|
|
6846
6865
|
|
|
6847
6866
|
interface BridgeLabelForm {
|
|
@@ -9637,6 +9656,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
9637
9656
|
}
|
|
9638
9657
|
|
|
9639
9658
|
interface CatalogStatistics {
|
|
9659
|
+
readonly 'id': string;
|
|
9640
9660
|
readonly 'items': number;
|
|
9641
9661
|
readonly 'categories': number;
|
|
9642
9662
|
}
|
|
@@ -12161,7 +12181,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12161
12181
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
12162
12182
|
type EmptyAttribute = 'irrelevant';
|
|
12163
12183
|
type ErpFileType = 'vendor';
|
|
12164
|
-
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' | '
|
|
12184
|
+
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';
|
|
12165
12185
|
type ExperienceImportType = 'experience_with_settings';
|
|
12166
12186
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
12167
12187
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -12193,6 +12213,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12193
12213
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
12194
12214
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
12195
12215
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
12216
|
+
type LabelInputSource = 'estimate';
|
|
12196
12217
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
12197
12218
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
12198
12219
|
type MainTransactionStatus = 'scheduled' | 'pending_proof';
|
|
@@ -12282,6 +12303,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12282
12303
|
type Status = 'draft' | 'scheduled' | 'live' | 'ended' | 'archived';
|
|
12283
12304
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
12284
12305
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
12306
|
+
type SurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid';
|
|
12285
12307
|
type TariffEligibilityType = 'rex';
|
|
12286
12308
|
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'label_generation_settings' | 'ratecard' | 'logistics_center' | 'center_defaults';
|
|
12287
12309
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
@@ -13302,6 +13324,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13302
13324
|
readonly 'label': io.flow.common.v0.models.Price;
|
|
13303
13325
|
readonly 'order': io.flow.common.v0.models.Price;
|
|
13304
13326
|
readonly 'channel_billed': io.flow.common.v0.models.Price;
|
|
13327
|
+
readonly 'tax': io.flow.common.v0.models.Price;
|
|
13328
|
+
readonly 'duty': io.flow.common.v0.models.Price;
|
|
13305
13329
|
readonly 'ending_balance': io.flow.common.v0.models.Price;
|
|
13306
13330
|
}
|
|
13307
13331
|
|
|
@@ -13755,15 +13779,32 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13755
13779
|
}
|
|
13756
13780
|
|
|
13757
13781
|
interface CenterDefaults {
|
|
13782
|
+
readonly 'id': string;
|
|
13758
13783
|
readonly 'packaging': io.flow.fulfillment.v0.models.Packaging[];
|
|
13759
13784
|
readonly 'shipping_address_contact': io.flow.common.v0.models.Contact;
|
|
13760
13785
|
}
|
|
13761
13786
|
|
|
13787
|
+
interface CenterDefaultsDeleted {
|
|
13788
|
+
readonly 'discriminator': 'center_defaults_deleted';
|
|
13789
|
+
readonly 'event_id': string;
|
|
13790
|
+
readonly 'timestamp': string;
|
|
13791
|
+
readonly 'organization': string;
|
|
13792
|
+
readonly 'id': string;
|
|
13793
|
+
}
|
|
13794
|
+
|
|
13762
13795
|
interface CenterDefaultsForm {
|
|
13763
13796
|
readonly 'packaging': io.flow.fulfillment.v0.models.Packaging[];
|
|
13764
13797
|
readonly 'shipping_address_contact': io.flow.common.v0.models.Contact;
|
|
13765
13798
|
}
|
|
13766
13799
|
|
|
13800
|
+
interface CenterDefaultsUpserted {
|
|
13801
|
+
readonly 'discriminator': 'center_defaults_upserted';
|
|
13802
|
+
readonly 'event_id': string;
|
|
13803
|
+
readonly 'timestamp': string;
|
|
13804
|
+
readonly 'organization': string;
|
|
13805
|
+
readonly 'center_defaults': io.flow.internal.v0.models.CenterDefaults;
|
|
13806
|
+
}
|
|
13807
|
+
|
|
13767
13808
|
interface CenterQueryBuilder {
|
|
13768
13809
|
readonly 'placeholder': string;
|
|
13769
13810
|
}
|
|
@@ -16482,6 +16523,130 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16482
16523
|
readonly 'signature_secret': string;
|
|
16483
16524
|
}
|
|
16484
16525
|
|
|
16526
|
+
interface CsvActual {
|
|
16527
|
+
readonly 'id': string;
|
|
16528
|
+
readonly 'currency': string;
|
|
16529
|
+
readonly 'base_amount': number;
|
|
16530
|
+
readonly 'surcharges': io.flow.internal.v0.models.CsvSurcharges;
|
|
16531
|
+
readonly 'total': number;
|
|
16532
|
+
readonly 'weight_unit': io.flow.common.v0.enums.UnitOfMeasurement;
|
|
16533
|
+
readonly 'weight': number;
|
|
16534
|
+
readonly 'ratecard': io.flow.internal.v0.models.CsvActualRatecard;
|
|
16535
|
+
}
|
|
16536
|
+
|
|
16537
|
+
interface CsvActualRatecard {
|
|
16538
|
+
readonly 'base_amount'?: number;
|
|
16539
|
+
}
|
|
16540
|
+
|
|
16541
|
+
interface CsvDimensions {
|
|
16542
|
+
readonly 'unit': io.flow.common.v0.enums.UnitOfMeasurement;
|
|
16543
|
+
readonly 'length': number;
|
|
16544
|
+
readonly 'width': number;
|
|
16545
|
+
readonly 'depth': number;
|
|
16546
|
+
}
|
|
16547
|
+
|
|
16548
|
+
interface CsvFlowRatecard {
|
|
16549
|
+
readonly 'id': string;
|
|
16550
|
+
readonly 'number': string;
|
|
16551
|
+
readonly 'owner': io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
16552
|
+
readonly 'lane': io.flow.internal.v0.models.LaneReference;
|
|
16553
|
+
readonly 'dim_factor': number;
|
|
16554
|
+
readonly 'surcharges': io.flow.internal.v0.models.CsvFlowRatecardSurcharges;
|
|
16555
|
+
readonly 'base_amount'?: number;
|
|
16556
|
+
}
|
|
16557
|
+
|
|
16558
|
+
interface CsvFlowRatecardSurcharges {
|
|
16559
|
+
readonly 'fuel'?: io.flow.internal.v0.models.CsvServiceFee;
|
|
16560
|
+
readonly 'remote_area'?: io.flow.internal.v0.models.CsvServiceFee;
|
|
16561
|
+
readonly 'oversize'?: io.flow.internal.v0.models.CsvServiceFee;
|
|
16562
|
+
readonly 'duties_paid'?: io.flow.internal.v0.models.CsvServiceFee;
|
|
16563
|
+
}
|
|
16564
|
+
|
|
16565
|
+
interface CsvGlobalEProposition {
|
|
16566
|
+
readonly 'name': string;
|
|
16567
|
+
}
|
|
16568
|
+
|
|
16569
|
+
interface CsvGlobalEShippingMethod {
|
|
16570
|
+
readonly 'id': string;
|
|
16571
|
+
readonly 'proposition': io.flow.internal.v0.models.CsvGlobalEProposition;
|
|
16572
|
+
}
|
|
16573
|
+
|
|
16574
|
+
interface CsvInput {
|
|
16575
|
+
readonly 'id': string;
|
|
16576
|
+
readonly 'source': io.flow.internal.v0.enums.LabelInputSource;
|
|
16577
|
+
readonly 'currency': string;
|
|
16578
|
+
readonly 'base_amount': number;
|
|
16579
|
+
readonly 'surcharges': io.flow.internal.v0.models.CsvSurcharges;
|
|
16580
|
+
readonly 'total': number;
|
|
16581
|
+
readonly 'weight_unit': io.flow.common.v0.enums.UnitOfMeasurement;
|
|
16582
|
+
readonly 'weight': number;
|
|
16583
|
+
}
|
|
16584
|
+
|
|
16585
|
+
interface CsvLabel {
|
|
16586
|
+
readonly 'id': string;
|
|
16587
|
+
readonly 'cost': io.flow.internal.v0.models.CsvLabelCost;
|
|
16588
|
+
readonly 'created_at': string;
|
|
16589
|
+
readonly 'request_method'?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
16590
|
+
readonly 'trigger_method'?: io.flow.label.v0.enums.LabelTriggerMethod;
|
|
16591
|
+
}
|
|
16592
|
+
|
|
16593
|
+
interface CsvLabelCost {
|
|
16594
|
+
readonly 'amount': number;
|
|
16595
|
+
readonly 'currency': string;
|
|
16596
|
+
readonly 'source': io.flow.label.v0.enums.CostEstimateSource;
|
|
16597
|
+
}
|
|
16598
|
+
|
|
16599
|
+
interface CsvOrder {
|
|
16600
|
+
readonly 'organization': io.flow.internal.v0.models.OrganizationReference;
|
|
16601
|
+
readonly 'number': string;
|
|
16602
|
+
readonly 'destination': io.flow.experience.v0.models.OrderAddress;
|
|
16603
|
+
readonly 'delivered_duty': io.flow.common.v0.enums.DeliveredDuty;
|
|
16604
|
+
readonly 'tax': io.flow.common.v0.models.Money;
|
|
16605
|
+
readonly 'duty': io.flow.common.v0.models.Money;
|
|
16606
|
+
readonly 'total': io.flow.common.v0.models.Money;
|
|
16607
|
+
readonly 'number_items': number;
|
|
16608
|
+
}
|
|
16609
|
+
|
|
16610
|
+
interface CsvRecord {
|
|
16611
|
+
readonly 'label': io.flow.internal.v0.models.CsvLabel;
|
|
16612
|
+
readonly 'carrier_service_id': string;
|
|
16613
|
+
readonly 'carrier_tracking_number': string;
|
|
16614
|
+
readonly 'order': io.flow.internal.v0.models.CsvOrder;
|
|
16615
|
+
readonly 'flow_ratecard': io.flow.internal.v0.models.CsvFlowRatecard;
|
|
16616
|
+
readonly 'global_e_shipping_method'?: io.flow.internal.v0.models.CsvGlobalEShippingMethod;
|
|
16617
|
+
readonly 'weight': io.flow.internal.v0.models.CsvWeight;
|
|
16618
|
+
readonly 'dimensions': io.flow.internal.v0.models.CsvDimensions;
|
|
16619
|
+
readonly 'input'?: io.flow.internal.v0.models.CsvInput;
|
|
16620
|
+
readonly 'actual'?: io.flow.internal.v0.models.CsvActual;
|
|
16621
|
+
readonly 'deltas'?: string[];
|
|
16622
|
+
readonly 'outliers'?: string[];
|
|
16623
|
+
}
|
|
16624
|
+
|
|
16625
|
+
interface CsvServiceFee {
|
|
16626
|
+
readonly 'amount'?: number;
|
|
16627
|
+
readonly 'currency'?: string;
|
|
16628
|
+
readonly 'percentage'?: number;
|
|
16629
|
+
}
|
|
16630
|
+
|
|
16631
|
+
interface CsvSurchargePercentage {
|
|
16632
|
+
readonly 'percentage': number;
|
|
16633
|
+
readonly 'amount': number;
|
|
16634
|
+
}
|
|
16635
|
+
|
|
16636
|
+
interface CsvSurcharges {
|
|
16637
|
+
readonly 'fuel': io.flow.internal.v0.models.CsvSurchargePercentage;
|
|
16638
|
+
readonly 'remote_area': number;
|
|
16639
|
+
readonly 'oversize': number;
|
|
16640
|
+
readonly 'duties_paid': number;
|
|
16641
|
+
}
|
|
16642
|
+
|
|
16643
|
+
interface CsvWeight {
|
|
16644
|
+
readonly 'unit': io.flow.common.v0.enums.UnitOfMeasurement;
|
|
16645
|
+
readonly 'provided': number;
|
|
16646
|
+
readonly 'dimensional': number;
|
|
16647
|
+
readonly 'lookup': number;
|
|
16648
|
+
}
|
|
16649
|
+
|
|
16485
16650
|
interface CurrencyInternalRate {
|
|
16486
16651
|
readonly 'id': string;
|
|
16487
16652
|
readonly 'organization_id': string;
|
|
@@ -19622,12 +19787,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19622
19787
|
readonly 'commercial_invoice_only_query'?: string;
|
|
19623
19788
|
}
|
|
19624
19789
|
|
|
19790
|
+
interface LabelGenerationSettingsDeleted {
|
|
19791
|
+
readonly 'discriminator': 'label_generation_settings_deleted';
|
|
19792
|
+
readonly 'event_id': string;
|
|
19793
|
+
readonly 'timestamp': string;
|
|
19794
|
+
readonly 'organization': string;
|
|
19795
|
+
readonly 'id': string;
|
|
19796
|
+
}
|
|
19797
|
+
|
|
19625
19798
|
interface LabelGenerationSettingsForm {
|
|
19626
19799
|
readonly 'item_identifier'?: string;
|
|
19627
19800
|
readonly 'auto_generate_query'?: string;
|
|
19628
19801
|
readonly 'commercial_invoice_only_query'?: string;
|
|
19629
19802
|
}
|
|
19630
19803
|
|
|
19804
|
+
interface LabelGenerationSettingsUpserted {
|
|
19805
|
+
readonly 'discriminator': 'label_generation_settings_upserted';
|
|
19806
|
+
readonly 'event_id': string;
|
|
19807
|
+
readonly 'timestamp': string;
|
|
19808
|
+
readonly 'organization': string;
|
|
19809
|
+
readonly 'label_generation_settings': io.flow.internal.v0.models.LabelGenerationSettings;
|
|
19810
|
+
}
|
|
19811
|
+
|
|
19631
19812
|
interface LabelSummary {
|
|
19632
19813
|
readonly 'id': string;
|
|
19633
19814
|
readonly 'commercial_invoice'?: string;
|
|
@@ -19722,6 +19903,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19722
19903
|
readonly 'region': string;
|
|
19723
19904
|
}
|
|
19724
19905
|
|
|
19906
|
+
interface LaneReference {
|
|
19907
|
+
readonly 'id': string;
|
|
19908
|
+
}
|
|
19909
|
+
|
|
19725
19910
|
interface LevyRateSummary {
|
|
19726
19911
|
readonly 'id': string;
|
|
19727
19912
|
readonly 'number': string;
|
|
@@ -20060,18 +20245,35 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20060
20245
|
}
|
|
20061
20246
|
|
|
20062
20247
|
interface ManualReviewRule {
|
|
20248
|
+
readonly 'id': string;
|
|
20063
20249
|
readonly 'responsible_party': io.flow.internal.v0.enums.FraudReviewResponsibleParty;
|
|
20064
20250
|
readonly 'status': io.flow.internal.v0.enums.ManualReviewRuleStatus;
|
|
20065
20251
|
readonly 'duration': io.flow.common.v0.models.Duration;
|
|
20066
20252
|
readonly 'emails': string[];
|
|
20067
20253
|
}
|
|
20068
20254
|
|
|
20255
|
+
interface ManualReviewRuleDeleted {
|
|
20256
|
+
readonly 'discriminator': 'manual_review_rule_deleted';
|
|
20257
|
+
readonly 'event_id': string;
|
|
20258
|
+
readonly 'timestamp': string;
|
|
20259
|
+
readonly 'organization': string;
|
|
20260
|
+
readonly 'id': string;
|
|
20261
|
+
}
|
|
20262
|
+
|
|
20069
20263
|
interface ManualReviewRuleForm {
|
|
20070
20264
|
readonly 'status': io.flow.internal.v0.enums.ManualReviewRuleStatus;
|
|
20071
20265
|
readonly 'duration': io.flow.common.v0.models.Duration;
|
|
20072
20266
|
readonly 'emails': string[];
|
|
20073
20267
|
}
|
|
20074
20268
|
|
|
20269
|
+
interface ManualReviewRuleUpserted {
|
|
20270
|
+
readonly 'discriminator': 'manual_review_rule_upserted';
|
|
20271
|
+
readonly 'event_id': string;
|
|
20272
|
+
readonly 'timestamp': string;
|
|
20273
|
+
readonly 'organization': string;
|
|
20274
|
+
readonly 'rule': io.flow.internal.v0.models.ManualReviewRule;
|
|
20275
|
+
}
|
|
20276
|
+
|
|
20075
20277
|
interface ManualTransaction {
|
|
20076
20278
|
readonly 'discriminator': 'manual_transaction';
|
|
20077
20279
|
readonly 'category'?: io.flow.internal.v0.enums.ManualTransactionCategory;
|
|
@@ -20464,6 +20666,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20464
20666
|
readonly 'health_score': number;
|
|
20465
20667
|
}
|
|
20466
20668
|
|
|
20669
|
+
interface OnboardingStateForm {
|
|
20670
|
+
readonly 'onboarding_state': io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
20671
|
+
readonly 'transitioned_at': string;
|
|
20672
|
+
}
|
|
20673
|
+
|
|
20467
20674
|
interface OneTimeTokenRedemptionForm {
|
|
20468
20675
|
readonly 'token': string;
|
|
20469
20676
|
}
|
|
@@ -20892,6 +21099,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20892
21099
|
}
|
|
20893
21100
|
|
|
20894
21101
|
interface OrganizationPaymentSetting {
|
|
21102
|
+
readonly 'id': string;
|
|
20895
21103
|
readonly 'organization_id': string;
|
|
20896
21104
|
readonly 'default_capture_option': io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
|
|
20897
21105
|
readonly 'status': io.flow.internal.v0.enums.OrganizationPaymentStatus;
|
|
@@ -20934,27 +21142,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20934
21142
|
readonly 'organization_payment_setting': io.flow.internal.v0.models.OrganizationPaymentSetting;
|
|
20935
21143
|
}
|
|
20936
21144
|
|
|
20937
|
-
interface
|
|
21145
|
+
interface OrganizationReference {
|
|
20938
21146
|
readonly 'id': string;
|
|
20939
|
-
readonly 'status': io.flow.internal.v0.models.OrganizationRestrictionStatus;
|
|
20940
|
-
readonly 'reason'?: string;
|
|
20941
|
-
readonly 'updated_at': string;
|
|
20942
|
-
}
|
|
20943
|
-
|
|
20944
|
-
interface OrganizationRestrictionApprovalDeleted {
|
|
20945
|
-
readonly 'discriminator': 'organization_restriction_approval_deleted';
|
|
20946
|
-
readonly 'event_id': string;
|
|
20947
|
-
readonly 'timestamp': string;
|
|
20948
|
-
readonly 'organization': string;
|
|
20949
|
-
readonly 'organization_restriction_approval': io.flow.internal.v0.models.OrganizationRestrictionApproval;
|
|
20950
|
-
}
|
|
20951
|
-
|
|
20952
|
-
interface OrganizationRestrictionApprovalUpserted {
|
|
20953
|
-
readonly 'discriminator': 'organization_restriction_approval_upserted';
|
|
20954
|
-
readonly 'event_id': string;
|
|
20955
|
-
readonly 'timestamp': string;
|
|
20956
|
-
readonly 'organization': string;
|
|
20957
|
-
readonly 'organization_restriction_approval': io.flow.internal.v0.models.OrganizationRestrictionApproval;
|
|
20958
21147
|
}
|
|
20959
21148
|
|
|
20960
21149
|
interface OrganizationRestrictionNoteForm {
|
|
@@ -21010,6 +21199,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21010
21199
|
readonly 'selective_review_end_date'?: string;
|
|
21011
21200
|
readonly 'full_review_start_date'?: string;
|
|
21012
21201
|
readonly 'full_review_end_date'?: string;
|
|
21202
|
+
readonly 'merchant_category_code'?: string;
|
|
21203
|
+
readonly 'reason'?: string;
|
|
21204
|
+
readonly 'updated_at': string;
|
|
21205
|
+
}
|
|
21206
|
+
|
|
21207
|
+
interface OrganizationRestrictionStatusDeleted {
|
|
21208
|
+
readonly 'discriminator': 'organization_restriction_status_deleted';
|
|
21209
|
+
readonly 'event_id': string;
|
|
21210
|
+
readonly 'timestamp': string;
|
|
21211
|
+
readonly 'id': string;
|
|
21013
21212
|
}
|
|
21014
21213
|
|
|
21015
21214
|
interface OrganizationRestrictionStatusNote {
|
|
@@ -21021,6 +21220,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21021
21220
|
readonly 'updated_at': string;
|
|
21022
21221
|
}
|
|
21023
21222
|
|
|
21223
|
+
interface OrganizationRestrictionStatusUpserted {
|
|
21224
|
+
readonly 'discriminator': 'organization_restriction_status_upserted';
|
|
21225
|
+
readonly 'event_id': string;
|
|
21226
|
+
readonly 'timestamp': string;
|
|
21227
|
+
readonly 'organization_restriction_status': io.flow.internal.v0.models.OrganizationRestrictionStatus;
|
|
21228
|
+
}
|
|
21229
|
+
|
|
21024
21230
|
interface OrganizationSettings {
|
|
21025
21231
|
readonly 'default_currency_format_symbol': io.flow.common.v0.enums.CurrencySymbolFormat;
|
|
21026
21232
|
readonly 'default_currency_label_formatters': io.flow.common.v0.enums.CurrencyLabelFormatter[];
|
|
@@ -21041,7 +21247,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21041
21247
|
|
|
21042
21248
|
interface OrganizationStatusChange {
|
|
21043
21249
|
readonly 'id': string;
|
|
21044
|
-
readonly 'organization': string;
|
|
21045
21250
|
readonly 'previous_status'?: io.flow.common.v0.enums.OrganizationStatus;
|
|
21046
21251
|
readonly 'status': io.flow.common.v0.enums.OrganizationStatus;
|
|
21047
21252
|
readonly 'status_set_at': string;
|
|
@@ -21051,6 +21256,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21051
21256
|
readonly 'discriminator': 'organization_status_change_deleted';
|
|
21052
21257
|
readonly 'event_id': string;
|
|
21053
21258
|
readonly 'timestamp': string;
|
|
21259
|
+
readonly 'organization': string;
|
|
21054
21260
|
readonly 'id': string;
|
|
21055
21261
|
}
|
|
21056
21262
|
|
|
@@ -21058,6 +21264,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21058
21264
|
readonly 'discriminator': 'organization_status_change_upserted';
|
|
21059
21265
|
readonly 'event_id': string;
|
|
21060
21266
|
readonly 'timestamp': string;
|
|
21267
|
+
readonly 'organization': string;
|
|
21061
21268
|
readonly 'organization_status_change': io.flow.internal.v0.models.OrganizationStatusChange;
|
|
21062
21269
|
}
|
|
21063
21270
|
|
|
@@ -21123,15 +21330,32 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21123
21330
|
}
|
|
21124
21331
|
|
|
21125
21332
|
interface PartnerOrganizationSettings {
|
|
21333
|
+
readonly 'id': string;
|
|
21126
21334
|
readonly 'label_format': io.flow.partner.v0.enums.LabelFormat;
|
|
21127
21335
|
readonly 'glbe_merchant_guid': string;
|
|
21128
21336
|
}
|
|
21129
21337
|
|
|
21338
|
+
interface PartnerOrganizationSettingsDeleted {
|
|
21339
|
+
readonly 'discriminator': 'partner_organization_settings_deleted';
|
|
21340
|
+
readonly 'event_id': string;
|
|
21341
|
+
readonly 'timestamp': string;
|
|
21342
|
+
readonly 'organization': string;
|
|
21343
|
+
readonly 'id': string;
|
|
21344
|
+
}
|
|
21345
|
+
|
|
21130
21346
|
interface PartnerOrganizationSettingsForm {
|
|
21131
21347
|
readonly 'label_format': io.flow.partner.v0.enums.LabelFormat;
|
|
21132
21348
|
readonly 'glbe_merchant_guid'?: string;
|
|
21133
21349
|
}
|
|
21134
21350
|
|
|
21351
|
+
interface PartnerOrganizationSettingsUpserted {
|
|
21352
|
+
readonly 'discriminator': 'partner_organization_settings_upserted';
|
|
21353
|
+
readonly 'event_id': string;
|
|
21354
|
+
readonly 'timestamp': string;
|
|
21355
|
+
readonly 'organization': string;
|
|
21356
|
+
readonly 'partner_organization_settings': io.flow.internal.v0.models.PartnerOrganizationSettings;
|
|
21357
|
+
}
|
|
21358
|
+
|
|
21135
21359
|
interface Passphrase {
|
|
21136
21360
|
readonly 'id': string;
|
|
21137
21361
|
readonly 'tribe': io.flow.internal.v0.models.Tribe;
|
|
@@ -22521,6 +22745,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22521
22745
|
readonly 'percent': number;
|
|
22522
22746
|
}
|
|
22523
22747
|
|
|
22748
|
+
interface SetupBlockPutForm {
|
|
22749
|
+
readonly 'reasons': io.flow.organization.onboarding.state.v0.enums.OnboardingBlockedReason[];
|
|
22750
|
+
}
|
|
22751
|
+
|
|
22524
22752
|
interface SfExpress {
|
|
22525
22753
|
readonly 'discriminator': 'sf_express';
|
|
22526
22754
|
readonly 'checkword': string;
|
|
@@ -22740,9 +22968,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22740
22968
|
}
|
|
22741
22969
|
|
|
22742
22970
|
interface ShopifyMarketsWebhookRegistration {
|
|
22971
|
+
readonly 'id': string;
|
|
22743
22972
|
readonly 'response': io.flow.shopify.markets.v0.models.ShopifyWebhookResponse;
|
|
22744
22973
|
}
|
|
22745
22974
|
|
|
22975
|
+
interface ShopifyMarketsWebhookRegistrationDeleted {
|
|
22976
|
+
readonly 'discriminator': 'shopify_markets_webhook_registration_deleted';
|
|
22977
|
+
readonly 'event_id': string;
|
|
22978
|
+
readonly 'timestamp': string;
|
|
22979
|
+
readonly 'organization': string;
|
|
22980
|
+
readonly 'id': string;
|
|
22981
|
+
}
|
|
22982
|
+
|
|
22983
|
+
interface ShopifyMarketsWebhookRegistrationUpserted {
|
|
22984
|
+
readonly 'discriminator': 'shopify_markets_webhook_registration_upserted';
|
|
22985
|
+
readonly 'event_id': string;
|
|
22986
|
+
readonly 'timestamp': string;
|
|
22987
|
+
readonly 'organization': string;
|
|
22988
|
+
readonly 'registration': io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
22989
|
+
}
|
|
22990
|
+
|
|
22746
22991
|
interface ShopifyMetadata {
|
|
22747
22992
|
readonly 'domain': string;
|
|
22748
22993
|
readonly 'myshopify_domain': string;
|
|
@@ -23429,6 +23674,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23429
23674
|
readonly 'values': io.flow.internal.v0.models.LabelAliases[];
|
|
23430
23675
|
}
|
|
23431
23676
|
|
|
23677
|
+
interface Surcharge {
|
|
23678
|
+
readonly 'amount'?: number;
|
|
23679
|
+
readonly 'percentage'?: number;
|
|
23680
|
+
readonly 'type': io.flow.internal.v0.enums.SurchargeType;
|
|
23681
|
+
}
|
|
23682
|
+
|
|
23432
23683
|
interface SvbVirtualCardClearing {
|
|
23433
23684
|
readonly 'id': string;
|
|
23434
23685
|
readonly 'virtual_card_id': string;
|
|
@@ -24086,6 +24337,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24086
24337
|
readonly 'created_at': string;
|
|
24087
24338
|
}
|
|
24088
24339
|
|
|
24340
|
+
interface WashExportRequest {
|
|
24341
|
+
readonly 'url': string;
|
|
24342
|
+
}
|
|
24343
|
+
|
|
24089
24344
|
interface WasteElectricalAndElectronicEquipmentComplianceData {
|
|
24090
24345
|
readonly 'discriminator': 'weee';
|
|
24091
24346
|
readonly 'label': string;
|
|
@@ -24211,7 +24466,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
24211
24466
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
24212
24467
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal);
|
|
24213
24468
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
24214
|
-
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);
|
|
24469
|
+
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);
|
|
24215
24470
|
type Experiment = (io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment);
|
|
24216
24471
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
24217
24472
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -24430,6 +24685,7 @@ export const keywordType: PropTypes.Requireable<io.flow.internal.v0.enums.Keywor
|
|
|
24430
24685
|
export const labelBillingStrategy: PropTypes.Requireable<io.flow.internal.v0.enums.LabelBillingStrategy>;
|
|
24431
24686
|
export const labelCancellationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCancellationErrorCode>;
|
|
24432
24687
|
export const labelCreationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCreationStatus>;
|
|
24688
|
+
export const labelInputSource: PropTypes.Requireable<io.flow.internal.v0.enums.LabelInputSource>;
|
|
24433
24689
|
export const labelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.LabelTransactionType>;
|
|
24434
24690
|
export const liabilityType: PropTypes.Requireable<io.flow.internal.v0.enums.LiabilityType>;
|
|
24435
24691
|
export const mainTransactionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.MainTransactionStatus>;
|
|
@@ -24519,6 +24775,7 @@ export const statisticType: PropTypes.Requireable<io.flow.internal.v0.enums.Stat
|
|
|
24519
24775
|
export const status: PropTypes.Requireable<io.flow.internal.v0.enums.Status>;
|
|
24520
24776
|
export const subscriptionFrequency: PropTypes.Requireable<io.flow.internal.v0.enums.SubscriptionFrequency>;
|
|
24521
24777
|
export const suggestionAction: PropTypes.Requireable<io.flow.internal.v0.enums.SuggestionAction>;
|
|
24778
|
+
export const surchargeType: PropTypes.Requireable<io.flow.internal.v0.enums.SurchargeType>;
|
|
24522
24779
|
export const tariffEligibilityType: PropTypes.Requireable<io.flow.internal.v0.enums.TariffEligibilityType>;
|
|
24523
24780
|
export const taskProcessorKey: PropTypes.Requireable<io.flow.internal.v0.enums.TaskProcessorKey>;
|
|
24524
24781
|
export const taxCalculationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.TaxCalculationErrorCode>;
|
|
@@ -24734,7 +24991,9 @@ export const catalogSettingsDeleted: PropTypes.Requireable<io.flow.internal.v0.m
|
|
|
24734
24991
|
export const catalogSettingsPutForm: PropTypes.Requireable<io.flow.internal.v0.models.CatalogSettingsPutForm>;
|
|
24735
24992
|
export const catalogSettingsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.CatalogSettingsUpserted>;
|
|
24736
24993
|
export const centerDefaults: PropTypes.Requireable<io.flow.internal.v0.models.CenterDefaults>;
|
|
24994
|
+
export const centerDefaultsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.CenterDefaultsDeleted>;
|
|
24737
24995
|
export const centerDefaultsForm: PropTypes.Requireable<io.flow.internal.v0.models.CenterDefaultsForm>;
|
|
24996
|
+
export const centerDefaultsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.CenterDefaultsUpserted>;
|
|
24738
24997
|
export const centerQueryBuilder: PropTypes.Requireable<io.flow.internal.v0.models.CenterQueryBuilder>;
|
|
24739
24998
|
export const changeSettingsIndexTask: PropTypes.Requireable<io.flow.internal.v0.models.ChangeSettingsIndexTask>;
|
|
24740
24999
|
export const channelAccount: PropTypes.Requireable<io.flow.internal.v0.models.ChannelAccount>;
|
|
@@ -25199,6 +25458,22 @@ export const cryptoAccountModificationForm: PropTypes.Requireable<io.flow.intern
|
|
|
25199
25458
|
export const cryptoAccountPutForm: PropTypes.Requireable<io.flow.internal.v0.models.CryptoAccountPutForm>;
|
|
25200
25459
|
export const cryptoAuthentication: PropTypes.Requireable<io.flow.internal.v0.models.CryptoAuthentication>;
|
|
25201
25460
|
export const cryptoAuthenticationForm: PropTypes.Requireable<io.flow.internal.v0.models.CryptoAuthenticationForm>;
|
|
25461
|
+
export const csvActual: PropTypes.Requireable<io.flow.internal.v0.models.CsvActual>;
|
|
25462
|
+
export const csvActualRatecard: PropTypes.Requireable<io.flow.internal.v0.models.CsvActualRatecard>;
|
|
25463
|
+
export const csvDimensions: PropTypes.Requireable<io.flow.internal.v0.models.CsvDimensions>;
|
|
25464
|
+
export const csvFlowRatecard: PropTypes.Requireable<io.flow.internal.v0.models.CsvFlowRatecard>;
|
|
25465
|
+
export const csvFlowRatecardSurcharges: PropTypes.Requireable<io.flow.internal.v0.models.CsvFlowRatecardSurcharges>;
|
|
25466
|
+
export const csvGlobalEProposition: PropTypes.Requireable<io.flow.internal.v0.models.CsvGlobalEProposition>;
|
|
25467
|
+
export const csvGlobalEShippingMethod: PropTypes.Requireable<io.flow.internal.v0.models.CsvGlobalEShippingMethod>;
|
|
25468
|
+
export const csvInput: PropTypes.Requireable<io.flow.internal.v0.models.CsvInput>;
|
|
25469
|
+
export const csvLabel: PropTypes.Requireable<io.flow.internal.v0.models.CsvLabel>;
|
|
25470
|
+
export const csvLabelCost: PropTypes.Requireable<io.flow.internal.v0.models.CsvLabelCost>;
|
|
25471
|
+
export const csvOrder: PropTypes.Requireable<io.flow.internal.v0.models.CsvOrder>;
|
|
25472
|
+
export const csvRecord: PropTypes.Requireable<io.flow.internal.v0.models.CsvRecord>;
|
|
25473
|
+
export const csvServiceFee: PropTypes.Requireable<io.flow.internal.v0.models.CsvServiceFee>;
|
|
25474
|
+
export const csvSurchargePercentage: PropTypes.Requireable<io.flow.internal.v0.models.CsvSurchargePercentage>;
|
|
25475
|
+
export const csvSurcharges: PropTypes.Requireable<io.flow.internal.v0.models.CsvSurcharges>;
|
|
25476
|
+
export const csvWeight: PropTypes.Requireable<io.flow.internal.v0.models.CsvWeight>;
|
|
25202
25477
|
export const currencyInternalRate: PropTypes.Requireable<io.flow.internal.v0.models.CurrencyInternalRate>;
|
|
25203
25478
|
export const customerPurgeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.CustomerPurgeUpserted>;
|
|
25204
25479
|
export const customerSecret: PropTypes.Requireable<io.flow.internal.v0.models.CustomerSecret>;
|
|
@@ -25587,7 +25862,9 @@ export const labelCreationJob: PropTypes.Requireable<io.flow.internal.v0.models.
|
|
|
25587
25862
|
export const labelCreationJobSummary: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJobSummary>;
|
|
25588
25863
|
export const labelCreationRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationRequestForm>;
|
|
25589
25864
|
export const labelGenerationSettings: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettings>;
|
|
25865
|
+
export const labelGenerationSettingsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettingsDeleted>;
|
|
25590
25866
|
export const labelGenerationSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettingsForm>;
|
|
25867
|
+
export const labelGenerationSettingsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettingsUpserted>;
|
|
25591
25868
|
export const labelSummary: PropTypes.Requireable<io.flow.internal.v0.models.LabelSummary>;
|
|
25592
25869
|
export const labelTaxonomy: PropTypes.Requireable<io.flow.internal.v0.models.LabelTaxonomy>;
|
|
25593
25870
|
export const labelTrackingSummaryDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelTrackingSummaryDeleted>;
|
|
@@ -25599,6 +25876,7 @@ export const labeledContent: PropTypes.Requireable<io.flow.internal.v0.models.La
|
|
|
25599
25876
|
export const labelsPrediction: PropTypes.Requireable<io.flow.internal.v0.models.LabelsPrediction>;
|
|
25600
25877
|
export const landedCostItem: PropTypes.Requireable<io.flow.internal.v0.models.LandedCostItem>;
|
|
25601
25878
|
export const landmark: PropTypes.Requireable<io.flow.internal.v0.models.Landmark>;
|
|
25879
|
+
export const laneReference: PropTypes.Requireable<io.flow.internal.v0.models.LaneReference>;
|
|
25602
25880
|
export const levyRateSummary: PropTypes.Requireable<io.flow.internal.v0.models.LevyRateSummary>;
|
|
25603
25881
|
export const levyRateSummaryUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LevyRateSummaryUpserted>;
|
|
25604
25882
|
export const liability: PropTypes.Requireable<io.flow.internal.v0.models.Liability>;
|
|
@@ -25644,7 +25922,9 @@ export const mainTransactionDeletedV2: PropTypes.Requireable<io.flow.internal.v0
|
|
|
25644
25922
|
export const mainTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MainTransactionUpserted>;
|
|
25645
25923
|
export const mainTransactionUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.MainTransactionUpsertedV2>;
|
|
25646
25924
|
export const manualReviewRule: PropTypes.Requireable<io.flow.internal.v0.models.ManualReviewRule>;
|
|
25925
|
+
export const manualReviewRuleDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ManualReviewRuleDeleted>;
|
|
25647
25926
|
export const manualReviewRuleForm: PropTypes.Requireable<io.flow.internal.v0.models.ManualReviewRuleForm>;
|
|
25927
|
+
export const manualReviewRuleUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ManualReviewRuleUpserted>;
|
|
25648
25928
|
export const manualTransaction: PropTypes.Requireable<io.flow.internal.v0.models.ManualTransaction>;
|
|
25649
25929
|
export const manualTransactionForm: PropTypes.Requireable<io.flow.internal.v0.models.ManualTransactionForm>;
|
|
25650
25930
|
export const manualTransactionFormOrder: PropTypes.Requireable<io.flow.internal.v0.models.ManualTransactionFormOrder>;
|
|
@@ -25700,6 +25980,7 @@ export const onboardingAuditReportLine: PropTypes.Requireable<io.flow.internal.v
|
|
|
25700
25980
|
export const onboardingAuditSnapshot: PropTypes.Requireable<io.flow.internal.v0.models.OnboardingAuditSnapshot>;
|
|
25701
25981
|
export const onboardingAuditThemeReport: PropTypes.Requireable<io.flow.internal.v0.models.OnboardingAuditThemeReport>;
|
|
25702
25982
|
export const onboardingOrganization: PropTypes.Requireable<io.flow.internal.v0.models.OnboardingOrganization>;
|
|
25983
|
+
export const onboardingStateForm: PropTypes.Requireable<io.flow.internal.v0.models.OnboardingStateForm>;
|
|
25703
25984
|
export const oneTimeTokenRedemptionForm: PropTypes.Requireable<io.flow.internal.v0.models.OneTimeTokenRedemptionForm>;
|
|
25704
25985
|
export const onlineAuthorizationCompleted: PropTypes.Requireable<io.flow.internal.v0.models.OnlineAuthorizationCompleted>;
|
|
25705
25986
|
export const optinAttribute: PropTypes.Requireable<io.flow.internal.v0.models.OptinAttribute>;
|
|
@@ -25763,16 +26044,16 @@ export const organizationPaymentSettingDeleted: PropTypes.Requireable<io.flow.in
|
|
|
25763
26044
|
export const organizationPaymentSettingForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationPaymentSettingForm>;
|
|
25764
26045
|
export const organizationPaymentSettingUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationPaymentSettingUpserted>;
|
|
25765
26046
|
export const organizationPaymentSettingVersion: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationPaymentSettingVersion>;
|
|
25766
|
-
export const
|
|
25767
|
-
export const organizationRestrictionApprovalDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted>;
|
|
25768
|
-
export const organizationRestrictionApprovalUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted>;
|
|
26047
|
+
export const organizationReference: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationReference>;
|
|
25769
26048
|
export const organizationRestrictionNoteForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationRestrictionNoteForm>;
|
|
25770
26049
|
export const organizationRestrictionScreeningDecisionForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationRestrictionScreeningDecisionForm>;
|
|
25771
26050
|
export const organizationRestrictionSnapshot: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationRestrictionSnapshot>;
|
|
25772
26051
|
export const organizationRestrictionSnapshotDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted>;
|
|
25773
26052
|
export const organizationRestrictionSnapshotUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted>;
|
|
25774
26053
|
export const organizationRestrictionStatus: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationRestrictionStatus>;
|
|
26054
|
+
export const organizationRestrictionStatusDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted>;
|
|
25775
26055
|
export const organizationRestrictionStatusNote: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationRestrictionStatusNote>;
|
|
26056
|
+
export const organizationRestrictionStatusUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted>;
|
|
25776
26057
|
export const organizationSettings: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationSettings>;
|
|
25777
26058
|
export const organizationSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationSettingsForm>;
|
|
25778
26059
|
export const organizationStatusChange: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationStatusChange>;
|
|
@@ -25790,7 +26071,9 @@ export const partnerMembershipVersion: PropTypes.Requireable<io.flow.internal.v0
|
|
|
25790
26071
|
export const partnerOrganizationAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.PartnerOrganizationAuthorization>;
|
|
25791
26072
|
export const partnerOrganizationAuthorizationForm: PropTypes.Requireable<io.flow.internal.v0.models.PartnerOrganizationAuthorizationForm>;
|
|
25792
26073
|
export const partnerOrganizationSettings: PropTypes.Requireable<io.flow.internal.v0.models.PartnerOrganizationSettings>;
|
|
26074
|
+
export const partnerOrganizationSettingsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted>;
|
|
25793
26075
|
export const partnerOrganizationSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.PartnerOrganizationSettingsForm>;
|
|
26076
|
+
export const partnerOrganizationSettingsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted>;
|
|
25794
26077
|
export const passphrase: PropTypes.Requireable<io.flow.internal.v0.models.Passphrase>;
|
|
25795
26078
|
export const passphraseForm: PropTypes.Requireable<io.flow.internal.v0.models.PassphraseForm>;
|
|
25796
26079
|
export const passphraseSummary: PropTypes.Requireable<io.flow.internal.v0.models.PassphraseSummary>;
|
|
@@ -25974,6 +26257,7 @@ export const sessionCountryForm: PropTypes.Requireable<io.flow.internal.v0.model
|
|
|
25974
26257
|
export const sessionOrderData: PropTypes.Requireable<io.flow.internal.v0.models.SessionOrderData>;
|
|
25975
26258
|
export const sessionRollout: PropTypes.Requireable<io.flow.internal.v0.models.SessionRollout>;
|
|
25976
26259
|
export const sessionRolloutForm: PropTypes.Requireable<io.flow.internal.v0.models.SessionRolloutForm>;
|
|
26260
|
+
export const setupBlockPutForm: PropTypes.Requireable<io.flow.internal.v0.models.SetupBlockPutForm>;
|
|
25977
26261
|
export const sfExpress: PropTypes.Requireable<io.flow.internal.v0.models.SfExpress>;
|
|
25978
26262
|
export const shippedItemValue: PropTypes.Requireable<io.flow.internal.v0.models.ShippedItemValue>;
|
|
25979
26263
|
export const shipperAccountInfoForm: PropTypes.Requireable<io.flow.internal.v0.models.ShipperAccountInfoForm>;
|
|
@@ -26008,6 +26292,8 @@ export const shopifyMarketsShopUpserted: PropTypes.Requireable<io.flow.internal.
|
|
|
26008
26292
|
export const shopifyMarketsSubsidiaryCompany: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsSubsidiaryCompany>;
|
|
26009
26293
|
export const shopifyMarketsSync: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsSync>;
|
|
26010
26294
|
export const shopifyMarketsWebhookRegistration: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration>;
|
|
26295
|
+
export const shopifyMarketsWebhookRegistrationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted>;
|
|
26296
|
+
export const shopifyMarketsWebhookRegistrationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted>;
|
|
26011
26297
|
export const shopifyMetadata: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMetadata>;
|
|
26012
26298
|
export const shopifyMonitoringCarrierService: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringCarrierService>;
|
|
26013
26299
|
export const shopifyMonitoringFulfillmentExternal: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal>;
|
|
@@ -26105,6 +26391,7 @@ export const submittedOrderUpserted: PropTypes.Requireable<io.flow.internal.v0.m
|
|
|
26105
26391
|
export const subscription: PropTypes.Requireable<io.flow.internal.v0.models.Subscription>;
|
|
26106
26392
|
export const subscriptionTransaction: PropTypes.Requireable<io.flow.internal.v0.models.SubscriptionTransaction>;
|
|
26107
26393
|
export const supportedLabels: PropTypes.Requireable<io.flow.internal.v0.models.SupportedLabels>;
|
|
26394
|
+
export const surcharge: PropTypes.Requireable<io.flow.internal.v0.models.Surcharge>;
|
|
26108
26395
|
export const svbVirtualCardClearing: PropTypes.Requireable<io.flow.internal.v0.models.SvbVirtualCardClearing>;
|
|
26109
26396
|
export const svbVirtualCardClearingDeleted: PropTypes.Requireable<io.flow.internal.v0.models.SvbVirtualCardClearingDeleted>;
|
|
26110
26397
|
export const svbVirtualCardClearingUpserted: PropTypes.Requireable<io.flow.internal.v0.models.SvbVirtualCardClearingUpserted>;
|
|
@@ -26192,6 +26479,7 @@ export const virtualCardProvider: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
26192
26479
|
export const virtualCardProviderDeleted: PropTypes.Requireable<io.flow.internal.v0.models.VirtualCardProviderDeleted>;
|
|
26193
26480
|
export const virtualCardProviderUpserted: PropTypes.Requireable<io.flow.internal.v0.models.VirtualCardProviderUpserted>;
|
|
26194
26481
|
export const virtualCardTransaction: PropTypes.Requireable<io.flow.internal.v0.models.VirtualCardTransaction>;
|
|
26482
|
+
export const washExportRequest: PropTypes.Requireable<io.flow.internal.v0.models.WashExportRequest>;
|
|
26195
26483
|
export const wasteElectricalAndElectronicEquipmentComplianceData: PropTypes.Requireable<io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceData>;
|
|
26196
26484
|
export const wasteElectricalAndElectronicEquipmentComplianceForm: PropTypes.Requireable<io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceForm>;
|
|
26197
26485
|
export const webhook: PropTypes.Requireable<io.flow.internal.v0.models.Webhook>;
|