@flowio/api-prop-types 10.16.92 → 10.16.94

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.d.ts CHANGED
@@ -192,9 +192,12 @@ declare namespace io.flow.stripe.v0.enums {
192
192
  type RefundFailureReason = 'charge_for_pending_refund_disputed' | 'declined' | 'expired_or_canceled_card' | 'insufficient_funds' | 'lost_or_stolen_card' | 'merchant_request' | 'unknown';
193
193
  type RefundReason = 'duplicate' | 'fraudulent' | 'requested_by_customer';
194
194
  type RefundStatus = 'succeeded' | 'failed' | 'pending' | 'canceled';
195
+ type ReportingReportRunStatus = 'pending' | 'succeeded' | 'failed';
196
+ type ReportingReportType = 'ending_balance_reconciliation.itemized.1' | 'ending_balance_reconciliation.itemized.2' | 'ending_balance_reconciliation.itemized.3' | 'ending_balance_reconciliation.itemized.4' | 'payout_reconciliation.itemized.5' | 'payout_reconciliation.by_id.itemized.1' | 'payout_reconciliation.by_id.itemized.2' | 'payout_reconciliation.by_id.itemized.3' | 'payout_reconciliation.by_id.itemized.4' | 'payout_reconciliation.by_id.summary.1' | 'ending_balance_reconciliation.summary.1' | 'payout_reconciliation.itemized.1' | 'payout_reconciliation.itemized.2' | 'payout_reconciliation.itemized.3' | 'payout_reconciliation.itemized.4' | 'payout_reconciliation.summary.1';
195
197
  type RequestThreeDSecureType = 'automatic' | 'any';
196
198
  type RequestedCapabilities = 'card_payments' | 'legacy_payments' | 'transfers';
197
199
  type SetupFutureUsage = 'on_session' | 'off_session';
200
+ type ShopifyPaymentStripeEventType = 'charge.captured' | 'charge.dispute.created' | 'charge.dispute.closed' | 'charge.dispute.funds_reinstated' | 'charge.dispute.funds_withdrawn' | 'charge.dispute.updated' | 'charge.expired' | 'charge.failed' | 'charge.pending' | 'charge.refund.updated' | 'charge.refunded' | 'charge.succeeded' | 'charge.updated' | 'payment_intent.amount_capturable_updated' | 'payment_intent.canceled' | 'payment_intent.created' | 'payment_intent.partially_funded' | 'payment_intent.payment_failed' | 'payment_intent.processing' | 'payment_intent.requires_action' | 'payment_intent.succeeded' | 'transfer.created' | 'transfer.reversed' | 'transfer.updated' | 'reporting.report_run.succeeded' | 'reporting.report_type.updated' | 'reporting.report_type.failed';
198
201
  type SourceFlow = 'redirect' | 'receiver' | 'code_verification' | 'none';
199
202
  type SourceStatus = 'canceled' | 'chargeable' | 'consumed' | 'failed' | 'pending';
200
203
  type SourceType = 'ach_credit_transfer' | 'ach_debit' | 'alipay' | 'bancontact' | 'bitcoin' | 'card' | 'eps' | 'giropay' | 'ideal' | 'klarna' | 'multibanco' | 'p24' | 'sepa_debit' | 'sofort' | 'three_d_secure';
@@ -1088,12 +1091,76 @@ declare namespace io.flow.stripe.v0.models {
1088
1091
  readonly 'url': string;
1089
1092
  }
1090
1093
 
1094
+ interface ReportRunParameters {
1095
+ readonly 'interval_start': number;
1096
+ readonly 'interval_end': number;
1097
+ readonly 'columns'?: string[];
1098
+ readonly 'payout'?: string;
1099
+ readonly 'connected_account'?: string;
1100
+ readonly 'reporting_category'?: string;
1101
+ }
1102
+
1103
+ interface ReportingReportRun {
1104
+ readonly 'id': string;
1105
+ readonly 'object': string;
1106
+ readonly 'created': number;
1107
+ readonly 'error'?: string;
1108
+ readonly 'livemode': boolean;
1109
+ readonly 'status': io.flow.stripe.v0.enums.ReportingReportRunStatus;
1110
+ readonly 'result'?: io.flow.stripe.v0.models.ReportingReportRunResult;
1111
+ readonly 'succeeded_at'?: number;
1112
+ }
1113
+
1114
+ interface ReportingReportRunForm {
1115
+ readonly 'report_type': io.flow.stripe.v0.enums.ReportingReportType;
1116
+ readonly 'parameters': io.flow.stripe.v0.models.ReportRunParameters;
1117
+ }
1118
+
1119
+ interface ReportingReportRunResult {
1120
+ readonly 'id': string;
1121
+ readonly 'object': string;
1122
+ readonly 'created': number;
1123
+ readonly 'expires_at': number;
1124
+ readonly 'filename': string;
1125
+ readonly 'links': any/*object*/;
1126
+ readonly 'purpose': string;
1127
+ readonly 'size': number;
1128
+ readonly 'title': string;
1129
+ readonly 'type': string;
1130
+ readonly 'url': string;
1131
+ }
1132
+
1133
+ interface ReportingReportRuns {
1134
+ readonly 'object': string;
1135
+ readonly 'data': io.flow.stripe.v0.models.ReportingReportRun[];
1136
+ readonly 'has_more': boolean;
1137
+ readonly 'url'?: string;
1138
+ }
1139
+
1091
1140
  interface Shipping {
1092
1141
  readonly 'address': io.flow.stripe.v0.models.Address;
1093
1142
  readonly 'name'?: string;
1094
1143
  readonly 'phone'?: string;
1095
1144
  }
1096
1145
 
1146
+ interface ShopifyPaymentStripeEvent {
1147
+ readonly 'id': string;
1148
+ readonly 'api_version'?: string;
1149
+ readonly 'data': io.flow.stripe.v0.models.ShopifyPaymentStripeEventData;
1150
+ readonly 'request'?: any/*object*/;
1151
+ readonly 'type': io.flow.stripe.v0.enums.ShopifyPaymentStripeEventType;
1152
+ readonly 'object': string;
1153
+ readonly 'account'?: string;
1154
+ readonly 'created': number;
1155
+ readonly 'livemode': boolean;
1156
+ readonly 'pending_webhooks': number;
1157
+ }
1158
+
1159
+ interface ShopifyPaymentStripeEventData {
1160
+ readonly 'object'?: any/*object*/;
1161
+ readonly 'previous_attributes'?: any/*object*/;
1162
+ }
1163
+
1097
1164
  interface Source {
1098
1165
  readonly 'id': string;
1099
1166
  readonly 'object': string;
@@ -1421,8 +1488,21 @@ declare namespace io.flow.shopify.external.v0.models {
1421
1488
  }
1422
1489
 
1423
1490
  interface GraphqlMetafield {
1491
+ readonly 'id': string;
1424
1492
  readonly 'key': string;
1425
1493
  readonly 'value': string;
1494
+ readonly 'type'?: string;
1495
+ }
1496
+
1497
+ interface GraphqlMetaobject {
1498
+ readonly 'id': string;
1499
+ readonly 'displayName': string;
1500
+ readonly 'fields': io.flow.shopify.external.v0.models.GraphqlMetaobjectField[];
1501
+ }
1502
+
1503
+ interface GraphqlMetaobjectField {
1504
+ readonly 'key': string;
1505
+ readonly 'value'?: string;
1426
1506
  }
1427
1507
 
1428
1508
  interface GraphqlOption {
@@ -1598,6 +1678,7 @@ declare namespace io.flow.shopify.external.v0.models {
1598
1678
  readonly 'updated_at': string;
1599
1679
  readonly 'has_variants_that_requires_components'?: boolean;
1600
1680
  readonly 'category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
1681
+ readonly 'metafields'?: io.flow.shopify.external.v0.models.ProductMetafield[];
1601
1682
  }
1602
1683
 
1603
1684
  interface ProductDelete {
@@ -1615,6 +1696,17 @@ declare namespace io.flow.shopify.external.v0.models {
1615
1696
  readonly 'alt'?: string;
1616
1697
  }
1617
1698
 
1699
+ interface ProductMetafield {
1700
+ readonly 'id': number;
1701
+ readonly 'namespace': string;
1702
+ readonly 'key': string;
1703
+ readonly 'value': string;
1704
+ readonly 'created_at': string;
1705
+ readonly 'updated_at': string;
1706
+ readonly 'type': string;
1707
+ readonly 'admin_graphql_api_id': string;
1708
+ }
1709
+
1618
1710
  interface ProductVariant {
1619
1711
  readonly 'id': number;
1620
1712
  readonly 'sku'?: string;
@@ -4054,13 +4146,6 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
4054
4146
  readonly 'name': string;
4055
4147
  }
4056
4148
 
4057
- interface ShawnRoundtableWorkshopRate {
4058
- readonly 'origin_country': string;
4059
- readonly 'destination_country': string;
4060
- readonly 'weight': number;
4061
- readonly 'amount': number;
4062
- }
4063
-
4064
4149
  interface TechOnboardingDescription {
4065
4150
  readonly 'description': string;
4066
4151
  }
@@ -5051,7 +5136,9 @@ declare namespace io.flow.v0.enums {
5051
5136
  type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
5052
5137
  type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
5053
5138
  type Environment = 'sandbox' | 'production';
5054
- type EventType = 'test_upserted' | 'generate_load' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'item_inserted' | 'item_updated' | 'item_deleted' | 'channel_shopify_order_state_upserted' | 'channel_shopify_order_state_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | 'available_promotions_upserted' | 'available_promotions_deleted' | 'available_promotions_upserted_v2' | 'available_promotions_deleted_v2' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'currency_format_deleted' | 'currency_format_upserted' | 'experience_deleted' | 'experience_upserted' | 'experience_deleted_v2' | 'experience_upserted_v2' | 'country_status_upserted' | 'country_status_deleted' | 'experience_price_book_mapping_deleted' | 'experience_price_book_mapping_upserted' | 'experience_logistics_settings_upserted' | 'experience_logistics_settings_deleted' | 'item_margin_deleted_v2' | 'item_margin_upserted_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'label_format_deleted' | 'label_format_upserted' | 'order_deleted' | 'order_upserted' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted' | 'order_identifier_upserted' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v2' | 'order_identifier_upserted_v3' | 'order_replacement_upserted' | 'order_replacement_deleted' | 'pricing_deleted' | 'pricing_upserted' | 'order_service_change_request' | 'fraud_status_changed' | 'center_upserted' | 'center_deleted' | 'shipping_configuration_upserted' | 'shipping_configuration_deleted' | 'tier_upserted_v2' | 'tier_deleted_v2' | 'shipping_lane_upserted' | 'shipping_lane_deleted' | 'shipping_configuration_item_availability_upserted' | 'shipping_configuration_item_availability_deleted' | 'shipping_configuration_item_shipping_pricing_upserted' | 'shipping_configuration_item_shipping_pricing_deleted' | 'hs6_code_upserted' | 'hs6_code_deleted' | 'hs10_code_upserted' | 'hs10_code_deleted' | 'item_origin_upserted' | 'item_origin_deleted' | 'harmonized_landed_cost_upserted' | 'fully_harmonized_item_upserted' | 'import_completed_v2' | 'import_failed_v2' | 'label_upserted' | 'label_deleted_v2' | 'label_upserted_v2' | 'notification_upserted_v2' | 'notification_deleted_v2' | 'manifested_label_upserted' | 'manifested_label_deleted' | 'label_processing_modification_upserted' | 'label_processing_modification_deleted' | 'local_item_upserted' | 'local_item_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'checkout_optin_responses_upserted' | 'checkout_optin_responses_deleted' | 'browse_optin_responses_upserted' | 'browse_optin_responses_deleted' | 'order_placed' | 'order_placed_v2' | 'ready_to_fulfill' | 'ready_to_fulfill_v2' | 'membership_upserted_v2' | 'membership_deleted_v2' | 'organization_upserted' | 'organization_deleted' | 'organization_upserted_v2' | 'organization_deleted_v2' | 'organization_default_configurations_upserted' | 'organization_default_configurations_deleted' | 'ecommerce_platform_upserted' | 'ecommerce_platform_deleted' | 'organization_onboarding_state_upserted' | 'organization_onboarding_state_deleted' | 'authorization_deleted_v2' | 'authorization_status_changed' | 'card_authorization_upserted_v2' | 'card_authorization_deleted_v2' | 'online_authorization_upserted_v2' | 'online_authorization_deleted_v2' | 'capture_upserted_v2' | 'capture_deleted' | 'card_upserted_v2' | 'card_deleted' | 'payment_upserted' | 'payment_deleted' | 'refund_upserted_v2' | 'refund_deleted_v2' | 'refund_capture_upserted_v2' | 'reversal_upserted' | 'reversal_deleted' | 'capture_identifier_upserted' | 'capture_identifier_deleted' | 'refund_identifier_upserted' | 'refund_identifier_deleted' | 'virtual_card_capture_upserted' | 'virtual_card_capture_deleted' | 'virtual_card_refund_upserted' | 'virtual_card_refund_deleted' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | 'product_inserted' | 'product_updated' | 'product_deleted' | 'organization_rates_published' | 'ratecard_lane_upserted' | 'ratecard_lane_deleted' | 'ratecard_upserted' | 'ratecard_deleted' | 'product_restriction_result_upserted' | 'product_restriction_result_deleted' | 'return_upserted' | 'return_deleted' | 'return_upserted_v2' | 'return_deleted_v2' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
5139
+ type EstimateOrigin = 'Shopify' | 'GlobalE' | 'Aftership' | 'Carrier';
5140
+ type EstimateType = 'Estimated' | 'Final';
5141
+ type EventType = 'test_upserted' | 'generate_load' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'ansh_item_upserted' | 'ansh_item_deleted' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'item_inserted' | 'item_updated' | 'item_deleted' | 'channel_shopify_order_state_upserted' | 'channel_shopify_order_state_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | 'available_promotions_upserted' | 'available_promotions_deleted' | 'available_promotions_upserted_v2' | 'available_promotions_deleted_v2' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'currency_format_deleted' | 'currency_format_upserted' | 'experience_deleted' | 'experience_upserted' | 'experience_deleted_v2' | 'experience_upserted_v2' | 'country_status_upserted' | 'country_status_deleted' | 'experience_price_book_mapping_deleted' | 'experience_price_book_mapping_upserted' | 'experience_logistics_settings_upserted' | 'experience_logistics_settings_deleted' | 'item_margin_deleted_v2' | 'item_margin_upserted_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'label_format_deleted' | 'label_format_upserted' | 'order_deleted' | 'order_upserted' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted' | 'order_identifier_upserted' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v2' | 'order_identifier_upserted_v3' | 'order_replacement_upserted' | 'order_replacement_deleted' | 'pricing_deleted' | 'pricing_upserted' | 'order_service_change_request' | 'fraud_status_changed' | 'center_upserted' | 'center_deleted' | 'shipping_configuration_upserted' | 'shipping_configuration_deleted' | 'tier_upserted_v2' | 'tier_deleted_v2' | 'shipping_lane_upserted' | 'shipping_lane_deleted' | 'shipping_configuration_item_availability_upserted' | 'shipping_configuration_item_availability_deleted' | 'shipping_configuration_item_shipping_pricing_upserted' | 'shipping_configuration_item_shipping_pricing_deleted' | 'ge_item_inserted' | 'ge_item_updated' | 'ge_item_deleted' | 'ge_product_restriction_result_upserted' | 'ge_product_restriction_result_deleted' | 'hs6_code_upserted' | 'hs6_code_deleted' | 'hs10_code_upserted' | 'hs10_code_deleted' | 'item_origin_upserted' | 'item_origin_deleted' | 'harmonized_landed_cost_upserted' | 'fully_harmonized_item_upserted' | 'import_completed_v2' | 'import_failed_v2' | 'label_upserted' | 'label_deleted_v2' | 'label_upserted_v2' | 'notification_upserted_v2' | 'notification_deleted_v2' | 'manifested_label_upserted' | 'manifested_label_deleted' | 'label_processing_modification_upserted' | 'label_processing_modification_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'order_placed' | 'order_placed_v2' | 'ready_to_fulfill' | 'ready_to_fulfill_v2' | 'membership_upserted_v2' | 'membership_deleted_v2' | 'organization_upserted' | 'organization_deleted' | 'organization_upserted_v2' | 'organization_deleted_v2' | 'organization_default_configurations_upserted' | 'organization_default_configurations_deleted' | 'ecommerce_platform_upserted' | 'ecommerce_platform_deleted' | 'organization_onboarding_state_upserted' | 'organization_onboarding_state_deleted' | 'authorization_deleted_v2' | 'authorization_status_changed' | 'card_authorization_upserted_v2' | 'card_authorization_deleted_v2' | 'online_authorization_upserted_v2' | 'online_authorization_deleted_v2' | 'capture_upserted_v2' | 'capture_deleted' | 'card_upserted_v2' | 'card_deleted' | 'payment_upserted' | 'payment_deleted' | 'refund_upserted_v2' | 'refund_deleted_v2' | 'refund_capture_upserted_v2' | 'reversal_upserted' | 'reversal_deleted' | 'capture_identifier_upserted' | 'capture_identifier_deleted' | 'refund_identifier_upserted' | 'refund_identifier_deleted' | 'virtual_card_capture_upserted' | 'virtual_card_capture_deleted' | 'virtual_card_refund_upserted' | 'virtual_card_refund_deleted' | 'authorization_retry_upserted' | 'authorization_retry_deleted' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | 'product_inserted' | 'product_updated' | 'product_deleted' | 'organization_rates_published' | 'ratecard_lane_upserted' | 'ratecard_lane_deleted' | 'ratecard_upserted' | 'ratecard_deleted' | 'product_restriction_result_upserted' | 'product_restriction_result_deleted' | 'return_upserted' | 'return_deleted' | 'return_upserted_v2' | 'return_deleted_v2' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
5055
5142
  type ExceptionType = 'open' | 'closed';
5056
5143
  type ExclusionRuleState = 'current' | 'deleting' | 'updating';
5057
5144
  type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
@@ -5104,10 +5191,10 @@ declare namespace io.flow.v0.enums {
5104
5191
  type OnboardingApplicationStatus = 'to_do' | 'in_progress' | 'on_hold' | 'rejected' | 'accepted';
5105
5192
  type OnboardingBlockedReason = 'street_address_is_blank_3pl' | 'street_address_is_po_box_3pl' | 'business_street_address_is_blank' | 'business_street_address_is_po_box' | 'exception_merchant' | 'application_missing' | 'missing_logistics_contact_info';
5106
5193
  type OnboardingTradeSector = 'accessories' | 'animals_and_pet_supplies' | 'apparel' | 'apparel_and_accessories' | 'arts_and_entertainment' | 'baby_and_toddler' | 'business_and_industrial' | 'cameras_and_optics' | 'electronics' | 'food_beverages_and_tobacco' | 'furniture' | 'gift_cards' | 'hardware' | 'health_and_beauty' | 'home_and_garden' | 'jewelry' | 'luggage_and_bags' | 'mature' | 'media' | 'office_supplies' | 'paper_and_art' | 'religious_and_ceremonial' | 'software' | 'sporting_goods' | 'sports_and_fitness' | 'toys_and_games' | 'toys_hobbies_gifts' | 'vehicles_and_parts' | 'other';
5107
- type OptinResponseType = 'not_shown' | 'opted_in' | 'opted_out';
5108
5194
  type OrderChangeSource = 'consumer' | 'retailer' | 'fulfillment' | 'flow' | 'carrier';
5109
5195
  type OrderErrorCode = 'generic_error' | 'order_item_not_available' | 'order_identifier_error' | 'authorization_invalid' | 'domestic_shipping_unavailable' | 'shipping_unavailable' | 'value_threshold_exceeded' | 'invalid_currency' | 'invalid_country' | 'invalid_region' | 'invalid_language' | 'item_out_of_stock' | 'gift_card_not_accepted' | 'total_changed';
5110
5196
  type OrderMerchantOfRecord = 'flow' | 'organization' | 'mixed';
5197
+ type OrderPaymentSourceType = 'globale' | 'third_party';
5111
5198
  type OrderPaymentType = 'card' | 'online' | 'credit' | 'external' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
5112
5199
  type OrderPriceDetailComponentKey = 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge' | 'tip';
5113
5200
  type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
@@ -5167,7 +5254,6 @@ declare namespace io.flow.v0.enums {
5167
5254
  type Role = 'admin' | 'member';
5168
5255
  type RoundingMethod = 'up' | 'down' | 'nearest';
5169
5256
  type RoundingType = 'pattern' | 'multiple';
5170
- type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
5171
5257
  type ScheduleExceptionStatus = 'Open' | 'Closed';
5172
5258
  type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
5173
5259
  type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
@@ -5183,9 +5269,6 @@ declare namespace io.flow.v0.enums {
5183
5269
  type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
5184
5270
  type SubstatusCode = 'Delivered_001' | 'Delivered_002' | 'Delivered_003' | 'Delivered_004' | 'AvailableForPickup_001' | 'Exception_001' | 'Exception_002' | 'Exception_003' | 'Exception_004' | 'Exception_005' | 'Exception_006' | 'Exception_007' | 'Exception_008' | 'Exception_009' | 'Exception_010' | 'Exception_011' | 'Exception_012' | 'Exception_013' | 'AttemptFail_001' | 'AttemptFail_002' | 'AttemptFail_003' | 'InTransit_001' | 'InTransit_002' | 'InTransit_003' | 'InTransit_004' | 'InTransit_005' | 'InTransit_006' | 'InTransit_007' | 'InTransit_008' | 'InTransit_009' | 'InfoReceived_001' | 'OutForDelivery_001' | 'OutForDelivery_003' | 'OutForDelivery_004' | 'Pending_001' | 'Pending_002' | 'Pending_003' | 'Pending_004' | 'Pending_005' | 'Pending_006' | 'Expired_001';
5185
5271
  type SurchargeResponsibleParty = 'organization' | 'customer';
5186
- type SyncRecordFailureReason = 'inventory' | 'address' | 'promotion' | 'other';
5187
- type SyncStreamType = 'submitted_order' | 'placed_order';
5188
- type SyncUnitOfTime = 'day' | 'hour' | 'minute' | 'second';
5189
5272
  type TaxApplicability = 'none' | 'all';
5190
5273
  type TaxReportType = 'consumer' | 'b2b';
5191
5274
  type TaxVerificationResult = 'valid' | 'invalid' | 'unable_to_validate';
@@ -5198,10 +5281,10 @@ declare namespace io.flow.v0.enums {
5198
5281
  type TierStrategy = 'fastest' | 'lowest_cost';
5199
5282
  type TokenType = 'permanent' | 'one_time';
5200
5283
  type TrackingNumberType = 'flow' | 'carrier';
5201
- type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
5284
+ type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired' | 'unknown' | 'unmapped';
5202
5285
  type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
5203
5286
  type TradeAgreementStatus = 'supported' | 'not_supported';
5204
- type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'order_fx' | 'ge_revenue_share' | 'tax_duty_delta';
5287
+ type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'non_l4l_tax_duty_fx' | 'ge_revenue_share' | 'tax_duty_delta';
5205
5288
  type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
5206
5289
  type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion' | 'prohibited_item' | 'undeliverable_shipment' | 'signature_required' | 'direct_delivery' | 'saturday_stop' | 'residential_extended_area_pickup' | 'package_level_detail';
5207
5290
  type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
@@ -5668,6 +5751,20 @@ declare namespace io.flow.v0.models {
5668
5751
  readonly 'interval'?: io.flow.v0.enums.UnitOfTime;
5669
5752
  }
5670
5753
 
5754
+ interface AnshItemDeleted {
5755
+ readonly 'discriminator': 'ansh_item_deleted';
5756
+ readonly 'event_id': string;
5757
+ readonly 'timestamp': string;
5758
+ readonly 'id': string;
5759
+ }
5760
+
5761
+ interface AnshItemUpserted {
5762
+ readonly 'discriminator': 'ansh_item_upserted';
5763
+ readonly 'event_id': string;
5764
+ readonly 'timestamp': string;
5765
+ readonly 'item': io.flow.tech.onboarding.playground.v0.models.AnshItem;
5766
+ }
5767
+
5671
5768
  interface ApplePayMerchantValidationPayload {
5672
5769
  readonly 'discriminator': 'apple_pay_merchant_validation_payload';
5673
5770
  readonly 'validation_url': string;
@@ -5855,6 +5952,33 @@ declare namespace io.flow.v0.models {
5855
5952
  readonly 'display': string;
5856
5953
  }
5857
5954
 
5955
+ interface AuthorizationRetry {
5956
+ readonly 'id': string;
5957
+ readonly 'authorization_request_id': string;
5958
+ readonly 'authorization_id': string;
5959
+ readonly 'organization_id': string;
5960
+ readonly 'attempt': number;
5961
+ readonly 'last_failure_code': string;
5962
+ readonly 'created_at': string;
5963
+ readonly 'updated_at': string;
5964
+ }
5965
+
5966
+ interface AuthorizationRetryDeleted {
5967
+ readonly 'discriminator': 'authorization_retry_deleted';
5968
+ readonly 'event_id': string;
5969
+ readonly 'timestamp': string;
5970
+ readonly 'organization': string;
5971
+ readonly 'id': string;
5972
+ }
5973
+
5974
+ interface AuthorizationRetryUpserted {
5975
+ readonly 'discriminator': 'authorization_retry_upserted';
5976
+ readonly 'event_id': string;
5977
+ readonly 'timestamp': string;
5978
+ readonly 'organization': string;
5979
+ readonly 'authorization_retry': io.flow.v0.models.AuthorizationRetry;
5980
+ }
5981
+
5858
5982
  interface AuthorizationStatusChanged {
5859
5983
  readonly 'discriminator': 'authorization_status_changed';
5860
5984
  readonly 'event_id': string;
@@ -6136,28 +6260,6 @@ declare namespace io.flow.v0.models {
6136
6260
  readonly 'hub_code'?: string;
6137
6261
  }
6138
6262
 
6139
- interface BrowseOptinResponses {
6140
- readonly 'id': string;
6141
- readonly 'session_id': string;
6142
- readonly 'optin_responses': io.flow.v0.models.OptinResponse[];
6143
- }
6144
-
6145
- interface BrowseOptinResponsesDeleted {
6146
- readonly 'discriminator': 'browse_optin_responses_deleted';
6147
- readonly 'event_id': string;
6148
- readonly 'timestamp': string;
6149
- readonly 'organization': string;
6150
- readonly 'id': string;
6151
- }
6152
-
6153
- interface BrowseOptinResponsesUpserted {
6154
- readonly 'discriminator': 'browse_optin_responses_upserted';
6155
- readonly 'event_id': string;
6156
- readonly 'timestamp': string;
6157
- readonly 'organization': string;
6158
- readonly 'browse_optin_responses': io.flow.v0.models.BrowseOptinResponses;
6159
- }
6160
-
6161
6263
  interface BrowserInfo {
6162
6264
  readonly 'origin'?: string;
6163
6265
  readonly 'language'?: string;
@@ -6293,6 +6395,7 @@ declare namespace io.flow.v0.models {
6293
6395
  readonly 'processor'?: io.flow.v0.unions.ExpandablePaymentProcessor;
6294
6396
  readonly 'stored_method_usage_step'?: io.flow.v0.enums.StoredMethodUsageStep;
6295
6397
  readonly 'authorized_at'?: string;
6398
+ readonly 'authorization_request_id'?: string;
6296
6399
  }
6297
6400
 
6298
6401
  interface CardAuthorizationDeletedV2 {
@@ -6983,29 +7086,6 @@ declare namespace io.flow.v0.models {
6983
7086
  readonly 'value': string;
6984
7087
  }
6985
7088
 
6986
- interface CheckoutOptinResponses {
6987
- readonly 'id': string;
6988
- readonly 'order_number': string;
6989
- readonly 'session_id': string;
6990
- readonly 'optin_responses': io.flow.v0.models.OptinResponse[];
6991
- }
6992
-
6993
- interface CheckoutOptinResponsesDeleted {
6994
- readonly 'discriminator': 'checkout_optin_responses_deleted';
6995
- readonly 'event_id': string;
6996
- readonly 'timestamp': string;
6997
- readonly 'organization': string;
6998
- readonly 'id': string;
6999
- }
7000
-
7001
- interface CheckoutOptinResponsesUpserted {
7002
- readonly 'discriminator': 'checkout_optin_responses_upserted';
7003
- readonly 'event_id': string;
7004
- readonly 'timestamp': string;
7005
- readonly 'organization': string;
7006
- readonly 'checkout_optin_responses': io.flow.v0.models.CheckoutOptinResponses;
7007
- }
7008
-
7009
7089
  interface CheckoutReference {
7010
7090
  readonly 'id': string;
7011
7091
  }
@@ -8125,6 +8205,15 @@ declare namespace io.flow.v0.models {
8125
8205
  readonly 'issuing_country'?: string;
8126
8206
  }
8127
8207
 
8208
+ interface Estimate {
8209
+ readonly 'id': string;
8210
+ readonly 'organization_id': string;
8211
+ readonly 'label_id': string;
8212
+ readonly 'estimate': io.flow.v0.models.ShippingLabelHopSummary;
8213
+ readonly 'type': io.flow.v0.enums.EstimateType;
8214
+ readonly 'origin'?: io.flow.v0.enums.EstimateOrigin;
8215
+ }
8216
+
8128
8217
  interface EstimatedDimensions {
8129
8218
  readonly 'depth': io.flow.v0.models.Measurement;
8130
8219
  readonly 'length': io.flow.v0.models.Measurement;
@@ -8816,6 +8905,46 @@ declare namespace io.flow.v0.models {
8816
8905
  readonly 'landed_costs': io.flow.v0.models.LaneLandedCost[];
8817
8906
  }
8818
8907
 
8908
+ interface GeItemDeleted {
8909
+ readonly 'discriminator': 'ge_item_deleted';
8910
+ readonly 'event_id': string;
8911
+ readonly 'timestamp': string;
8912
+ readonly 'organization': string;
8913
+ readonly 'item': io.flow.v0.models.Item;
8914
+ }
8915
+
8916
+ interface GeItemInserted {
8917
+ readonly 'discriminator': 'ge_item_inserted';
8918
+ readonly 'event_id': string;
8919
+ readonly 'timestamp': string;
8920
+ readonly 'organization': string;
8921
+ readonly 'item': io.flow.v0.models.Item;
8922
+ }
8923
+
8924
+ interface GeItemUpdated {
8925
+ readonly 'discriminator': 'ge_item_updated';
8926
+ readonly 'event_id': string;
8927
+ readonly 'timestamp': string;
8928
+ readonly 'organization': string;
8929
+ readonly 'item': io.flow.v0.models.Item;
8930
+ }
8931
+
8932
+ interface GeProductRestrictionResultDeleted {
8933
+ readonly 'discriminator': 'ge_product_restriction_result_deleted';
8934
+ readonly 'event_id': string;
8935
+ readonly 'timestamp': string;
8936
+ readonly 'organization': string;
8937
+ readonly 'id': string;
8938
+ }
8939
+
8940
+ interface GeProductRestrictionResultUpserted {
8941
+ readonly 'discriminator': 'ge_product_restriction_result_upserted';
8942
+ readonly 'event_id': string;
8943
+ readonly 'timestamp': string;
8944
+ readonly 'organization': string;
8945
+ readonly 'ge_product_restriction_result': io.flow.v0.models.ProductRestrictionResult;
8946
+ }
8947
+
8819
8948
  interface GenerateLoad {
8820
8949
  readonly 'discriminator': 'generate_load';
8821
8950
  readonly 'event_id': string;
@@ -9828,14 +9957,6 @@ declare namespace io.flow.v0.models {
9828
9957
  readonly 'price': io.flow.v0.models.LocalizedItemPrice;
9829
9958
  }
9830
9959
 
9831
- interface LocalItemDeleted {
9832
- readonly 'discriminator': 'local_item_deleted';
9833
- readonly 'event_id': string;
9834
- readonly 'timestamp': string;
9835
- readonly 'organization': string;
9836
- readonly 'local_item': io.flow.v0.models.LocalItem;
9837
- }
9838
-
9839
9960
  interface LocalItemPricing {
9840
9961
  readonly 'price': io.flow.v0.models.LocalizedItemPrice;
9841
9962
  readonly 'vat'?: io.flow.v0.models.LocalizedItemVat;
@@ -9845,14 +9966,6 @@ declare namespace io.flow.v0.models {
9845
9966
  readonly 'price_attributes'?: Record<string, io.flow.v0.models.LocalItemAttributePricing>;
9846
9967
  }
9847
9968
 
9848
- interface LocalItemUpserted {
9849
- readonly 'discriminator': 'local_item_upserted';
9850
- readonly 'event_id': string;
9851
- readonly 'timestamp': string;
9852
- readonly 'organization': string;
9853
- readonly 'local_item': io.flow.v0.models.LocalItem;
9854
- }
9855
-
9856
9969
  interface LocalPriceDetails {
9857
9970
  readonly 'base': io.flow.v0.models.PriceDetails;
9858
9971
  readonly 'local': io.flow.v0.models.PriceDetails;
@@ -10328,6 +10441,7 @@ declare namespace io.flow.v0.models {
10328
10441
  readonly 'processor'?: io.flow.v0.unions.ExpandablePaymentProcessor;
10329
10442
  readonly 'confirmation_details'?: io.flow.v0.unions.ConfirmationDetails;
10330
10443
  readonly 'authorized_at'?: string;
10444
+ readonly 'authorization_request_id'?: string;
10331
10445
  }
10332
10446
 
10333
10447
  interface OnlineAuthorizationDeletedV2 {
@@ -10359,11 +10473,6 @@ declare namespace io.flow.v0.models {
10359
10473
  readonly 'phone'?: string;
10360
10474
  }
10361
10475
 
10362
- interface OptinResponse {
10363
- readonly 'key': string;
10364
- readonly 'value': io.flow.v0.enums.OptinResponseType;
10365
- }
10366
-
10367
10476
  interface OptionWeightEstimates {
10368
10477
  readonly 'gravitational': io.flow.v0.models.Measurement;
10369
10478
  readonly 'dimensional': io.flow.v0.models.Measurement;
@@ -10404,6 +10513,7 @@ declare namespace io.flow.v0.models {
10404
10513
  readonly 'device_details'?: io.flow.v0.unions.DeviceDetails;
10405
10514
  readonly 'destination_contact_details'?: io.flow.v0.models.DestinationContactDetail[];
10406
10515
  readonly 'incoterm_summary'?: io.flow.v0.models.IncotermSummary;
10516
+ readonly 'payment_source'?: io.flow.v0.enums.OrderPaymentSourceType;
10407
10517
  }
10408
10518
 
10409
10519
  interface OrderAddress {
@@ -10547,6 +10657,7 @@ declare namespace io.flow.v0.models {
10547
10657
  readonly 'authorization_keys'?: string[];
10548
10658
  readonly 'options'?: io.flow.v0.models.OrderOptions;
10549
10659
  readonly 'device_details'?: io.flow.v0.unions.DeviceDetails;
10660
+ readonly 'payment_source'?: io.flow.v0.enums.OrderPaymentSourceType;
10550
10661
  }
10551
10662
 
10552
10663
  interface OrderFraudStatus {
@@ -10766,6 +10877,7 @@ declare namespace io.flow.v0.models {
10766
10877
  readonly 'authorization_keys'?: string[];
10767
10878
  readonly 'options'?: io.flow.v0.models.OrderOptions;
10768
10879
  readonly 'device_details'?: io.flow.v0.unions.DeviceDetails;
10880
+ readonly 'payment_source'?: io.flow.v0.enums.OrderPaymentSourceType;
10769
10881
  }
10770
10882
 
10771
10883
  interface OrderReference {
@@ -12320,10 +12432,6 @@ declare namespace io.flow.v0.models {
12320
12432
  readonly 'id': string;
12321
12433
  }
12322
12434
 
12323
- interface PriceBookItemExportOptions {
12324
- readonly 'available_identifiers': io.flow.v0.enums.ItemIdentifier[];
12325
- }
12326
-
12327
12435
  interface PriceBookItemExportType {
12328
12436
  readonly 'discriminator': 'price_book_item_export_type';
12329
12437
  readonly 'price_book_key'?: string;
@@ -12567,29 +12675,6 @@ declare namespace io.flow.v0.models {
12567
12675
  readonly 'product_restriction_result': io.flow.v0.models.ProductRestrictionResult;
12568
12676
  }
12569
12677
 
12570
- interface ProductSellability {
12571
- readonly 'organization_id': string;
12572
- readonly 'product_id'?: string;
12573
- readonly 'product_correlation_id': string;
12574
- readonly 'restricted_regions': io.flow.v0.models.SellablilityRegionResult[];
12575
- readonly 'in_review_regions': io.flow.v0.models.SellablilityRegionResult[];
12576
- }
12577
-
12578
- interface ProductSellabilityForm {
12579
- readonly 'organization_id': string;
12580
- readonly 'product_id'?: string;
12581
- readonly 'product_correlation_id': string;
12582
- readonly 'name': string;
12583
- readonly 'price': io.flow.v0.models.ProductSellabilityPrice;
12584
- readonly 'description': string;
12585
- readonly 'taxonomy_category': io.flow.v0.models.ProductTaxonomyCategory;
12586
- }
12587
-
12588
- interface ProductSellabilityPrice {
12589
- readonly 'currency': string;
12590
- readonly 'amount': number;
12591
- }
12592
-
12593
12678
  interface ProductTaxonomyCategory {
12594
12679
  readonly 'name': string;
12595
12680
  readonly 'full_name': string;
@@ -13553,11 +13638,6 @@ declare namespace io.flow.v0.models {
13553
13638
  readonly 'issuer_options': io.flow.v0.models.IssuerReference[];
13554
13639
  }
13555
13640
 
13556
- interface SellablilityRegionResult {
13557
- readonly 'type': io.flow.v0.enums.RuleEffectType;
13558
- readonly 'regions': string[];
13559
- }
13560
-
13561
13641
  interface ServiceReference {
13562
13642
  readonly 'id': string;
13563
13643
  }
@@ -14506,79 +14586,6 @@ declare namespace io.flow.v0.models {
14506
14586
  readonly 'available': io.flow.v0.models.SurchargeResponsiblePartyDisplay[];
14507
14587
  }
14508
14588
 
14509
- interface SyncDuration {
14510
- readonly 'unit': io.flow.v0.enums.SyncUnitOfTime;
14511
- readonly 'value': number;
14512
- }
14513
-
14514
- interface SyncPendingRecord {
14515
- readonly 'id': string;
14516
- readonly 'stream': io.flow.v0.models.SyncStreamReference;
14517
- readonly 'value': string;
14518
- readonly 'system': string;
14519
- }
14520
-
14521
- interface SyncRecord {
14522
- readonly 'id': string;
14523
- readonly 'system': string;
14524
- readonly 'value': string;
14525
- readonly 'stream': io.flow.v0.models.SyncStreamReference;
14526
- }
14527
-
14528
- interface SyncRecordFailure {
14529
- readonly 'id': string;
14530
- readonly 'stream': io.flow.v0.models.SyncStreamReference;
14531
- readonly 'value': string;
14532
- readonly 'system': string;
14533
- readonly 'reason': io.flow.v0.enums.SyncRecordFailureReason;
14534
- readonly 'attributes'?: Record<string, string>;
14535
- }
14536
-
14537
- interface SyncRecordFailureForm {
14538
- readonly 'stream_key': string;
14539
- readonly 'value': string;
14540
- readonly 'system': string;
14541
- readonly 'reason': io.flow.v0.enums.SyncRecordFailureReason;
14542
- readonly 'attributes'?: Record<string, string>;
14543
- }
14544
-
14545
- interface SyncRecordForm {
14546
- readonly 'stream_key': string;
14547
- readonly 'system': string;
14548
- readonly 'value': string;
14549
- }
14550
-
14551
- interface SyncStream {
14552
- readonly 'id': string;
14553
- readonly 'key': string;
14554
- readonly 'type': io.flow.v0.enums.SyncStreamType;
14555
- readonly 'systems': string[];
14556
- readonly 'settings': io.flow.v0.models.SyncStreamSettings;
14557
- }
14558
-
14559
- interface SyncStreamForm {
14560
- readonly 'type': io.flow.v0.enums.SyncStreamType;
14561
- readonly 'systems': string[];
14562
- readonly 'settings'?: io.flow.v0.models.SyncStreamSettingsForm;
14563
- }
14564
-
14565
- interface SyncStreamReference {
14566
- readonly 'id': string;
14567
- readonly 'key': string;
14568
- }
14569
-
14570
- interface SyncStreamSettings {
14571
- readonly 'pending_record_after': io.flow.v0.models.SyncDuration;
14572
- readonly 'warn_after': io.flow.v0.models.SyncDuration;
14573
- readonly 'error_after': io.flow.v0.models.SyncDuration;
14574
- }
14575
-
14576
- interface SyncStreamSettingsForm {
14577
- readonly 'pending_record_after': io.flow.v0.models.SyncDuration;
14578
- readonly 'warn_after': io.flow.v0.models.SyncDuration;
14579
- readonly 'error_after': io.flow.v0.models.SyncDuration;
14580
- }
14581
-
14582
14589
  interface Tax {
14583
14590
  readonly 'name': string;
14584
14591
  readonly 'rate': number;
@@ -15407,7 +15414,7 @@ declare namespace io.flow.v0.unions {
15407
15414
  type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
15408
15415
  type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
15409
15416
  type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
15410
- type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.AldoItemUpserted | io.flow.v0.models.AldoItemDeleted | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ItemInserted | io.flow.v0.models.ItemUpdated | io.flow.v0.models.ItemDeleted | io.flow.v0.models.ChannelShopifyOrderStateUpserted | io.flow.v0.models.ChannelShopifyOrderStateDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.LabelUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LabelProcessingModificationUpserted | io.flow.v0.models.LabelProcessingModificationDeleted | io.flow.v0.models.LocalItemUpserted | io.flow.v0.models.LocalItemDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.CheckoutOptinResponsesUpserted | io.flow.v0.models.CheckoutOptinResponsesDeleted | io.flow.v0.models.BrowseOptinResponsesUpserted | io.flow.v0.models.BrowseOptinResponsesDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.OrganizationDefaultConfigurationsUpserted | io.flow.v0.models.OrganizationDefaultConfigurationsDeleted | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.ProductInserted | io.flow.v0.models.ProductUpdated | io.flow.v0.models.ProductDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ReturnUpserted | io.flow.v0.models.ReturnDeleted | io.flow.v0.models.ReturnUpsertedV2 | io.flow.v0.models.ReturnDeletedV2 | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted);
15417
+ type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.AldoItemUpserted | io.flow.v0.models.AldoItemDeleted | io.flow.v0.models.AnshItemUpserted | io.flow.v0.models.AnshItemDeleted | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ItemInserted | io.flow.v0.models.ItemUpdated | io.flow.v0.models.ItemDeleted | io.flow.v0.models.ChannelShopifyOrderStateUpserted | io.flow.v0.models.ChannelShopifyOrderStateDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.GeItemInserted | io.flow.v0.models.GeItemUpdated | io.flow.v0.models.GeItemDeleted | io.flow.v0.models.GeProductRestrictionResultUpserted | io.flow.v0.models.GeProductRestrictionResultDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.LabelUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LabelProcessingModificationUpserted | io.flow.v0.models.LabelProcessingModificationDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.OrganizationDefaultConfigurationsUpserted | io.flow.v0.models.OrganizationDefaultConfigurationsDeleted | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.AuthorizationRetryUpserted | io.flow.v0.models.AuthorizationRetryDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.ProductInserted | io.flow.v0.models.ProductUpdated | io.flow.v0.models.ProductDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ReturnUpserted | io.flow.v0.models.ReturnDeleted | io.flow.v0.models.ReturnUpsertedV2 | io.flow.v0.models.ReturnDeletedV2 | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted);
15411
15418
  type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary);
15412
15419
  type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
15413
15420
  type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
@@ -15552,6 +15559,8 @@ export const ecommercePlatformType: PropTypes.Requireable<io.flow.v0.enums.Ecomm
15552
15559
  export const economicTitleLocation: PropTypes.Requireable<io.flow.v0.enums.EconomicTitleLocation>;
15553
15560
  export const entityIdentifierType: PropTypes.Requireable<io.flow.v0.enums.EntityIdentifierType>;
15554
15561
  export const environment: PropTypes.Requireable<io.flow.v0.enums.Environment>;
15562
+ export const estimateOrigin: PropTypes.Requireable<io.flow.v0.enums.EstimateOrigin>;
15563
+ export const estimateType: PropTypes.Requireable<io.flow.v0.enums.EstimateType>;
15555
15564
  export const eventType: PropTypes.Requireable<io.flow.v0.enums.EventType>;
15556
15565
  export const exceptionType: PropTypes.Requireable<io.flow.v0.enums.ExceptionType>;
15557
15566
  export const exclusionRuleState: PropTypes.Requireable<io.flow.v0.enums.ExclusionRuleState>;
@@ -15605,10 +15614,10 @@ export const method: PropTypes.Requireable<io.flow.v0.enums.Method>;
15605
15614
  export const onboardingApplicationStatus: PropTypes.Requireable<io.flow.v0.enums.OnboardingApplicationStatus>;
15606
15615
  export const onboardingBlockedReason: PropTypes.Requireable<io.flow.v0.enums.OnboardingBlockedReason>;
15607
15616
  export const onboardingTradeSector: PropTypes.Requireable<io.flow.v0.enums.OnboardingTradeSector>;
15608
- export const optinResponseType: PropTypes.Requireable<io.flow.v0.enums.OptinResponseType>;
15609
15617
  export const orderChangeSource: PropTypes.Requireable<io.flow.v0.enums.OrderChangeSource>;
15610
15618
  export const orderErrorCode: PropTypes.Requireable<io.flow.v0.enums.OrderErrorCode>;
15611
15619
  export const orderMerchantOfRecord: PropTypes.Requireable<io.flow.v0.enums.OrderMerchantOfRecord>;
15620
+ export const orderPaymentSourceType: PropTypes.Requireable<io.flow.v0.enums.OrderPaymentSourceType>;
15612
15621
  export const orderPaymentType: PropTypes.Requireable<io.flow.v0.enums.OrderPaymentType>;
15613
15622
  export const orderPriceDetailComponentKey: PropTypes.Requireable<io.flow.v0.enums.OrderPriceDetailComponentKey>;
15614
15623
  export const orderPriceDetailKey: PropTypes.Requireable<io.flow.v0.enums.OrderPriceDetailKey>;
@@ -15668,7 +15677,6 @@ export const reviewStatus: PropTypes.Requireable<io.flow.v0.enums.ReviewStatus>;
15668
15677
  export const role: PropTypes.Requireable<io.flow.v0.enums.Role>;
15669
15678
  export const roundingMethod: PropTypes.Requireable<io.flow.v0.enums.RoundingMethod>;
15670
15679
  export const roundingType: PropTypes.Requireable<io.flow.v0.enums.RoundingType>;
15671
- export const ruleEffectType: PropTypes.Requireable<io.flow.v0.enums.RuleEffectType>;
15672
15680
  export const scheduleExceptionStatus: PropTypes.Requireable<io.flow.v0.enums.ScheduleExceptionStatus>;
15673
15681
  export const shipmentIntegrationType: PropTypes.Requireable<io.flow.v0.enums.ShipmentIntegrationType>;
15674
15682
  export const shipmentRecipient: PropTypes.Requireable<io.flow.v0.enums.ShipmentRecipient>;
@@ -15684,9 +15692,6 @@ export const strategy: PropTypes.Requireable<io.flow.v0.enums.Strategy>;
15684
15692
  export const subcatalogItemStatus: PropTypes.Requireable<io.flow.v0.enums.SubcatalogItemStatus>;
15685
15693
  export const substatusCode: PropTypes.Requireable<io.flow.v0.enums.SubstatusCode>;
15686
15694
  export const surchargeResponsibleParty: PropTypes.Requireable<io.flow.v0.enums.SurchargeResponsibleParty>;
15687
- export const syncRecordFailureReason: PropTypes.Requireable<io.flow.v0.enums.SyncRecordFailureReason>;
15688
- export const syncStreamType: PropTypes.Requireable<io.flow.v0.enums.SyncStreamType>;
15689
- export const syncUnitOfTime: PropTypes.Requireable<io.flow.v0.enums.SyncUnitOfTime>;
15690
15695
  export const taxApplicability: PropTypes.Requireable<io.flow.v0.enums.TaxApplicability>;
15691
15696
  export const taxReportType: PropTypes.Requireable<io.flow.v0.enums.TaxReportType>;
15692
15697
  export const taxVerificationResult: PropTypes.Requireable<io.flow.v0.enums.TaxVerificationResult>;
@@ -15777,6 +15782,8 @@ export const allocationV2: PropTypes.Requireable<io.flow.v0.models.AllocationV2>
15777
15782
  export const amountMargin: PropTypes.Requireable<io.flow.v0.models.AmountMargin>;
15778
15783
  export const amountMarginForm: PropTypes.Requireable<io.flow.v0.models.AmountMarginForm>;
15779
15784
  export const analyticsExportType: PropTypes.Requireable<io.flow.v0.models.AnalyticsExportType>;
15785
+ export const anshItemDeleted: PropTypes.Requireable<io.flow.v0.models.AnshItemDeleted>;
15786
+ export const anshItemUpserted: PropTypes.Requireable<io.flow.v0.models.AnshItemUpserted>;
15780
15787
  export const applePayMerchantValidationPayload: PropTypes.Requireable<io.flow.v0.models.ApplePayMerchantValidationPayload>;
15781
15788
  export const applepaySdkCreateResultActionDetails: PropTypes.Requireable<io.flow.v0.models.ApplepaySdkCreateResultActionDetails>;
15782
15789
  export const applepaySdkValidateResultActionDetails: PropTypes.Requireable<io.flow.v0.models.ApplepaySdkValidateResultActionDetails>;
@@ -15805,6 +15812,9 @@ export const authorizationResultActionNative: PropTypes.Requireable<io.flow.v0.m
15805
15812
  export const authorizationResultActionPost: PropTypes.Requireable<io.flow.v0.models.AuthorizationResultActionPost>;
15806
15813
  export const authorizationResultActionWait: PropTypes.Requireable<io.flow.v0.models.AuthorizationResultActionWait>;
15807
15814
  export const authorizationResultDescription: PropTypes.Requireable<io.flow.v0.models.AuthorizationResultDescription>;
15815
+ export const authorizationRetry: PropTypes.Requireable<io.flow.v0.models.AuthorizationRetry>;
15816
+ export const authorizationRetryDeleted: PropTypes.Requireable<io.flow.v0.models.AuthorizationRetryDeleted>;
15817
+ export const authorizationRetryUpserted: PropTypes.Requireable<io.flow.v0.models.AuthorizationRetryUpserted>;
15808
15818
  export const authorizationStatusChanged: PropTypes.Requireable<io.flow.v0.models.AuthorizationStatusChanged>;
15809
15819
  export const authorizationVersion: PropTypes.Requireable<io.flow.v0.models.AuthorizationVersion>;
15810
15820
  export const availableFilterStructured: PropTypes.Requireable<io.flow.v0.models.AvailableFilterStructured>;
@@ -15844,9 +15854,6 @@ export const billingDiscount: PropTypes.Requireable<io.flow.v0.models.BillingDis
15844
15854
  export const bridgeManifest: PropTypes.Requireable<io.flow.v0.models.BridgeManifest>;
15845
15855
  export const bridgeManifestForm: PropTypes.Requireable<io.flow.v0.models.BridgeManifestForm>;
15846
15856
  export const bridgeShippingLabelForm: PropTypes.Requireable<io.flow.v0.models.BridgeShippingLabelForm>;
15847
- export const browseOptinResponses: PropTypes.Requireable<io.flow.v0.models.BrowseOptinResponses>;
15848
- export const browseOptinResponsesDeleted: PropTypes.Requireable<io.flow.v0.models.BrowseOptinResponsesDeleted>;
15849
- export const browseOptinResponsesUpserted: PropTypes.Requireable<io.flow.v0.models.BrowseOptinResponsesUpserted>;
15850
15857
  export const browserInfo: PropTypes.Requireable<io.flow.v0.models.BrowserInfo>;
15851
15858
  export const browserInlineActionConfiguration: PropTypes.Requireable<io.flow.v0.models.BrowserInlineActionConfiguration>;
15852
15859
  export const capture: PropTypes.Requireable<io.flow.v0.models.Capture>;
@@ -15956,9 +15963,6 @@ export const checkoutAttribute: PropTypes.Requireable<io.flow.v0.models.Checkout
15956
15963
  export const checkoutAttributeForm: PropTypes.Requireable<io.flow.v0.models.CheckoutAttributeForm>;
15957
15964
  export const checkoutItemContent: PropTypes.Requireable<io.flow.v0.models.CheckoutItemContent>;
15958
15965
  export const checkoutItemContentAttribute: PropTypes.Requireable<io.flow.v0.models.CheckoutItemContentAttribute>;
15959
- export const checkoutOptinResponses: PropTypes.Requireable<io.flow.v0.models.CheckoutOptinResponses>;
15960
- export const checkoutOptinResponsesDeleted: PropTypes.Requireable<io.flow.v0.models.CheckoutOptinResponsesDeleted>;
15961
- export const checkoutOptinResponsesUpserted: PropTypes.Requireable<io.flow.v0.models.CheckoutOptinResponsesUpserted>;
15962
15966
  export const checkoutReference: PropTypes.Requireable<io.flow.v0.models.CheckoutReference>;
15963
15967
  export const checkoutToken: PropTypes.Requireable<io.flow.v0.models.CheckoutToken>;
15964
15968
  export const checkoutTokenOrderForm: PropTypes.Requireable<io.flow.v0.models.CheckoutTokenOrderForm>;
@@ -16118,6 +16122,7 @@ export const emailVerification: PropTypes.Requireable<io.flow.v0.models.EmailVer
16118
16122
  export const emergencySituationSurchargeRatecardFee: PropTypes.Requireable<io.flow.v0.models.EmergencySituationSurchargeRatecardFee>;
16119
16123
  export const emergencySituationSurchargeServiceFee: PropTypes.Requireable<io.flow.v0.models.EmergencySituationSurchargeServiceFee>;
16120
16124
  export const entityIdentifier: PropTypes.Requireable<io.flow.v0.models.EntityIdentifier>;
16125
+ export const estimate: PropTypes.Requireable<io.flow.v0.models.Estimate>;
16121
16126
  export const estimatedDimensions: PropTypes.Requireable<io.flow.v0.models.EstimatedDimensions>;
16122
16127
  export const estimatedWindow: PropTypes.Requireable<io.flow.v0.models.EstimatedWindow>;
16123
16128
  export const exception: PropTypes.Requireable<io.flow.v0.models.Exception>;
@@ -16224,6 +16229,11 @@ export const fulfillmentItemAllocationDetails: PropTypes.Requireable<io.flow.v0.
16224
16229
  export const fulfillmentItemQuantity: PropTypes.Requireable<io.flow.v0.models.FulfillmentItemQuantity>;
16225
16230
  export const fulfillmentLineCancelForm: PropTypes.Requireable<io.flow.v0.models.FulfillmentLineCancelForm>;
16226
16231
  export const fullyHarmonizedItemUpserted: PropTypes.Requireable<io.flow.v0.models.FullyHarmonizedItemUpserted>;
16232
+ export const geItemDeleted: PropTypes.Requireable<io.flow.v0.models.GeItemDeleted>;
16233
+ export const geItemInserted: PropTypes.Requireable<io.flow.v0.models.GeItemInserted>;
16234
+ export const geItemUpdated: PropTypes.Requireable<io.flow.v0.models.GeItemUpdated>;
16235
+ export const geProductRestrictionResultDeleted: PropTypes.Requireable<io.flow.v0.models.GeProductRestrictionResultDeleted>;
16236
+ export const geProductRestrictionResultUpserted: PropTypes.Requireable<io.flow.v0.models.GeProductRestrictionResultUpserted>;
16227
16237
  export const generateLoad: PropTypes.Requireable<io.flow.v0.models.GenerateLoad>;
16228
16238
  export const genericError: PropTypes.Requireable<io.flow.v0.models.GenericError>;
16229
16239
  export const geoForm: PropTypes.Requireable<io.flow.v0.models.GeoForm>;
@@ -16360,9 +16370,7 @@ export const link: PropTypes.Requireable<io.flow.v0.models.Link>;
16360
16370
  export const local: PropTypes.Requireable<io.flow.v0.models.Local>;
16361
16371
  export const localItem: PropTypes.Requireable<io.flow.v0.models.LocalItem>;
16362
16372
  export const localItemAttributePricing: PropTypes.Requireable<io.flow.v0.models.LocalItemAttributePricing>;
16363
- export const localItemDeleted: PropTypes.Requireable<io.flow.v0.models.LocalItemDeleted>;
16364
16373
  export const localItemPricing: PropTypes.Requireable<io.flow.v0.models.LocalItemPricing>;
16365
- export const localItemUpserted: PropTypes.Requireable<io.flow.v0.models.LocalItemUpserted>;
16366
16374
  export const localPriceDetails: PropTypes.Requireable<io.flow.v0.models.LocalPriceDetails>;
16367
16375
  export const localSession: PropTypes.Requireable<io.flow.v0.models.LocalSession>;
16368
16376
  export const locale: PropTypes.Requireable<io.flow.v0.models.Locale>;
@@ -16434,7 +16442,6 @@ export const onlineAuthorizationDeletedV2: PropTypes.Requireable<io.flow.v0.mode
16434
16442
  export const onlineAuthorizationUpsertedV2: PropTypes.Requireable<io.flow.v0.models.OnlineAuthorizationUpsertedV2>;
16435
16443
  export const onlinePaymentAuthorizationForm: PropTypes.Requireable<io.flow.v0.models.OnlinePaymentAuthorizationForm>;
16436
16444
  export const operationsContact: PropTypes.Requireable<io.flow.v0.models.OperationsContact>;
16437
- export const optinResponse: PropTypes.Requireable<io.flow.v0.models.OptinResponse>;
16438
16445
  export const optionWeightEstimates: PropTypes.Requireable<io.flow.v0.models.OptionWeightEstimates>;
16439
16446
  export const options: PropTypes.Requireable<io.flow.v0.models.Options>;
16440
16447
  export const order: PropTypes.Requireable<io.flow.v0.models.Order>;
@@ -16711,7 +16718,6 @@ export const priceBookDeleted: PropTypes.Requireable<io.flow.v0.models.PriceBook
16711
16718
  export const priceBookForm: PropTypes.Requireable<io.flow.v0.models.PriceBookForm>;
16712
16719
  export const priceBookItem: PropTypes.Requireable<io.flow.v0.models.PriceBookItem>;
16713
16720
  export const priceBookItemDeleted: PropTypes.Requireable<io.flow.v0.models.PriceBookItemDeleted>;
16714
- export const priceBookItemExportOptions: PropTypes.Requireable<io.flow.v0.models.PriceBookItemExportOptions>;
16715
16721
  export const priceBookItemExportType: PropTypes.Requireable<io.flow.v0.models.PriceBookItemExportType>;
16716
16722
  export const priceBookItemForm: PropTypes.Requireable<io.flow.v0.models.PriceBookItemForm>;
16717
16723
  export const priceBookItemQueryForm: PropTypes.Requireable<io.flow.v0.models.PriceBookItemQueryForm>;
@@ -16743,9 +16749,6 @@ export const productInserted: PropTypes.Requireable<io.flow.v0.models.ProductIns
16743
16749
  export const productRestrictionResult: PropTypes.Requireable<io.flow.v0.models.ProductRestrictionResult>;
16744
16750
  export const productRestrictionResultDeleted: PropTypes.Requireable<io.flow.v0.models.ProductRestrictionResultDeleted>;
16745
16751
  export const productRestrictionResultUpserted: PropTypes.Requireable<io.flow.v0.models.ProductRestrictionResultUpserted>;
16746
- export const productSellability: PropTypes.Requireable<io.flow.v0.models.ProductSellability>;
16747
- export const productSellabilityForm: PropTypes.Requireable<io.flow.v0.models.ProductSellabilityForm>;
16748
- export const productSellabilityPrice: PropTypes.Requireable<io.flow.v0.models.ProductSellabilityPrice>;
16749
16752
  export const productTaxonomyCategory: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyCategory>;
16750
16753
  export const productTaxonomyData: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyData>;
16751
16754
  export const productUpdated: PropTypes.Requireable<io.flow.v0.models.ProductUpdated>;
@@ -16873,7 +16876,6 @@ export const scheduledPickup: PropTypes.Requireable<io.flow.v0.models.ScheduledP
16873
16876
  export const securityRatecardFee: PropTypes.Requireable<io.flow.v0.models.SecurityRatecardFee>;
16874
16877
  export const securityServiceFee: PropTypes.Requireable<io.flow.v0.models.SecurityServiceFee>;
16875
16878
  export const selectIssuerOptionActionDetails: PropTypes.Requireable<io.flow.v0.models.SelectIssuerOptionActionDetails>;
16876
- export const sellablilityRegionResult: PropTypes.Requireable<io.flow.v0.models.SellablilityRegionResult>;
16877
16879
  export const serviceReference: PropTypes.Requireable<io.flow.v0.models.ServiceReference>;
16878
16880
  export const serviceSummary: PropTypes.Requireable<io.flow.v0.models.ServiceSummary>;
16879
16881
  export const serviceUnknown: PropTypes.Requireable<io.flow.v0.models.ServiceUnknown>;
@@ -17000,17 +17002,6 @@ export const summaryShippingNotificationForm: PropTypes.Requireable<io.flow.v0.m
17000
17002
  export const surchargeResponsiblePartyDisplay: PropTypes.Requireable<io.flow.v0.models.SurchargeResponsiblePartyDisplay>;
17001
17003
  export const surchargeSetting: PropTypes.Requireable<io.flow.v0.models.SurchargeSetting>;
17002
17004
  export const surchargeSettingDisplay: PropTypes.Requireable<io.flow.v0.models.SurchargeSettingDisplay>;
17003
- export const syncDuration: PropTypes.Requireable<io.flow.v0.models.SyncDuration>;
17004
- export const syncPendingRecord: PropTypes.Requireable<io.flow.v0.models.SyncPendingRecord>;
17005
- export const syncRecord: PropTypes.Requireable<io.flow.v0.models.SyncRecord>;
17006
- export const syncRecordFailure: PropTypes.Requireable<io.flow.v0.models.SyncRecordFailure>;
17007
- export const syncRecordFailureForm: PropTypes.Requireable<io.flow.v0.models.SyncRecordFailureForm>;
17008
- export const syncRecordForm: PropTypes.Requireable<io.flow.v0.models.SyncRecordForm>;
17009
- export const syncStream: PropTypes.Requireable<io.flow.v0.models.SyncStream>;
17010
- export const syncStreamForm: PropTypes.Requireable<io.flow.v0.models.SyncStreamForm>;
17011
- export const syncStreamReference: PropTypes.Requireable<io.flow.v0.models.SyncStreamReference>;
17012
- export const syncStreamSettings: PropTypes.Requireable<io.flow.v0.models.SyncStreamSettings>;
17013
- export const syncStreamSettingsForm: PropTypes.Requireable<io.flow.v0.models.SyncStreamSettingsForm>;
17014
17005
  export const tax: PropTypes.Requireable<io.flow.v0.models.Tax>;
17015
17006
  export const taxRegistration: PropTypes.Requireable<io.flow.v0.models.TaxRegistration>;
17016
17007
  export const taxRegistrationForm: PropTypes.Requireable<io.flow.v0.models.TaxRegistrationForm>;