@flowio/api-prop-types 10.16.108 → 10.16.110
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 +402 -289
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +402 -289
- package/src/api.js +634 -519
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 {
|
|
@@ -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' | '
|
|
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';
|
|
@@ -3541,7 +3416,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3541
3416
|
type PaymentActionType = 'redirect' | 'redirect_get' | 'redirect_post' | 'select_payment_option' | 'use_sdk_klarna_v1' | 'use_sdk_applepay_js' | 'use_sdk_googlepay' | 'use_sdk_paypal' | 'use_sdk_stripe_v3' | 'use_sdk_adyen_v3' | 'use_sdk_adyen_v4' | 'execute_script' | 'display_inline_window';
|
|
3542
3417
|
type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
|
|
3543
3418
|
type PaymentFailureCode = 'action_expired' | 'action_cancelled' | 'action_failed' | 'authorization_declined' | 'not_supported' | 'fraudulent' | 'error' | 'payment_checks_declined';
|
|
3544
|
-
type PaymentFeeType = 'fx' | 'mor' | 'sp';
|
|
3419
|
+
type PaymentFeeType = 'fx' | 'mor' | 'sp' | 'mor_tax';
|
|
3545
3420
|
type PaymentMethodCapability = 'credit' | 'debit';
|
|
3546
3421
|
type PaymentMethodDataOptionType = 'ideal_issuer_option';
|
|
3547
3422
|
type PaymentMethodRuleContentKey = 'description';
|
|
@@ -3566,6 +3441,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3566
3441
|
type PriceDetailKey = 'item_price' | 'margins' | 'vat' | 'duty' | 'rounding' | 'adjustment';
|
|
3567
3442
|
type PriceFacetBoundary = 'min' | 'max';
|
|
3568
3443
|
type PricingLevySetting = 'included' | 'displayed' | 'ignored';
|
|
3444
|
+
type PricingType = 'inclusive_pricing';
|
|
3569
3445
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
3570
3446
|
type ProvinceType = 'area' | 'city' | 'county' | 'department' | 'dependency' | 'district' | 'do_si' | 'emirate' | 'entity' | 'island' | 'municipality' | 'oblast' | 'outlying_area' | 'parish' | 'prefecture' | 'province' | 'state' | 'territory' | 'other';
|
|
3571
3447
|
type QuoteErrorCode = 'generic_error' | 'items_not_available' | 'shipping_unavailable';
|
|
@@ -3575,6 +3451,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3575
3451
|
type RefundStatus = 'pending' | 'succeeded' | 'failed' | 'canceled';
|
|
3576
3452
|
type RegionType = 'state' | 'province' | 'jurisdiction';
|
|
3577
3453
|
type RestrictedReviewStatus = 'in_review' | 'reviewed';
|
|
3454
|
+
type RestrictionEnvironment = 'sandbox' | 'production' | 'qa';
|
|
3578
3455
|
type ReturnItemStatus = 'returnable' | 'non-returnable';
|
|
3579
3456
|
type ReturnPolicyState = 'current' | 'deleting' | 'updating';
|
|
3580
3457
|
type ReturnStatus = 'open' | 'refunded';
|
|
@@ -3589,6 +3466,9 @@ declare namespace io.flow.v0.enums {
|
|
|
3589
3466
|
type ScheduleExceptionStatus = 'Open' | 'Closed';
|
|
3590
3467
|
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
|
|
3591
3468
|
type SellabilityRequestStatus = 'commit';
|
|
3469
|
+
type SellabilityResultErrorCode = 'insufficient_details' | 'generic_error';
|
|
3470
|
+
type SellabilityResultStatus = 'in_review' | 'succeeded' | 'failed';
|
|
3471
|
+
type SellabilityScreeningMode = 'pre_onboarding' | 'default_on' | 'active';
|
|
3592
3472
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
3593
3473
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
3594
3474
|
type ShippingConfigurationType = 'default' | 'variant';
|
|
@@ -3597,7 +3477,8 @@ declare namespace io.flow.v0.enums {
|
|
|
3597
3477
|
type ShopifyLocalizationMethod = 'api' | 'ssr';
|
|
3598
3478
|
type ShopifySyncCheck = 'localized_variants' | 'flow_variant_metafields';
|
|
3599
3479
|
type SortDirection = 'ascending' | 'descending';
|
|
3600
|
-
type StatementAttachmentType = 'csv';
|
|
3480
|
+
type StatementAttachmentType = 'csv' | 'pdf';
|
|
3481
|
+
type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
3601
3482
|
type StoredMethodUsageStep = 'initial' | 'subsequent';
|
|
3602
3483
|
type Strategy = 'range' | 'from' | 'to';
|
|
3603
3484
|
type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
|
|
@@ -3605,7 +3486,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3605
3486
|
type SurchargeResponsibleParty = 'organization' | 'customer';
|
|
3606
3487
|
type TaxApplicability = 'none' | 'all';
|
|
3607
3488
|
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';
|
|
3489
|
+
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';
|
|
3609
3490
|
type TaxJurisdictionType = 'country' | 'province';
|
|
3610
3491
|
type TaxReportType = 'consumer' | 'b2b';
|
|
3611
3492
|
type TaxType = 'vat' | 'gst' | 'hst' | 'pst' | 'qst' | 'sales_tax';
|
|
@@ -3622,10 +3503,10 @@ declare namespace io.flow.v0.enums {
|
|
|
3622
3503
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired' | 'unknown' | 'unmapped';
|
|
3623
3504
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
3624
3505
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
3625
|
-
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';
|
|
3506
|
+
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';
|
|
3626
3507
|
type TransferStatus = 'succeeded' | 'canceled';
|
|
3627
3508
|
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';
|
|
3628
|
-
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
3509
|
+
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
3629
3510
|
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';
|
|
3630
3511
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
3631
3512
|
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_foot' | 'cubic_millimeter' | 'cubic_centimeter' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
@@ -3954,20 +3835,6 @@ declare namespace io.flow.v0.models {
|
|
|
3954
3835
|
readonly 'fingerprint_token': string;
|
|
3955
3836
|
}
|
|
3956
3837
|
|
|
3957
|
-
interface AldoItemDeleted {
|
|
3958
|
-
readonly 'discriminator': 'aldo_item_deleted';
|
|
3959
|
-
readonly 'event_id': string;
|
|
3960
|
-
readonly 'timestamp': string;
|
|
3961
|
-
readonly 'id': string;
|
|
3962
|
-
}
|
|
3963
|
-
|
|
3964
|
-
interface AldoItemUpserted {
|
|
3965
|
-
readonly 'discriminator': 'aldo_item_upserted';
|
|
3966
|
-
readonly 'event_id': string;
|
|
3967
|
-
readonly 'timestamp': string;
|
|
3968
|
-
readonly 'item': io.flow.tech.onboarding.playground.v0.models.AldoItem;
|
|
3969
|
-
}
|
|
3970
|
-
|
|
3971
3838
|
interface Allocation {
|
|
3972
3839
|
readonly 'order': io.flow.v0.models.AllocationOrderSummary;
|
|
3973
3840
|
readonly 'details': io.flow.v0.unions.AllocationDetail[];
|
|
@@ -4092,34 +3959,6 @@ declare namespace io.flow.v0.models {
|
|
|
4092
3959
|
readonly 'interval'?: io.flow.v0.enums.UnitOfTime;
|
|
4093
3960
|
}
|
|
4094
3961
|
|
|
4095
|
-
interface AnirbanItemDeleted {
|
|
4096
|
-
readonly 'discriminator': 'anirban_item_deleted';
|
|
4097
|
-
readonly 'event_id': string;
|
|
4098
|
-
readonly 'timestamp': string;
|
|
4099
|
-
readonly 'id': string;
|
|
4100
|
-
}
|
|
4101
|
-
|
|
4102
|
-
interface AnirbanItemUpserted {
|
|
4103
|
-
readonly 'discriminator': 'anirban_item_upserted';
|
|
4104
|
-
readonly 'event_id': string;
|
|
4105
|
-
readonly 'timestamp': string;
|
|
4106
|
-
readonly 'item': io.flow.tech.onboarding.playground.v0.models.AnirbanItem;
|
|
4107
|
-
}
|
|
4108
|
-
|
|
4109
|
-
interface AnshItemDeleted {
|
|
4110
|
-
readonly 'discriminator': 'ansh_item_deleted';
|
|
4111
|
-
readonly 'event_id': string;
|
|
4112
|
-
readonly 'timestamp': string;
|
|
4113
|
-
readonly 'id': string;
|
|
4114
|
-
}
|
|
4115
|
-
|
|
4116
|
-
interface AnshItemUpserted {
|
|
4117
|
-
readonly 'discriminator': 'ansh_item_upserted';
|
|
4118
|
-
readonly 'event_id': string;
|
|
4119
|
-
readonly 'timestamp': string;
|
|
4120
|
-
readonly 'item': io.flow.tech.onboarding.playground.v0.models.AnshItem;
|
|
4121
|
-
}
|
|
4122
|
-
|
|
4123
3962
|
interface ApplePayMerchantValidationPayload {
|
|
4124
3963
|
readonly 'discriminator': 'apple_pay_merchant_validation_payload';
|
|
4125
3964
|
readonly 'validation_url': string;
|
|
@@ -4408,9 +4247,12 @@ declare namespace io.flow.v0.models {
|
|
|
4408
4247
|
readonly 'invoice': io.flow.v0.models.B2BInvoiceReference;
|
|
4409
4248
|
readonly 'lines': io.flow.v0.unions.ConsumerInvoiceLine[];
|
|
4410
4249
|
readonly 'tax_lines'?: io.flow.v0.models.InvoiceTaxLine[];
|
|
4250
|
+
readonly 'tax'?: io.flow.v0.models.Money;
|
|
4411
4251
|
readonly 'documents': io.flow.v0.models.ConsumerInvoiceDocument[];
|
|
4412
4252
|
readonly 'attributes': Record<string, string>;
|
|
4413
4253
|
readonly 'b2b_invoice_type': io.flow.v0.enums.B2BInvoiceType;
|
|
4254
|
+
readonly 'center'?: io.flow.v0.models.ConsumerInvoiceCenterReference;
|
|
4255
|
+
readonly 'order'?: io.flow.v0.models.ConsumerInvoiceOrderSummary;
|
|
4414
4256
|
}
|
|
4415
4257
|
|
|
4416
4258
|
interface B2BCreditMemoDeleted {
|
|
@@ -4507,6 +4349,18 @@ declare namespace io.flow.v0.models {
|
|
|
4507
4349
|
readonly 'iban': string;
|
|
4508
4350
|
}
|
|
4509
4351
|
|
|
4352
|
+
interface BankAccountInfoKor {
|
|
4353
|
+
readonly 'discriminator': 'kor';
|
|
4354
|
+
readonly 'name'?: string;
|
|
4355
|
+
readonly 'address'?: io.flow.v0.models.Address;
|
|
4356
|
+
readonly 'phone'?: string;
|
|
4357
|
+
readonly 'email'?: string;
|
|
4358
|
+
readonly 'bank_account_number': string;
|
|
4359
|
+
readonly 'bank_routing_number'?: string;
|
|
4360
|
+
readonly 'bank_name'?: string;
|
|
4361
|
+
readonly 'bank_address'?: io.flow.v0.models.Address;
|
|
4362
|
+
}
|
|
4363
|
+
|
|
4510
4364
|
interface BankAccountInfoUsa {
|
|
4511
4365
|
readonly 'discriminator': 'usa';
|
|
4512
4366
|
readonly 'routing_number': string;
|
|
@@ -5237,6 +5091,7 @@ declare namespace io.flow.v0.models {
|
|
|
5237
5091
|
readonly 'shopify_order_summary': io.flow.v0.models.ChannelShopifyOrderSummary;
|
|
5238
5092
|
readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
5239
5093
|
readonly 'reasons'?: io.flow.v0.models.ChannelShopifyOrderStateReason[];
|
|
5094
|
+
readonly 'external_order_summary'?: io.flow.v0.models.ExternalOrderSummary;
|
|
5240
5095
|
}
|
|
5241
5096
|
|
|
5242
5097
|
interface ChannelShopifyOrderStateDeleted {
|
|
@@ -5466,6 +5321,77 @@ declare namespace io.flow.v0.models {
|
|
|
5466
5321
|
readonly 'amount': io.flow.v0.models.Money;
|
|
5467
5322
|
}
|
|
5468
5323
|
|
|
5324
|
+
interface CommonMerchantApplication {
|
|
5325
|
+
readonly 'discriminator': 'common_merchant_application';
|
|
5326
|
+
readonly 'id': string;
|
|
5327
|
+
readonly 'organization_id': string;
|
|
5328
|
+
readonly 'organization_reference': io.flow.v0.models.OnboardingOrganizationReference;
|
|
5329
|
+
readonly 'status': io.flow.v0.enums.OnboardingApplicationStatus;
|
|
5330
|
+
readonly 'company'?: io.flow.v0.models.MerchantInfo;
|
|
5331
|
+
readonly 'indirect_tax'?: io.flow.v0.models.IndirectTax;
|
|
5332
|
+
readonly 'ultimate_beneficiary_owner'?: io.flow.v0.models.UltimateBeneficiaryOwner;
|
|
5333
|
+
readonly 'business_url'?: string;
|
|
5334
|
+
readonly 'business_description'?: string;
|
|
5335
|
+
readonly 'business_address'?: io.flow.v0.models.Address;
|
|
5336
|
+
readonly 'refund_percentage'?: number;
|
|
5337
|
+
readonly 'chargeback_percentage'?: number;
|
|
5338
|
+
readonly 'beneficiary_details'?: io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
5339
|
+
readonly 'other_trade_sector'?: string;
|
|
5340
|
+
readonly 'center_contact'?: io.flow.v0.models.OperationsContact;
|
|
5341
|
+
readonly 'center_address'?: io.flow.v0.models.Address;
|
|
5342
|
+
readonly 'average_order_weight'?: number;
|
|
5343
|
+
readonly 'average_order_weight_unit'?: io.flow.v0.enums.UnitOfMeasurement;
|
|
5344
|
+
readonly 'package_dimensions'?: io.flow.v0.models.Dimension[];
|
|
5345
|
+
readonly 'monthly_average'?: io.flow.v0.models.MonthlyAverage;
|
|
5346
|
+
readonly 'default_country_of_origin'?: string;
|
|
5347
|
+
readonly 'rate_card': string;
|
|
5348
|
+
readonly 'shop'?: io.flow.v0.models.Shop;
|
|
5349
|
+
readonly 'created_at': string;
|
|
5350
|
+
readonly 'last_year_xborder_gmv'?: io.flow.v0.models.Money;
|
|
5351
|
+
readonly 'last_month_xborder_gmv'?: io.flow.v0.models.Money;
|
|
5352
|
+
readonly 'average_order_value'?: io.flow.v0.models.Money;
|
|
5353
|
+
readonly 'mcc_codes'?: number[];
|
|
5354
|
+
}
|
|
5355
|
+
|
|
5356
|
+
interface CommonMerchantApplicationForm {
|
|
5357
|
+
readonly 'discriminator': 'common_merchant_application_form';
|
|
5358
|
+
readonly 'company'?: io.flow.v0.models.MerchantInfo;
|
|
5359
|
+
readonly 'indirect_tax'?: io.flow.v0.models.IndirectTax;
|
|
5360
|
+
readonly 'ultimate_beneficiary_owner'?: io.flow.v0.models.UltimateBeneficiaryOwner;
|
|
5361
|
+
readonly 'business_url'?: string;
|
|
5362
|
+
readonly 'business_description'?: string;
|
|
5363
|
+
readonly 'business_address'?: io.flow.v0.models.Address;
|
|
5364
|
+
readonly 'refund_percentage'?: number;
|
|
5365
|
+
readonly 'chargeback_percentage'?: number;
|
|
5366
|
+
readonly 'beneficiary_details'?: io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
5367
|
+
readonly 'other_trade_sector'?: string;
|
|
5368
|
+
readonly 'center_contact'?: io.flow.v0.models.OperationsContact;
|
|
5369
|
+
readonly 'center_address'?: io.flow.v0.models.Address;
|
|
5370
|
+
readonly 'average_order_weight'?: number;
|
|
5371
|
+
readonly 'average_order_weight_unit'?: io.flow.v0.enums.UnitOfMeasurement;
|
|
5372
|
+
readonly 'package_dimensions'?: io.flow.v0.models.Dimension[];
|
|
5373
|
+
readonly 'monthly_average_volume_amount'?: number;
|
|
5374
|
+
readonly 'monthly_average_volume_currency'?: string;
|
|
5375
|
+
readonly 'monthly_average_number_transactions'?: number;
|
|
5376
|
+
readonly 'default_country_of_origin'?: string;
|
|
5377
|
+
readonly 'shop'?: io.flow.v0.models.Shop;
|
|
5378
|
+
readonly 'rate_card'?: string;
|
|
5379
|
+
readonly 'last_year_xborder_gmv'?: io.flow.v0.models.Money;
|
|
5380
|
+
readonly 'last_month_xborder_gmv'?: io.flow.v0.models.Money;
|
|
5381
|
+
readonly 'average_order_value'?: io.flow.v0.models.Money;
|
|
5382
|
+
readonly 'mcc_codes'?: number[];
|
|
5383
|
+
}
|
|
5384
|
+
|
|
5385
|
+
interface CommonMerchantApplicationPutForm {
|
|
5386
|
+
readonly 'discriminator': 'common_merchant_application_put_form';
|
|
5387
|
+
readonly 'status'?: io.flow.v0.enums.OnboardingApplicationStatus;
|
|
5388
|
+
}
|
|
5389
|
+
|
|
5390
|
+
interface CommonMerchantApplicationsSummary {
|
|
5391
|
+
readonly 'discriminator': 'common_merchant_applications_summary';
|
|
5392
|
+
readonly 'total': number;
|
|
5393
|
+
}
|
|
5394
|
+
|
|
5469
5395
|
interface Company {
|
|
5470
5396
|
readonly 'discriminator': 'company';
|
|
5471
5397
|
readonly 'legal_name': string;
|
|
@@ -5699,6 +5625,8 @@ declare namespace io.flow.v0.models {
|
|
|
5699
5625
|
readonly 'documents': io.flow.v0.models.ConsumerInvoiceDocument[];
|
|
5700
5626
|
readonly 'attributes': Record<string, string>;
|
|
5701
5627
|
readonly 'tax_registration'?: io.flow.v0.models.TaxRegistration;
|
|
5628
|
+
readonly 'center'?: io.flow.v0.models.ConsumerInvoiceCenterReference;
|
|
5629
|
+
readonly 'order'?: io.flow.v0.models.ConsumerInvoiceOrderSummary;
|
|
5702
5630
|
}
|
|
5703
5631
|
|
|
5704
5632
|
interface CreditMemoDeleted {
|
|
@@ -6485,6 +6413,7 @@ declare namespace io.flow.v0.models {
|
|
|
6485
6413
|
readonly 'amount': io.flow.v0.models.Money;
|
|
6486
6414
|
readonly 'origin_region'?: io.flow.v0.models.RatecardRegionReference;
|
|
6487
6415
|
readonly 'destination_region'?: io.flow.v0.models.RatecardRegionReference;
|
|
6416
|
+
readonly 'destination_regions'?: io.flow.v0.models.RatecardRegionReference[];
|
|
6488
6417
|
readonly 'interval_unit'?: io.flow.v0.enums.UnitOfMeasurement;
|
|
6489
6418
|
}
|
|
6490
6419
|
|
|
@@ -6823,6 +6752,11 @@ declare namespace io.flow.v0.models {
|
|
|
6823
6752
|
readonly 'type'?: io.flow.v0.enums.CardType;
|
|
6824
6753
|
}
|
|
6825
6754
|
|
|
6755
|
+
interface ExternalOrderSummary {
|
|
6756
|
+
readonly 'id': string;
|
|
6757
|
+
readonly 'edit_ids': string[];
|
|
6758
|
+
}
|
|
6759
|
+
|
|
6826
6760
|
interface FeeDeduction {
|
|
6827
6761
|
readonly 'type': io.flow.v0.enums.FeeDeductionType;
|
|
6828
6762
|
readonly 'amount': number;
|
|
@@ -7125,7 +7059,7 @@ declare namespace io.flow.v0.models {
|
|
|
7125
7059
|
readonly 'discriminator': 'ge_catalog_item_ingestion_result';
|
|
7126
7060
|
readonly 'event_id': string;
|
|
7127
7061
|
readonly 'event_type': io.flow.v0.enums.GeEventType;
|
|
7128
|
-
readonly 'environment': io.flow.v0.enums.
|
|
7062
|
+
readonly 'environment': io.flow.v0.enums.RestrictionEnvironment;
|
|
7129
7063
|
readonly 'timestamp': string;
|
|
7130
7064
|
readonly 'source': string;
|
|
7131
7065
|
readonly 'response': io.flow.v0.enums.GeCatalogItemIngestionResponse;
|
|
@@ -7192,7 +7126,7 @@ declare namespace io.flow.v0.models {
|
|
|
7192
7126
|
readonly 'organization': string;
|
|
7193
7127
|
readonly 'event_id': string;
|
|
7194
7128
|
readonly 'event_type': io.flow.v0.enums.GeEventType;
|
|
7195
|
-
readonly 'environment': io.flow.v0.enums.
|
|
7129
|
+
readonly 'environment': io.flow.v0.enums.RestrictionEnvironment;
|
|
7196
7130
|
readonly 'timestamp': string;
|
|
7197
7131
|
readonly 'id': string;
|
|
7198
7132
|
readonly 'operation': io.flow.v0.enums.ChangeType;
|
|
@@ -7203,7 +7137,7 @@ declare namespace io.flow.v0.models {
|
|
|
7203
7137
|
readonly 'organization': string;
|
|
7204
7138
|
readonly 'event_id': string;
|
|
7205
7139
|
readonly 'event_type': io.flow.v0.enums.GeEventType;
|
|
7206
|
-
readonly 'environment': io.flow.v0.enums.
|
|
7140
|
+
readonly 'environment': io.flow.v0.enums.RestrictionEnvironment;
|
|
7207
7141
|
readonly 'timestamp': string;
|
|
7208
7142
|
readonly 'operation': io.flow.v0.enums.ChangeType;
|
|
7209
7143
|
readonly 'ge_product_restriction_result': io.flow.v0.models.ProductRestrictionResult;
|
|
@@ -7401,20 +7335,6 @@ declare namespace io.flow.v0.models {
|
|
|
7401
7335
|
readonly 'hop_estimate': io.flow.v0.models.HopEstimateV2;
|
|
7402
7336
|
}
|
|
7403
7337
|
|
|
7404
|
-
interface HoseinItemDeleted {
|
|
7405
|
-
readonly 'discriminator': 'hosein_item_deleted';
|
|
7406
|
-
readonly 'event_id': string;
|
|
7407
|
-
readonly 'timestamp': string;
|
|
7408
|
-
readonly 'id': string;
|
|
7409
|
-
}
|
|
7410
|
-
|
|
7411
|
-
interface HoseinItemUpserted {
|
|
7412
|
-
readonly 'discriminator': 'hosein_item_upserted';
|
|
7413
|
-
readonly 'event_id': string;
|
|
7414
|
-
readonly 'timestamp': string;
|
|
7415
|
-
readonly 'item': io.flow.tech.onboarding.playground.v0.models.HoseinItem;
|
|
7416
|
-
}
|
|
7417
|
-
|
|
7418
7338
|
interface Hs10 {
|
|
7419
7339
|
readonly 'id': string;
|
|
7420
7340
|
readonly 'item': io.flow.v0.models.HarmonizedItemReference;
|
|
@@ -8456,6 +8376,7 @@ declare namespace io.flow.v0.models {
|
|
|
8456
8376
|
readonly 'region'?: io.flow.v0.enums.RegionType;
|
|
8457
8377
|
readonly 'region_value'?: string;
|
|
8458
8378
|
readonly 'category_code'?: string;
|
|
8379
|
+
readonly 'description'?: string;
|
|
8459
8380
|
}
|
|
8460
8381
|
|
|
8461
8382
|
interface MerchantOfRecordAuthorizationForm {
|
|
@@ -8491,6 +8412,8 @@ declare namespace io.flow.v0.models {
|
|
|
8491
8412
|
interface MerchantOfRecordEntityRegistration {
|
|
8492
8413
|
readonly 'number': string;
|
|
8493
8414
|
readonly 'country': string;
|
|
8415
|
+
readonly 'province_number'?: string;
|
|
8416
|
+
readonly 'province'?: string;
|
|
8494
8417
|
}
|
|
8495
8418
|
|
|
8496
8419
|
interface MerchantOfRecordPaymentForm {
|
|
@@ -8510,6 +8433,17 @@ declare namespace io.flow.v0.models {
|
|
|
8510
8433
|
readonly 'country'?: string;
|
|
8511
8434
|
}
|
|
8512
8435
|
|
|
8436
|
+
interface MerchantOnboardingBeneficiaryDetails {
|
|
8437
|
+
readonly 'name'?: string;
|
|
8438
|
+
readonly 'address'?: io.flow.v0.models.Address;
|
|
8439
|
+
readonly 'phone'?: string;
|
|
8440
|
+
readonly 'email'?: string;
|
|
8441
|
+
readonly 'bank_account_number'?: string;
|
|
8442
|
+
readonly 'bank_routing_number'?: string;
|
|
8443
|
+
readonly 'bank_name'?: string;
|
|
8444
|
+
readonly 'bank_address'?: io.flow.v0.models.Address;
|
|
8445
|
+
}
|
|
8446
|
+
|
|
8513
8447
|
interface MerchantRejected {
|
|
8514
8448
|
readonly 'discriminator': 'merchant_rejected';
|
|
8515
8449
|
readonly 'reason': io.flow.v0.enums.MerchantRejectedReason;
|
|
@@ -8560,20 +8494,6 @@ declare namespace io.flow.v0.models {
|
|
|
8560
8494
|
readonly 'require_msds'?: boolean;
|
|
8561
8495
|
}
|
|
8562
8496
|
|
|
8563
|
-
interface NiallItemDeleted {
|
|
8564
|
-
readonly 'discriminator': 'niall_item_deleted';
|
|
8565
|
-
readonly 'event_id': string;
|
|
8566
|
-
readonly 'timestamp': string;
|
|
8567
|
-
readonly 'id': string;
|
|
8568
|
-
}
|
|
8569
|
-
|
|
8570
|
-
interface NiallItemUpserted {
|
|
8571
|
-
readonly 'discriminator': 'niall_item_upserted';
|
|
8572
|
-
readonly 'event_id': string;
|
|
8573
|
-
readonly 'timestamp': string;
|
|
8574
|
-
readonly 'item': io.flow.tech.onboarding.playground.v0.models.NiallItem;
|
|
8575
|
-
}
|
|
8576
|
-
|
|
8577
8497
|
interface NotificationDeletedV2 {
|
|
8578
8498
|
readonly 'discriminator': 'notification_deleted_v2';
|
|
8579
8499
|
readonly 'event_id': string;
|
|
@@ -8723,6 +8643,7 @@ declare namespace io.flow.v0.models {
|
|
|
8723
8643
|
readonly 'payment_source'?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
8724
8644
|
readonly 'edits'?: io.flow.v0.models.EditSummary[];
|
|
8725
8645
|
readonly 'rates'?: io.flow.v0.models.OrderRate[];
|
|
8646
|
+
readonly 'pricing_type'?: io.flow.v0.enums.PricingType;
|
|
8726
8647
|
}
|
|
8727
8648
|
|
|
8728
8649
|
interface OrderAddress {
|
|
@@ -9436,6 +9357,22 @@ declare namespace io.flow.v0.models {
|
|
|
9436
9357
|
readonly 'environment': io.flow.v0.enums.Environment;
|
|
9437
9358
|
}
|
|
9438
9359
|
|
|
9360
|
+
interface OrganizationTaxRegistration {
|
|
9361
|
+
readonly 'id': string;
|
|
9362
|
+
readonly 'organization': io.flow.v0.models.OrganizationSummary;
|
|
9363
|
+
readonly 'address': io.flow.v0.models.BillingAddress;
|
|
9364
|
+
readonly 'registration': io.flow.v0.models.TaxRegistrationDetail;
|
|
9365
|
+
readonly 'self_billing_agreement': io.flow.v0.models.SelfBillingAgreement;
|
|
9366
|
+
}
|
|
9367
|
+
|
|
9368
|
+
interface OrganizationTaxRegistrationForm {
|
|
9369
|
+
readonly 'tax_number': string;
|
|
9370
|
+
readonly 'country': string;
|
|
9371
|
+
readonly 'province'?: string;
|
|
9372
|
+
readonly 'self_billing_agreement_effective_at': string;
|
|
9373
|
+
readonly 'self_billing_agreement_expires_at'?: string;
|
|
9374
|
+
}
|
|
9375
|
+
|
|
9439
9376
|
interface OrganizationToken {
|
|
9440
9377
|
readonly 'discriminator': 'organization_token';
|
|
9441
9378
|
readonly 'id': string;
|
|
@@ -10233,6 +10170,7 @@ declare namespace io.flow.v0.models {
|
|
|
10233
10170
|
readonly 'supported_actions': io.flow.v0.enums.PaymentActionType[];
|
|
10234
10171
|
readonly 'payment_capture_option'?: io.flow.v0.unions.PaymentCaptureOption;
|
|
10235
10172
|
readonly 'review'?: io.flow.v0.models.PaymentRequestReview;
|
|
10173
|
+
readonly 'client_secret'?: string;
|
|
10236
10174
|
}
|
|
10237
10175
|
|
|
10238
10176
|
interface PaymentRequestBilling {
|
|
@@ -10761,7 +10699,7 @@ declare namespace io.flow.v0.models {
|
|
|
10761
10699
|
readonly 'updated_by'?: string;
|
|
10762
10700
|
readonly 'product_restriction_id'?: string;
|
|
10763
10701
|
readonly 'hs_code'?: string;
|
|
10764
|
-
readonly 'restricted_regions_by_type'?: io.flow.v0.models.
|
|
10702
|
+
readonly 'restricted_regions_by_type'?: io.flow.v0.models.SellabilityRegionResult[];
|
|
10765
10703
|
readonly 'needs_action_attributes'?: io.flow.v0.models.NeedsActionAttributes[];
|
|
10766
10704
|
}
|
|
10767
10705
|
|
|
@@ -10787,10 +10725,11 @@ declare namespace io.flow.v0.models {
|
|
|
10787
10725
|
readonly 'product_id'?: string;
|
|
10788
10726
|
readonly 'request_id': string;
|
|
10789
10727
|
readonly 'hs6_code': string;
|
|
10790
|
-
readonly 'restricted_regions': io.flow.v0.models.
|
|
10728
|
+
readonly 'restricted_regions': io.flow.v0.models.SellabilityRegionResult[];
|
|
10791
10729
|
}
|
|
10792
10730
|
|
|
10793
10731
|
interface ProductSellabilityForm {
|
|
10732
|
+
readonly 'discriminator': 'product_sellability_form';
|
|
10794
10733
|
readonly 'shop_id': string;
|
|
10795
10734
|
readonly 'product_id'?: string;
|
|
10796
10735
|
readonly 'name': string;
|
|
@@ -10801,6 +10740,32 @@ declare namespace io.flow.v0.models {
|
|
|
10801
10740
|
readonly 'dry_run'?: boolean;
|
|
10802
10741
|
}
|
|
10803
10742
|
|
|
10743
|
+
interface ProductSellabilityResult {
|
|
10744
|
+
readonly 'merchant_id'?: string;
|
|
10745
|
+
readonly 'product_id': string;
|
|
10746
|
+
readonly 'restricted_regions': io.flow.v0.models.SellabilityRestrictedRegion[];
|
|
10747
|
+
readonly 'restricted_reasons': io.flow.v0.models.SellabilityRestrictedReason[];
|
|
10748
|
+
readonly 'needs_action_attributes'?: io.flow.v0.models.SellabilityNeedsActionAttributes[];
|
|
10749
|
+
readonly 'request_id'?: string;
|
|
10750
|
+
readonly 'hs6_code'?: string;
|
|
10751
|
+
}
|
|
10752
|
+
|
|
10753
|
+
interface ProductSellabilityResultDeleted {
|
|
10754
|
+
readonly 'discriminator': 'product_sellability_result_deleted';
|
|
10755
|
+
readonly 'event_id': string;
|
|
10756
|
+
readonly 'timestamp': string;
|
|
10757
|
+
readonly 'organization': string;
|
|
10758
|
+
readonly 'id': string;
|
|
10759
|
+
}
|
|
10760
|
+
|
|
10761
|
+
interface ProductSellabilityResultUpserted {
|
|
10762
|
+
readonly 'discriminator': 'product_sellability_result_upserted';
|
|
10763
|
+
readonly 'event_id': string;
|
|
10764
|
+
readonly 'timestamp': string;
|
|
10765
|
+
readonly 'organization': string;
|
|
10766
|
+
readonly 'product_sellability_result': io.flow.v0.models.ProductSellabilityResult;
|
|
10767
|
+
}
|
|
10768
|
+
|
|
10804
10769
|
interface ProductTaxonomyCategory {
|
|
10805
10770
|
readonly 'name': string;
|
|
10806
10771
|
readonly 'full_name': string;
|
|
@@ -11050,6 +11015,7 @@ declare namespace io.flow.v0.models {
|
|
|
11050
11015
|
readonly 'center_id'?: string;
|
|
11051
11016
|
readonly 'taxes_owed'?: io.flow.v0.models.Money;
|
|
11052
11017
|
readonly 'duties_owed'?: io.flow.v0.models.Money;
|
|
11018
|
+
readonly 'commercial_invoice_mode'?: io.flow.v0.enums.CommercialInvoiceMode;
|
|
11053
11019
|
}
|
|
11054
11020
|
|
|
11055
11021
|
interface RatecardEstimateSummaryForm {
|
|
@@ -11674,20 +11640,6 @@ declare namespace io.flow.v0.models {
|
|
|
11674
11640
|
readonly 'reversal': io.flow.v0.models.Reversal;
|
|
11675
11641
|
}
|
|
11676
11642
|
|
|
11677
|
-
interface RohanItemDeleted {
|
|
11678
|
-
readonly 'discriminator': 'rohan_item_deleted';
|
|
11679
|
-
readonly 'event_id': string;
|
|
11680
|
-
readonly 'timestamp': string;
|
|
11681
|
-
readonly 'id': string;
|
|
11682
|
-
}
|
|
11683
|
-
|
|
11684
|
-
interface RohanItemUpserted {
|
|
11685
|
-
readonly 'discriminator': 'rohan_item_upserted';
|
|
11686
|
-
readonly 'event_id': string;
|
|
11687
|
-
readonly 'timestamp': string;
|
|
11688
|
-
readonly 'item': io.flow.tech.onboarding.playground.v0.models.RohanItem;
|
|
11689
|
-
}
|
|
11690
|
-
|
|
11691
11643
|
interface Romanization {
|
|
11692
11644
|
readonly 'address'?: io.flow.v0.models.Address;
|
|
11693
11645
|
readonly 'contact'?: io.flow.v0.models.Contact;
|
|
@@ -11711,20 +11663,6 @@ declare namespace io.flow.v0.models {
|
|
|
11711
11663
|
readonly 'roles': io.flow.v0.enums.FlowRole[];
|
|
11712
11664
|
}
|
|
11713
11665
|
|
|
11714
|
-
interface SarveshItemDeleted {
|
|
11715
|
-
readonly 'discriminator': 'sarvesh_item_deleted';
|
|
11716
|
-
readonly 'event_id': string;
|
|
11717
|
-
readonly 'timestamp': string;
|
|
11718
|
-
readonly 'id': string;
|
|
11719
|
-
}
|
|
11720
|
-
|
|
11721
|
-
interface SarveshItemUpserted {
|
|
11722
|
-
readonly 'discriminator': 'sarvesh_item_upserted';
|
|
11723
|
-
readonly 'event_id': string;
|
|
11724
|
-
readonly 'timestamp': string;
|
|
11725
|
-
readonly 'item': io.flow.tech.onboarding.playground.v0.models.SarveshItem;
|
|
11726
|
-
}
|
|
11727
|
-
|
|
11728
11666
|
interface Schedule {
|
|
11729
11667
|
readonly 'calendar'?: io.flow.v0.enums.Calendar;
|
|
11730
11668
|
readonly 'holiday': io.flow.v0.enums.HolidayCalendar;
|
|
@@ -11776,12 +11714,71 @@ declare namespace io.flow.v0.models {
|
|
|
11776
11714
|
readonly 'issuer_options': io.flow.v0.models.IssuerReference[];
|
|
11777
11715
|
}
|
|
11778
11716
|
|
|
11717
|
+
interface SelfBillingAgreement {
|
|
11718
|
+
readonly 'effective_at': string;
|
|
11719
|
+
readonly 'expires_at': string;
|
|
11720
|
+
}
|
|
11721
|
+
|
|
11779
11722
|
interface SellabilityError {
|
|
11780
11723
|
readonly 'discriminator': 'sellability_error';
|
|
11781
11724
|
readonly 'code': io.flow.v0.enums.SellabilityErrorCode;
|
|
11782
11725
|
readonly 'messages': string[];
|
|
11783
11726
|
}
|
|
11784
11727
|
|
|
11728
|
+
interface SellabilityNeedsActionAttributes {
|
|
11729
|
+
readonly 'reason_code': string;
|
|
11730
|
+
readonly 'category_metafield_handles': string[];
|
|
11731
|
+
readonly 'require_msds'?: boolean;
|
|
11732
|
+
}
|
|
11733
|
+
|
|
11734
|
+
interface SellabilityReasonWithRegions {
|
|
11735
|
+
readonly 'reason': string;
|
|
11736
|
+
readonly 'regions': string[];
|
|
11737
|
+
}
|
|
11738
|
+
|
|
11739
|
+
interface SellabilityRegionResult {
|
|
11740
|
+
readonly 'type': io.flow.v0.enums.RuleEffectType;
|
|
11741
|
+
readonly 'regions': string[];
|
|
11742
|
+
}
|
|
11743
|
+
|
|
11744
|
+
interface SellabilityRegionWithReasons {
|
|
11745
|
+
readonly 'region': string;
|
|
11746
|
+
readonly 'reasons': string[];
|
|
11747
|
+
}
|
|
11748
|
+
|
|
11749
|
+
interface SellabilityRestrictedReason {
|
|
11750
|
+
readonly 'type': io.flow.v0.enums.RuleEffectType;
|
|
11751
|
+
readonly 'reasons_with_regions': io.flow.v0.models.SellabilityReasonWithRegions[];
|
|
11752
|
+
}
|
|
11753
|
+
|
|
11754
|
+
interface SellabilityRestrictedRegion {
|
|
11755
|
+
readonly 'type': io.flow.v0.enums.RuleEffectType;
|
|
11756
|
+
readonly 'regions': string[];
|
|
11757
|
+
}
|
|
11758
|
+
|
|
11759
|
+
interface SellabilityScreening {
|
|
11760
|
+
readonly 'discriminator': 'sellability_screening';
|
|
11761
|
+
readonly 'product_sellability_result'?: io.flow.v0.models.ProductSellabilityResult;
|
|
11762
|
+
readonly 'request_id': string;
|
|
11763
|
+
readonly 'status': io.flow.v0.enums.SellabilityResultStatus;
|
|
11764
|
+
readonly 'error_code'?: io.flow.v0.enums.SellabilityResultErrorCode;
|
|
11765
|
+
readonly 'error_message'?: string;
|
|
11766
|
+
}
|
|
11767
|
+
|
|
11768
|
+
interface SellabilityScreeningForm {
|
|
11769
|
+
readonly 'discriminator': 'sellability_screening_form';
|
|
11770
|
+
readonly 'merchant_id': string;
|
|
11771
|
+
readonly 'product_id': string;
|
|
11772
|
+
readonly 'name': string;
|
|
11773
|
+
readonly 'price': io.flow.v0.models.Money;
|
|
11774
|
+
readonly 'description': string;
|
|
11775
|
+
readonly 'taxonomy_category': io.flow.v0.models.ProductTaxonomyCategory;
|
|
11776
|
+
readonly 'mode': io.flow.v0.enums.SellabilityScreeningMode;
|
|
11777
|
+
readonly 'catalog_size'?: number;
|
|
11778
|
+
readonly 'relative_ranking'?: number;
|
|
11779
|
+
readonly 'dry_run'?: boolean;
|
|
11780
|
+
}
|
|
11781
|
+
|
|
11785
11782
|
interface SellablilityRegionResult {
|
|
11786
11783
|
readonly 'type': io.flow.v0.enums.RuleEffectType;
|
|
11787
11784
|
readonly 'regions': string[];
|
|
@@ -12192,6 +12189,43 @@ declare namespace io.flow.v0.models {
|
|
|
12192
12189
|
readonly 'shipping_notification': io.flow.v0.models.ShippingNotification;
|
|
12193
12190
|
}
|
|
12194
12191
|
|
|
12192
|
+
interface ShippingRateEstimate {
|
|
12193
|
+
readonly 'origin_address': io.flow.v0.models.Address;
|
|
12194
|
+
readonly 'destination_address': io.flow.v0.models.Address;
|
|
12195
|
+
readonly 'shipping_date_time': string;
|
|
12196
|
+
readonly 'services': string[];
|
|
12197
|
+
readonly 'available': io.flow.v0.models.ShippingRateEstimateAvailable[];
|
|
12198
|
+
readonly 'unavailable'?: io.flow.v0.models.ShippingRateEstimateUnavailable[];
|
|
12199
|
+
}
|
|
12200
|
+
|
|
12201
|
+
interface ShippingRateEstimateAvailable {
|
|
12202
|
+
readonly 'service': io.flow.v0.models.RatecardServiceSummary;
|
|
12203
|
+
readonly 'delivered_duty': io.flow.v0.enums.DeliveredDuty;
|
|
12204
|
+
readonly 'shipment_window': io.flow.v0.models.ShipmentWindow;
|
|
12205
|
+
readonly 'total_amount': io.flow.v0.models.Money;
|
|
12206
|
+
readonly 'base_amount': io.flow.v0.models.Money;
|
|
12207
|
+
readonly 'fees': io.flow.v0.unions.RatecardFee[];
|
|
12208
|
+
readonly 'dimensional_weight'?: io.flow.v0.models.Measurement;
|
|
12209
|
+
readonly 'gravitational_weight'?: io.flow.v0.models.Measurement;
|
|
12210
|
+
readonly 'weight_break'?: number;
|
|
12211
|
+
}
|
|
12212
|
+
|
|
12213
|
+
interface ShippingRateEstimateRequest {
|
|
12214
|
+
readonly 'origin_address': io.flow.v0.models.Address;
|
|
12215
|
+
readonly 'destination_address': io.flow.v0.models.Address;
|
|
12216
|
+
readonly 'package_dimensions': io.flow.v0.models.Dimension;
|
|
12217
|
+
readonly 'shipping_date_time': string;
|
|
12218
|
+
readonly 'delivered_duty'?: io.flow.v0.enums.DeliveredDuty;
|
|
12219
|
+
readonly 'duties_owed'?: io.flow.v0.models.Money;
|
|
12220
|
+
readonly 'taxes_owed'?: io.flow.v0.models.Money;
|
|
12221
|
+
readonly 'line_items'?: io.flow.v0.models.LineItemForm[];
|
|
12222
|
+
}
|
|
12223
|
+
|
|
12224
|
+
interface ShippingRateEstimateUnavailable {
|
|
12225
|
+
readonly 'service': string;
|
|
12226
|
+
readonly 'reason': string;
|
|
12227
|
+
}
|
|
12228
|
+
|
|
12195
12229
|
interface Shop {
|
|
12196
12230
|
readonly 'name': string;
|
|
12197
12231
|
readonly 'id': string;
|
|
@@ -12404,6 +12438,7 @@ declare namespace io.flow.v0.models {
|
|
|
12404
12438
|
readonly 'third_party_logistics_partners'?: io.flow.v0.models.ThirdPartyLogisticsPartner[];
|
|
12405
12439
|
readonly 'center_contact'?: io.flow.v0.models.OperationsContact;
|
|
12406
12440
|
readonly 'average_order_weight'?: number;
|
|
12441
|
+
readonly 'average_order_weight_unit'?: io.flow.v0.enums.UnitOfMeasurement;
|
|
12407
12442
|
readonly 'package_dimensions'?: io.flow.v0.models.Dimension[];
|
|
12408
12443
|
readonly 'monthly_average'?: io.flow.v0.models.MonthlyAverage;
|
|
12409
12444
|
readonly 'default_country_of_origin'?: string;
|
|
@@ -12437,6 +12472,7 @@ declare namespace io.flow.v0.models {
|
|
|
12437
12472
|
readonly 'third_party_logistics_partners'?: io.flow.v0.models.ThirdPartyLogisticsPartner[];
|
|
12438
12473
|
readonly 'center_contact'?: io.flow.v0.models.OperationsContact;
|
|
12439
12474
|
readonly 'average_order_weight'?: number;
|
|
12475
|
+
readonly 'average_order_weight_unit'?: io.flow.v0.enums.UnitOfMeasurement;
|
|
12440
12476
|
readonly 'package_dimensions'?: io.flow.v0.models.Dimension[];
|
|
12441
12477
|
readonly 'monthly_average_volume_amount'?: number;
|
|
12442
12478
|
readonly 'monthly_average_volume_currency'?: string;
|
|
@@ -12580,6 +12616,11 @@ declare namespace io.flow.v0.models {
|
|
|
12580
12616
|
readonly 'statement': io.flow.v0.models.Statement;
|
|
12581
12617
|
}
|
|
12582
12618
|
|
|
12619
|
+
interface StatementStatusForm {
|
|
12620
|
+
readonly 'code': io.flow.v0.enums.StatementStatusCode;
|
|
12621
|
+
readonly 'failure_reason'?: io.flow.v0.enums.PayoutStatusFailureCode;
|
|
12622
|
+
}
|
|
12623
|
+
|
|
12583
12624
|
interface StatementUpserted {
|
|
12584
12625
|
readonly 'discriminator': 'statement_upserted';
|
|
12585
12626
|
readonly 'event_id': string;
|
|
@@ -12857,11 +12898,34 @@ declare namespace io.flow.v0.models {
|
|
|
12857
12898
|
readonly 'company_name'?: string;
|
|
12858
12899
|
}
|
|
12859
12900
|
|
|
12901
|
+
interface TaxRegistrationDeleted {
|
|
12902
|
+
readonly 'discriminator': 'tax_registration_deleted';
|
|
12903
|
+
readonly 'event_id': string;
|
|
12904
|
+
readonly 'timestamp': string;
|
|
12905
|
+
readonly 'organization': string;
|
|
12906
|
+
readonly 'id': string;
|
|
12907
|
+
}
|
|
12908
|
+
|
|
12909
|
+
interface TaxRegistrationDetail {
|
|
12910
|
+
readonly 'tax_number': string;
|
|
12911
|
+
readonly 'country': string;
|
|
12912
|
+
readonly 'tax_code': string;
|
|
12913
|
+
readonly 'province'?: string;
|
|
12914
|
+
}
|
|
12915
|
+
|
|
12860
12916
|
interface TaxRegistrationForm {
|
|
12861
12917
|
readonly 'number': string;
|
|
12862
12918
|
readonly 'company_name'?: string;
|
|
12863
12919
|
}
|
|
12864
12920
|
|
|
12921
|
+
interface TaxRegistrationUpserted {
|
|
12922
|
+
readonly 'discriminator': 'tax_registration_upserted';
|
|
12923
|
+
readonly 'event_id': string;
|
|
12924
|
+
readonly 'timestamp': string;
|
|
12925
|
+
readonly 'organization': string;
|
|
12926
|
+
readonly 'tax_registration': io.flow.v0.models.OrganizationTaxRegistration;
|
|
12927
|
+
}
|
|
12928
|
+
|
|
12865
12929
|
interface TaxReport {
|
|
12866
12930
|
readonly 'schedule': io.flow.v0.unions.RepeatSchedule;
|
|
12867
12931
|
readonly 'timezone': string;
|
|
@@ -13140,6 +13204,29 @@ declare namespace io.flow.v0.models {
|
|
|
13140
13204
|
readonly 'order_number'?: string;
|
|
13141
13205
|
}
|
|
13142
13206
|
|
|
13207
|
+
interface TrackingLabelEventUpsertedV2 {
|
|
13208
|
+
readonly 'discriminator': 'tracking_label_event_upserted_v2';
|
|
13209
|
+
readonly 'event_id': string;
|
|
13210
|
+
readonly 'timestamp': string;
|
|
13211
|
+
readonly 'organization': string;
|
|
13212
|
+
readonly 'tracking_label_event': io.flow.v0.models.TrackingLabelEventV2;
|
|
13213
|
+
}
|
|
13214
|
+
|
|
13215
|
+
interface TrackingLabelEventV2 {
|
|
13216
|
+
readonly 'id': string;
|
|
13217
|
+
readonly 'carrier_id': string;
|
|
13218
|
+
readonly 'carrier_tracking_number': string;
|
|
13219
|
+
readonly 'carrier_tracking_url'?: string;
|
|
13220
|
+
readonly 'label_id': string;
|
|
13221
|
+
readonly 'order_number'?: string;
|
|
13222
|
+
readonly 'status': io.flow.v0.enums.TrackingStatus;
|
|
13223
|
+
readonly 'substatus'?: io.flow.v0.enums.SubstatusCode;
|
|
13224
|
+
readonly 'carrier_timestamp': string;
|
|
13225
|
+
readonly 'description'?: string;
|
|
13226
|
+
readonly 'delivery_estimate'?: string;
|
|
13227
|
+
readonly 'address'?: io.flow.v0.models.Address;
|
|
13228
|
+
}
|
|
13229
|
+
|
|
13143
13230
|
interface TrackingLabelForm {
|
|
13144
13231
|
readonly 'tracking_id': string;
|
|
13145
13232
|
readonly 'status': io.flow.v0.enums.TrackingStatus;
|
|
@@ -13700,7 +13787,7 @@ declare namespace io.flow.v0.unions {
|
|
|
13700
13787
|
type AuthorizationResultActionDetails = (io.flow.v0.models.AdyenNativeActionDetails | io.flow.v0.models.StripeAuthorizationResultActionDetails | io.flow.v0.models.ThreedsIdentifyActionDetails | io.flow.v0.models.ThreedsChallengeActionDetails | io.flow.v0.models.ApplepaySdkCreateResultActionDetails | io.flow.v0.models.ApplepaySdkValidateResultActionDetails | io.flow.v0.models.KlarnaSdkAuthorizationResultActionDetails | io.flow.v0.models.SelectIssuerOptionActionDetails);
|
|
13701
13788
|
type AvailableFilter = (io.flow.v0.models.AvailableFilterStructured | io.flow.v0.models.AvailableFilterUnstructured);
|
|
13702
13789
|
type BankAccountForm = (io.flow.v0.models.BankAccountFormInfo | io.flow.v0.models.BankAccountFormSimple);
|
|
13703
|
-
type BankAccountInfo = (io.flow.v0.models.BankAccountInfoUsa | io.flow.v0.models.BankAccountInfoCan | io.flow.v0.models.BankAccountInfoGbr | io.flow.v0.models.BankAccountInfoFra | io.flow.v0.models.BankAccountInfoIta);
|
|
13790
|
+
type BankAccountInfo = (io.flow.v0.models.BankAccountInfoUsa | io.flow.v0.models.BankAccountInfoCan | io.flow.v0.models.BankAccountInfoGbr | io.flow.v0.models.BankAccountInfoFra | io.flow.v0.models.BankAccountInfoIta | io.flow.v0.models.BankAccountInfoKor);
|
|
13704
13791
|
type BrowserActionConfiguration = (io.flow.v0.models.CardBrowserActionConfiguration);
|
|
13705
13792
|
type CardAuthorizationActionResult = (io.flow.v0.models.AuthorizationActionResultAdyenV3 | io.flow.v0.models.AuthorizationActionResultAdyenV4);
|
|
13706
13793
|
type CardNumber = (io.flow.v0.models.PaymentMethodCardNumberCleartext | io.flow.v0.models.PaymentMethodCardNumberCipher);
|
|
@@ -13717,7 +13804,7 @@ declare namespace io.flow.v0.unions {
|
|
|
13717
13804
|
type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
|
|
13718
13805
|
type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
|
|
13719
13806
|
type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
|
|
13720
|
-
type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.
|
|
13807
|
+
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);
|
|
13721
13808
|
type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary | io.flow.v0.models.ExternalCard);
|
|
13722
13809
|
type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
|
|
13723
13810
|
type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
|
|
@@ -13741,10 +13828,10 @@ declare namespace io.flow.v0.unions {
|
|
|
13741
13828
|
type LabelSurchargeDetail = (io.flow.v0.models.LabelSurchargeDetailFlat | io.flow.v0.models.LabelSurchargeDetailPercentage | io.flow.v0.models.LabelSurchargeDetailPerWeightUnit);
|
|
13742
13829
|
type LocalizedPrice = (io.flow.v0.models.LocalizedItemPrice | io.flow.v0.models.LocalizedItemVat | io.flow.v0.models.LocalizedItemDuty | io.flow.v0.models.LocalizedTotal);
|
|
13743
13830
|
type LogoImage = (io.flow.v0.models.LogoImageSvg | io.flow.v0.models.LogoImageSetStatic);
|
|
13744
|
-
type MerchantApplication = (io.flow.v0.models.ShopifyMerchantApplication);
|
|
13745
|
-
type MerchantApplicationForm = (io.flow.v0.models.ShopifyMerchantApplicationForm);
|
|
13746
|
-
type MerchantApplicationPutForm = (io.flow.v0.models.ShopifyMerchantApplicationPutForm);
|
|
13747
|
-
type MerchantApplicationsSummary = (io.flow.v0.models.ShopifyMerchantApplicationsSummary);
|
|
13831
|
+
type MerchantApplication = (io.flow.v0.models.ShopifyMerchantApplication | io.flow.v0.models.CommonMerchantApplication);
|
|
13832
|
+
type MerchantApplicationForm = (io.flow.v0.models.ShopifyMerchantApplicationForm | io.flow.v0.models.CommonMerchantApplicationForm);
|
|
13833
|
+
type MerchantApplicationPutForm = (io.flow.v0.models.ShopifyMerchantApplicationPutForm | io.flow.v0.models.CommonMerchantApplicationPutForm);
|
|
13834
|
+
type MerchantApplicationsSummary = (io.flow.v0.models.ShopifyMerchantApplicationsSummary | io.flow.v0.models.CommonMerchantApplicationsSummary);
|
|
13748
13835
|
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);
|
|
13749
13836
|
type OnlineAuthorizationDetails = (io.flow.v0.models.CryptopayAuthorizationDetails | io.flow.v0.models.PaypalAuthorizationDetails | io.flow.v0.models.RedirectAuthorizationDetails | io.flow.v0.models.InlineAuthorizationDetails);
|
|
13750
13837
|
type OrderInformation = (io.flow.v0.models.OrderInformationFlow | io.flow.v0.models.OrderInformationDetails);
|
|
@@ -13788,7 +13875,8 @@ declare namespace io.flow.v0.unions {
|
|
|
13788
13875
|
type RepeatSchedule = (io.flow.v0.models.RepeatHourly | io.flow.v0.models.RepeatDaily | io.flow.v0.models.RepeatWeekly | io.flow.v0.models.RepeatMonthly);
|
|
13789
13876
|
type ReturnSource = (io.flow.v0.models.ReturnSourceFlow | io.flow.v0.models.ReturnSourceExternalVendor);
|
|
13790
13877
|
type SdkAdyenV3AuthenticationToken = (io.flow.v0.models.AdyenV3FingerprintToken | io.flow.v0.models.AdyenV3ChallengeToken);
|
|
13791
|
-
type
|
|
13878
|
+
type SellabilityRequest = (io.flow.v0.models.ProductSellabilityForm | io.flow.v0.models.SellabilityScreeningForm);
|
|
13879
|
+
type SellabilityResponse = (io.flow.v0.models.ProductSellability | io.flow.v0.models.SellabilityError | io.flow.v0.models.SellabilityScreening);
|
|
13792
13880
|
type ServiceDescription = (io.flow.v0.models.ServiceSummary | io.flow.v0.models.ServiceUnknown);
|
|
13793
13881
|
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);
|
|
13794
13882
|
type Session = (io.flow.v0.models.OrganizationSession);
|
|
@@ -13839,6 +13927,7 @@ export const centerCapability: PropTypes.Requireable<io.flow.v0.enums.CenterCapa
|
|
|
13839
13927
|
export const changeType: PropTypes.Requireable<io.flow.v0.enums.ChangeType>;
|
|
13840
13928
|
export const channelCurrencyCapability: PropTypes.Requireable<io.flow.v0.enums.ChannelCurrencyCapability>;
|
|
13841
13929
|
export const channelShopifyOrderStateReasonCode: PropTypes.Requireable<io.flow.v0.enums.ChannelShopifyOrderStateReasonCode>;
|
|
13930
|
+
export const commercialInvoiceMode: PropTypes.Requireable<io.flow.v0.enums.CommercialInvoiceMode>;
|
|
13842
13931
|
export const consumerInvoiceCustomerType: PropTypes.Requireable<io.flow.v0.enums.ConsumerInvoiceCustomerType>;
|
|
13843
13932
|
export const consumerInvoiceDocumentType: PropTypes.Requireable<io.flow.v0.enums.ConsumerInvoiceDocumentType>;
|
|
13844
13933
|
export const consumerInvoiceStatus: PropTypes.Requireable<io.flow.v0.enums.ConsumerInvoiceStatus>;
|
|
@@ -13968,6 +14057,7 @@ export const priceDetailComponentKey: PropTypes.Requireable<io.flow.v0.enums.Pri
|
|
|
13968
14057
|
export const priceDetailKey: PropTypes.Requireable<io.flow.v0.enums.PriceDetailKey>;
|
|
13969
14058
|
export const priceFacetBoundary: PropTypes.Requireable<io.flow.v0.enums.PriceFacetBoundary>;
|
|
13970
14059
|
export const pricingLevySetting: PropTypes.Requireable<io.flow.v0.enums.PricingLevySetting>;
|
|
14060
|
+
export const pricingType: PropTypes.Requireable<io.flow.v0.enums.PricingType>;
|
|
13971
14061
|
export const promotionTriggerType: PropTypes.Requireable<io.flow.v0.enums.PromotionTriggerType>;
|
|
13972
14062
|
export const provinceType: PropTypes.Requireable<io.flow.v0.enums.ProvinceType>;
|
|
13973
14063
|
export const quoteErrorCode: PropTypes.Requireable<io.flow.v0.enums.QuoteErrorCode>;
|
|
@@ -13977,6 +14067,7 @@ export const refundFailureCategory: PropTypes.Requireable<io.flow.v0.enums.Refun
|
|
|
13977
14067
|
export const refundStatus: PropTypes.Requireable<io.flow.v0.enums.RefundStatus>;
|
|
13978
14068
|
export const regionType: PropTypes.Requireable<io.flow.v0.enums.RegionType>;
|
|
13979
14069
|
export const restrictedReviewStatus: PropTypes.Requireable<io.flow.v0.enums.RestrictedReviewStatus>;
|
|
14070
|
+
export const restrictionEnvironment: PropTypes.Requireable<io.flow.v0.enums.RestrictionEnvironment>;
|
|
13980
14071
|
export const returnItemStatus: PropTypes.Requireable<io.flow.v0.enums.ReturnItemStatus>;
|
|
13981
14072
|
export const returnPolicyState: PropTypes.Requireable<io.flow.v0.enums.ReturnPolicyState>;
|
|
13982
14073
|
export const returnStatus: PropTypes.Requireable<io.flow.v0.enums.ReturnStatus>;
|
|
@@ -13991,6 +14082,9 @@ export const ruleEffectType: PropTypes.Requireable<io.flow.v0.enums.RuleEffectTy
|
|
|
13991
14082
|
export const scheduleExceptionStatus: PropTypes.Requireable<io.flow.v0.enums.ScheduleExceptionStatus>;
|
|
13992
14083
|
export const sellabilityErrorCode: PropTypes.Requireable<io.flow.v0.enums.SellabilityErrorCode>;
|
|
13993
14084
|
export const sellabilityRequestStatus: PropTypes.Requireable<io.flow.v0.enums.SellabilityRequestStatus>;
|
|
14085
|
+
export const sellabilityResultErrorCode: PropTypes.Requireable<io.flow.v0.enums.SellabilityResultErrorCode>;
|
|
14086
|
+
export const sellabilityResultStatus: PropTypes.Requireable<io.flow.v0.enums.SellabilityResultStatus>;
|
|
14087
|
+
export const sellabilityScreeningMode: PropTypes.Requireable<io.flow.v0.enums.SellabilityScreeningMode>;
|
|
13994
14088
|
export const shipmentIntegrationType: PropTypes.Requireable<io.flow.v0.enums.ShipmentIntegrationType>;
|
|
13995
14089
|
export const shipmentRecipient: PropTypes.Requireable<io.flow.v0.enums.ShipmentRecipient>;
|
|
13996
14090
|
export const shippingConfigurationType: PropTypes.Requireable<io.flow.v0.enums.ShippingConfigurationType>;
|
|
@@ -14000,6 +14094,7 @@ export const shopifyLocalizationMethod: PropTypes.Requireable<io.flow.v0.enums.S
|
|
|
14000
14094
|
export const shopifySyncCheck: PropTypes.Requireable<io.flow.v0.enums.ShopifySyncCheck>;
|
|
14001
14095
|
export const sortDirection: PropTypes.Requireable<io.flow.v0.enums.SortDirection>;
|
|
14002
14096
|
export const statementAttachmentType: PropTypes.Requireable<io.flow.v0.enums.StatementAttachmentType>;
|
|
14097
|
+
export const statementStatusCode: PropTypes.Requireable<io.flow.v0.enums.StatementStatusCode>;
|
|
14003
14098
|
export const storedMethodUsageStep: PropTypes.Requireable<io.flow.v0.enums.StoredMethodUsageStep>;
|
|
14004
14099
|
export const strategy: PropTypes.Requireable<io.flow.v0.enums.Strategy>;
|
|
14005
14100
|
export const subcatalogItemStatus: PropTypes.Requireable<io.flow.v0.enums.SubcatalogItemStatus>;
|
|
@@ -14085,8 +14180,6 @@ export const adyenIdentifyShopperData: PropTypes.Requireable<io.flow.v0.models.A
|
|
|
14085
14180
|
export const adyenNativeActionDetails: PropTypes.Requireable<io.flow.v0.models.AdyenNativeActionDetails>;
|
|
14086
14181
|
export const adyenV3ChallengeToken: PropTypes.Requireable<io.flow.v0.models.AdyenV3ChallengeToken>;
|
|
14087
14182
|
export const adyenV3FingerprintToken: PropTypes.Requireable<io.flow.v0.models.AdyenV3FingerprintToken>;
|
|
14088
|
-
export const aldoItemDeleted: PropTypes.Requireable<io.flow.v0.models.AldoItemDeleted>;
|
|
14089
|
-
export const aldoItemUpserted: PropTypes.Requireable<io.flow.v0.models.AldoItemUpserted>;
|
|
14090
14183
|
export const allocation: PropTypes.Requireable<io.flow.v0.models.Allocation>;
|
|
14091
14184
|
export const allocationDeletedV2: PropTypes.Requireable<io.flow.v0.models.AllocationDeletedV2>;
|
|
14092
14185
|
export const allocationDetailComponent: PropTypes.Requireable<io.flow.v0.models.AllocationDetailComponent>;
|
|
@@ -14102,10 +14195,6 @@ export const allocationV2: PropTypes.Requireable<io.flow.v0.models.AllocationV2>
|
|
|
14102
14195
|
export const amountMargin: PropTypes.Requireable<io.flow.v0.models.AmountMargin>;
|
|
14103
14196
|
export const amountMarginForm: PropTypes.Requireable<io.flow.v0.models.AmountMarginForm>;
|
|
14104
14197
|
export const analyticsExportType: PropTypes.Requireable<io.flow.v0.models.AnalyticsExportType>;
|
|
14105
|
-
export const anirbanItemDeleted: PropTypes.Requireable<io.flow.v0.models.AnirbanItemDeleted>;
|
|
14106
|
-
export const anirbanItemUpserted: PropTypes.Requireable<io.flow.v0.models.AnirbanItemUpserted>;
|
|
14107
|
-
export const anshItemDeleted: PropTypes.Requireable<io.flow.v0.models.AnshItemDeleted>;
|
|
14108
|
-
export const anshItemUpserted: PropTypes.Requireable<io.flow.v0.models.AnshItemUpserted>;
|
|
14109
14198
|
export const applePayMerchantValidationPayload: PropTypes.Requireable<io.flow.v0.models.ApplePayMerchantValidationPayload>;
|
|
14110
14199
|
export const applepaySdkCreateResultActionDetails: PropTypes.Requireable<io.flow.v0.models.ApplepaySdkCreateResultActionDetails>;
|
|
14111
14200
|
export const applepaySdkValidateResultActionDetails: PropTypes.Requireable<io.flow.v0.models.ApplepaySdkValidateResultActionDetails>;
|
|
@@ -14159,6 +14248,7 @@ export const bankAccountInfoCan: PropTypes.Requireable<io.flow.v0.models.BankAcc
|
|
|
14159
14248
|
export const bankAccountInfoFra: PropTypes.Requireable<io.flow.v0.models.BankAccountInfoFra>;
|
|
14160
14249
|
export const bankAccountInfoGbr: PropTypes.Requireable<io.flow.v0.models.BankAccountInfoGbr>;
|
|
14161
14250
|
export const bankAccountInfoIta: PropTypes.Requireable<io.flow.v0.models.BankAccountInfoIta>;
|
|
14251
|
+
export const bankAccountInfoKor: PropTypes.Requireable<io.flow.v0.models.BankAccountInfoKor>;
|
|
14162
14252
|
export const bankAccountInfoUsa: PropTypes.Requireable<io.flow.v0.models.BankAccountInfoUsa>;
|
|
14163
14253
|
export const bankAccountReference: PropTypes.Requireable<io.flow.v0.models.BankAccountReference>;
|
|
14164
14254
|
export const bankAccountSummary: PropTypes.Requireable<io.flow.v0.models.BankAccountSummary>;
|
|
@@ -14289,6 +14379,10 @@ export const checkoutUrls: PropTypes.Requireable<io.flow.v0.models.CheckoutUrls>
|
|
|
14289
14379
|
export const checkoutUrlsForm: PropTypes.Requireable<io.flow.v0.models.CheckoutUrlsForm>;
|
|
14290
14380
|
export const cleartext: PropTypes.Requireable<io.flow.v0.models.Cleartext>;
|
|
14291
14381
|
export const commercialInvoiceFee: PropTypes.Requireable<io.flow.v0.models.CommercialInvoiceFee>;
|
|
14382
|
+
export const commonMerchantApplication: PropTypes.Requireable<io.flow.v0.models.CommonMerchantApplication>;
|
|
14383
|
+
export const commonMerchantApplicationForm: PropTypes.Requireable<io.flow.v0.models.CommonMerchantApplicationForm>;
|
|
14384
|
+
export const commonMerchantApplicationPutForm: PropTypes.Requireable<io.flow.v0.models.CommonMerchantApplicationPutForm>;
|
|
14385
|
+
export const commonMerchantApplicationsSummary: PropTypes.Requireable<io.flow.v0.models.CommonMerchantApplicationsSummary>;
|
|
14292
14386
|
export const company: PropTypes.Requireable<io.flow.v0.models.Company>;
|
|
14293
14387
|
export const consumerInvoice: PropTypes.Requireable<io.flow.v0.models.ConsumerInvoice>;
|
|
14294
14388
|
export const consumerInvoiceCenterReference: PropTypes.Requireable<io.flow.v0.models.ConsumerInvoiceCenterReference>;
|
|
@@ -14488,6 +14582,7 @@ export const exportLocalizedItemPrices: PropTypes.Requireable<io.flow.v0.models.
|
|
|
14488
14582
|
export const exportLocalizedItemPricesDetail: PropTypes.Requireable<io.flow.v0.models.ExportLocalizedItemPricesDetail>;
|
|
14489
14583
|
export const exportVersion: PropTypes.Requireable<io.flow.v0.models.ExportVersion>;
|
|
14490
14584
|
export const externalCard: PropTypes.Requireable<io.flow.v0.models.ExternalCard>;
|
|
14585
|
+
export const externalOrderSummary: PropTypes.Requireable<io.flow.v0.models.ExternalOrderSummary>;
|
|
14491
14586
|
export const feeDeduction: PropTypes.Requireable<io.flow.v0.models.FeeDeduction>;
|
|
14492
14587
|
export const feeWeight: PropTypes.Requireable<io.flow.v0.models.FeeWeight>;
|
|
14493
14588
|
export const fieldValidationMax: PropTypes.Requireable<io.flow.v0.models.FieldValidationMax>;
|
|
@@ -14571,8 +14666,6 @@ export const hop: PropTypes.Requireable<io.flow.v0.models.Hop>;
|
|
|
14571
14666
|
export const hopEstimate: PropTypes.Requireable<io.flow.v0.models.HopEstimate>;
|
|
14572
14667
|
export const hopEstimateV2: PropTypes.Requireable<io.flow.v0.models.HopEstimateV2>;
|
|
14573
14668
|
export const hopV2: PropTypes.Requireable<io.flow.v0.models.HopV2>;
|
|
14574
|
-
export const hoseinItemDeleted: PropTypes.Requireable<io.flow.v0.models.HoseinItemDeleted>;
|
|
14575
|
-
export const hoseinItemUpserted: PropTypes.Requireable<io.flow.v0.models.HoseinItemUpserted>;
|
|
14576
14669
|
export const hs10: PropTypes.Requireable<io.flow.v0.models.Hs10>;
|
|
14577
14670
|
export const hs10CodeDeleted: PropTypes.Requireable<io.flow.v0.models.Hs10CodeDeleted>;
|
|
14578
14671
|
export const hs10CodeUpserted: PropTypes.Requireable<io.flow.v0.models.Hs10CodeUpserted>;
|
|
@@ -14726,6 +14819,7 @@ export const merchantOfRecordEntity: PropTypes.Requireable<io.flow.v0.models.Mer
|
|
|
14726
14819
|
export const merchantOfRecordEntityRegistration: PropTypes.Requireable<io.flow.v0.models.MerchantOfRecordEntityRegistration>;
|
|
14727
14820
|
export const merchantOfRecordPaymentForm: PropTypes.Requireable<io.flow.v0.models.MerchantOfRecordPaymentForm>;
|
|
14728
14821
|
export const merchantOnboardingAddress: PropTypes.Requireable<io.flow.v0.models.MerchantOnboardingAddress>;
|
|
14822
|
+
export const merchantOnboardingBeneficiaryDetails: PropTypes.Requireable<io.flow.v0.models.MerchantOnboardingBeneficiaryDetails>;
|
|
14729
14823
|
export const merchantRejected: PropTypes.Requireable<io.flow.v0.models.MerchantRejected>;
|
|
14730
14824
|
export const money: PropTypes.Requireable<io.flow.v0.models.Money>;
|
|
14731
14825
|
export const moneyWithBase: PropTypes.Requireable<io.flow.v0.models.MoneyWithBase>;
|
|
@@ -14735,8 +14829,6 @@ export const monthlyAverageVolume: PropTypes.Requireable<io.flow.v0.models.Month
|
|
|
14735
14829
|
export const name: PropTypes.Requireable<io.flow.v0.models.Name>;
|
|
14736
14830
|
export const nameForm: PropTypes.Requireable<io.flow.v0.models.NameForm>;
|
|
14737
14831
|
export const needsActionAttributes: PropTypes.Requireable<io.flow.v0.models.NeedsActionAttributes>;
|
|
14738
|
-
export const niallItemDeleted: PropTypes.Requireable<io.flow.v0.models.NiallItemDeleted>;
|
|
14739
|
-
export const niallItemUpserted: PropTypes.Requireable<io.flow.v0.models.NiallItemUpserted>;
|
|
14740
14832
|
export const notificationDeletedV2: PropTypes.Requireable<io.flow.v0.models.NotificationDeletedV2>;
|
|
14741
14833
|
export const notificationUpsertedV2: PropTypes.Requireable<io.flow.v0.models.NotificationUpsertedV2>;
|
|
14742
14834
|
export const numberRange: PropTypes.Requireable<io.flow.v0.models.NumberRange>;
|
|
@@ -14851,6 +14943,8 @@ export const organizationReference: PropTypes.Requireable<io.flow.v0.models.Orga
|
|
|
14851
14943
|
export const organizationSession: PropTypes.Requireable<io.flow.v0.models.OrganizationSession>;
|
|
14852
14944
|
export const organizationSessionAuthorization: PropTypes.Requireable<io.flow.v0.models.OrganizationSessionAuthorization>;
|
|
14853
14945
|
export const organizationSummary: PropTypes.Requireable<io.flow.v0.models.OrganizationSummary>;
|
|
14946
|
+
export const organizationTaxRegistration: PropTypes.Requireable<io.flow.v0.models.OrganizationTaxRegistration>;
|
|
14947
|
+
export const organizationTaxRegistrationForm: PropTypes.Requireable<io.flow.v0.models.OrganizationTaxRegistrationForm>;
|
|
14854
14948
|
export const organizationToken: PropTypes.Requireable<io.flow.v0.models.OrganizationToken>;
|
|
14855
14949
|
export const organizationTokenForm: PropTypes.Requireable<io.flow.v0.models.OrganizationTokenForm>;
|
|
14856
14950
|
export const organizationTokenFormV2: PropTypes.Requireable<io.flow.v0.models.OrganizationTokenFormV2>;
|
|
@@ -15049,6 +15143,9 @@ export const productRestrictionResultDeleted: PropTypes.Requireable<io.flow.v0.m
|
|
|
15049
15143
|
export const productRestrictionResultUpserted: PropTypes.Requireable<io.flow.v0.models.ProductRestrictionResultUpserted>;
|
|
15050
15144
|
export const productSellability: PropTypes.Requireable<io.flow.v0.models.ProductSellability>;
|
|
15051
15145
|
export const productSellabilityForm: PropTypes.Requireable<io.flow.v0.models.ProductSellabilityForm>;
|
|
15146
|
+
export const productSellabilityResult: PropTypes.Requireable<io.flow.v0.models.ProductSellabilityResult>;
|
|
15147
|
+
export const productSellabilityResultDeleted: PropTypes.Requireable<io.flow.v0.models.ProductSellabilityResultDeleted>;
|
|
15148
|
+
export const productSellabilityResultUpserted: PropTypes.Requireable<io.flow.v0.models.ProductSellabilityResultUpserted>;
|
|
15052
15149
|
export const productTaxonomyCategory: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyCategory>;
|
|
15053
15150
|
export const productTaxonomyData: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyData>;
|
|
15054
15151
|
export const productTaxonomyValue: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyValue>;
|
|
@@ -15164,14 +15261,10 @@ export const reversalForm: PropTypes.Requireable<io.flow.v0.models.ReversalForm>
|
|
|
15164
15261
|
export const reversalPutForm: PropTypes.Requireable<io.flow.v0.models.ReversalPutForm>;
|
|
15165
15262
|
export const reversalUpserted: PropTypes.Requireable<io.flow.v0.models.ReversalUpserted>;
|
|
15166
15263
|
export const reversalVersion: PropTypes.Requireable<io.flow.v0.models.ReversalVersion>;
|
|
15167
|
-
export const rohanItemDeleted: PropTypes.Requireable<io.flow.v0.models.RohanItemDeleted>;
|
|
15168
|
-
export const rohanItemUpserted: PropTypes.Requireable<io.flow.v0.models.RohanItemUpserted>;
|
|
15169
15264
|
export const romanization: PropTypes.Requireable<io.flow.v0.models.Romanization>;
|
|
15170
15265
|
export const romanizationForm: PropTypes.Requireable<io.flow.v0.models.RomanizationForm>;
|
|
15171
15266
|
export const rounding: PropTypes.Requireable<io.flow.v0.models.Rounding>;
|
|
15172
15267
|
export const routeAudit: PropTypes.Requireable<io.flow.v0.models.RouteAudit>;
|
|
15173
|
-
export const sarveshItemDeleted: PropTypes.Requireable<io.flow.v0.models.SarveshItemDeleted>;
|
|
15174
|
-
export const sarveshItemUpserted: PropTypes.Requireable<io.flow.v0.models.SarveshItemUpserted>;
|
|
15175
15268
|
export const schedule: PropTypes.Requireable<io.flow.v0.models.Schedule>;
|
|
15176
15269
|
export const scheduledExport: PropTypes.Requireable<io.flow.v0.models.ScheduledExport>;
|
|
15177
15270
|
export const scheduledExportForm: PropTypes.Requireable<io.flow.v0.models.ScheduledExportForm>;
|
|
@@ -15179,7 +15272,16 @@ export const scheduledPickup: PropTypes.Requireable<io.flow.v0.models.ScheduledP
|
|
|
15179
15272
|
export const securityRatecardFee: PropTypes.Requireable<io.flow.v0.models.SecurityRatecardFee>;
|
|
15180
15273
|
export const securityServiceFee: PropTypes.Requireable<io.flow.v0.models.SecurityServiceFee>;
|
|
15181
15274
|
export const selectIssuerOptionActionDetails: PropTypes.Requireable<io.flow.v0.models.SelectIssuerOptionActionDetails>;
|
|
15275
|
+
export const selfBillingAgreement: PropTypes.Requireable<io.flow.v0.models.SelfBillingAgreement>;
|
|
15182
15276
|
export const sellabilityError: PropTypes.Requireable<io.flow.v0.models.SellabilityError>;
|
|
15277
|
+
export const sellabilityNeedsActionAttributes: PropTypes.Requireable<io.flow.v0.models.SellabilityNeedsActionAttributes>;
|
|
15278
|
+
export const sellabilityReasonWithRegions: PropTypes.Requireable<io.flow.v0.models.SellabilityReasonWithRegions>;
|
|
15279
|
+
export const sellabilityRegionResult: PropTypes.Requireable<io.flow.v0.models.SellabilityRegionResult>;
|
|
15280
|
+
export const sellabilityRegionWithReasons: PropTypes.Requireable<io.flow.v0.models.SellabilityRegionWithReasons>;
|
|
15281
|
+
export const sellabilityRestrictedReason: PropTypes.Requireable<io.flow.v0.models.SellabilityRestrictedReason>;
|
|
15282
|
+
export const sellabilityRestrictedRegion: PropTypes.Requireable<io.flow.v0.models.SellabilityRestrictedRegion>;
|
|
15283
|
+
export const sellabilityScreening: PropTypes.Requireable<io.flow.v0.models.SellabilityScreening>;
|
|
15284
|
+
export const sellabilityScreeningForm: PropTypes.Requireable<io.flow.v0.models.SellabilityScreeningForm>;
|
|
15183
15285
|
export const sellablilityRegionResult: PropTypes.Requireable<io.flow.v0.models.SellablilityRegionResult>;
|
|
15184
15286
|
export const serviceReference: PropTypes.Requireable<io.flow.v0.models.ServiceReference>;
|
|
15185
15287
|
export const serviceSummary: PropTypes.Requireable<io.flow.v0.models.ServiceSummary>;
|
|
@@ -15237,6 +15339,10 @@ export const shippingLaneUpserted: PropTypes.Requireable<io.flow.v0.models.Shipp
|
|
|
15237
15339
|
export const shippingLaneVersion: PropTypes.Requireable<io.flow.v0.models.ShippingLaneVersion>;
|
|
15238
15340
|
export const shippingNotification: PropTypes.Requireable<io.flow.v0.models.ShippingNotification>;
|
|
15239
15341
|
export const shippingNotificationVersion: PropTypes.Requireable<io.flow.v0.models.ShippingNotificationVersion>;
|
|
15342
|
+
export const shippingRateEstimate: PropTypes.Requireable<io.flow.v0.models.ShippingRateEstimate>;
|
|
15343
|
+
export const shippingRateEstimateAvailable: PropTypes.Requireable<io.flow.v0.models.ShippingRateEstimateAvailable>;
|
|
15344
|
+
export const shippingRateEstimateRequest: PropTypes.Requireable<io.flow.v0.models.ShippingRateEstimateRequest>;
|
|
15345
|
+
export const shippingRateEstimateUnavailable: PropTypes.Requireable<io.flow.v0.models.ShippingRateEstimateUnavailable>;
|
|
15240
15346
|
export const shop: PropTypes.Requireable<io.flow.v0.models.Shop>;
|
|
15241
15347
|
export const shopifyCart: PropTypes.Requireable<io.flow.v0.models.ShopifyCart>;
|
|
15242
15348
|
export const shopifyCartAddMultipleForm: PropTypes.Requireable<io.flow.v0.models.ShopifyCartAddMultipleForm>;
|
|
@@ -15284,6 +15390,7 @@ export const solidusProductExportType: PropTypes.Requireable<io.flow.v0.models.S
|
|
|
15284
15390
|
export const solidusVariantExportType: PropTypes.Requireable<io.flow.v0.models.SolidusVariantExportType>;
|
|
15285
15391
|
export const statement: PropTypes.Requireable<io.flow.v0.models.Statement>;
|
|
15286
15392
|
export const statementDeleted: PropTypes.Requireable<io.flow.v0.models.StatementDeleted>;
|
|
15393
|
+
export const statementStatusForm: PropTypes.Requireable<io.flow.v0.models.StatementStatusForm>;
|
|
15287
15394
|
export const statementUpserted: PropTypes.Requireable<io.flow.v0.models.StatementUpserted>;
|
|
15288
15395
|
export const streetAddress: PropTypes.Requireable<io.flow.v0.models.StreetAddress>;
|
|
15289
15396
|
export const stripeAuthenticationData: PropTypes.Requireable<io.flow.v0.models.StripeAuthenticationData>;
|
|
@@ -15321,7 +15428,10 @@ export const taxDutyQuoteSimpleShipping: PropTypes.Requireable<io.flow.v0.models
|
|
|
15321
15428
|
export const taxDutyQuoteSimpleShippingForm: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteSimpleShippingForm>;
|
|
15322
15429
|
export const taxDutyQuoteValues: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteValues>;
|
|
15323
15430
|
export const taxRegistration: PropTypes.Requireable<io.flow.v0.models.TaxRegistration>;
|
|
15431
|
+
export const taxRegistrationDeleted: PropTypes.Requireable<io.flow.v0.models.TaxRegistrationDeleted>;
|
|
15432
|
+
export const taxRegistrationDetail: PropTypes.Requireable<io.flow.v0.models.TaxRegistrationDetail>;
|
|
15324
15433
|
export const taxRegistrationForm: PropTypes.Requireable<io.flow.v0.models.TaxRegistrationForm>;
|
|
15434
|
+
export const taxRegistrationUpserted: PropTypes.Requireable<io.flow.v0.models.TaxRegistrationUpserted>;
|
|
15325
15435
|
export const taxReport: PropTypes.Requireable<io.flow.v0.models.TaxReport>;
|
|
15326
15436
|
export const testUpserted: PropTypes.Requireable<io.flow.v0.models.TestUpserted>;
|
|
15327
15437
|
export const thirdPartyLogisticsPartner: PropTypes.Requireable<io.flow.v0.models.ThirdPartyLogisticsPartner>;
|
|
@@ -15358,6 +15468,8 @@ export const trackingEventVersion: PropTypes.Requireable<io.flow.v0.models.Track
|
|
|
15358
15468
|
export const trackingForm: PropTypes.Requireable<io.flow.v0.models.TrackingForm>;
|
|
15359
15469
|
export const trackingLabel: PropTypes.Requireable<io.flow.v0.models.TrackingLabel>;
|
|
15360
15470
|
export const trackingLabelEventUpserted: PropTypes.Requireable<io.flow.v0.models.TrackingLabelEventUpserted>;
|
|
15471
|
+
export const trackingLabelEventUpsertedV2: PropTypes.Requireable<io.flow.v0.models.TrackingLabelEventUpsertedV2>;
|
|
15472
|
+
export const trackingLabelEventV2: PropTypes.Requireable<io.flow.v0.models.TrackingLabelEventV2>;
|
|
15361
15473
|
export const trackingLabelForm: PropTypes.Requireable<io.flow.v0.models.TrackingLabelForm>;
|
|
15362
15474
|
export const trackingLabelSummary: PropTypes.Requireable<io.flow.v0.models.TrackingLabelSummary>;
|
|
15363
15475
|
export const trackingLabelVersion: PropTypes.Requireable<io.flow.v0.models.TrackingLabelVersion>;
|
|
@@ -15528,6 +15640,7 @@ export const ratecardFee: PropTypes.Requireable<io.flow.v0.unions.RatecardFee>;
|
|
|
15528
15640
|
export const repeatSchedule: PropTypes.Requireable<io.flow.v0.unions.RepeatSchedule>;
|
|
15529
15641
|
export const returnSource: PropTypes.Requireable<io.flow.v0.unions.ReturnSource>;
|
|
15530
15642
|
export const sdkAdyenV3AuthenticationToken: PropTypes.Requireable<io.flow.v0.unions.SdkAdyenV3AuthenticationToken>;
|
|
15643
|
+
export const sellabilityRequest: PropTypes.Requireable<io.flow.v0.unions.SellabilityRequest>;
|
|
15531
15644
|
export const sellabilityResponse: PropTypes.Requireable<io.flow.v0.unions.SellabilityResponse>;
|
|
15532
15645
|
export const serviceDescription: PropTypes.Requireable<io.flow.v0.unions.ServiceDescription>;
|
|
15533
15646
|
export const serviceFee: PropTypes.Requireable<io.flow.v0.unions.ServiceFee>;
|