@flowio/api-prop-types 10.16.87 → 10.16.89

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/api-prop-types",
3
- "version": "10.16.87",
3
+ "version": "10.16.89",
4
4
  "description": "PropType validators that work with Flow API",
5
5
  "keywords": [
6
6
  "flow",
@@ -29,5 +29,5 @@
29
29
  "peerDependencies": {
30
30
  "prop-types": "^15.7.0"
31
31
  },
32
- "gitHead": "d694e06d6eb130c73b2f6aa755ed56447f50a324"
32
+ "gitHead": "2e07a02edf9ba40b639c33c004df49e4d9b88ed2"
33
33
  }
package/src/api.d.ts CHANGED
@@ -170,6 +170,8 @@ declare namespace io.flow.stripe.v0.enums {
170
170
  type DisputePaymentMethodDetailsType = 'card' | 'klarna' | 'paypal';
171
171
  type DisputeReason = 'bank_cannot_process' | 'check_returned' | 'credit_not_processed' | 'customer_initiated' | 'debit_not_authorized' | 'duplicate' | 'fraudulent' | 'general' | 'incorrect_account_details' | 'insufficient_funds' | 'product_not_received' | 'product_unacceptable' | 'subscription_canceled' | 'unrecognized';
172
172
  type DisputeStatus = 'warning_needs_response' | 'warning_under_review' | 'warning_closed' | 'needs_response' | 'under_review' | 'won' | 'lost';
173
+ type EarlyFraudWarningEventType = 'radar.early_fraud_warning';
174
+ type EarlyFraudWarningType = 'card_never_received' | 'fraudulent_card_application' | 'made_with_counterfeit_card' | 'made_with_lost_card' | 'made_with_stolen_card' | 'unauthorized_use_of_card' | 'misc';
173
175
  type ErrorCode = 'invalid_number' | 'invalid_expiry_month' | 'invalid_expiry_year' | 'invalid_cvc' | 'invalid_swipe_data' | 'country_code_invalid' | 'email_invalid' | 'postal_code_invalid' | 'invalid_characters' | 'url_invalid' | 'invalid_charge_amount' | 'incorrect_number' | 'incorrect_address' | 'incorrect_cvc' | 'incorrect_zip' | 'card_declined' | 'expired_card' | 'missing' | 'processing_error' | 'account_closed' | 'amount_too_small' | 'amount_too_large' | 'api_key_expired' | 'authentication_required' | 'capture_charge_authorization_expired' | 'capture_unauthorized_payment' | 'card_decline_rate_limit_exceeded' | 'charge_already_captured' | 'charge_already_refunded' | 'charge_disputed' | 'charge_exceeds_source_limit' | 'charge_expired_for_capture' | 'charge_invalid_parameter' | 'charge_not_refundable' | 'insufficient_funds' | 'intent_invalid_state' | 'livemode_mismatch' | 'parameter_invalid_empty' | 'parameter_invalid_integer' | 'parameter_invalid_string_blank' | 'parameter_invalid_string_empty' | 'parameter_missing' | 'parameter_unknown' | 'parameters_exclusive' | 'payment_intent_action_required' | 'payment_intent_authentication_failure' | 'payment_intent_incompatible_payment_method' | 'payment_intent_payment_attempt_expired' | 'payment_intent_payment_attempt_failed' | 'payment_intent_unexpected_state' | 'payment_intent_invalid_parameter' | 'payment_method_billing_details_address_missing' | 'payment_method_customer_decline' | 'payment_method_currency_mismatch' | 'payment_method_invalid_parameter' | 'payment_method_invalid_parameter_testmode' | 'payment_method_not_available' | 'payment_method_provider_decline' | 'payment_method_provider_timeout' | 'payment_method_unactivated' | 'payment_method_unexpected_state' | 'payment_method_unsupported_type' | 'platform_api_key_expired' | 'refund_disputed_payment' | 'testmode_charges_only' | 'tls_version_unsupported' | 'setup_attempt_failed' | 'setup_intent_authentication_failure' | 'setup_intent_invalid_parameter' | 'setup_intent_setup_attempt_expired' | 'setup_intent_unexpected_state';
174
176
  type ErrorType = 'api_connection_error' | 'api_error' | 'authentication_error' | 'card_error' | 'idempotency_error' | 'invalid_request_error' | 'rate_limit_error' | 'validation_error';
175
177
  type EventType = 'charge.captured' | 'charge.failed' | 'charge.pending' | 'charge.refunded' | 'charge.expired' | 'charge.succeeded' | 'charge.updated' | 'charge.refund.updated' | 'charge.dispute.closed' | 'charge.dispute.created' | 'charge.dispute.funds_reinstated' | 'charge.dispute.funds_withdrawn' | 'charge.dispute.updated' | 'payment_intent.created' | 'payment_intent.amount_capturable_updated' | 'payment_intent.payment_failed' | 'payment_intent.succeeded' | 'payment_intent.requires_action' | 'payment_intent.canceled' | 'payment_intent.processing' | 'source.canceled' | 'source.chargeable' | 'source.failed';
@@ -1228,6 +1230,17 @@ declare namespace io.flow.stripe.v0.models {
1228
1230
  readonly 'previous_attributes'?: any/*object*/;
1229
1231
  }
1230
1232
 
1233
+ interface StripeEarlyFraudWarningEvent {
1234
+ readonly 'id': string;
1235
+ readonly 'object': io.flow.stripe.v0.enums.EarlyFraudWarningEventType;
1236
+ readonly 'actionable': boolean;
1237
+ readonly 'charge': string;
1238
+ readonly 'created': number;
1239
+ readonly 'fraud_type': io.flow.stripe.v0.enums.EarlyFraudWarningType;
1240
+ readonly 'livemode': boolean;
1241
+ readonly 'payment_intent'?: string;
1242
+ }
1243
+
1231
1244
  interface StripeError {
1232
1245
  readonly 'type': io.flow.stripe.v0.enums.ErrorType;
1233
1246
  readonly 'charge'?: string;
@@ -3106,10 +3119,6 @@ declare namespace io.flow.ben.test.internal.v0.models {
3106
3119
  readonly 'num_events': number;
3107
3120
  }
3108
3121
 
3109
- interface SvitlanaTest {
3110
- readonly 'name': string;
3111
- }
3112
-
3113
3122
  interface Test {
3114
3123
  readonly 'id': string;
3115
3124
  readonly 'name': string;
@@ -4666,7 +4675,7 @@ declare namespace io.flow.v0.enums {
4666
4675
  type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
4667
4676
  type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
4668
4677
  type Environment = 'sandbox' | 'production';
4669
- type EventType = 'test_upserted' | 'generate_load' | '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' | 'catalog_item_upserted' | 'catalog_item_deleted' | 'catalog_item_upserted_v2' | 'catalog_item_deleted_v2' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'item_inserted' | 'item_updated' | 'item_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' | 'email_notification_upserted' | 'email_notification_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' | 'rule_upserted' | 'rule_deleted' | 'snapshot_upserted' | 'snapshot_deleted' | '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' | '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';
4678
+ type EventType = 'test_upserted' | 'generate_load' | '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' | 'catalog_item_upserted' | 'catalog_item_deleted' | 'catalog_item_upserted_v2' | 'catalog_item_deleted_v2' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'item_inserted' | 'item_updated' | 'item_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' | 'email_notification_upserted' | 'email_notification_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' | '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';
4670
4679
  type ExceptionType = 'open' | 'closed';
4671
4680
  type ExclusionRuleState = 'current' | 'deleting' | 'updating';
4672
4681
  type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
@@ -4694,6 +4703,7 @@ declare namespace io.flow.v0.enums {
4694
4703
  type ImportType = 'catalog_items' | 'catalog_items_external' | 'customs_descriptions' | 'customs_description_tariffs' | 'experiences_with_settings' | 'harmonization_codes' | 'item_prices' | 'item_form_overlays' | 'price_book_items' | 'price_book_items_query' | 'ratecard_lanes' | 'order_service_changes';
4695
4704
  type IncludedLevyKey = 'duty' | 'vat' | 'vat_and_duty' | 'none';
4696
4705
  type Incoterm = 'EXW' | 'FCA' | 'CPT' | 'CIP' | 'DAT' | 'DAP' | 'DDP' | 'FAS' | 'FOB' | 'CFR' | 'CIF' | 'DAF' | 'DES' | 'DEQ' | 'DDU';
4706
+ type IncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
4697
4707
  type InlineWindowViewportSize = 'xxx_small' | 'xx_small' | 'x_small' | 'small' | 'fullscreen' | 'responsive';
4698
4708
  type InputSpecificationType = 'text' | 'number';
4699
4709
  type InvitationErrorCode = 'expired' | 'invalid_email';
@@ -4786,6 +4796,7 @@ declare namespace io.flow.v0.enums {
4786
4796
  type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
4787
4797
  type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
4788
4798
  type ShippingConfigurationType = 'default' | 'variant';
4799
+ type ShippingLabelErrorCode = 'generic_error' | 'cancelled_order' | 'carrier_outage' | 'catalog_issue' | 'invalid_destination' | 'invalid_origin' | 'invalid_shipping_parameters' | 'merchant_error' | 'order_not_found' | 'order_processing' | 'restricted_item' | 'unsupported_lane';
4789
4800
  type ShopifyGrant = 'customer' | 'discount' | 'gift_card' | 'metafield' | 'order';
4790
4801
  type ShopifyLocalizationMethod = 'api' | 'ssr';
4791
4802
  type ShopifySyncCheck = 'localized_variants' | 'flow_variant_metafields';
@@ -6812,19 +6823,6 @@ declare namespace io.flow.v0.models {
6812
6823
  readonly 'phone'?: string;
6813
6824
  }
6814
6825
 
6815
- interface Context {
6816
- readonly 'id': string;
6817
- readonly 'experiments': io.flow.v0.models.SessionContextExperiment[];
6818
- }
6819
-
6820
- interface ContextForm {
6821
- readonly 'experiments': io.flow.v0.models.SessionContextExperiment[];
6822
- }
6823
-
6824
- interface ContextReference {
6825
- readonly 'id': string;
6826
- }
6827
-
6828
6826
  interface Country {
6829
6827
  readonly 'name': string;
6830
6828
  readonly 'iso_3166_2': string;
@@ -8096,10 +8094,6 @@ declare namespace io.flow.v0.models {
8096
8094
  readonly 'experience': io.flow.v0.models.Experience;
8097
8095
  }
8098
8096
 
8099
- interface ExperimentVariant {
8100
- readonly 'key': string;
8101
- }
8102
-
8103
8097
  interface Expiration {
8104
8098
  readonly 'month': number;
8105
8099
  readonly 'year': number;
@@ -8795,6 +8789,17 @@ declare namespace io.flow.v0.models {
8795
8789
  readonly 'label': string;
8796
8790
  }
8797
8791
 
8792
+ interface IncotermIncludes {
8793
+ readonly 'duties': boolean;
8794
+ readonly 'taxes': boolean;
8795
+ }
8796
+
8797
+ interface IncotermSummary {
8798
+ readonly 'configuration': io.flow.v0.enums.IncotermConfiguration;
8799
+ readonly 'includes': io.flow.v0.models.IncotermIncludes;
8800
+ readonly 'reason'?: string;
8801
+ }
8802
+
8798
8803
  interface IndirectTax {
8799
8804
  readonly 'number'?: string;
8800
8805
  readonly 'id'?: string;
@@ -9489,7 +9494,6 @@ declare namespace io.flow.v0.models {
9489
9494
  readonly 'language': io.flow.v0.models.Language;
9490
9495
  readonly 'locale': io.flow.v0.models.Locale;
9491
9496
  readonly 'experience': io.flow.v0.models.ExperienceGeo;
9492
- readonly 'experiment'?: io.flow.v0.models.SessionExperiment;
9493
9497
  }
9494
9498
 
9495
9499
  interface Locale {
@@ -10027,6 +10031,7 @@ declare namespace io.flow.v0.models {
10027
10031
  readonly 'geo'?: io.flow.v0.models.OrderGeo;
10028
10032
  readonly 'device_details'?: io.flow.v0.unions.DeviceDetails;
10029
10033
  readonly 'destination_contact_details'?: io.flow.v0.models.DestinationContactDetail[];
10034
+ readonly 'incoterm_summary'?: io.flow.v0.models.IncotermSummary;
10030
10035
  }
10031
10036
 
10032
10037
  interface OrderAddress {
@@ -10825,8 +10830,6 @@ declare namespace io.flow.v0.models {
10825
10830
  readonly 'geo'?: io.flow.v0.models.SessionGeo;
10826
10831
  readonly 'experience'?: io.flow.v0.models.ExperienceGeo;
10827
10832
  readonly 'format'?: io.flow.v0.models.SessionFormat;
10828
- readonly 'experiment'?: io.flow.v0.models.SessionExperiment;
10829
- readonly 'context'?: io.flow.v0.models.ContextReference;
10830
10833
  }
10831
10834
 
10832
10835
  interface OrganizationSessionAuthorization {
@@ -13060,21 +13063,6 @@ declare namespace io.flow.v0.models {
13060
13063
  readonly 'roles': io.flow.v0.enums.FlowRole[];
13061
13064
  }
13062
13065
 
13063
- interface RuleDeleted {
13064
- readonly 'discriminator': 'rule_deleted';
13065
- readonly 'event_id': string;
13066
- readonly 'timestamp': string;
13067
- readonly 'id': string;
13068
- }
13069
-
13070
- interface RuleUpserted {
13071
- readonly 'discriminator': 'rule_upserted';
13072
- readonly 'event_id': string;
13073
- readonly 'timestamp': string;
13074
- readonly 'organization_id': string;
13075
- readonly 'rule': io.flow.inventory.v0.models.InventoryRule;
13076
- }
13077
-
13078
13066
  interface Schedule {
13079
13067
  readonly 'calendar'?: io.flow.v0.enums.Calendar;
13080
13068
  readonly 'holiday': io.flow.v0.enums.HolidayCalendar;
@@ -13147,35 +13135,11 @@ declare namespace io.flow.v0.models {
13147
13135
  readonly 'session': string;
13148
13136
  }
13149
13137
 
13150
- interface SessionContextExperiment {
13151
- readonly 'key': string;
13152
- readonly 'variant'?: io.flow.v0.models.ExperimentVariant;
13153
- }
13154
-
13155
13138
  interface SessionCurrencyFormat {
13156
13139
  readonly 'symbol': io.flow.v0.enums.CurrencySymbolFormat;
13157
13140
  readonly 'label_formatters': io.flow.v0.enums.CurrencyLabelFormatter[];
13158
13141
  }
13159
13142
 
13160
- interface SessionExperiment {
13161
- readonly 'key': string;
13162
- readonly 'variant'?: io.flow.v0.models.SessionExperimentVariant;
13163
- }
13164
-
13165
- interface SessionExperimentForm {
13166
- readonly 'key': string;
13167
- readonly 'variant'?: io.flow.v0.models.SessionExperimentVariantForm;
13168
- }
13169
-
13170
- interface SessionExperimentVariant {
13171
- readonly 'key': string;
13172
- readonly 'name': string;
13173
- }
13174
-
13175
- interface SessionExperimentVariantForm {
13176
- readonly 'key': string;
13177
- }
13178
-
13179
13143
  interface SessionExpirationConfig {
13180
13144
  readonly 'unit': io.flow.v0.enums.UnitOfTime;
13181
13145
  readonly 'value': number;
@@ -13419,6 +13383,11 @@ declare namespace io.flow.v0.models {
13419
13383
  readonly 'required': boolean;
13420
13384
  }
13421
13385
 
13386
+ interface ShippingLabelError {
13387
+ readonly 'code': io.flow.v0.enums.ShippingLabelErrorCode;
13388
+ readonly 'messages': string[];
13389
+ }
13390
+
13422
13391
  interface ShippingLabelHopCostItemizedEstimate {
13423
13392
  readonly 'units': io.flow.v0.models.LabelUnits;
13424
13393
  readonly 'base': io.flow.v0.models.LabelBase;
@@ -13909,25 +13878,6 @@ declare namespace io.flow.v0.models {
13909
13878
  readonly 'shipment_recipient'?: io.flow.v0.enums.ShipmentRecipient;
13910
13879
  }
13911
13880
 
13912
- interface SnapshotDeleted {
13913
- readonly 'discriminator': 'snapshot_deleted';
13914
- readonly 'event_id': string;
13915
- readonly 'timestamp': string;
13916
- readonly 'snapshot_id': string;
13917
- }
13918
-
13919
- interface SnapshotUpserted {
13920
- readonly 'discriminator': 'snapshot_upserted';
13921
- readonly 'event_id': string;
13922
- readonly 'timestamp': string;
13923
- readonly 'organization': string;
13924
- readonly 'snapshot_id': string;
13925
- readonly 'available': number;
13926
- readonly 'center_key': string;
13927
- readonly 'item_number': string;
13928
- readonly 'quantity': number;
13929
- }
13930
-
13931
13881
  interface SolidusProductExportType {
13932
13882
  readonly 'discriminator': 'solidus_product_export_type';
13933
13883
  readonly 'numbers'?: string[];
@@ -14522,6 +14472,7 @@ declare namespace io.flow.v0.models {
14522
14472
  readonly 'status': io.flow.v0.enums.TrackingStatus;
14523
14473
  readonly 'timestamp': string;
14524
14474
  readonly 'description'?: string;
14475
+ readonly 'aggregator_status_code'?: string;
14525
14476
  }
14526
14477
 
14527
14478
  interface TrackingEventForm {
@@ -15105,7 +15056,7 @@ declare namespace io.flow.v0.unions {
15105
15056
  type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
15106
15057
  type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
15107
15058
  type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
15108
- type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | 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.CatalogItemUpserted | io.flow.v0.models.CatalogItemDeleted | io.flow.v0.models.CatalogItemUpsertedV2 | io.flow.v0.models.CatalogItemDeletedV2 | 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.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.EmailNotificationUpserted | io.flow.v0.models.EmailNotificationDeleted | 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.RuleUpserted | io.flow.v0.models.RuleDeleted | io.flow.v0.models.SnapshotUpserted | io.flow.v0.models.SnapshotDeleted | 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.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);
15059
+ type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | 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.CatalogItemUpserted | io.flow.v0.models.CatalogItemDeleted | io.flow.v0.models.CatalogItemUpsertedV2 | io.flow.v0.models.CatalogItemDeletedV2 | 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.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.EmailNotificationUpserted | io.flow.v0.models.EmailNotificationDeleted | 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.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);
15109
15060
  type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary);
15110
15061
  type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
15111
15062
  type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
@@ -15278,6 +15229,7 @@ export const imageTag: PropTypes.Requireable<io.flow.v0.enums.ImageTag>;
15278
15229
  export const importType: PropTypes.Requireable<io.flow.v0.enums.ImportType>;
15279
15230
  export const includedLevyKey: PropTypes.Requireable<io.flow.v0.enums.IncludedLevyKey>;
15280
15231
  export const incoterm: PropTypes.Requireable<io.flow.v0.enums.Incoterm>;
15232
+ export const incotermConfiguration: PropTypes.Requireable<io.flow.v0.enums.IncotermConfiguration>;
15281
15233
  export const inlineWindowViewportSize: PropTypes.Requireable<io.flow.v0.enums.InlineWindowViewportSize>;
15282
15234
  export const inputSpecificationType: PropTypes.Requireable<io.flow.v0.enums.InputSpecificationType>;
15283
15235
  export const invitationErrorCode: PropTypes.Requireable<io.flow.v0.enums.InvitationErrorCode>;
@@ -15370,6 +15322,7 @@ export const scheduleExceptionStatus: PropTypes.Requireable<io.flow.v0.enums.Sch
15370
15322
  export const shipmentIntegrationType: PropTypes.Requireable<io.flow.v0.enums.ShipmentIntegrationType>;
15371
15323
  export const shipmentRecipient: PropTypes.Requireable<io.flow.v0.enums.ShipmentRecipient>;
15372
15324
  export const shippingConfigurationType: PropTypes.Requireable<io.flow.v0.enums.ShippingConfigurationType>;
15325
+ export const shippingLabelErrorCode: PropTypes.Requireable<io.flow.v0.enums.ShippingLabelErrorCode>;
15373
15326
  export const shopifyGrant: PropTypes.Requireable<io.flow.v0.enums.ShopifyGrant>;
15374
15327
  export const shopifyLocalizationMethod: PropTypes.Requireable<io.flow.v0.enums.ShopifyLocalizationMethod>;
15375
15328
  export const shopifySyncCheck: PropTypes.Requireable<io.flow.v0.enums.ShopifySyncCheck>;
@@ -15680,9 +15633,6 @@ export const consumerInvoicePayment: PropTypes.Requireable<io.flow.v0.models.Con
15680
15633
  export const consumerInvoiceReference: PropTypes.Requireable<io.flow.v0.models.ConsumerInvoiceReference>;
15681
15634
  export const consumerInvoiceUpserted: PropTypes.Requireable<io.flow.v0.models.ConsumerInvoiceUpserted>;
15682
15635
  export const contact: PropTypes.Requireable<io.flow.v0.models.Contact>;
15683
- export const context: PropTypes.Requireable<io.flow.v0.models.Context>;
15684
- export const contextForm: PropTypes.Requireable<io.flow.v0.models.ContextForm>;
15685
- export const contextReference: PropTypes.Requireable<io.flow.v0.models.ContextReference>;
15686
15636
  export const country: PropTypes.Requireable<io.flow.v0.models.Country>;
15687
15637
  export const countryAvailability: PropTypes.Requireable<io.flow.v0.models.CountryAvailability>;
15688
15638
  export const countryDefaults: PropTypes.Requireable<io.flow.v0.models.CountryDefaults>;
@@ -15867,7 +15817,6 @@ export const experienceSummary: PropTypes.Requireable<io.flow.v0.models.Experien
15867
15817
  export const experienceUpserted: PropTypes.Requireable<io.flow.v0.models.ExperienceUpserted>;
15868
15818
  export const experienceUpsertedV2: PropTypes.Requireable<io.flow.v0.models.ExperienceUpsertedV2>;
15869
15819
  export const experienceVersion: PropTypes.Requireable<io.flow.v0.models.ExperienceVersion>;
15870
- export const experimentVariant: PropTypes.Requireable<io.flow.v0.models.ExperimentVariant>;
15871
15820
  export const expiration: PropTypes.Requireable<io.flow.v0.models.Expiration>;
15872
15821
  export const UNSAFE_export: PropTypes.Requireable<io.flow.v0.models.Export>;
15873
15822
  export const exportDeliveryEmail: PropTypes.Requireable<io.flow.v0.models.ExportDeliveryEmail>;
@@ -15971,6 +15920,8 @@ export const importVersion: PropTypes.Requireable<io.flow.v0.models.ImportVersio
15971
15920
  export const inComplianceReview: PropTypes.Requireable<io.flow.v0.models.InComplianceReview>;
15972
15921
  export const inboundCartonFee: PropTypes.Requireable<io.flow.v0.models.InboundCartonFee>;
15973
15922
  export const includedLevies: PropTypes.Requireable<io.flow.v0.models.IncludedLevies>;
15923
+ export const incotermIncludes: PropTypes.Requireable<io.flow.v0.models.IncotermIncludes>;
15924
+ export const incotermSummary: PropTypes.Requireable<io.flow.v0.models.IncotermSummary>;
15974
15925
  export const indirectTax: PropTypes.Requireable<io.flow.v0.models.IndirectTax>;
15975
15926
  export const individual: PropTypes.Requireable<io.flow.v0.models.Individual>;
15976
15927
  export const inlineAuthorizationDetails: PropTypes.Requireable<io.flow.v0.models.InlineAuthorizationDetails>;
@@ -16554,8 +16505,6 @@ export const romanization: PropTypes.Requireable<io.flow.v0.models.Romanization>
16554
16505
  export const romanizationForm: PropTypes.Requireable<io.flow.v0.models.RomanizationForm>;
16555
16506
  export const rounding: PropTypes.Requireable<io.flow.v0.models.Rounding>;
16556
16507
  export const routeAudit: PropTypes.Requireable<io.flow.v0.models.RouteAudit>;
16557
- export const ruleDeleted: PropTypes.Requireable<io.flow.v0.models.RuleDeleted>;
16558
- export const ruleUpserted: PropTypes.Requireable<io.flow.v0.models.RuleUpserted>;
16559
16508
  export const schedule: PropTypes.Requireable<io.flow.v0.models.Schedule>;
16560
16509
  export const scheduledExport: PropTypes.Requireable<io.flow.v0.models.ScheduledExport>;
16561
16510
  export const scheduledExportForm: PropTypes.Requireable<io.flow.v0.models.ScheduledExportForm>;
@@ -16567,12 +16516,7 @@ export const serviceReference: PropTypes.Requireable<io.flow.v0.models.ServiceRe
16567
16516
  export const serviceSummary: PropTypes.Requireable<io.flow.v0.models.ServiceSummary>;
16568
16517
  export const serviceUnknown: PropTypes.Requireable<io.flow.v0.models.ServiceUnknown>;
16569
16518
  export const sessionAuthorizationForm: PropTypes.Requireable<io.flow.v0.models.SessionAuthorizationForm>;
16570
- export const sessionContextExperiment: PropTypes.Requireable<io.flow.v0.models.SessionContextExperiment>;
16571
16519
  export const sessionCurrencyFormat: PropTypes.Requireable<io.flow.v0.models.SessionCurrencyFormat>;
16572
- export const sessionExperiment: PropTypes.Requireable<io.flow.v0.models.SessionExperiment>;
16573
- export const sessionExperimentForm: PropTypes.Requireable<io.flow.v0.models.SessionExperimentForm>;
16574
- export const sessionExperimentVariant: PropTypes.Requireable<io.flow.v0.models.SessionExperimentVariant>;
16575
- export const sessionExperimentVariantForm: PropTypes.Requireable<io.flow.v0.models.SessionExperimentVariantForm>;
16576
16520
  export const sessionExpirationConfig: PropTypes.Requireable<io.flow.v0.models.SessionExpirationConfig>;
16577
16521
  export const sessionForm: PropTypes.Requireable<io.flow.v0.models.SessionForm>;
16578
16522
  export const sessionFormat: PropTypes.Requireable<io.flow.v0.models.SessionFormat>;
@@ -16606,6 +16550,7 @@ export const shippingConfigurationUpserted: PropTypes.Requireable<io.flow.v0.mod
16606
16550
  export const shippingConfigurationVersion: PropTypes.Requireable<io.flow.v0.models.ShippingConfigurationVersion>;
16607
16551
  export const shippingLabel: PropTypes.Requireable<io.flow.v0.models.ShippingLabel>;
16608
16552
  export const shippingLabelDocument: PropTypes.Requireable<io.flow.v0.models.ShippingLabelDocument>;
16553
+ export const shippingLabelError: PropTypes.Requireable<io.flow.v0.models.ShippingLabelError>;
16609
16554
  export const shippingLabelHopCostItemizedEstimate: PropTypes.Requireable<io.flow.v0.models.ShippingLabelHopCostItemizedEstimate>;
16610
16555
  export const shippingLabelHopSummary: PropTypes.Requireable<io.flow.v0.models.ShippingLabelHopSummary>;
16611
16556
  export const shippingLabelLaneSummary: PropTypes.Requireable<io.flow.v0.models.ShippingLabelLaneSummary>;
@@ -16666,8 +16611,6 @@ export const shopifyVariantFlowMetafield: PropTypes.Requireable<io.flow.v0.model
16666
16611
  export const shopifyVariantInventoryMetafield: PropTypes.Requireable<io.flow.v0.models.ShopifyVariantInventoryMetafield>;
16667
16612
  export const simplePermissionCheck: PropTypes.Requireable<io.flow.v0.models.SimplePermissionCheck>;
16668
16613
  export const singlePackageShippingNotificationForm: PropTypes.Requireable<io.flow.v0.models.SinglePackageShippingNotificationForm>;
16669
- export const snapshotDeleted: PropTypes.Requireable<io.flow.v0.models.SnapshotDeleted>;
16670
- export const snapshotUpserted: PropTypes.Requireable<io.flow.v0.models.SnapshotUpserted>;
16671
16614
  export const solidusProductExportType: PropTypes.Requireable<io.flow.v0.models.SolidusProductExportType>;
16672
16615
  export const solidusVariantExportType: PropTypes.Requireable<io.flow.v0.models.SolidusVariantExportType>;
16673
16616
  export const statement: PropTypes.Requireable<io.flow.v0.models.Statement>;