@flowio/api-prop-types 10.16.98 → 10.16.100

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
@@ -2932,133 +2932,6 @@ declare namespace io.flow.common.v0.unions {
2932
2932
  type RepeatSchedule = (io.flow.common.v0.models.RepeatHourly | io.flow.common.v0.models.RepeatDaily | io.flow.common.v0.models.RepeatWeekly | io.flow.common.v0.models.RepeatMonthly);
2933
2933
  }
2934
2934
 
2935
- declare namespace io.flow.token.v0.models {
2936
- interface ChannelToken {
2937
- readonly 'discriminator': 'channel_token';
2938
- readonly 'id': string;
2939
- readonly 'channel': io.flow.common.v0.models.ChannelReference;
2940
- readonly 'user': io.flow.common.v0.models.UserReference;
2941
- readonly 'partial': string;
2942
- readonly 'cleartext'?: string;
2943
- readonly 'created_at': string;
2944
- readonly 'description'?: string;
2945
- }
2946
-
2947
- interface ChannelTokenForm {
2948
- readonly 'channel_id': string;
2949
- readonly 'description'?: string;
2950
- }
2951
-
2952
- interface ChannelTokenReference {
2953
- readonly 'discriminator': 'channel_token_reference';
2954
- readonly 'id': string;
2955
- readonly 'channel': io.flow.common.v0.models.ChannelReference;
2956
- readonly 'user': io.flow.common.v0.models.UserReference;
2957
- }
2958
-
2959
- interface Cleartext {
2960
- readonly 'value': string;
2961
- }
2962
-
2963
- interface OrganizationToken {
2964
- readonly 'discriminator': 'organization_token';
2965
- readonly 'id': string;
2966
- readonly 'organization': io.flow.common.v0.models.OrganizationReference;
2967
- readonly 'user': io.flow.common.v0.models.UserReference;
2968
- readonly 'environment': io.flow.common.v0.enums.Environment;
2969
- readonly 'partial': string;
2970
- readonly 'created_at': string;
2971
- readonly 'description'?: string;
2972
- }
2973
-
2974
- interface OrganizationTokenForm {
2975
- readonly 'environment': io.flow.common.v0.enums.Environment;
2976
- readonly 'description'?: string;
2977
- }
2978
-
2979
- interface OrganizationTokenFormV2 {
2980
- readonly 'organization_id': string;
2981
- readonly 'description'?: string;
2982
- }
2983
-
2984
- interface OrganizationTokenReference {
2985
- readonly 'discriminator': 'organization_token_reference';
2986
- readonly 'id': string;
2987
- readonly 'organization': io.flow.common.v0.models.OrganizationReference;
2988
- readonly 'environment': io.flow.common.v0.enums.Environment;
2989
- readonly 'user': io.flow.common.v0.models.UserReference;
2990
- }
2991
-
2992
- interface OrganizationTokenV2 {
2993
- readonly 'discriminator': 'organization_token_v2';
2994
- readonly 'id': string;
2995
- readonly 'organization': io.flow.common.v0.models.OrganizationReference;
2996
- readonly 'user': io.flow.common.v0.models.UserReference;
2997
- readonly 'partial': string;
2998
- readonly 'cleartext'?: string;
2999
- readonly 'created_at': string;
3000
- readonly 'description'?: string;
3001
- }
3002
-
3003
- interface OrganizationTokenV2Reference {
3004
- readonly 'discriminator': 'organization_token_v2_reference';
3005
- readonly 'id': string;
3006
- readonly 'organization': io.flow.common.v0.models.OrganizationReference;
3007
- }
3008
-
3009
- interface PartnerToken {
3010
- readonly 'discriminator': 'partner_token';
3011
- readonly 'id': string;
3012
- readonly 'partner': io.flow.token.v0.models.TokenPartnerReference;
3013
- readonly 'user': io.flow.common.v0.models.UserReference;
3014
- readonly 'environment': io.flow.common.v0.enums.Environment;
3015
- readonly 'partial': string;
3016
- readonly 'created_at': string;
3017
- readonly 'description'?: string;
3018
- }
3019
-
3020
- interface PartnerTokenForm {
3021
- readonly 'environment': io.flow.common.v0.enums.Environment;
3022
- readonly 'description'?: string;
3023
- }
3024
-
3025
- interface PartnerTokenReference {
3026
- readonly 'discriminator': 'partner_token_reference';
3027
- readonly 'id': string;
3028
- readonly 'partner': io.flow.token.v0.models.TokenPartnerReference;
3029
- readonly 'environment': io.flow.common.v0.enums.Environment;
3030
- readonly 'user': io.flow.common.v0.models.UserReference;
3031
- }
3032
-
3033
- interface TokenAuthenticationForm {
3034
- readonly 'token': string;
3035
- }
3036
-
3037
- interface TokenPartnerReference {
3038
- readonly 'id': string;
3039
- }
3040
-
3041
- interface TokenRbacAuthenticationForm {
3042
- readonly 'token': string;
3043
- readonly 'method': string;
3044
- readonly 'path_pattern': string;
3045
- readonly 'path': string;
3046
- }
3047
-
3048
- interface TokenValidation {
3049
- readonly 'status': string;
3050
- }
3051
-
3052
- interface TokenValidationForm {
3053
- readonly 'token': string;
3054
- }
3055
- }
3056
-
3057
- declare namespace io.flow.token.v0.unions {
3058
- type Token = (io.flow.token.v0.models.ChannelToken | io.flow.token.v0.models.OrganizationToken | io.flow.token.v0.models.OrganizationTokenV2 | io.flow.token.v0.models.PartnerToken);
3059
- type TokenReference = (io.flow.token.v0.models.ChannelTokenReference | io.flow.token.v0.models.OrganizationTokenReference | io.flow.token.v0.models.OrganizationTokenV2Reference | io.flow.token.v0.models.PartnerTokenReference);
3060
- }
3061
-
3062
2935
  declare namespace io.flow.error.v0.enums {
3063
2936
  type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
3064
2937
  }
@@ -4137,6 +4010,7 @@ declare namespace io.flow.tech.onboarding.playground.v0.enums {
4137
4010
  type AnshItemType = 'physical' | 'digital';
4138
4011
  type NiallItemType = 'physical' | 'digital';
4139
4012
  type PrateekItemType = 'physical' | 'digital';
4013
+ type RohanItemType = 'physical' | 'digital';
4140
4014
  }
4141
4015
 
4142
4016
  declare namespace io.flow.tech.onboarding.playground.v0.models {
@@ -4213,6 +4087,23 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
4213
4087
  readonly 'added_on': string;
4214
4088
  }
4215
4089
 
4090
+ interface RohanItem {
4091
+ readonly 'id': string;
4092
+ readonly 'number': string;
4093
+ readonly 'amount': io.flow.common.v0.models.Price;
4094
+ readonly 'description'?: string;
4095
+ readonly 'type': io.flow.tech.onboarding.playground.v0.enums.RohanItemType;
4096
+ readonly 'added_on': string;
4097
+ }
4098
+
4099
+ interface RohanItemForm {
4100
+ readonly 'number': string;
4101
+ readonly 'amount': io.flow.common.v0.models.Price;
4102
+ readonly 'description'?: string;
4103
+ readonly 'type': io.flow.tech.onboarding.playground.v0.enums.RohanItemType;
4104
+ readonly 'added_on': string;
4105
+ }
4106
+
4216
4107
  interface TechOnboardingDescription {
4217
4108
  readonly 'description': string;
4218
4109
  }
@@ -4396,6 +4287,7 @@ declare namespace io.flow.channel.internal.v0.enums {
4396
4287
  type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
4397
4288
  type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
4398
4289
  type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
4290
+ type OrderPaymentSourceType = 'globale' | 'third_party';
4399
4291
  }
4400
4292
 
4401
4293
  declare namespace io.flow.channel.internal.v0.models {
@@ -4442,6 +4334,7 @@ declare namespace io.flow.channel.internal.v0.models {
4442
4334
  readonly 'order_created_at'?: string;
4443
4335
  readonly 'order_updated_at'?: string;
4444
4336
  readonly 'order_edit_summary'?: io.flow.channel.internal.v0.models.OrderEditSummary;
4337
+ readonly 'payment_source'?: io.flow.channel.internal.v0.enums.OrderPaymentSourceType;
4445
4338
  }
4446
4339
 
4447
4340
  interface ChannelOrderAcceptanceDetails {
@@ -5126,12 +5019,13 @@ declare namespace io.flow.query.builder.v0.unions {
5126
5019
 
5127
5020
  declare namespace io.flow.sellability.v0.enums {
5128
5021
  type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
5129
- type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity';
5022
+ type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
5130
5023
  type SellabilityRequestStatus = 'commit';
5131
5024
  }
5132
5025
 
5133
5026
  declare namespace io.flow.sellability.v0.models {
5134
5027
  interface ProductSellability {
5028
+ readonly 'discriminator': 'product_sellability';
5135
5029
  readonly 'shop_id': string;
5136
5030
  readonly 'product_id'?: string;
5137
5031
  readonly 'request_id': string;
@@ -5147,6 +5041,7 @@ declare namespace io.flow.sellability.v0.models {
5147
5041
  readonly 'description': string;
5148
5042
  readonly 'taxonomy_category': io.flow.product.v0.models.ProductTaxonomyCategory;
5149
5043
  readonly 'status'?: io.flow.sellability.v0.enums.SellabilityRequestStatus;
5044
+ readonly 'dry_run'?: boolean;
5150
5045
  }
5151
5046
 
5152
5047
  interface ProductSellabilityPrice {
@@ -5155,6 +5050,7 @@ declare namespace io.flow.sellability.v0.models {
5155
5050
  }
5156
5051
 
5157
5052
  interface SellabilityError {
5053
+ readonly 'discriminator': 'sellability_error';
5158
5054
  readonly 'code': io.flow.sellability.v0.enums.SellabilityErrorCode;
5159
5055
  readonly 'messages': string[];
5160
5056
  }
@@ -5165,6 +5061,10 @@ declare namespace io.flow.sellability.v0.models {
5165
5061
  }
5166
5062
  }
5167
5063
 
5064
+ declare namespace io.flow.sellability.v0.unions {
5065
+ type SellabilityResponse = (io.flow.sellability.v0.models.ProductSellability | io.flow.sellability.v0.models.SellabilityError);
5066
+ }
5067
+
5168
5068
  declare namespace io.flow.currency.v0.models {
5169
5069
  interface Rate {
5170
5070
  readonly 'id': string;
@@ -5244,7 +5144,7 @@ declare namespace io.flow.v0.enums {
5244
5144
  type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
5245
5145
  type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
5246
5146
  type Environment = 'sandbox' | 'production';
5247
- type EventType = 'test_upserted' | 'generate_load' | 'niall_item_upserted' | 'niall_item_deleted' | '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_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'channel_shopify_order_state_upserted' | 'channel_shopify_order_state_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' | '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' | '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' | 'transfer_upserted' | 'transfer_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';
5147
+ type EventType = 'test_upserted' | 'generate_load' | 'niall_item_upserted' | 'niall_item_deleted' | 'rohan_item_upserted' | 'rohan_item_deleted' | '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_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'channel_shopify_order_state_upserted' | 'channel_shopify_order_state_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' | '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' | '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' | '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' | 'transfer_upserted' | 'transfer_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' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
5248
5148
  type ExceptionType = 'open' | 'closed';
5249
5149
  type ExclusionRuleState = 'current' | 'deleting' | 'updating';
5250
5150
  type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
@@ -5253,7 +5153,7 @@ declare namespace io.flow.v0.enums {
5253
5153
  type ExperienceStatus = 'draft' | 'active' | 'archiving' | 'archived';
5254
5154
  type ExportStatus = 'created' | 'processing' | 'completed' | 'failed';
5255
5155
  type ExporterOfRecord = 'flow' | 'organization';
5256
- type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer' | 'negative_balance_guarantee';
5156
+ type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer' | 'negative_balance_guarantee' | 'sp';
5257
5157
  type FlowBehavior = 'view_consumer_data';
5258
5158
  type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can' | 'ge-usa';
5259
5159
  type FlowRole = 'organization_admin' | 'organization_merchant' | 'organization_customer_service' | 'organization_fulfillment' | 'organization_marketing' | 'organization_finance' | 'organization_classification' | 'flow_operations' | 'channel_admin' | 'channel_organization_admin';
@@ -5319,7 +5219,7 @@ declare namespace io.flow.v0.enums {
5319
5219
  type PaymentActionType = 'redirect' | 'redirect_get' | 'redirect_post' | 'select_payment_option' | 'use_sdk_klarna_v1' | 'use_sdk_applepay_js' | 'use_sdk_googlepay' | 'use_sdk_paypal' | 'use_sdk_stripe_v3' | 'use_sdk_adyen_v3' | 'use_sdk_adyen_v4' | 'execute_script' | 'display_inline_window';
5320
5220
  type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
5321
5221
  type PaymentFailureCode = 'action_expired' | 'action_cancelled' | 'action_failed' | 'authorization_declined' | 'not_supported' | 'fraudulent' | 'error' | 'payment_checks_declined';
5322
- type PaymentFeeType = 'fx' | 'mor';
5222
+ type PaymentFeeType = 'fx' | 'mor' | 'sp';
5323
5223
  type PaymentMethodCapability = 'credit' | 'debit';
5324
5224
  type PaymentMethodDataOptionType = 'ideal_issuer_option';
5325
5225
  type PaymentMethodRuleContentKey = 'description';
@@ -5379,6 +5279,7 @@ declare namespace io.flow.v0.enums {
5379
5279
  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';
5380
5280
  type SurchargeResponsibleParty = 'organization' | 'customer';
5381
5281
  type TaxApplicability = 'none' | 'all';
5282
+ type TaxDutyTransactionReasonCode = 'post_capture' | 'post_fulfilment' | 'manual_payment_or_gift_card' | 'order_edit' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'full_refund_without_shipment' | 'unfulfilled_order_above_de_min';
5382
5283
  type TaxReportType = 'consumer' | 'b2b';
5383
5284
  type TaxVerificationResult = 'valid' | 'invalid' | 'unable_to_validate';
5384
5285
  type TaxabilityType = 'tax_rule';
@@ -7646,28 +7547,12 @@ declare namespace io.flow.v0.models {
7646
7547
  readonly 'address_preferences': io.flow.v0.models.CustomerAddressPreference[];
7647
7548
  }
7648
7549
 
7649
- interface CustomerAddressBookContactDeleted {
7650
- readonly 'discriminator': 'customer_address_book_contact_deleted';
7651
- readonly 'event_id': string;
7652
- readonly 'timestamp': string;
7653
- readonly 'organization': string;
7654
- readonly 'customer_address_book_contact': io.flow.v0.models.CustomerAddressBookContact;
7655
- }
7656
-
7657
7550
  interface CustomerAddressBookContactForm {
7658
7551
  readonly 'address': io.flow.v0.models.Address;
7659
7552
  readonly 'contact'?: io.flow.v0.models.Contact;
7660
7553
  readonly 'address_preferences'?: io.flow.v0.models.CustomerAddressPreference[];
7661
7554
  }
7662
7555
 
7663
- interface CustomerAddressBookContactUpserted {
7664
- readonly 'discriminator': 'customer_address_book_contact_upserted';
7665
- readonly 'event_id': string;
7666
- readonly 'timestamp': string;
7667
- readonly 'organization': string;
7668
- readonly 'customer_address_book_contact': io.flow.v0.models.CustomerAddressBookContact;
7669
- }
7670
-
7671
7556
  interface CustomerAddressBookForm {
7672
7557
  readonly 'contacts': io.flow.v0.models.CustomerAddressBookContactForm[];
7673
7558
  }
@@ -7685,14 +7570,6 @@ declare namespace io.flow.v0.models {
7685
7570
  readonly 'token': string;
7686
7571
  }
7687
7572
 
7688
- interface CustomerDeleted {
7689
- readonly 'discriminator': 'customer_deleted';
7690
- readonly 'event_id': string;
7691
- readonly 'timestamp': string;
7692
- readonly 'organization': string;
7693
- readonly 'customer': io.flow.v0.models.Customer;
7694
- }
7695
-
7696
7573
  interface CustomerForm {
7697
7574
  readonly 'number': string;
7698
7575
  readonly 'email'?: string;
@@ -7747,14 +7624,6 @@ declare namespace io.flow.v0.models {
7747
7624
  readonly 'token': string;
7748
7625
  }
7749
7626
 
7750
- interface CustomerUpserted {
7751
- readonly 'discriminator': 'customer_upserted';
7752
- readonly 'event_id': string;
7753
- readonly 'timestamp': string;
7754
- readonly 'organization': string;
7755
- readonly 'customer': io.flow.v0.models.Customer;
7756
- }
7757
-
7758
7627
  interface Cvv {
7759
7628
  readonly 'code': io.flow.v0.enums.CvvCode;
7760
7629
  readonly 'description'?: string;
@@ -9059,7 +8928,7 @@ declare namespace io.flow.v0.models {
9059
8928
  readonly 'ge_hs6_code': string;
9060
8929
  readonly 'product_id': string;
9061
8930
  readonly 'ge_organization_name': string;
9062
- readonly 'shipping_origin_country'?: string;
8931
+ readonly 'ge_shipping_origin_country'?: string;
9063
8932
  }
9064
8933
 
9065
8934
  interface GeInputPrice {
@@ -9100,6 +8969,7 @@ declare namespace io.flow.v0.models {
9100
8969
  readonly 'environment': io.flow.v0.enums.Environment;
9101
8970
  readonly 'timestamp': string;
9102
8971
  readonly 'id': string;
8972
+ readonly 'operation': io.flow.v0.enums.ChangeType;
9103
8973
  }
9104
8974
 
9105
8975
  interface GeProductRestrictionResultUpsert {
@@ -9109,6 +8979,7 @@ declare namespace io.flow.v0.models {
9109
8979
  readonly 'event_type': io.flow.v0.enums.GeEventType;
9110
8980
  readonly 'environment': io.flow.v0.enums.Environment;
9111
8981
  readonly 'timestamp': string;
8982
+ readonly 'operation': io.flow.v0.enums.ChangeType;
9112
8983
  readonly 'ge_product_restriction_result': io.flow.v0.models.ProductRestrictionResult;
9113
8984
  }
9114
8985
 
@@ -12488,6 +12359,8 @@ declare namespace io.flow.v0.models {
12488
12359
  readonly 'amount': io.flow.v0.models.Money;
12489
12360
  readonly 'starts_at'?: string;
12490
12361
  readonly 'ends_at'?: string;
12362
+ readonly 'regions'?: string[];
12363
+ readonly 'dependent_service_fees'?: string[];
12491
12364
  }
12492
12365
 
12493
12366
  interface PendingPayoutTransactionReason {
@@ -12816,6 +12689,7 @@ declare namespace io.flow.v0.models {
12816
12689
  readonly 'product_id': string;
12817
12690
  readonly 'item_numbers': string[];
12818
12691
  readonly 'prohibited_regions': string[];
12692
+ readonly 'sellability_restricted_regions'?: string[];
12819
12693
  readonly 'reasons_per_region'?: io.flow.v0.models.ReasonsPerRegion[];
12820
12694
  readonly 'review_status'?: io.flow.v0.enums.ReviewStatus;
12821
12695
  readonly 'rules'?: io.flow.v0.enums.ProductRestrictionRule[];
@@ -13137,6 +13011,11 @@ declare namespace io.flow.v0.models {
13137
13011
  readonly 'line_items'?: io.flow.v0.models.LineItemForm[];
13138
13012
  }
13139
13013
 
13014
+ interface RatecardFeeSummary {
13015
+ readonly 'ratecard_fee': io.flow.v0.unions.RatecardFee;
13016
+ readonly 'source_service_fees': string[];
13017
+ }
13018
+
13140
13019
  interface RatecardForm {
13141
13020
  readonly 'direction': io.flow.v0.enums.Direction;
13142
13021
  readonly 'effective_at': string;
@@ -13539,21 +13418,6 @@ declare namespace io.flow.v0.models {
13539
13418
  readonly 'carrier_tracking_number'?: string;
13540
13419
  }
13541
13420
 
13542
- interface ReturnDeleted {
13543
- readonly 'discriminator': 'return_deleted';
13544
- readonly 'event_id': string;
13545
- readonly 'timestamp': string;
13546
- readonly 'id': string;
13547
- }
13548
-
13549
- interface ReturnDeletedV2 {
13550
- readonly 'discriminator': 'return_deleted_v2';
13551
- readonly 'event_id': string;
13552
- readonly 'timestamp': string;
13553
- readonly 'organization': string;
13554
- readonly 'return': io.flow.v0.models.Return;
13555
- }
13556
-
13557
13421
  interface ReturnForm {
13558
13422
  readonly 'items': io.flow.v0.models.ReturnLineItem[];
13559
13423
  readonly 'tier_id'?: string;
@@ -13647,28 +13511,6 @@ declare namespace io.flow.v0.models {
13647
13511
  readonly 'attributes'?: Record<string, string>;
13648
13512
  }
13649
13513
 
13650
- interface ReturnUpserted {
13651
- readonly 'discriminator': 'return_upserted';
13652
- readonly 'event_id': string;
13653
- readonly 'timestamp': string;
13654
- readonly 'id': string;
13655
- readonly 'organization': string;
13656
- readonly 'destination': io.flow.v0.models.ShippingAddress;
13657
- readonly 'items': io.flow.v0.models.ReturnLineItem[];
13658
- readonly 'key': string;
13659
- readonly 'labels'?: io.flow.v0.models.ShippingLabel[];
13660
- readonly 'service': string;
13661
- readonly 'origin': io.flow.v0.models.ShippingAddress;
13662
- }
13663
-
13664
- interface ReturnUpsertedV2 {
13665
- readonly 'discriminator': 'return_upserted_v2';
13666
- readonly 'event_id': string;
13667
- readonly 'timestamp': string;
13668
- readonly 'organization': string;
13669
- readonly 'return': io.flow.v0.models.Return;
13670
- }
13671
-
13672
13514
  interface ReturnVersion {
13673
13515
  readonly 'id': string;
13674
13516
  readonly 'timestamp': string;
@@ -13734,6 +13576,20 @@ declare namespace io.flow.v0.models {
13734
13576
  readonly 'reversal': io.flow.v0.models.Reversal;
13735
13577
  }
13736
13578
 
13579
+ interface RohanItemDeleted {
13580
+ readonly 'discriminator': 'rohan_item_deleted';
13581
+ readonly 'event_id': string;
13582
+ readonly 'timestamp': string;
13583
+ readonly 'id': string;
13584
+ }
13585
+
13586
+ interface RohanItemUpserted {
13587
+ readonly 'discriminator': 'rohan_item_upserted';
13588
+ readonly 'event_id': string;
13589
+ readonly 'timestamp': string;
13590
+ readonly 'item': io.flow.tech.onboarding.playground.v0.models.RohanItem;
13591
+ }
13592
+
13737
13593
  interface Romanization {
13738
13594
  readonly 'address'?: io.flow.v0.models.Address;
13739
13595
  readonly 'contact'?: io.flow.v0.models.Contact;
@@ -15221,9 +15077,15 @@ declare namespace io.flow.v0.models {
15221
15077
 
15222
15078
  interface TransactionMetadataShippingLabelCarrier {
15223
15079
  readonly 'id': string;
15080
+ readonly 'service_id'?: string;
15224
15081
  readonly 'tracking_number': string;
15225
15082
  }
15226
15083
 
15084
+ interface TransactionMetadataTaxDuty {
15085
+ readonly 'discriminator': 'transaction_tax_duty';
15086
+ readonly 'reason_code': io.flow.v0.enums.TaxDutyTransactionReasonCode;
15087
+ }
15088
+
15227
15089
  interface TransactionMetadataTrueup {
15228
15090
  readonly 'discriminator': 'trueup';
15229
15091
  readonly 'original': io.flow.v0.models.TransactionMetadataOriginalTransaction;
@@ -15610,7 +15472,7 @@ declare namespace io.flow.v0.unions {
15610
15472
  type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
15611
15473
  type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
15612
15474
  type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
15613
- type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.NiallItemUpserted | io.flow.v0.models.NiallItemDeleted | 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.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.ChannelShopifyOrderStateUpserted | io.flow.v0.models.ChannelShopifyOrderStateDeleted | 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.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.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.TransferUpserted | io.flow.v0.models.TransferDeleted | 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);
15475
+ type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.NiallItemUpserted | io.flow.v0.models.NiallItemDeleted | io.flow.v0.models.RohanItemUpserted | io.flow.v0.models.RohanItemDeleted | 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.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.ChannelShopifyOrderStateUpserted | io.flow.v0.models.ChannelShopifyOrderStateDeleted | 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.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.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.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.TransferUpserted | io.flow.v0.models.TransferDeleted | 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.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted);
15614
15476
  type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary | io.flow.v0.models.ExternalCard);
15615
15477
  type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
15616
15478
  type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
@@ -15698,7 +15560,7 @@ declare namespace io.flow.v0.unions {
15698
15560
  type Token = (io.flow.v0.models.ChannelToken | io.flow.v0.models.OrganizationToken | io.flow.v0.models.OrganizationTokenV2 | io.flow.v0.models.PartnerToken);
15699
15561
  type TokenReference = (io.flow.v0.models.ChannelTokenReference | io.flow.v0.models.OrganizationTokenReference | io.flow.v0.models.OrganizationTokenV2Reference | io.flow.v0.models.PartnerTokenReference);
15700
15562
  type TransactionDetails = (io.flow.v0.models.TransactionDetailsCard);
15701
- type TransactionMetadata = (io.flow.v0.models.TransactionMetadataShippingLabel | io.flow.v0.models.TransactionMetadataChannel | io.flow.v0.models.TransactionMetadataTrueup | io.flow.v0.models.TransactionMetadataTrueupBase | io.flow.v0.models.TransactionMetadataTrueupSurcharge | io.flow.v0.models.TransactionMetadataCarrierCharge | io.flow.v0.models.TransactionMetadataManual | io.flow.v0.models.TransactionMetadataFailedPayout | io.flow.v0.models.TransactionMetadataPaymentTransaction);
15563
+ type TransactionMetadata = (io.flow.v0.models.TransactionMetadataShippingLabel | io.flow.v0.models.TransactionMetadataChannel | io.flow.v0.models.TransactionMetadataTrueup | io.flow.v0.models.TransactionMetadataTrueupBase | io.flow.v0.models.TransactionMetadataTrueupSurcharge | io.flow.v0.models.TransactionMetadataCarrierCharge | io.flow.v0.models.TransactionMetadataManual | io.flow.v0.models.TransactionMetadataFailedPayout | io.flow.v0.models.TransactionMetadataPaymentTransaction | io.flow.v0.models.TransactionMetadataTaxDuty);
15702
15564
  type TransferReference = (io.flow.v0.models.CaptureReference | io.flow.v0.models.RefundReference | io.flow.v0.models.DisputeReference);
15703
15565
  }
15704
15566
 
@@ -15892,6 +15754,7 @@ export const subcatalogItemStatus: PropTypes.Requireable<io.flow.v0.enums.Subcat
15892
15754
  export const substatusCode: PropTypes.Requireable<io.flow.v0.enums.SubstatusCode>;
15893
15755
  export const surchargeResponsibleParty: PropTypes.Requireable<io.flow.v0.enums.SurchargeResponsibleParty>;
15894
15756
  export const taxApplicability: PropTypes.Requireable<io.flow.v0.enums.TaxApplicability>;
15757
+ export const taxDutyTransactionReasonCode: PropTypes.Requireable<io.flow.v0.enums.TaxDutyTransactionReasonCode>;
15895
15758
  export const taxReportType: PropTypes.Requireable<io.flow.v0.enums.TaxReportType>;
15896
15759
  export const taxVerificationResult: PropTypes.Requireable<io.flow.v0.enums.TaxVerificationResult>;
15897
15760
  export const taxabilityType: PropTypes.Requireable<io.flow.v0.enums.TaxabilityType>;
@@ -16226,14 +16089,11 @@ export const currencySymbols: PropTypes.Requireable<io.flow.v0.models.CurrencySy
16226
16089
  export const customer: PropTypes.Requireable<io.flow.v0.models.Customer>;
16227
16090
  export const customerAddressBook: PropTypes.Requireable<io.flow.v0.models.CustomerAddressBook>;
16228
16091
  export const customerAddressBookContact: PropTypes.Requireable<io.flow.v0.models.CustomerAddressBookContact>;
16229
- export const customerAddressBookContactDeleted: PropTypes.Requireable<io.flow.v0.models.CustomerAddressBookContactDeleted>;
16230
16092
  export const customerAddressBookContactForm: PropTypes.Requireable<io.flow.v0.models.CustomerAddressBookContactForm>;
16231
- export const customerAddressBookContactUpserted: PropTypes.Requireable<io.flow.v0.models.CustomerAddressBookContactUpserted>;
16232
16093
  export const customerAddressBookForm: PropTypes.Requireable<io.flow.v0.models.CustomerAddressBookForm>;
16233
16094
  export const customerAddressPreference: PropTypes.Requireable<io.flow.v0.models.CustomerAddressPreference>;
16234
16095
  export const customerBundle: PropTypes.Requireable<io.flow.v0.models.CustomerBundle>;
16235
16096
  export const customerClientToken: PropTypes.Requireable<io.flow.v0.models.CustomerClientToken>;
16236
- export const customerDeleted: PropTypes.Requireable<io.flow.v0.models.CustomerDeleted>;
16237
16097
  export const customerForm: PropTypes.Requireable<io.flow.v0.models.CustomerForm>;
16238
16098
  export const customerInvoice: PropTypes.Requireable<io.flow.v0.models.CustomerInvoice>;
16239
16099
  export const customerLastUsed: PropTypes.Requireable<io.flow.v0.models.CustomerLastUsed>;
@@ -16244,7 +16104,6 @@ export const customerPurgeSettingsForm: PropTypes.Requireable<io.flow.v0.models.
16244
16104
  export const customerPutForm: PropTypes.Requireable<io.flow.v0.models.CustomerPutForm>;
16245
16105
  export const customerReference: PropTypes.Requireable<io.flow.v0.models.CustomerReference>;
16246
16106
  export const customerToken: PropTypes.Requireable<io.flow.v0.models.CustomerToken>;
16247
- export const customerUpserted: PropTypes.Requireable<io.flow.v0.models.CustomerUpserted>;
16248
16107
  export const cvv: PropTypes.Requireable<io.flow.v0.models.Cvv>;
16249
16108
  export const cvvResult: PropTypes.Requireable<io.flow.v0.models.CvvResult>;
16250
16109
  export const datetimeRange: PropTypes.Requireable<io.flow.v0.models.DatetimeRange>;
@@ -16993,6 +16852,7 @@ export const ratecardEstimateV1: PropTypes.Requireable<io.flow.v0.models.Ratecar
16993
16852
  export const ratecardEstimateV2: PropTypes.Requireable<io.flow.v0.models.RatecardEstimateV2>;
16994
16853
  export const ratecardEstimateV3: PropTypes.Requireable<io.flow.v0.models.RatecardEstimateV3>;
16995
16854
  export const ratecardEstimateV4: PropTypes.Requireable<io.flow.v0.models.RatecardEstimateV4>;
16855
+ export const ratecardFeeSummary: PropTypes.Requireable<io.flow.v0.models.RatecardFeeSummary>;
16996
16856
  export const ratecardForm: PropTypes.Requireable<io.flow.v0.models.RatecardForm>;
16997
16857
  export const ratecardLane: PropTypes.Requireable<io.flow.v0.models.RatecardLane>;
16998
16858
  export const ratecardLaneDeleted: PropTypes.Requireable<io.flow.v0.models.RatecardLaneDeleted>;
@@ -17044,8 +16904,6 @@ export const repeatHourly: PropTypes.Requireable<io.flow.v0.models.RepeatHourly>
17044
16904
  export const repeatMonthly: PropTypes.Requireable<io.flow.v0.models.RepeatMonthly>;
17045
16905
  export const repeatWeekly: PropTypes.Requireable<io.flow.v0.models.RepeatWeekly>;
17046
16906
  export const UNSAFE_return: PropTypes.Requireable<io.flow.v0.models.Return>;
17047
- export const returnDeleted: PropTypes.Requireable<io.flow.v0.models.ReturnDeleted>;
17048
- export const returnDeletedV2: PropTypes.Requireable<io.flow.v0.models.ReturnDeletedV2>;
17049
16907
  export const returnForm: PropTypes.Requireable<io.flow.v0.models.ReturnForm>;
17050
16908
  export const returnItemReference: PropTypes.Requireable<io.flow.v0.models.ReturnItemReference>;
17051
16909
  export const returnLineItem: PropTypes.Requireable<io.flow.v0.models.ReturnLineItem>;
@@ -17061,8 +16919,6 @@ export const returnReasonForm: PropTypes.Requireable<io.flow.v0.models.ReturnRea
17061
16919
  export const returnReasonPutForm: PropTypes.Requireable<io.flow.v0.models.ReturnReasonPutForm>;
17062
16920
  export const returnSourceExternalVendor: PropTypes.Requireable<io.flow.v0.models.ReturnSourceExternalVendor>;
17063
16921
  export const returnSourceFlow: PropTypes.Requireable<io.flow.v0.models.ReturnSourceFlow>;
17064
- export const returnUpserted: PropTypes.Requireable<io.flow.v0.models.ReturnUpserted>;
17065
- export const returnUpsertedV2: PropTypes.Requireable<io.flow.v0.models.ReturnUpsertedV2>;
17066
16922
  export const returnVersion: PropTypes.Requireable<io.flow.v0.models.ReturnVersion>;
17067
16923
  export const reversal: PropTypes.Requireable<io.flow.v0.models.Reversal>;
17068
16924
  export const reversalDeleted: PropTypes.Requireable<io.flow.v0.models.ReversalDeleted>;
@@ -17071,6 +16927,8 @@ export const reversalForm: PropTypes.Requireable<io.flow.v0.models.ReversalForm>
17071
16927
  export const reversalPutForm: PropTypes.Requireable<io.flow.v0.models.ReversalPutForm>;
17072
16928
  export const reversalUpserted: PropTypes.Requireable<io.flow.v0.models.ReversalUpserted>;
17073
16929
  export const reversalVersion: PropTypes.Requireable<io.flow.v0.models.ReversalVersion>;
16930
+ export const rohanItemDeleted: PropTypes.Requireable<io.flow.v0.models.RohanItemDeleted>;
16931
+ export const rohanItemUpserted: PropTypes.Requireable<io.flow.v0.models.RohanItemUpserted>;
17074
16932
  export const romanization: PropTypes.Requireable<io.flow.v0.models.Romanization>;
17075
16933
  export const romanizationForm: PropTypes.Requireable<io.flow.v0.models.RomanizationForm>;
17076
16934
  export const rounding: PropTypes.Requireable<io.flow.v0.models.Rounding>;
@@ -17270,6 +17128,7 @@ export const transactionMetadataOutboundTransaction: PropTypes.Requireable<io.fl
17270
17128
  export const transactionMetadataPaymentTransaction: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataPaymentTransaction>;
17271
17129
  export const transactionMetadataShippingLabel: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataShippingLabel>;
17272
17130
  export const transactionMetadataShippingLabelCarrier: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataShippingLabelCarrier>;
17131
+ export const transactionMetadataTaxDuty: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataTaxDuty>;
17273
17132
  export const transactionMetadataTrueup: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataTrueup>;
17274
17133
  export const transactionMetadataTrueupBase: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataTrueupBase>;
17275
17134
  export const transactionMetadataTrueupBaseData: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataTrueupBaseData>;