@flowio/api-prop-types 10.16.107 → 10.16.109

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
@@ -2485,7 +2485,7 @@ declare namespace io.flow.channel.internal.v0.enums {
2485
2485
  type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
2486
2486
  type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
2487
2487
  type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
2488
- 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';
2488
+ 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_allocation_duties_mismatch' | 'order_missing';
2489
2489
  type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
2490
2490
  type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
2491
2491
  type OrderPaymentSourceType = 'globale' | 'third_party';
@@ -2537,6 +2537,7 @@ declare namespace io.flow.channel.internal.v0.models {
2537
2537
  readonly 'order_updated_at'?: string;
2538
2538
  readonly 'order_edit_summary'?: io.flow.channel.internal.v0.models.OrderEditSummary;
2539
2539
  readonly 'payment_source'?: io.flow.channel.internal.v0.enums.OrderPaymentSourceType;
2540
+ readonly 'external_order_summary'?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
2540
2541
  }
2541
2542
 
2542
2543
  interface ChannelOrderAcceptanceDetails {
@@ -2562,9 +2563,9 @@ declare namespace io.flow.channel.internal.v0.models {
2562
2563
  readonly 'rejection_reason'?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
2563
2564
  }
2564
2565
 
2565
- interface ChannelOrganizationDomain {
2566
+ interface ChannelOrganizationDomains {
2566
2567
  readonly 'internal': string;
2567
- readonly 'public': string;
2568
+ readonly 'external': string;
2568
2569
  }
2569
2570
 
2570
2571
  interface ChannelOrganizationInstallation {
@@ -2578,7 +2579,7 @@ declare namespace io.flow.channel.internal.v0.models {
2578
2579
  }
2579
2580
 
2580
2581
  interface ChannelOrganizationMetadata {
2581
- readonly 'domain': io.flow.channel.internal.v0.models.ChannelOrganizationDomain;
2582
+ readonly 'domain': io.flow.channel.internal.v0.models.ChannelOrganizationDomains;
2582
2583
  readonly 'token': string;
2583
2584
  }
2584
2585
 
@@ -2864,6 +2865,8 @@ declare namespace io.flow.common.v0.models {
2864
2865
  interface MerchantOfRecordEntityRegistration {
2865
2866
  readonly 'number': string;
2866
2867
  readonly 'country': string;
2868
+ readonly 'province_number'?: string;
2869
+ readonly 'province'?: string;
2867
2870
  }
2868
2871
 
2869
2872
  interface Money {
@@ -3063,6 +3066,35 @@ declare namespace io.flow.error.v0.models {
3063
3066
  }
3064
3067
  }
3065
3068
 
3069
+ declare namespace io.flow.channel.shopify.v0.enums {
3070
+ type ChannelShopifyOrderStateReasonCode = 'placeholder_reason_code';
3071
+ }
3072
+
3073
+ declare namespace io.flow.channel.shopify.v0.models {
3074
+ interface ChannelShopifyOrderState {
3075
+ readonly 'id': string;
3076
+ readonly 'shopify_order_summary': io.flow.channel.shopify.v0.models.ChannelShopifyOrderSummary;
3077
+ readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
3078
+ readonly 'reasons'?: io.flow.channel.shopify.v0.models.ChannelShopifyOrderStateReason[];
3079
+ readonly 'external_order_summary'?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
3080
+ }
3081
+
3082
+ interface ChannelShopifyOrderStateReason {
3083
+ readonly 'code': io.flow.channel.shopify.v0.enums.ChannelShopifyOrderStateReasonCode;
3084
+ readonly 'message': string;
3085
+ }
3086
+
3087
+ interface ChannelShopifyOrderSummary {
3088
+ readonly 'order_id': number;
3089
+ readonly 'shop_id': number;
3090
+ }
3091
+
3092
+ interface ExternalOrderSummary {
3093
+ readonly 'id': string;
3094
+ readonly 'edit_ids': string[];
3095
+ }
3096
+ }
3097
+
3066
3098
  declare namespace io.flow.channel.v0.enums {
3067
3099
  type ChannelCurrencyCapability = 'payment_authorizations' | 'settlement_currency';
3068
3100
  }
@@ -3194,164 +3226,6 @@ declare namespace io.flow.apple.pay.v0.models {
3194
3226
  }
3195
3227
  }
3196
3228
 
3197
- declare namespace io.flow.tech.onboarding.playground.v0.enums {
3198
- type AldoItemType = 'physical' | 'digital';
3199
- type AnirbanItemType = 'physical' | 'digital';
3200
- type AnshItemType = 'physical' | 'digital';
3201
- type HoseinItemType = 'physical' | 'digital';
3202
- type NiallItemType = 'physical' | 'digital';
3203
- type PrateekItemType = 'physical' | 'digital';
3204
- type RohanItemType = 'physical' | 'digital';
3205
- type SarveshItemType = 'physical' | 'digital';
3206
- }
3207
-
3208
- declare namespace io.flow.tech.onboarding.playground.v0.models {
3209
- interface AldoItem {
3210
- readonly 'id': string;
3211
- readonly 'number': string;
3212
- readonly 'amount': io.flow.common.v0.models.Price;
3213
- readonly 'description'?: string;
3214
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AldoItemType;
3215
- readonly 'added_on': string;
3216
- }
3217
-
3218
- interface AldoItemForm {
3219
- readonly 'number': string;
3220
- readonly 'amount': io.flow.common.v0.models.Price;
3221
- readonly 'description'?: string;
3222
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AldoItemType;
3223
- readonly 'added_on': string;
3224
- }
3225
-
3226
- interface AnirbanItem {
3227
- readonly 'id': string;
3228
- readonly 'number': string;
3229
- readonly 'amount': io.flow.common.v0.models.Price;
3230
- readonly 'description'?: string;
3231
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AnirbanItemType;
3232
- readonly 'added_on': string;
3233
- }
3234
-
3235
- interface AnirbanItemForm {
3236
- readonly 'number': string;
3237
- readonly 'amount': io.flow.common.v0.models.Price;
3238
- readonly 'description'?: string;
3239
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AnirbanItemType;
3240
- readonly 'added_on': string;
3241
- }
3242
-
3243
- interface AnshItem {
3244
- readonly 'id': string;
3245
- readonly 'number': string;
3246
- readonly 'amount': io.flow.common.v0.models.Price;
3247
- readonly 'description'?: string;
3248
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
3249
- readonly 'added_on': string;
3250
- }
3251
-
3252
- interface AnshItemForm {
3253
- readonly 'number': string;
3254
- readonly 'amount': io.flow.common.v0.models.Price;
3255
- readonly 'description'?: string;
3256
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
3257
- readonly 'added_on': string;
3258
- }
3259
-
3260
- interface HoseinItem {
3261
- readonly 'id': string;
3262
- readonly 'number': string;
3263
- readonly 'amount': io.flow.common.v0.models.Price;
3264
- readonly 'description'?: string;
3265
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.HoseinItemType;
3266
- readonly 'added_on': string;
3267
- }
3268
-
3269
- interface HoseinItemForm {
3270
- readonly 'number': string;
3271
- readonly 'amount': io.flow.common.v0.models.Price;
3272
- readonly 'description'?: string;
3273
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.HoseinItemType;
3274
- readonly 'added_on': string;
3275
- }
3276
-
3277
- interface JeanDemoItem {
3278
- readonly 'id': string;
3279
- readonly 'name': string;
3280
- }
3281
-
3282
- interface NiallItem {
3283
- readonly 'id': string;
3284
- readonly 'number': string;
3285
- readonly 'amount': io.flow.common.v0.models.Price;
3286
- readonly 'description'?: string;
3287
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.NiallItemType;
3288
- readonly 'added_on': string;
3289
- }
3290
-
3291
- interface NiallItemForm {
3292
- readonly 'number': string;
3293
- readonly 'amount': io.flow.common.v0.models.Price;
3294
- readonly 'description'?: string;
3295
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.NiallItemType;
3296
- readonly 'added_on': string;
3297
- }
3298
-
3299
- interface PrateekItem {
3300
- readonly 'id': string;
3301
- readonly 'number': string;
3302
- readonly 'amount': io.flow.common.v0.models.Price;
3303
- readonly 'description'?: string;
3304
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.PrateekItemType;
3305
- readonly 'added_on': string;
3306
- }
3307
-
3308
- interface PrateekItemForm {
3309
- readonly 'number': string;
3310
- readonly 'amount': io.flow.common.v0.models.Price;
3311
- readonly 'description'?: string;
3312
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.PrateekItemType;
3313
- readonly 'added_on': string;
3314
- }
3315
-
3316
- interface RohanItem {
3317
- readonly 'id': string;
3318
- readonly 'number': string;
3319
- readonly 'amount': io.flow.common.v0.models.Price;
3320
- readonly 'description'?: string;
3321
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.RohanItemType;
3322
- readonly 'added_on': string;
3323
- }
3324
-
3325
- interface RohanItemForm {
3326
- readonly 'number': string;
3327
- readonly 'amount': io.flow.common.v0.models.Price;
3328
- readonly 'description'?: string;
3329
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.RohanItemType;
3330
- readonly 'added_on': string;
3331
- }
3332
-
3333
- interface SarveshItem {
3334
- readonly 'id': string;
3335
- readonly 'number': string;
3336
- readonly 'amount': io.flow.common.v0.models.Price;
3337
- readonly 'description'?: string;
3338
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.SarveshItemType;
3339
- readonly 'added_on': string;
3340
- }
3341
-
3342
- interface SarveshItemForm {
3343
- readonly 'number': string;
3344
- readonly 'amount': io.flow.common.v0.models.Price;
3345
- readonly 'description'?: string;
3346
- readonly 'type': io.flow.tech.onboarding.playground.v0.enums.SarveshItemType;
3347
- readonly 'added_on': string;
3348
- }
3349
-
3350
- interface TechOnboardingDescription {
3351
- readonly 'description': string;
3352
- }
3353
- }
3354
-
3355
3229
  declare namespace io.flow.product.v0.models {
3356
3230
  interface Product {
3357
3231
  readonly 'organization_id': string;
@@ -3437,6 +3311,7 @@ declare namespace io.flow.v0.enums {
3437
3311
  type ChangeType = 'insert' | 'update' | 'delete';
3438
3312
  type ChannelCurrencyCapability = 'payment_authorizations' | 'settlement_currency';
3439
3313
  type ChannelShopifyOrderStateReasonCode = 'placeholder_reason_code';
3314
+ type CommercialInvoiceMode = 'direct' | 'indirect';
3440
3315
  type ConsumerInvoiceCustomerType = 'business_eu_verified' | 'business_non_verified' | 'individual';
3441
3316
  type ConsumerInvoiceDocumentType = 'pdf';
3442
3317
  type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
@@ -3464,7 +3339,7 @@ declare namespace io.flow.v0.enums {
3464
3339
  type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
3465
3340
  type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
3466
3341
  type Environment = 'sandbox' | 'production';
3467
- type EventType = 'test_upserted' | 'generate_load' | 'sarvesh_item_upserted' | 'sarvesh_item_deleted' | 'hosein_item_upserted' | 'hosein_item_deleted' | 'niall_item_upserted' | 'niall_item_deleted' | 'rohan_item_upserted' | 'rohan_item_deleted' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'ansh_item_upserted' | 'ansh_item_deleted' | 'anirban_item_upserted' | 'anirban_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' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v3' | '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' | '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';
3342
+ 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' | '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' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v3' | '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' | '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' | 'tax_registration_upserted' | 'tax_registration_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' | 'product_sellability_result_upserted' | 'product_sellability_result_deleted' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted' | 'tracking_label_event_upserted_v2';
3468
3343
  type ExceptionType = 'open' | 'closed';
3469
3344
  type ExclusionRuleState = 'current' | 'deleting' | 'updating';
3470
3345
  type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
@@ -3575,6 +3450,7 @@ declare namespace io.flow.v0.enums {
3575
3450
  type RefundStatus = 'pending' | 'succeeded' | 'failed' | 'canceled';
3576
3451
  type RegionType = 'state' | 'province' | 'jurisdiction';
3577
3452
  type RestrictedReviewStatus = 'in_review' | 'reviewed';
3453
+ type RestrictionEnvironment = 'sandbox' | 'production' | 'qa';
3578
3454
  type ReturnItemStatus = 'returnable' | 'non-returnable';
3579
3455
  type ReturnPolicyState = 'current' | 'deleting' | 'updating';
3580
3456
  type ReturnStatus = 'open' | 'refunded';
@@ -3589,6 +3465,9 @@ declare namespace io.flow.v0.enums {
3589
3465
  type ScheduleExceptionStatus = 'Open' | 'Closed';
3590
3466
  type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
3591
3467
  type SellabilityRequestStatus = 'commit';
3468
+ type SellabilityResultErrorCode = 'insufficient_details' | 'generic_error';
3469
+ type SellabilityResultStatus = 'in_review' | 'succeeded' | 'failed';
3470
+ type SellabilityScreeningMode = 'pre_onboarding' | 'default_on' | 'active';
3592
3471
  type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
3593
3472
  type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
3594
3473
  type ShippingConfigurationType = 'default' | 'variant';
@@ -3597,7 +3476,8 @@ declare namespace io.flow.v0.enums {
3597
3476
  type ShopifyLocalizationMethod = 'api' | 'ssr';
3598
3477
  type ShopifySyncCheck = 'localized_variants' | 'flow_variant_metafields';
3599
3478
  type SortDirection = 'ascending' | 'descending';
3600
- type StatementAttachmentType = 'csv';
3479
+ type StatementAttachmentType = 'csv' | 'pdf';
3480
+ type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
3601
3481
  type StoredMethodUsageStep = 'initial' | 'subsequent';
3602
3482
  type Strategy = 'range' | 'from' | 'to';
3603
3483
  type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
@@ -3605,8 +3485,10 @@ declare namespace io.flow.v0.enums {
3605
3485
  type SurchargeResponsibleParty = 'organization' | 'customer';
3606
3486
  type TaxApplicability = 'none' | 'all';
3607
3487
  type TaxDutyCalculatorValidationErrorCode = 'generic_error' | 'destination_country_not_defined' | 'destination_address_iso3166_unrecognized' | 'line_item_shipfrom_shipto_country_invalid' | 'line_item_ship_from_invalid' | 'line_item_currency_iso4217_unrecognized' | 'line_quantity_invalid' | 'line_item_quantity_invalid' | 'line_item_unit_price_precision_invalid' | 'line_item_unit_price_negative' | 'line_item_discount_amount_precision_invalid' | 'line_item_discount_amount_positive' | 'line_item_country_of_origin_iso3166_unrecognized' | 'line_item_hs_code_invalid' | 'line_item_duty_provider_invalid' | 'shipping_unit_price_precision_invalid' | 'shipping_unit_price_negative' | 'shipping_discount_amount_precision_invalid' | 'shipping_discount_amount_invalid' | 'merchant_of_record_invalid' | 'wrong_unit_specified';
3608
- 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';
3488
+ type TaxDutyTransactionReasonCode = 'post_capture' | 'post_fulfilment' | 'manual_payment_or_gift_card' | 'order_edit' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'us_inbound_tax_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'full_refund_without_shipment' | 'unfulfilled_order_above_de_min';
3489
+ type TaxJurisdictionType = 'country' | 'province';
3609
3490
  type TaxReportType = 'consumer' | 'b2b';
3491
+ type TaxType = 'vat' | 'gst' | 'hst' | 'pst' | 'qst' | 'sales_tax';
3610
3492
  type TaxVerificationResult = 'valid' | 'invalid' | 'unable_to_validate';
3611
3493
  type TaxabilityType = 'tax_rule';
3612
3494
  type TaxabilityValue = 'exempt';
@@ -3620,10 +3502,10 @@ declare namespace io.flow.v0.enums {
3620
3502
  type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired' | 'unknown' | 'unmapped';
3621
3503
  type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
3622
3504
  type TradeAgreementStatus = 'supported' | 'not_supported';
3623
- type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'duty_refund' | 'non_l4l_tax_duty_fx' | 'merchant_payout' | 'merchant_refund' | 'ge_revenue_share' | 'merchant_fee';
3505
+ type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'duty_refund' | 'non_l4l_tax_duty_fx' | 'merchant_payout' | 'merchant_refund' | 'ge_revenue_share' | 'merchant_fee' | 'b2b_tax' | 'b2b_tax_refund';
3624
3506
  type TransferStatus = 'succeeded' | 'canceled';
3625
3507
  type TransferType = 'payout_to_merchant' | 'disputed_amount_to_merchant' | 'duties_and_taxes_adjustment_to_merchant' | 'disputed_amount_from_merchant' | 'duties_and_taxes_adjustment_from_merchant' | 'refund_from_merchant';
3626
- type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
3508
+ type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
3627
3509
  type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion' | 'prohibited_item' | 'undeliverable_shipment' | 'signature_required' | 'direct_delivery' | 'saturday_stop' | 'residential_extended_area_pickup' | 'package_level_detail' | 'pickup';
3628
3510
  type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
3629
3511
  type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_foot' | 'cubic_millimeter' | 'cubic_centimeter' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
@@ -3952,20 +3834,6 @@ declare namespace io.flow.v0.models {
3952
3834
  readonly 'fingerprint_token': string;
3953
3835
  }
3954
3836
 
3955
- interface AldoItemDeleted {
3956
- readonly 'discriminator': 'aldo_item_deleted';
3957
- readonly 'event_id': string;
3958
- readonly 'timestamp': string;
3959
- readonly 'id': string;
3960
- }
3961
-
3962
- interface AldoItemUpserted {
3963
- readonly 'discriminator': 'aldo_item_upserted';
3964
- readonly 'event_id': string;
3965
- readonly 'timestamp': string;
3966
- readonly 'item': io.flow.tech.onboarding.playground.v0.models.AldoItem;
3967
- }
3968
-
3969
3837
  interface Allocation {
3970
3838
  readonly 'order': io.flow.v0.models.AllocationOrderSummary;
3971
3839
  readonly 'details': io.flow.v0.unions.AllocationDetail[];
@@ -4090,34 +3958,6 @@ declare namespace io.flow.v0.models {
4090
3958
  readonly 'interval'?: io.flow.v0.enums.UnitOfTime;
4091
3959
  }
4092
3960
 
4093
- interface AnirbanItemDeleted {
4094
- readonly 'discriminator': 'anirban_item_deleted';
4095
- readonly 'event_id': string;
4096
- readonly 'timestamp': string;
4097
- readonly 'id': string;
4098
- }
4099
-
4100
- interface AnirbanItemUpserted {
4101
- readonly 'discriminator': 'anirban_item_upserted';
4102
- readonly 'event_id': string;
4103
- readonly 'timestamp': string;
4104
- readonly 'item': io.flow.tech.onboarding.playground.v0.models.AnirbanItem;
4105
- }
4106
-
4107
- interface AnshItemDeleted {
4108
- readonly 'discriminator': 'ansh_item_deleted';
4109
- readonly 'event_id': string;
4110
- readonly 'timestamp': string;
4111
- readonly 'id': string;
4112
- }
4113
-
4114
- interface AnshItemUpserted {
4115
- readonly 'discriminator': 'ansh_item_upserted';
4116
- readonly 'event_id': string;
4117
- readonly 'timestamp': string;
4118
- readonly 'item': io.flow.tech.onboarding.playground.v0.models.AnshItem;
4119
- }
4120
-
4121
3961
  interface ApplePayMerchantValidationPayload {
4122
3962
  readonly 'discriminator': 'apple_pay_merchant_validation_payload';
4123
3963
  readonly 'validation_url': string;
@@ -4405,9 +4245,13 @@ declare namespace io.flow.v0.models {
4405
4245
  readonly 'key': string;
4406
4246
  readonly 'invoice': io.flow.v0.models.B2BInvoiceReference;
4407
4247
  readonly 'lines': io.flow.v0.unions.ConsumerInvoiceLine[];
4248
+ readonly 'tax_lines'?: io.flow.v0.models.InvoiceTaxLine[];
4249
+ readonly 'tax'?: io.flow.v0.models.Money;
4408
4250
  readonly 'documents': io.flow.v0.models.ConsumerInvoiceDocument[];
4409
4251
  readonly 'attributes': Record<string, string>;
4410
4252
  readonly 'b2b_invoice_type': io.flow.v0.enums.B2BInvoiceType;
4253
+ readonly 'center'?: io.flow.v0.models.ConsumerInvoiceCenterReference;
4254
+ readonly 'order'?: io.flow.v0.models.ConsumerInvoiceOrderSummary;
4411
4255
  }
4412
4256
 
4413
4257
  interface B2BCreditMemoDeleted {
@@ -4439,6 +4283,7 @@ declare namespace io.flow.v0.models {
4439
4283
  readonly 'center'?: io.flow.v0.models.ConsumerInvoiceCenterReference;
4440
4284
  readonly 'destination'?: io.flow.v0.models.OrderAddress;
4441
4285
  readonly 'tax': io.flow.v0.models.Money;
4286
+ readonly 'tax_lines'?: io.flow.v0.models.InvoiceTaxLine[];
4442
4287
  readonly 'lines': io.flow.v0.unions.ConsumerInvoiceLine[];
4443
4288
  readonly 'documents': io.flow.v0.models.ConsumerInvoiceDocument[];
4444
4289
  readonly 'attributes': Record<string, string>;
@@ -5233,6 +5078,7 @@ declare namespace io.flow.v0.models {
5233
5078
  readonly 'shopify_order_summary': io.flow.v0.models.ChannelShopifyOrderSummary;
5234
5079
  readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
5235
5080
  readonly 'reasons'?: io.flow.v0.models.ChannelShopifyOrderStateReason[];
5081
+ readonly 'external_order_summary'?: io.flow.v0.models.ExternalOrderSummary;
5236
5082
  }
5237
5083
 
5238
5084
  interface ChannelShopifyOrderStateDeleted {
@@ -5462,6 +5308,77 @@ declare namespace io.flow.v0.models {
5462
5308
  readonly 'amount': io.flow.v0.models.Money;
5463
5309
  }
5464
5310
 
5311
+ interface CommonMerchantApplication {
5312
+ readonly 'discriminator': 'common_merchant_application';
5313
+ readonly 'id': string;
5314
+ readonly 'organization_id': string;
5315
+ readonly 'organization_reference': io.flow.v0.models.OnboardingOrganizationReference;
5316
+ readonly 'status': io.flow.v0.enums.OnboardingApplicationStatus;
5317
+ readonly 'company'?: io.flow.v0.models.MerchantInfo;
5318
+ readonly 'indirect_tax'?: io.flow.v0.models.IndirectTax;
5319
+ readonly 'ultimate_beneficiary_owner'?: io.flow.v0.models.UltimateBeneficiaryOwner;
5320
+ readonly 'business_url'?: string;
5321
+ readonly 'business_description'?: string;
5322
+ readonly 'business_address'?: io.flow.v0.models.Address;
5323
+ readonly 'refund_percentage'?: number;
5324
+ readonly 'chargeback_percentage'?: number;
5325
+ readonly 'beneficiary_details'?: io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
5326
+ readonly 'other_trade_sector'?: string;
5327
+ readonly 'center_contact'?: io.flow.v0.models.OperationsContact;
5328
+ readonly 'center_address'?: io.flow.v0.models.Address;
5329
+ readonly 'average_order_weight'?: number;
5330
+ readonly 'average_order_weight_unit'?: io.flow.v0.enums.UnitOfMeasurement;
5331
+ readonly 'package_dimensions'?: io.flow.v0.models.Dimension[];
5332
+ readonly 'monthly_average'?: io.flow.v0.models.MonthlyAverage;
5333
+ readonly 'default_country_of_origin'?: string;
5334
+ readonly 'rate_card': string;
5335
+ readonly 'shop'?: io.flow.v0.models.Shop;
5336
+ readonly 'created_at': string;
5337
+ readonly 'last_year_xborder_gmv'?: io.flow.v0.models.Money;
5338
+ readonly 'last_month_xborder_gmv'?: io.flow.v0.models.Money;
5339
+ readonly 'average_order_value'?: io.flow.v0.models.Money;
5340
+ readonly 'mcc_codes'?: number[];
5341
+ }
5342
+
5343
+ interface CommonMerchantApplicationForm {
5344
+ readonly 'discriminator': 'common_merchant_application_form';
5345
+ readonly 'company'?: io.flow.v0.models.MerchantInfo;
5346
+ readonly 'indirect_tax'?: io.flow.v0.models.IndirectTax;
5347
+ readonly 'ultimate_beneficiary_owner'?: io.flow.v0.models.UltimateBeneficiaryOwner;
5348
+ readonly 'business_url'?: string;
5349
+ readonly 'business_description'?: string;
5350
+ readonly 'business_address'?: io.flow.v0.models.Address;
5351
+ readonly 'refund_percentage'?: number;
5352
+ readonly 'chargeback_percentage'?: number;
5353
+ readonly 'beneficiary_details'?: io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
5354
+ readonly 'other_trade_sector'?: string;
5355
+ readonly 'center_contact'?: io.flow.v0.models.OperationsContact;
5356
+ readonly 'center_address'?: io.flow.v0.models.Address;
5357
+ readonly 'average_order_weight'?: number;
5358
+ readonly 'average_order_weight_unit'?: io.flow.v0.enums.UnitOfMeasurement;
5359
+ readonly 'package_dimensions'?: io.flow.v0.models.Dimension[];
5360
+ readonly 'monthly_average_volume_amount'?: number;
5361
+ readonly 'monthly_average_volume_currency'?: string;
5362
+ readonly 'monthly_average_number_transactions'?: number;
5363
+ readonly 'default_country_of_origin'?: string;
5364
+ readonly 'shop'?: io.flow.v0.models.Shop;
5365
+ readonly 'rate_card'?: string;
5366
+ readonly 'last_year_xborder_gmv'?: io.flow.v0.models.Money;
5367
+ readonly 'last_month_xborder_gmv'?: io.flow.v0.models.Money;
5368
+ readonly 'average_order_value'?: io.flow.v0.models.Money;
5369
+ readonly 'mcc_codes'?: number[];
5370
+ }
5371
+
5372
+ interface CommonMerchantApplicationPutForm {
5373
+ readonly 'discriminator': 'common_merchant_application_put_form';
5374
+ readonly 'status'?: io.flow.v0.enums.OnboardingApplicationStatus;
5375
+ }
5376
+
5377
+ interface CommonMerchantApplicationsSummary {
5378
+ readonly 'discriminator': 'common_merchant_applications_summary';
5379
+ readonly 'total': number;
5380
+ }
5381
+
5465
5382
  interface Company {
5466
5383
  readonly 'discriminator': 'company';
5467
5384
  readonly 'legal_name': string;
@@ -5532,6 +5449,7 @@ declare namespace io.flow.v0.models {
5532
5449
 
5533
5450
  interface ConsumerInvoiceLineDiscount {
5534
5451
  readonly 'discriminator': 'discount';
5452
+ readonly 'line_id'?: string;
5535
5453
  readonly 'price': io.flow.v0.models.Price;
5536
5454
  }
5537
5455
 
@@ -5542,6 +5460,7 @@ declare namespace io.flow.v0.models {
5542
5460
 
5543
5461
  interface ConsumerInvoiceLineItem {
5544
5462
  readonly 'discriminator': 'item';
5463
+ readonly 'line_id'?: string;
5545
5464
  readonly 'item': io.flow.v0.models.ItemReference;
5546
5465
  readonly 'description': string;
5547
5466
  readonly 'quantity': number;
@@ -5563,6 +5482,7 @@ declare namespace io.flow.v0.models {
5563
5482
 
5564
5483
  interface ConsumerInvoiceLineShipping {
5565
5484
  readonly 'discriminator': 'shipping';
5485
+ readonly 'line_id'?: string;
5566
5486
  readonly 'price': io.flow.v0.models.Price;
5567
5487
  readonly 'discount'?: io.flow.v0.models.Price;
5568
5488
  readonly 'tax'?: io.flow.v0.models.ConsumerInvoiceLevy;
@@ -5579,6 +5499,7 @@ declare namespace io.flow.v0.models {
5579
5499
 
5580
5500
  interface ConsumerInvoiceLineTip {
5581
5501
  readonly 'discriminator': 'tip';
5502
+ readonly 'line_id'?: string;
5582
5503
  readonly 'price': io.flow.v0.models.Price;
5583
5504
  readonly 'tax'?: io.flow.v0.models.ConsumerInvoiceLevy;
5584
5505
  }
@@ -5691,6 +5612,8 @@ declare namespace io.flow.v0.models {
5691
5612
  readonly 'documents': io.flow.v0.models.ConsumerInvoiceDocument[];
5692
5613
  readonly 'attributes': Record<string, string>;
5693
5614
  readonly 'tax_registration'?: io.flow.v0.models.TaxRegistration;
5615
+ readonly 'center'?: io.flow.v0.models.ConsumerInvoiceCenterReference;
5616
+ readonly 'order'?: io.flow.v0.models.ConsumerInvoiceOrderSummary;
5694
5617
  }
5695
5618
 
5696
5619
  interface CreditMemoDeleted {
@@ -6477,6 +6400,7 @@ declare namespace io.flow.v0.models {
6477
6400
  readonly 'amount': io.flow.v0.models.Money;
6478
6401
  readonly 'origin_region'?: io.flow.v0.models.RatecardRegionReference;
6479
6402
  readonly 'destination_region'?: io.flow.v0.models.RatecardRegionReference;
6403
+ readonly 'destination_regions'?: io.flow.v0.models.RatecardRegionReference[];
6480
6404
  readonly 'interval_unit'?: io.flow.v0.enums.UnitOfMeasurement;
6481
6405
  }
6482
6406
 
@@ -6815,6 +6739,11 @@ declare namespace io.flow.v0.models {
6815
6739
  readonly 'type'?: io.flow.v0.enums.CardType;
6816
6740
  }
6817
6741
 
6742
+ interface ExternalOrderSummary {
6743
+ readonly 'id': string;
6744
+ readonly 'edit_ids': string[];
6745
+ }
6746
+
6818
6747
  interface FeeDeduction {
6819
6748
  readonly 'type': io.flow.v0.enums.FeeDeductionType;
6820
6749
  readonly 'amount': number;
@@ -7117,7 +7046,7 @@ declare namespace io.flow.v0.models {
7117
7046
  readonly 'discriminator': 'ge_catalog_item_ingestion_result';
7118
7047
  readonly 'event_id': string;
7119
7048
  readonly 'event_type': io.flow.v0.enums.GeEventType;
7120
- readonly 'environment': io.flow.v0.enums.Environment;
7049
+ readonly 'environment': io.flow.v0.enums.RestrictionEnvironment;
7121
7050
  readonly 'timestamp': string;
7122
7051
  readonly 'source': string;
7123
7052
  readonly 'response': io.flow.v0.enums.GeCatalogItemIngestionResponse;
@@ -7184,7 +7113,7 @@ declare namespace io.flow.v0.models {
7184
7113
  readonly 'organization': string;
7185
7114
  readonly 'event_id': string;
7186
7115
  readonly 'event_type': io.flow.v0.enums.GeEventType;
7187
- readonly 'environment': io.flow.v0.enums.Environment;
7116
+ readonly 'environment': io.flow.v0.enums.RestrictionEnvironment;
7188
7117
  readonly 'timestamp': string;
7189
7118
  readonly 'id': string;
7190
7119
  readonly 'operation': io.flow.v0.enums.ChangeType;
@@ -7195,7 +7124,7 @@ declare namespace io.flow.v0.models {
7195
7124
  readonly 'organization': string;
7196
7125
  readonly 'event_id': string;
7197
7126
  readonly 'event_type': io.flow.v0.enums.GeEventType;
7198
- readonly 'environment': io.flow.v0.enums.Environment;
7127
+ readonly 'environment': io.flow.v0.enums.RestrictionEnvironment;
7199
7128
  readonly 'timestamp': string;
7200
7129
  readonly 'operation': io.flow.v0.enums.ChangeType;
7201
7130
  readonly 'ge_product_restriction_result': io.flow.v0.models.ProductRestrictionResult;
@@ -7393,20 +7322,6 @@ declare namespace io.flow.v0.models {
7393
7322
  readonly 'hop_estimate': io.flow.v0.models.HopEstimateV2;
7394
7323
  }
7395
7324
 
7396
- interface HoseinItemDeleted {
7397
- readonly 'discriminator': 'hosein_item_deleted';
7398
- readonly 'event_id': string;
7399
- readonly 'timestamp': string;
7400
- readonly 'id': string;
7401
- }
7402
-
7403
- interface HoseinItemUpserted {
7404
- readonly 'discriminator': 'hosein_item_upserted';
7405
- readonly 'event_id': string;
7406
- readonly 'timestamp': string;
7407
- readonly 'item': io.flow.tech.onboarding.playground.v0.models.HoseinItem;
7408
- }
7409
-
7410
7325
  interface Hs10 {
7411
7326
  readonly 'id': string;
7412
7327
  readonly 'item': io.flow.v0.models.HarmonizedItemReference;
@@ -7651,6 +7566,11 @@ declare namespace io.flow.v0.models {
7651
7566
  readonly 'date_to'?: string;
7652
7567
  }
7653
7568
 
7569
+ interface InvoiceTaxLine {
7570
+ readonly 'line_id': string;
7571
+ readonly 'tax_breakdown': io.flow.v0.models.TaxBreakdown[];
7572
+ }
7573
+
7654
7574
  interface IssuerReference {
7655
7575
  readonly 'id': string;
7656
7576
  }
@@ -8020,32 +7940,6 @@ declare namespace io.flow.v0.models {
8020
7940
  readonly 'length': io.flow.v0.enums.UnitOfLength;
8021
7941
  }
8022
7942
 
8023
- interface LabelUpserted {
8024
- readonly 'discriminator': 'label_upserted';
8025
- readonly 'event_id': string;
8026
- readonly 'timestamp': string;
8027
- readonly 'organization': string;
8028
- readonly 'label_id': string;
8029
- readonly 'carrier_tracking_number': string;
8030
- readonly 'commercial_invoice': string;
8031
- readonly 'flow_tracking_number': string;
8032
- readonly 'destination': io.flow.v0.models.ShippingAddress;
8033
- readonly 'origin': io.flow.v0.models.ShippingAddress;
8034
- readonly 'carrier': string;
8035
- readonly 'service': string;
8036
- readonly 'zpl'?: string;
8037
- readonly 'pdf'?: string;
8038
- readonly 'png'?: string;
8039
- readonly 'order'?: string;
8040
- readonly 'carrier_tracking_number_url'?: string;
8041
- readonly 'flow_tracking_number_url'?: string;
8042
- readonly 'center_key'?: string;
8043
- readonly 'recipient'?: io.flow.v0.enums.ShipmentRecipient;
8044
- readonly 'package'?: io.flow.v0.models.ShippingLabelPackage;
8045
- readonly 'order_identifier'?: string;
8046
- readonly 'fulfillment_key'?: string;
8047
- }
8048
-
8049
7943
  interface LabelUpsertedV2 {
8050
7944
  readonly 'discriminator': 'label_upserted_v2';
8051
7945
  readonly 'event_id': string;
@@ -8469,6 +8363,7 @@ declare namespace io.flow.v0.models {
8469
8363
  readonly 'region'?: io.flow.v0.enums.RegionType;
8470
8364
  readonly 'region_value'?: string;
8471
8365
  readonly 'category_code'?: string;
8366
+ readonly 'description'?: string;
8472
8367
  }
8473
8368
 
8474
8369
  interface MerchantOfRecordAuthorizationForm {
@@ -8504,6 +8399,8 @@ declare namespace io.flow.v0.models {
8504
8399
  interface MerchantOfRecordEntityRegistration {
8505
8400
  readonly 'number': string;
8506
8401
  readonly 'country': string;
8402
+ readonly 'province_number'?: string;
8403
+ readonly 'province'?: string;
8507
8404
  }
8508
8405
 
8509
8406
  interface MerchantOfRecordPaymentForm {
@@ -8523,6 +8420,17 @@ declare namespace io.flow.v0.models {
8523
8420
  readonly 'country'?: string;
8524
8421
  }
8525
8422
 
8423
+ interface MerchantOnboardingBeneficiaryDetails {
8424
+ readonly 'name'?: string;
8425
+ readonly 'address'?: io.flow.v0.models.Address;
8426
+ readonly 'phone'?: string;
8427
+ readonly 'email'?: string;
8428
+ readonly 'bank_account_number'?: string;
8429
+ readonly 'bank_routing_number'?: string;
8430
+ readonly 'bank_name'?: string;
8431
+ readonly 'bank_address'?: io.flow.v0.models.Address;
8432
+ }
8433
+
8526
8434
  interface MerchantRejected {
8527
8435
  readonly 'discriminator': 'merchant_rejected';
8528
8436
  readonly 'reason': io.flow.v0.enums.MerchantRejectedReason;
@@ -8570,20 +8478,7 @@ declare namespace io.flow.v0.models {
8570
8478
  interface NeedsActionAttributes {
8571
8479
  readonly 'reason_code': string;
8572
8480
  readonly 'category_metafield_handles': string[];
8573
- }
8574
-
8575
- interface NiallItemDeleted {
8576
- readonly 'discriminator': 'niall_item_deleted';
8577
- readonly 'event_id': string;
8578
- readonly 'timestamp': string;
8579
- readonly 'id': string;
8580
- }
8581
-
8582
- interface NiallItemUpserted {
8583
- readonly 'discriminator': 'niall_item_upserted';
8584
- readonly 'event_id': string;
8585
- readonly 'timestamp': string;
8586
- readonly 'item': io.flow.tech.onboarding.playground.v0.models.NiallItem;
8481
+ readonly 'require_msds'?: boolean;
8587
8482
  }
8588
8483
 
8589
8484
  interface NotificationDeletedV2 {
@@ -9448,6 +9343,22 @@ declare namespace io.flow.v0.models {
9448
9343
  readonly 'environment': io.flow.v0.enums.Environment;
9449
9344
  }
9450
9345
 
9346
+ interface OrganizationTaxRegistration {
9347
+ readonly 'id': string;
9348
+ readonly 'organization': io.flow.v0.models.OrganizationSummary;
9349
+ readonly 'address': io.flow.v0.models.BillingAddress;
9350
+ readonly 'registration': io.flow.v0.models.TaxRegistrationDetail;
9351
+ readonly 'self_billing_agreement': io.flow.v0.models.SelfBillingAgreement;
9352
+ }
9353
+
9354
+ interface OrganizationTaxRegistrationForm {
9355
+ readonly 'tax_number': string;
9356
+ readonly 'country': string;
9357
+ readonly 'province'?: string;
9358
+ readonly 'self_billing_agreement_effective_at': string;
9359
+ readonly 'self_billing_agreement_expires_at'?: string;
9360
+ }
9361
+
9451
9362
  interface OrganizationToken {
9452
9363
  readonly 'discriminator': 'organization_token';
9453
9364
  readonly 'id': string;
@@ -10245,6 +10156,7 @@ declare namespace io.flow.v0.models {
10245
10156
  readonly 'supported_actions': io.flow.v0.enums.PaymentActionType[];
10246
10157
  readonly 'payment_capture_option'?: io.flow.v0.unions.PaymentCaptureOption;
10247
10158
  readonly 'review'?: io.flow.v0.models.PaymentRequestReview;
10159
+ readonly 'client_secret'?: string;
10248
10160
  }
10249
10161
 
10250
10162
  interface PaymentRequestBilling {
@@ -10773,7 +10685,7 @@ declare namespace io.flow.v0.models {
10773
10685
  readonly 'updated_by'?: string;
10774
10686
  readonly 'product_restriction_id'?: string;
10775
10687
  readonly 'hs_code'?: string;
10776
- readonly 'restricted_regions_by_type'?: io.flow.v0.models.SellablilityRegionResult[];
10688
+ readonly 'restricted_regions_by_type'?: io.flow.v0.models.SellabilityRegionResult[];
10777
10689
  readonly 'needs_action_attributes'?: io.flow.v0.models.NeedsActionAttributes[];
10778
10690
  }
10779
10691
 
@@ -10799,10 +10711,11 @@ declare namespace io.flow.v0.models {
10799
10711
  readonly 'product_id'?: string;
10800
10712
  readonly 'request_id': string;
10801
10713
  readonly 'hs6_code': string;
10802
- readonly 'restricted_regions': io.flow.v0.models.SellablilityRegionResult[];
10714
+ readonly 'restricted_regions': io.flow.v0.models.SellabilityRegionResult[];
10803
10715
  }
10804
10716
 
10805
10717
  interface ProductSellabilityForm {
10718
+ readonly 'discriminator': 'product_sellability_form';
10806
10719
  readonly 'shop_id': string;
10807
10720
  readonly 'product_id'?: string;
10808
10721
  readonly 'name': string;
@@ -10813,6 +10726,31 @@ declare namespace io.flow.v0.models {
10813
10726
  readonly 'dry_run'?: boolean;
10814
10727
  }
10815
10728
 
10729
+ interface ProductSellabilityResult {
10730
+ readonly 'merchant_id'?: string;
10731
+ readonly 'product_id': string;
10732
+ readonly 'restricted_regions': io.flow.v0.models.SellabilityRestrictedRegion[];
10733
+ readonly 'needs_action_attributes'?: io.flow.v0.models.SellabilityNeedsActionAttributes[];
10734
+ readonly 'request_id'?: string;
10735
+ readonly 'hs6_code'?: string;
10736
+ }
10737
+
10738
+ interface ProductSellabilityResultDeleted {
10739
+ readonly 'discriminator': 'product_sellability_result_deleted';
10740
+ readonly 'event_id': string;
10741
+ readonly 'timestamp': string;
10742
+ readonly 'organization': string;
10743
+ readonly 'id': string;
10744
+ }
10745
+
10746
+ interface ProductSellabilityResultUpserted {
10747
+ readonly 'discriminator': 'product_sellability_result_upserted';
10748
+ readonly 'event_id': string;
10749
+ readonly 'timestamp': string;
10750
+ readonly 'organization': string;
10751
+ readonly 'product_sellability_result': io.flow.v0.models.ProductSellabilityResult;
10752
+ }
10753
+
10816
10754
  interface ProductTaxonomyCategory {
10817
10755
  readonly 'name': string;
10818
10756
  readonly 'full_name': string;
@@ -11062,6 +11000,7 @@ declare namespace io.flow.v0.models {
11062
11000
  readonly 'center_id'?: string;
11063
11001
  readonly 'taxes_owed'?: io.flow.v0.models.Money;
11064
11002
  readonly 'duties_owed'?: io.flow.v0.models.Money;
11003
+ readonly 'commercial_invoice_mode'?: io.flow.v0.enums.CommercialInvoiceMode;
11065
11004
  }
11066
11005
 
11067
11006
  interface RatecardEstimateSummaryForm {
@@ -11686,20 +11625,6 @@ declare namespace io.flow.v0.models {
11686
11625
  readonly 'reversal': io.flow.v0.models.Reversal;
11687
11626
  }
11688
11627
 
11689
- interface RohanItemDeleted {
11690
- readonly 'discriminator': 'rohan_item_deleted';
11691
- readonly 'event_id': string;
11692
- readonly 'timestamp': string;
11693
- readonly 'id': string;
11694
- }
11695
-
11696
- interface RohanItemUpserted {
11697
- readonly 'discriminator': 'rohan_item_upserted';
11698
- readonly 'event_id': string;
11699
- readonly 'timestamp': string;
11700
- readonly 'item': io.flow.tech.onboarding.playground.v0.models.RohanItem;
11701
- }
11702
-
11703
11628
  interface Romanization {
11704
11629
  readonly 'address'?: io.flow.v0.models.Address;
11705
11630
  readonly 'contact'?: io.flow.v0.models.Contact;
@@ -11723,20 +11648,6 @@ declare namespace io.flow.v0.models {
11723
11648
  readonly 'roles': io.flow.v0.enums.FlowRole[];
11724
11649
  }
11725
11650
 
11726
- interface SarveshItemDeleted {
11727
- readonly 'discriminator': 'sarvesh_item_deleted';
11728
- readonly 'event_id': string;
11729
- readonly 'timestamp': string;
11730
- readonly 'id': string;
11731
- }
11732
-
11733
- interface SarveshItemUpserted {
11734
- readonly 'discriminator': 'sarvesh_item_upserted';
11735
- readonly 'event_id': string;
11736
- readonly 'timestamp': string;
11737
- readonly 'item': io.flow.tech.onboarding.playground.v0.models.SarveshItem;
11738
- }
11739
-
11740
11651
  interface Schedule {
11741
11652
  readonly 'calendar'?: io.flow.v0.enums.Calendar;
11742
11653
  readonly 'holiday': io.flow.v0.enums.HolidayCalendar;
@@ -11788,12 +11699,61 @@ declare namespace io.flow.v0.models {
11788
11699
  readonly 'issuer_options': io.flow.v0.models.IssuerReference[];
11789
11700
  }
11790
11701
 
11702
+ interface SelfBillingAgreement {
11703
+ readonly 'effective_at': string;
11704
+ readonly 'expires_at': string;
11705
+ }
11706
+
11791
11707
  interface SellabilityError {
11792
11708
  readonly 'discriminator': 'sellability_error';
11793
11709
  readonly 'code': io.flow.v0.enums.SellabilityErrorCode;
11794
11710
  readonly 'messages': string[];
11795
11711
  }
11796
11712
 
11713
+ interface SellabilityNeedsActionAttributes {
11714
+ readonly 'reason_code': string;
11715
+ readonly 'category_metafield_handles': string[];
11716
+ readonly 'require_msds'?: boolean;
11717
+ }
11718
+
11719
+ interface SellabilityRegionResult {
11720
+ readonly 'type': io.flow.v0.enums.RuleEffectType;
11721
+ readonly 'regions': string[];
11722
+ }
11723
+
11724
+ interface SellabilityRegionWithReasons {
11725
+ readonly 'region': string;
11726
+ readonly 'reasons': string[];
11727
+ }
11728
+
11729
+ interface SellabilityRestrictedRegion {
11730
+ readonly 'type': io.flow.v0.enums.RuleEffectType;
11731
+ readonly 'regions_with_reasons': io.flow.v0.models.SellabilityRegionWithReasons[];
11732
+ }
11733
+
11734
+ interface SellabilityScreening {
11735
+ readonly 'discriminator': 'sellability_screening';
11736
+ readonly 'sellability_result'?: io.flow.v0.models.ProductSellabilityResult;
11737
+ readonly 'request_id': string;
11738
+ readonly 'status': io.flow.v0.enums.SellabilityResultStatus;
11739
+ readonly 'error_code'?: io.flow.v0.enums.SellabilityResultErrorCode;
11740
+ readonly 'error_message'?: string;
11741
+ }
11742
+
11743
+ interface SellabilityScreeningForm {
11744
+ readonly 'discriminator': 'sellability_screening_form';
11745
+ readonly 'merchant_id': string;
11746
+ readonly 'product_id': string;
11747
+ readonly 'name': string;
11748
+ readonly 'price': io.flow.v0.models.Money;
11749
+ readonly 'description': string;
11750
+ readonly 'taxonomy_category': io.flow.v0.models.ProductTaxonomyCategory;
11751
+ readonly 'mode': io.flow.v0.enums.SellabilityScreeningMode;
11752
+ readonly 'catalog_size'?: number;
11753
+ readonly 'relative_ranking'?: number;
11754
+ readonly 'dry_run'?: boolean;
11755
+ }
11756
+
11797
11757
  interface SellablilityRegionResult {
11798
11758
  readonly 'type': io.flow.v0.enums.RuleEffectType;
11799
11759
  readonly 'regions': string[];
@@ -12204,6 +12164,43 @@ declare namespace io.flow.v0.models {
12204
12164
  readonly 'shipping_notification': io.flow.v0.models.ShippingNotification;
12205
12165
  }
12206
12166
 
12167
+ interface ShippingRateEstimate {
12168
+ readonly 'origin_address': io.flow.v0.models.Address;
12169
+ readonly 'destination_address': io.flow.v0.models.Address;
12170
+ readonly 'shipping_date_time': string;
12171
+ readonly 'services': string[];
12172
+ readonly 'available': io.flow.v0.models.ShippingRateEstimateAvailable[];
12173
+ readonly 'unavailable'?: io.flow.v0.models.ShippingRateEstimateUnavailable[];
12174
+ }
12175
+
12176
+ interface ShippingRateEstimateAvailable {
12177
+ readonly 'service': io.flow.v0.models.RatecardServiceSummary;
12178
+ readonly 'delivered_duty': io.flow.v0.enums.DeliveredDuty;
12179
+ readonly 'shipment_window': io.flow.v0.models.ShipmentWindow;
12180
+ readonly 'total_amount': io.flow.v0.models.Money;
12181
+ readonly 'base_amount': io.flow.v0.models.Money;
12182
+ readonly 'fees': io.flow.v0.unions.RatecardFee[];
12183
+ readonly 'dimensional_weight'?: io.flow.v0.models.Measurement;
12184
+ readonly 'gravitational_weight'?: io.flow.v0.models.Measurement;
12185
+ readonly 'weight_break'?: number;
12186
+ }
12187
+
12188
+ interface ShippingRateEstimateRequest {
12189
+ readonly 'origin_address': io.flow.v0.models.Address;
12190
+ readonly 'destination_address': io.flow.v0.models.Address;
12191
+ readonly 'package_dimensions': io.flow.v0.models.Dimension;
12192
+ readonly 'shipping_date_time': string;
12193
+ readonly 'delivered_duty'?: io.flow.v0.enums.DeliveredDuty;
12194
+ readonly 'duties_owed'?: io.flow.v0.models.Money;
12195
+ readonly 'taxes_owed'?: io.flow.v0.models.Money;
12196
+ readonly 'line_items'?: io.flow.v0.models.LineItemForm[];
12197
+ }
12198
+
12199
+ interface ShippingRateEstimateUnavailable {
12200
+ readonly 'service': string;
12201
+ readonly 'reason': string;
12202
+ }
12203
+
12207
12204
  interface Shop {
12208
12205
  readonly 'name': string;
12209
12206
  readonly 'id': string;
@@ -12416,6 +12413,7 @@ declare namespace io.flow.v0.models {
12416
12413
  readonly 'third_party_logistics_partners'?: io.flow.v0.models.ThirdPartyLogisticsPartner[];
12417
12414
  readonly 'center_contact'?: io.flow.v0.models.OperationsContact;
12418
12415
  readonly 'average_order_weight'?: number;
12416
+ readonly 'average_order_weight_unit'?: io.flow.v0.enums.UnitOfMeasurement;
12419
12417
  readonly 'package_dimensions'?: io.flow.v0.models.Dimension[];
12420
12418
  readonly 'monthly_average'?: io.flow.v0.models.MonthlyAverage;
12421
12419
  readonly 'default_country_of_origin'?: string;
@@ -12449,6 +12447,7 @@ declare namespace io.flow.v0.models {
12449
12447
  readonly 'third_party_logistics_partners'?: io.flow.v0.models.ThirdPartyLogisticsPartner[];
12450
12448
  readonly 'center_contact'?: io.flow.v0.models.OperationsContact;
12451
12449
  readonly 'average_order_weight'?: number;
12450
+ readonly 'average_order_weight_unit'?: io.flow.v0.enums.UnitOfMeasurement;
12452
12451
  readonly 'package_dimensions'?: io.flow.v0.models.Dimension[];
12453
12452
  readonly 'monthly_average_volume_amount'?: number;
12454
12453
  readonly 'monthly_average_volume_currency'?: string;
@@ -12592,6 +12591,11 @@ declare namespace io.flow.v0.models {
12592
12591
  readonly 'statement': io.flow.v0.models.Statement;
12593
12592
  }
12594
12593
 
12594
+ interface StatementStatusForm {
12595
+ readonly 'code': io.flow.v0.enums.StatementStatusCode;
12596
+ readonly 'failure_reason'?: io.flow.v0.enums.PayoutStatusFailureCode;
12597
+ }
12598
+
12595
12599
  interface StatementUpserted {
12596
12600
  readonly 'discriminator': 'statement_upserted';
12597
12601
  readonly 'event_id': string;
@@ -12762,6 +12766,14 @@ declare namespace io.flow.v0.models {
12762
12766
  readonly 'deminimis'?: io.flow.v0.unions.Deminimis;
12763
12767
  }
12764
12768
 
12769
+ interface TaxBreakdown {
12770
+ readonly 'label': string;
12771
+ readonly 'calculated_tax': io.flow.v0.models.Money;
12772
+ readonly 'rate': number;
12773
+ readonly 'line_total': io.flow.v0.models.Money;
12774
+ readonly 'jurisdiction_type': io.flow.v0.enums.TaxJurisdictionType;
12775
+ }
12776
+
12765
12777
  interface TaxDutyCalculatorValidationError {
12766
12778
  readonly 'code': io.flow.v0.enums.TaxDutyCalculatorValidationErrorCode;
12767
12779
  readonly 'messages': string[];
@@ -12861,11 +12873,34 @@ declare namespace io.flow.v0.models {
12861
12873
  readonly 'company_name'?: string;
12862
12874
  }
12863
12875
 
12876
+ interface TaxRegistrationDeleted {
12877
+ readonly 'discriminator': 'tax_registration_deleted';
12878
+ readonly 'event_id': string;
12879
+ readonly 'timestamp': string;
12880
+ readonly 'organization': string;
12881
+ readonly 'id': string;
12882
+ }
12883
+
12884
+ interface TaxRegistrationDetail {
12885
+ readonly 'tax_number': string;
12886
+ readonly 'country': string;
12887
+ readonly 'tax_code': string;
12888
+ readonly 'province'?: string;
12889
+ }
12890
+
12864
12891
  interface TaxRegistrationForm {
12865
12892
  readonly 'number': string;
12866
12893
  readonly 'company_name'?: string;
12867
12894
  }
12868
12895
 
12896
+ interface TaxRegistrationUpserted {
12897
+ readonly 'discriminator': 'tax_registration_upserted';
12898
+ readonly 'event_id': string;
12899
+ readonly 'timestamp': string;
12900
+ readonly 'organization': string;
12901
+ readonly 'tax_registration': io.flow.v0.models.OrganizationTaxRegistration;
12902
+ }
12903
+
12869
12904
  interface TaxReport {
12870
12905
  readonly 'schedule': io.flow.v0.unions.RepeatSchedule;
12871
12906
  readonly 'timezone': string;
@@ -13144,6 +13179,29 @@ declare namespace io.flow.v0.models {
13144
13179
  readonly 'order_number'?: string;
13145
13180
  }
13146
13181
 
13182
+ interface TrackingLabelEventUpsertedV2 {
13183
+ readonly 'discriminator': 'tracking_label_event_upserted_v2';
13184
+ readonly 'event_id': string;
13185
+ readonly 'timestamp': string;
13186
+ readonly 'organization': string;
13187
+ readonly 'tracking_label_event': io.flow.v0.models.TrackingLabelEventV2;
13188
+ }
13189
+
13190
+ interface TrackingLabelEventV2 {
13191
+ readonly 'id': string;
13192
+ readonly 'carrier_id': string;
13193
+ readonly 'carrier_tracking_number': string;
13194
+ readonly 'carrier_tracking_url'?: string;
13195
+ readonly 'label_id': string;
13196
+ readonly 'order_number'?: string;
13197
+ readonly 'status': io.flow.v0.enums.TrackingStatus;
13198
+ readonly 'substatus'?: io.flow.v0.enums.SubstatusCode;
13199
+ readonly 'carrier_timestamp': string;
13200
+ readonly 'description'?: string;
13201
+ readonly 'delivery_estimate'?: string;
13202
+ readonly 'address'?: io.flow.v0.models.Address;
13203
+ }
13204
+
13147
13205
  interface TrackingLabelForm {
13148
13206
  readonly 'tracking_id': string;
13149
13207
  readonly 'status': io.flow.v0.enums.TrackingStatus;
@@ -13314,6 +13372,25 @@ declare namespace io.flow.v0.models {
13314
13372
  interface TransactionMetadataTaxDuty {
13315
13373
  readonly 'discriminator': 'transaction_tax_duty';
13316
13374
  readonly 'reason_code': io.flow.v0.enums.TaxDutyTransactionReasonCode;
13375
+ readonly 'local_currency'?: string;
13376
+ readonly 'actual'?: io.flow.v0.models.TransactionMetadataTaxDutyActual;
13377
+ readonly 'estimate'?: io.flow.v0.models.TransactionMetadataTaxDutyEstimate;
13378
+ readonly 'delta'?: io.flow.v0.models.TransactionMetadataTaxDutyDelta;
13379
+ }
13380
+
13381
+ interface TransactionMetadataTaxDutyActual {
13382
+ readonly 'base'?: number;
13383
+ readonly 'local'?: number;
13384
+ }
13385
+
13386
+ interface TransactionMetadataTaxDutyDelta {
13387
+ readonly 'base'?: number;
13388
+ readonly 'local'?: number;
13389
+ }
13390
+
13391
+ interface TransactionMetadataTaxDutyEstimate {
13392
+ readonly 'base'?: number;
13393
+ readonly 'local'?: number;
13317
13394
  }
13318
13395
 
13319
13396
  interface TransactionMetadataTrueup {
@@ -13702,7 +13779,7 @@ declare namespace io.flow.v0.unions {
13702
13779
  type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
13703
13780
  type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
13704
13781
  type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
13705
- type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.SarveshItemUpserted | io.flow.v0.models.SarveshItemDeleted | io.flow.v0.models.HoseinItemUpserted | io.flow.v0.models.HoseinItemDeleted | 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.AnirbanItemUpserted | io.flow.v0.models.AnirbanItemDeleted | 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.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | 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.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);
13782
+ 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.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.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | 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.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.TaxRegistrationUpserted | io.flow.v0.models.TaxRegistrationDeleted | 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.ProductSellabilityResultUpserted | io.flow.v0.models.ProductSellabilityResultDeleted | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted | io.flow.v0.models.TrackingLabelEventUpsertedV2);
13706
13783
  type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary | io.flow.v0.models.ExternalCard);
13707
13784
  type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
13708
13785
  type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
@@ -13726,10 +13803,10 @@ declare namespace io.flow.v0.unions {
13726
13803
  type LabelSurchargeDetail = (io.flow.v0.models.LabelSurchargeDetailFlat | io.flow.v0.models.LabelSurchargeDetailPercentage | io.flow.v0.models.LabelSurchargeDetailPerWeightUnit);
13727
13804
  type LocalizedPrice = (io.flow.v0.models.LocalizedItemPrice | io.flow.v0.models.LocalizedItemVat | io.flow.v0.models.LocalizedItemDuty | io.flow.v0.models.LocalizedTotal);
13728
13805
  type LogoImage = (io.flow.v0.models.LogoImageSvg | io.flow.v0.models.LogoImageSetStatic);
13729
- type MerchantApplication = (io.flow.v0.models.ShopifyMerchantApplication);
13730
- type MerchantApplicationForm = (io.flow.v0.models.ShopifyMerchantApplicationForm);
13731
- type MerchantApplicationPutForm = (io.flow.v0.models.ShopifyMerchantApplicationPutForm);
13732
- type MerchantApplicationsSummary = (io.flow.v0.models.ShopifyMerchantApplicationsSummary);
13806
+ type MerchantApplication = (io.flow.v0.models.ShopifyMerchantApplication | io.flow.v0.models.CommonMerchantApplication);
13807
+ type MerchantApplicationForm = (io.flow.v0.models.ShopifyMerchantApplicationForm | io.flow.v0.models.CommonMerchantApplicationForm);
13808
+ type MerchantApplicationPutForm = (io.flow.v0.models.ShopifyMerchantApplicationPutForm | io.flow.v0.models.CommonMerchantApplicationPutForm);
13809
+ type MerchantApplicationsSummary = (io.flow.v0.models.ShopifyMerchantApplicationsSummary | io.flow.v0.models.CommonMerchantApplicationsSummary);
13733
13810
  type OnboardingState = (io.flow.v0.models.InComplianceReview | io.flow.v0.models.SetupInProgress | io.flow.v0.models.MerchantRejected | io.flow.v0.models.SetupBlocked | io.flow.v0.models.SetupCompleted | io.flow.v0.models.MerchantActivated | io.flow.v0.models.MerchantDeactivated | io.flow.v0.models.MerchantDisabled);
13734
13811
  type OnlineAuthorizationDetails = (io.flow.v0.models.CryptopayAuthorizationDetails | io.flow.v0.models.PaypalAuthorizationDetails | io.flow.v0.models.RedirectAuthorizationDetails | io.flow.v0.models.InlineAuthorizationDetails);
13735
13812
  type OrderInformation = (io.flow.v0.models.OrderInformationFlow | io.flow.v0.models.OrderInformationDetails);
@@ -13773,7 +13850,8 @@ declare namespace io.flow.v0.unions {
13773
13850
  type RepeatSchedule = (io.flow.v0.models.RepeatHourly | io.flow.v0.models.RepeatDaily | io.flow.v0.models.RepeatWeekly | io.flow.v0.models.RepeatMonthly);
13774
13851
  type ReturnSource = (io.flow.v0.models.ReturnSourceFlow | io.flow.v0.models.ReturnSourceExternalVendor);
13775
13852
  type SdkAdyenV3AuthenticationToken = (io.flow.v0.models.AdyenV3FingerprintToken | io.flow.v0.models.AdyenV3ChallengeToken);
13776
- type SellabilityResponse = (io.flow.v0.models.ProductSellability | io.flow.v0.models.SellabilityError);
13853
+ type SellabilityRequest = (io.flow.v0.models.ProductSellabilityForm | io.flow.v0.models.SellabilityScreeningForm);
13854
+ type SellabilityResponse = (io.flow.v0.models.ProductSellability | io.flow.v0.models.SellabilityError | io.flow.v0.models.SellabilityScreening);
13777
13855
  type ServiceDescription = (io.flow.v0.models.ServiceSummary | io.flow.v0.models.ServiceUnknown);
13778
13856
  type ServiceFee = (io.flow.v0.models.FuelSurchargeServiceFee | io.flow.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.v0.models.RemoteAreaServiceFee | io.flow.v0.models.EmergencySituationSurchargeServiceFee | io.flow.v0.models.PeakSurchargeServiceFee | io.flow.v0.models.PeakSurchargeByWeightServiceFee | io.flow.v0.models.DutiesTaxesPaidSurchargeServiceFee | io.flow.v0.models.OversizePieceSurchargeServiceFee | io.flow.v0.models.OverweightPieceSurchargeServiceFee | io.flow.v0.models.RemoteAreaByWeightServiceFee | io.flow.v0.models.AdditionalHandlingServiceFee | io.flow.v0.models.LargePackageServiceFee | io.flow.v0.models.SecurityServiceFee | io.flow.v0.models.FixedDdpServiceFee | io.flow.v0.models.FixedCurrencyConversionServiceFee | io.flow.v0.models.EeiFilingServiceFee);
13779
13857
  type Session = (io.flow.v0.models.OrganizationSession);
@@ -13824,6 +13902,7 @@ export const centerCapability: PropTypes.Requireable<io.flow.v0.enums.CenterCapa
13824
13902
  export const changeType: PropTypes.Requireable<io.flow.v0.enums.ChangeType>;
13825
13903
  export const channelCurrencyCapability: PropTypes.Requireable<io.flow.v0.enums.ChannelCurrencyCapability>;
13826
13904
  export const channelShopifyOrderStateReasonCode: PropTypes.Requireable<io.flow.v0.enums.ChannelShopifyOrderStateReasonCode>;
13905
+ export const commercialInvoiceMode: PropTypes.Requireable<io.flow.v0.enums.CommercialInvoiceMode>;
13827
13906
  export const consumerInvoiceCustomerType: PropTypes.Requireable<io.flow.v0.enums.ConsumerInvoiceCustomerType>;
13828
13907
  export const consumerInvoiceDocumentType: PropTypes.Requireable<io.flow.v0.enums.ConsumerInvoiceDocumentType>;
13829
13908
  export const consumerInvoiceStatus: PropTypes.Requireable<io.flow.v0.enums.ConsumerInvoiceStatus>;
@@ -13962,6 +14041,7 @@ export const refundFailureCategory: PropTypes.Requireable<io.flow.v0.enums.Refun
13962
14041
  export const refundStatus: PropTypes.Requireable<io.flow.v0.enums.RefundStatus>;
13963
14042
  export const regionType: PropTypes.Requireable<io.flow.v0.enums.RegionType>;
13964
14043
  export const restrictedReviewStatus: PropTypes.Requireable<io.flow.v0.enums.RestrictedReviewStatus>;
14044
+ export const restrictionEnvironment: PropTypes.Requireable<io.flow.v0.enums.RestrictionEnvironment>;
13965
14045
  export const returnItemStatus: PropTypes.Requireable<io.flow.v0.enums.ReturnItemStatus>;
13966
14046
  export const returnPolicyState: PropTypes.Requireable<io.flow.v0.enums.ReturnPolicyState>;
13967
14047
  export const returnStatus: PropTypes.Requireable<io.flow.v0.enums.ReturnStatus>;
@@ -13976,6 +14056,9 @@ export const ruleEffectType: PropTypes.Requireable<io.flow.v0.enums.RuleEffectTy
13976
14056
  export const scheduleExceptionStatus: PropTypes.Requireable<io.flow.v0.enums.ScheduleExceptionStatus>;
13977
14057
  export const sellabilityErrorCode: PropTypes.Requireable<io.flow.v0.enums.SellabilityErrorCode>;
13978
14058
  export const sellabilityRequestStatus: PropTypes.Requireable<io.flow.v0.enums.SellabilityRequestStatus>;
14059
+ export const sellabilityResultErrorCode: PropTypes.Requireable<io.flow.v0.enums.SellabilityResultErrorCode>;
14060
+ export const sellabilityResultStatus: PropTypes.Requireable<io.flow.v0.enums.SellabilityResultStatus>;
14061
+ export const sellabilityScreeningMode: PropTypes.Requireable<io.flow.v0.enums.SellabilityScreeningMode>;
13979
14062
  export const shipmentIntegrationType: PropTypes.Requireable<io.flow.v0.enums.ShipmentIntegrationType>;
13980
14063
  export const shipmentRecipient: PropTypes.Requireable<io.flow.v0.enums.ShipmentRecipient>;
13981
14064
  export const shippingConfigurationType: PropTypes.Requireable<io.flow.v0.enums.ShippingConfigurationType>;
@@ -13985,6 +14068,7 @@ export const shopifyLocalizationMethod: PropTypes.Requireable<io.flow.v0.enums.S
13985
14068
  export const shopifySyncCheck: PropTypes.Requireable<io.flow.v0.enums.ShopifySyncCheck>;
13986
14069
  export const sortDirection: PropTypes.Requireable<io.flow.v0.enums.SortDirection>;
13987
14070
  export const statementAttachmentType: PropTypes.Requireable<io.flow.v0.enums.StatementAttachmentType>;
14071
+ export const statementStatusCode: PropTypes.Requireable<io.flow.v0.enums.StatementStatusCode>;
13988
14072
  export const storedMethodUsageStep: PropTypes.Requireable<io.flow.v0.enums.StoredMethodUsageStep>;
13989
14073
  export const strategy: PropTypes.Requireable<io.flow.v0.enums.Strategy>;
13990
14074
  export const subcatalogItemStatus: PropTypes.Requireable<io.flow.v0.enums.SubcatalogItemStatus>;
@@ -13993,7 +14077,9 @@ export const surchargeResponsibleParty: PropTypes.Requireable<io.flow.v0.enums.S
13993
14077
  export const taxApplicability: PropTypes.Requireable<io.flow.v0.enums.TaxApplicability>;
13994
14078
  export const taxDutyCalculatorValidationErrorCode: PropTypes.Requireable<io.flow.v0.enums.TaxDutyCalculatorValidationErrorCode>;
13995
14079
  export const taxDutyTransactionReasonCode: PropTypes.Requireable<io.flow.v0.enums.TaxDutyTransactionReasonCode>;
14080
+ export const taxJurisdictionType: PropTypes.Requireable<io.flow.v0.enums.TaxJurisdictionType>;
13996
14081
  export const taxReportType: PropTypes.Requireable<io.flow.v0.enums.TaxReportType>;
14082
+ export const taxType: PropTypes.Requireable<io.flow.v0.enums.TaxType>;
13997
14083
  export const taxVerificationResult: PropTypes.Requireable<io.flow.v0.enums.TaxVerificationResult>;
13998
14084
  export const taxabilityType: PropTypes.Requireable<io.flow.v0.enums.TaxabilityType>;
13999
14085
  export const taxabilityValue: PropTypes.Requireable<io.flow.v0.enums.TaxabilityValue>;
@@ -14068,8 +14154,6 @@ export const adyenIdentifyShopperData: PropTypes.Requireable<io.flow.v0.models.A
14068
14154
  export const adyenNativeActionDetails: PropTypes.Requireable<io.flow.v0.models.AdyenNativeActionDetails>;
14069
14155
  export const adyenV3ChallengeToken: PropTypes.Requireable<io.flow.v0.models.AdyenV3ChallengeToken>;
14070
14156
  export const adyenV3FingerprintToken: PropTypes.Requireable<io.flow.v0.models.AdyenV3FingerprintToken>;
14071
- export const aldoItemDeleted: PropTypes.Requireable<io.flow.v0.models.AldoItemDeleted>;
14072
- export const aldoItemUpserted: PropTypes.Requireable<io.flow.v0.models.AldoItemUpserted>;
14073
14157
  export const allocation: PropTypes.Requireable<io.flow.v0.models.Allocation>;
14074
14158
  export const allocationDeletedV2: PropTypes.Requireable<io.flow.v0.models.AllocationDeletedV2>;
14075
14159
  export const allocationDetailComponent: PropTypes.Requireable<io.flow.v0.models.AllocationDetailComponent>;
@@ -14085,10 +14169,6 @@ export const allocationV2: PropTypes.Requireable<io.flow.v0.models.AllocationV2>
14085
14169
  export const amountMargin: PropTypes.Requireable<io.flow.v0.models.AmountMargin>;
14086
14170
  export const amountMarginForm: PropTypes.Requireable<io.flow.v0.models.AmountMarginForm>;
14087
14171
  export const analyticsExportType: PropTypes.Requireable<io.flow.v0.models.AnalyticsExportType>;
14088
- export const anirbanItemDeleted: PropTypes.Requireable<io.flow.v0.models.AnirbanItemDeleted>;
14089
- export const anirbanItemUpserted: PropTypes.Requireable<io.flow.v0.models.AnirbanItemUpserted>;
14090
- export const anshItemDeleted: PropTypes.Requireable<io.flow.v0.models.AnshItemDeleted>;
14091
- export const anshItemUpserted: PropTypes.Requireable<io.flow.v0.models.AnshItemUpserted>;
14092
14172
  export const applePayMerchantValidationPayload: PropTypes.Requireable<io.flow.v0.models.ApplePayMerchantValidationPayload>;
14093
14173
  export const applepaySdkCreateResultActionDetails: PropTypes.Requireable<io.flow.v0.models.ApplepaySdkCreateResultActionDetails>;
14094
14174
  export const applepaySdkValidateResultActionDetails: PropTypes.Requireable<io.flow.v0.models.ApplepaySdkValidateResultActionDetails>;
@@ -14272,6 +14352,10 @@ export const checkoutUrls: PropTypes.Requireable<io.flow.v0.models.CheckoutUrls>
14272
14352
  export const checkoutUrlsForm: PropTypes.Requireable<io.flow.v0.models.CheckoutUrlsForm>;
14273
14353
  export const cleartext: PropTypes.Requireable<io.flow.v0.models.Cleartext>;
14274
14354
  export const commercialInvoiceFee: PropTypes.Requireable<io.flow.v0.models.CommercialInvoiceFee>;
14355
+ export const commonMerchantApplication: PropTypes.Requireable<io.flow.v0.models.CommonMerchantApplication>;
14356
+ export const commonMerchantApplicationForm: PropTypes.Requireable<io.flow.v0.models.CommonMerchantApplicationForm>;
14357
+ export const commonMerchantApplicationPutForm: PropTypes.Requireable<io.flow.v0.models.CommonMerchantApplicationPutForm>;
14358
+ export const commonMerchantApplicationsSummary: PropTypes.Requireable<io.flow.v0.models.CommonMerchantApplicationsSummary>;
14275
14359
  export const company: PropTypes.Requireable<io.flow.v0.models.Company>;
14276
14360
  export const consumerInvoice: PropTypes.Requireable<io.flow.v0.models.ConsumerInvoice>;
14277
14361
  export const consumerInvoiceCenterReference: PropTypes.Requireable<io.flow.v0.models.ConsumerInvoiceCenterReference>;
@@ -14471,6 +14555,7 @@ export const exportLocalizedItemPrices: PropTypes.Requireable<io.flow.v0.models.
14471
14555
  export const exportLocalizedItemPricesDetail: PropTypes.Requireable<io.flow.v0.models.ExportLocalizedItemPricesDetail>;
14472
14556
  export const exportVersion: PropTypes.Requireable<io.flow.v0.models.ExportVersion>;
14473
14557
  export const externalCard: PropTypes.Requireable<io.flow.v0.models.ExternalCard>;
14558
+ export const externalOrderSummary: PropTypes.Requireable<io.flow.v0.models.ExternalOrderSummary>;
14474
14559
  export const feeDeduction: PropTypes.Requireable<io.flow.v0.models.FeeDeduction>;
14475
14560
  export const feeWeight: PropTypes.Requireable<io.flow.v0.models.FeeWeight>;
14476
14561
  export const fieldValidationMax: PropTypes.Requireable<io.flow.v0.models.FieldValidationMax>;
@@ -14554,8 +14639,6 @@ export const hop: PropTypes.Requireable<io.flow.v0.models.Hop>;
14554
14639
  export const hopEstimate: PropTypes.Requireable<io.flow.v0.models.HopEstimate>;
14555
14640
  export const hopEstimateV2: PropTypes.Requireable<io.flow.v0.models.HopEstimateV2>;
14556
14641
  export const hopV2: PropTypes.Requireable<io.flow.v0.models.HopV2>;
14557
- export const hoseinItemDeleted: PropTypes.Requireable<io.flow.v0.models.HoseinItemDeleted>;
14558
- export const hoseinItemUpserted: PropTypes.Requireable<io.flow.v0.models.HoseinItemUpserted>;
14559
14642
  export const hs10: PropTypes.Requireable<io.flow.v0.models.Hs10>;
14560
14643
  export const hs10CodeDeleted: PropTypes.Requireable<io.flow.v0.models.Hs10CodeDeleted>;
14561
14644
  export const hs10CodeUpserted: PropTypes.Requireable<io.flow.v0.models.Hs10CodeUpserted>;
@@ -14593,6 +14676,7 @@ export const invitationForm: PropTypes.Requireable<io.flow.v0.models.InvitationF
14593
14676
  export const invitationVersion: PropTypes.Requireable<io.flow.v0.models.InvitationVersion>;
14594
14677
  export const invoiceExport: PropTypes.Requireable<io.flow.v0.models.InvoiceExport>;
14595
14678
  export const invoiceExportForm: PropTypes.Requireable<io.flow.v0.models.InvoiceExportForm>;
14679
+ export const invoiceTaxLine: PropTypes.Requireable<io.flow.v0.models.InvoiceTaxLine>;
14596
14680
  export const issuerReference: PropTypes.Requireable<io.flow.v0.models.IssuerReference>;
14597
14681
  export const issuerSummary: PropTypes.Requireable<io.flow.v0.models.IssuerSummary>;
14598
14682
  export const issuerV1: PropTypes.Requireable<io.flow.v0.models.IssuerV1>;
@@ -14642,7 +14726,6 @@ export const labelTrackingCarrierService: PropTypes.Requireable<io.flow.v0.model
14642
14726
  export const labelTrackingSummary: PropTypes.Requireable<io.flow.v0.models.LabelTrackingSummary>;
14643
14727
  export const labelTrackingSummaryUpdate: PropTypes.Requireable<io.flow.v0.models.LabelTrackingSummaryUpdate>;
14644
14728
  export const labelUnits: PropTypes.Requireable<io.flow.v0.models.LabelUnits>;
14645
- export const labelUpserted: PropTypes.Requireable<io.flow.v0.models.LabelUpserted>;
14646
14729
  export const labelUpsertedV2: PropTypes.Requireable<io.flow.v0.models.LabelUpsertedV2>;
14647
14730
  export const landedCostItem: PropTypes.Requireable<io.flow.v0.models.LandedCostItem>;
14648
14731
  export const laneLandedCost: PropTypes.Requireable<io.flow.v0.models.LaneLandedCost>;
@@ -14709,6 +14792,7 @@ export const merchantOfRecordEntity: PropTypes.Requireable<io.flow.v0.models.Mer
14709
14792
  export const merchantOfRecordEntityRegistration: PropTypes.Requireable<io.flow.v0.models.MerchantOfRecordEntityRegistration>;
14710
14793
  export const merchantOfRecordPaymentForm: PropTypes.Requireable<io.flow.v0.models.MerchantOfRecordPaymentForm>;
14711
14794
  export const merchantOnboardingAddress: PropTypes.Requireable<io.flow.v0.models.MerchantOnboardingAddress>;
14795
+ export const merchantOnboardingBeneficiaryDetails: PropTypes.Requireable<io.flow.v0.models.MerchantOnboardingBeneficiaryDetails>;
14712
14796
  export const merchantRejected: PropTypes.Requireable<io.flow.v0.models.MerchantRejected>;
14713
14797
  export const money: PropTypes.Requireable<io.flow.v0.models.Money>;
14714
14798
  export const moneyWithBase: PropTypes.Requireable<io.flow.v0.models.MoneyWithBase>;
@@ -14718,8 +14802,6 @@ export const monthlyAverageVolume: PropTypes.Requireable<io.flow.v0.models.Month
14718
14802
  export const name: PropTypes.Requireable<io.flow.v0.models.Name>;
14719
14803
  export const nameForm: PropTypes.Requireable<io.flow.v0.models.NameForm>;
14720
14804
  export const needsActionAttributes: PropTypes.Requireable<io.flow.v0.models.NeedsActionAttributes>;
14721
- export const niallItemDeleted: PropTypes.Requireable<io.flow.v0.models.NiallItemDeleted>;
14722
- export const niallItemUpserted: PropTypes.Requireable<io.flow.v0.models.NiallItemUpserted>;
14723
14805
  export const notificationDeletedV2: PropTypes.Requireable<io.flow.v0.models.NotificationDeletedV2>;
14724
14806
  export const notificationUpsertedV2: PropTypes.Requireable<io.flow.v0.models.NotificationUpsertedV2>;
14725
14807
  export const numberRange: PropTypes.Requireable<io.flow.v0.models.NumberRange>;
@@ -14834,6 +14916,8 @@ export const organizationReference: PropTypes.Requireable<io.flow.v0.models.Orga
14834
14916
  export const organizationSession: PropTypes.Requireable<io.flow.v0.models.OrganizationSession>;
14835
14917
  export const organizationSessionAuthorization: PropTypes.Requireable<io.flow.v0.models.OrganizationSessionAuthorization>;
14836
14918
  export const organizationSummary: PropTypes.Requireable<io.flow.v0.models.OrganizationSummary>;
14919
+ export const organizationTaxRegistration: PropTypes.Requireable<io.flow.v0.models.OrganizationTaxRegistration>;
14920
+ export const organizationTaxRegistrationForm: PropTypes.Requireable<io.flow.v0.models.OrganizationTaxRegistrationForm>;
14837
14921
  export const organizationToken: PropTypes.Requireable<io.flow.v0.models.OrganizationToken>;
14838
14922
  export const organizationTokenForm: PropTypes.Requireable<io.flow.v0.models.OrganizationTokenForm>;
14839
14923
  export const organizationTokenFormV2: PropTypes.Requireable<io.flow.v0.models.OrganizationTokenFormV2>;
@@ -15032,6 +15116,9 @@ export const productRestrictionResultDeleted: PropTypes.Requireable<io.flow.v0.m
15032
15116
  export const productRestrictionResultUpserted: PropTypes.Requireable<io.flow.v0.models.ProductRestrictionResultUpserted>;
15033
15117
  export const productSellability: PropTypes.Requireable<io.flow.v0.models.ProductSellability>;
15034
15118
  export const productSellabilityForm: PropTypes.Requireable<io.flow.v0.models.ProductSellabilityForm>;
15119
+ export const productSellabilityResult: PropTypes.Requireable<io.flow.v0.models.ProductSellabilityResult>;
15120
+ export const productSellabilityResultDeleted: PropTypes.Requireable<io.flow.v0.models.ProductSellabilityResultDeleted>;
15121
+ export const productSellabilityResultUpserted: PropTypes.Requireable<io.flow.v0.models.ProductSellabilityResultUpserted>;
15035
15122
  export const productTaxonomyCategory: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyCategory>;
15036
15123
  export const productTaxonomyData: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyData>;
15037
15124
  export const productTaxonomyValue: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyValue>;
@@ -15147,14 +15234,10 @@ export const reversalForm: PropTypes.Requireable<io.flow.v0.models.ReversalForm>
15147
15234
  export const reversalPutForm: PropTypes.Requireable<io.flow.v0.models.ReversalPutForm>;
15148
15235
  export const reversalUpserted: PropTypes.Requireable<io.flow.v0.models.ReversalUpserted>;
15149
15236
  export const reversalVersion: PropTypes.Requireable<io.flow.v0.models.ReversalVersion>;
15150
- export const rohanItemDeleted: PropTypes.Requireable<io.flow.v0.models.RohanItemDeleted>;
15151
- export const rohanItemUpserted: PropTypes.Requireable<io.flow.v0.models.RohanItemUpserted>;
15152
15237
  export const romanization: PropTypes.Requireable<io.flow.v0.models.Romanization>;
15153
15238
  export const romanizationForm: PropTypes.Requireable<io.flow.v0.models.RomanizationForm>;
15154
15239
  export const rounding: PropTypes.Requireable<io.flow.v0.models.Rounding>;
15155
15240
  export const routeAudit: PropTypes.Requireable<io.flow.v0.models.RouteAudit>;
15156
- export const sarveshItemDeleted: PropTypes.Requireable<io.flow.v0.models.SarveshItemDeleted>;
15157
- export const sarveshItemUpserted: PropTypes.Requireable<io.flow.v0.models.SarveshItemUpserted>;
15158
15241
  export const schedule: PropTypes.Requireable<io.flow.v0.models.Schedule>;
15159
15242
  export const scheduledExport: PropTypes.Requireable<io.flow.v0.models.ScheduledExport>;
15160
15243
  export const scheduledExportForm: PropTypes.Requireable<io.flow.v0.models.ScheduledExportForm>;
@@ -15162,7 +15245,14 @@ export const scheduledPickup: PropTypes.Requireable<io.flow.v0.models.ScheduledP
15162
15245
  export const securityRatecardFee: PropTypes.Requireable<io.flow.v0.models.SecurityRatecardFee>;
15163
15246
  export const securityServiceFee: PropTypes.Requireable<io.flow.v0.models.SecurityServiceFee>;
15164
15247
  export const selectIssuerOptionActionDetails: PropTypes.Requireable<io.flow.v0.models.SelectIssuerOptionActionDetails>;
15248
+ export const selfBillingAgreement: PropTypes.Requireable<io.flow.v0.models.SelfBillingAgreement>;
15165
15249
  export const sellabilityError: PropTypes.Requireable<io.flow.v0.models.SellabilityError>;
15250
+ export const sellabilityNeedsActionAttributes: PropTypes.Requireable<io.flow.v0.models.SellabilityNeedsActionAttributes>;
15251
+ export const sellabilityRegionResult: PropTypes.Requireable<io.flow.v0.models.SellabilityRegionResult>;
15252
+ export const sellabilityRegionWithReasons: PropTypes.Requireable<io.flow.v0.models.SellabilityRegionWithReasons>;
15253
+ export const sellabilityRestrictedRegion: PropTypes.Requireable<io.flow.v0.models.SellabilityRestrictedRegion>;
15254
+ export const sellabilityScreening: PropTypes.Requireable<io.flow.v0.models.SellabilityScreening>;
15255
+ export const sellabilityScreeningForm: PropTypes.Requireable<io.flow.v0.models.SellabilityScreeningForm>;
15166
15256
  export const sellablilityRegionResult: PropTypes.Requireable<io.flow.v0.models.SellablilityRegionResult>;
15167
15257
  export const serviceReference: PropTypes.Requireable<io.flow.v0.models.ServiceReference>;
15168
15258
  export const serviceSummary: PropTypes.Requireable<io.flow.v0.models.ServiceSummary>;
@@ -15220,6 +15310,10 @@ export const shippingLaneUpserted: PropTypes.Requireable<io.flow.v0.models.Shipp
15220
15310
  export const shippingLaneVersion: PropTypes.Requireable<io.flow.v0.models.ShippingLaneVersion>;
15221
15311
  export const shippingNotification: PropTypes.Requireable<io.flow.v0.models.ShippingNotification>;
15222
15312
  export const shippingNotificationVersion: PropTypes.Requireable<io.flow.v0.models.ShippingNotificationVersion>;
15313
+ export const shippingRateEstimate: PropTypes.Requireable<io.flow.v0.models.ShippingRateEstimate>;
15314
+ export const shippingRateEstimateAvailable: PropTypes.Requireable<io.flow.v0.models.ShippingRateEstimateAvailable>;
15315
+ export const shippingRateEstimateRequest: PropTypes.Requireable<io.flow.v0.models.ShippingRateEstimateRequest>;
15316
+ export const shippingRateEstimateUnavailable: PropTypes.Requireable<io.flow.v0.models.ShippingRateEstimateUnavailable>;
15223
15317
  export const shop: PropTypes.Requireable<io.flow.v0.models.Shop>;
15224
15318
  export const shopifyCart: PropTypes.Requireable<io.flow.v0.models.ShopifyCart>;
15225
15319
  export const shopifyCartAddMultipleForm: PropTypes.Requireable<io.flow.v0.models.ShopifyCartAddMultipleForm>;
@@ -15267,6 +15361,7 @@ export const solidusProductExportType: PropTypes.Requireable<io.flow.v0.models.S
15267
15361
  export const solidusVariantExportType: PropTypes.Requireable<io.flow.v0.models.SolidusVariantExportType>;
15268
15362
  export const statement: PropTypes.Requireable<io.flow.v0.models.Statement>;
15269
15363
  export const statementDeleted: PropTypes.Requireable<io.flow.v0.models.StatementDeleted>;
15364
+ export const statementStatusForm: PropTypes.Requireable<io.flow.v0.models.StatementStatusForm>;
15270
15365
  export const statementUpserted: PropTypes.Requireable<io.flow.v0.models.StatementUpserted>;
15271
15366
  export const streetAddress: PropTypes.Requireable<io.flow.v0.models.StreetAddress>;
15272
15367
  export const stripeAuthenticationData: PropTypes.Requireable<io.flow.v0.models.StripeAuthenticationData>;
@@ -15292,6 +15387,7 @@ export const surchargeResponsiblePartyDisplay: PropTypes.Requireable<io.flow.v0.
15292
15387
  export const surchargeSetting: PropTypes.Requireable<io.flow.v0.models.SurchargeSetting>;
15293
15388
  export const surchargeSettingDisplay: PropTypes.Requireable<io.flow.v0.models.SurchargeSettingDisplay>;
15294
15389
  export const tax: PropTypes.Requireable<io.flow.v0.models.Tax>;
15390
+ export const taxBreakdown: PropTypes.Requireable<io.flow.v0.models.TaxBreakdown>;
15295
15391
  export const taxDutyCalculatorValidationError: PropTypes.Requireable<io.flow.v0.models.TaxDutyCalculatorValidationError>;
15296
15392
  export const taxDutyQuote: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuote>;
15297
15393
  export const taxDutyQuoteFeeValue: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteFeeValue>;
@@ -15303,7 +15399,10 @@ export const taxDutyQuoteSimpleShipping: PropTypes.Requireable<io.flow.v0.models
15303
15399
  export const taxDutyQuoteSimpleShippingForm: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteSimpleShippingForm>;
15304
15400
  export const taxDutyQuoteValues: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteValues>;
15305
15401
  export const taxRegistration: PropTypes.Requireable<io.flow.v0.models.TaxRegistration>;
15402
+ export const taxRegistrationDeleted: PropTypes.Requireable<io.flow.v0.models.TaxRegistrationDeleted>;
15403
+ export const taxRegistrationDetail: PropTypes.Requireable<io.flow.v0.models.TaxRegistrationDetail>;
15306
15404
  export const taxRegistrationForm: PropTypes.Requireable<io.flow.v0.models.TaxRegistrationForm>;
15405
+ export const taxRegistrationUpserted: PropTypes.Requireable<io.flow.v0.models.TaxRegistrationUpserted>;
15307
15406
  export const taxReport: PropTypes.Requireable<io.flow.v0.models.TaxReport>;
15308
15407
  export const testUpserted: PropTypes.Requireable<io.flow.v0.models.TestUpserted>;
15309
15408
  export const thirdPartyLogisticsPartner: PropTypes.Requireable<io.flow.v0.models.ThirdPartyLogisticsPartner>;
@@ -15340,6 +15439,8 @@ export const trackingEventVersion: PropTypes.Requireable<io.flow.v0.models.Track
15340
15439
  export const trackingForm: PropTypes.Requireable<io.flow.v0.models.TrackingForm>;
15341
15440
  export const trackingLabel: PropTypes.Requireable<io.flow.v0.models.TrackingLabel>;
15342
15441
  export const trackingLabelEventUpserted: PropTypes.Requireable<io.flow.v0.models.TrackingLabelEventUpserted>;
15442
+ export const trackingLabelEventUpsertedV2: PropTypes.Requireable<io.flow.v0.models.TrackingLabelEventUpsertedV2>;
15443
+ export const trackingLabelEventV2: PropTypes.Requireable<io.flow.v0.models.TrackingLabelEventV2>;
15343
15444
  export const trackingLabelForm: PropTypes.Requireable<io.flow.v0.models.TrackingLabelForm>;
15344
15445
  export const trackingLabelSummary: PropTypes.Requireable<io.flow.v0.models.TrackingLabelSummary>;
15345
15446
  export const trackingLabelVersion: PropTypes.Requireable<io.flow.v0.models.TrackingLabelVersion>;
@@ -15364,6 +15465,9 @@ export const transactionMetadataPaymentTransaction: PropTypes.Requireable<io.flo
15364
15465
  export const transactionMetadataShippingLabel: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataShippingLabel>;
15365
15466
  export const transactionMetadataShippingLabelCarrier: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataShippingLabelCarrier>;
15366
15467
  export const transactionMetadataTaxDuty: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataTaxDuty>;
15468
+ export const transactionMetadataTaxDutyActual: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataTaxDutyActual>;
15469
+ export const transactionMetadataTaxDutyDelta: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataTaxDutyDelta>;
15470
+ export const transactionMetadataTaxDutyEstimate: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataTaxDutyEstimate>;
15367
15471
  export const transactionMetadataTrueup: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataTrueup>;
15368
15472
  export const transactionMetadataTrueupBase: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataTrueupBase>;
15369
15473
  export const transactionMetadataTrueupBaseData: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataTrueupBaseData>;
@@ -15507,6 +15611,7 @@ export const ratecardFee: PropTypes.Requireable<io.flow.v0.unions.RatecardFee>;
15507
15611
  export const repeatSchedule: PropTypes.Requireable<io.flow.v0.unions.RepeatSchedule>;
15508
15612
  export const returnSource: PropTypes.Requireable<io.flow.v0.unions.ReturnSource>;
15509
15613
  export const sdkAdyenV3AuthenticationToken: PropTypes.Requireable<io.flow.v0.unions.SdkAdyenV3AuthenticationToken>;
15614
+ export const sellabilityRequest: PropTypes.Requireable<io.flow.v0.unions.SellabilityRequest>;
15510
15615
  export const sellabilityResponse: PropTypes.Requireable<io.flow.v0.unions.SellabilityResponse>;
15511
15616
  export const serviceDescription: PropTypes.Requireable<io.flow.v0.unions.ServiceDescription>;
15512
15617
  export const serviceFee: PropTypes.Requireable<io.flow.v0.unions.ServiceFee>;