@flowio/api-prop-types 10.16.108 → 10.16.109
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api.d.ts +371 -287
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +371 -287
- package/src/api.js +585 -501
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';
|
|
@@ -3575,6 +3450,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3575
3450
|
type RefundStatus = 'pending' | 'succeeded' | 'failed' | 'canceled';
|
|
3576
3451
|
type RegionType = 'state' | 'province' | 'jurisdiction';
|
|
3577
3452
|
type RestrictedReviewStatus = 'in_review' | 'reviewed';
|
|
3453
|
+
type RestrictionEnvironment = 'sandbox' | 'production' | 'qa';
|
|
3578
3454
|
type ReturnItemStatus = 'returnable' | 'non-returnable';
|
|
3579
3455
|
type ReturnPolicyState = 'current' | 'deleting' | 'updating';
|
|
3580
3456
|
type ReturnStatus = 'open' | 'refunded';
|
|
@@ -3589,6 +3465,9 @@ declare namespace io.flow.v0.enums {
|
|
|
3589
3465
|
type ScheduleExceptionStatus = 'Open' | 'Closed';
|
|
3590
3466
|
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
|
|
3591
3467
|
type SellabilityRequestStatus = 'commit';
|
|
3468
|
+
type SellabilityResultErrorCode = 'insufficient_details' | 'generic_error';
|
|
3469
|
+
type SellabilityResultStatus = 'in_review' | 'succeeded' | 'failed';
|
|
3470
|
+
type SellabilityScreeningMode = 'pre_onboarding' | 'default_on' | 'active';
|
|
3592
3471
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
3593
3472
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
3594
3473
|
type ShippingConfigurationType = 'default' | 'variant';
|
|
@@ -3597,7 +3476,8 @@ declare namespace io.flow.v0.enums {
|
|
|
3597
3476
|
type ShopifyLocalizationMethod = 'api' | 'ssr';
|
|
3598
3477
|
type ShopifySyncCheck = 'localized_variants' | 'flow_variant_metafields';
|
|
3599
3478
|
type SortDirection = 'ascending' | 'descending';
|
|
3600
|
-
type StatementAttachmentType = 'csv';
|
|
3479
|
+
type StatementAttachmentType = 'csv' | 'pdf';
|
|
3480
|
+
type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
3601
3481
|
type StoredMethodUsageStep = 'initial' | 'subsequent';
|
|
3602
3482
|
type Strategy = 'range' | 'from' | 'to';
|
|
3603
3483
|
type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
|
|
@@ -3605,7 +3485,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3605
3485
|
type SurchargeResponsibleParty = 'organization' | 'customer';
|
|
3606
3486
|
type TaxApplicability = 'none' | 'all';
|
|
3607
3487
|
type TaxDutyCalculatorValidationErrorCode = 'generic_error' | 'destination_country_not_defined' | 'destination_address_iso3166_unrecognized' | 'line_item_shipfrom_shipto_country_invalid' | 'line_item_ship_from_invalid' | 'line_item_currency_iso4217_unrecognized' | 'line_quantity_invalid' | 'line_item_quantity_invalid' | 'line_item_unit_price_precision_invalid' | 'line_item_unit_price_negative' | 'line_item_discount_amount_precision_invalid' | 'line_item_discount_amount_positive' | 'line_item_country_of_origin_iso3166_unrecognized' | 'line_item_hs_code_invalid' | 'line_item_duty_provider_invalid' | 'shipping_unit_price_precision_invalid' | 'shipping_unit_price_negative' | 'shipping_discount_amount_precision_invalid' | 'shipping_discount_amount_invalid' | 'merchant_of_record_invalid' | 'wrong_unit_specified';
|
|
3608
|
-
type TaxDutyTransactionReasonCode = 'post_capture' | 'post_fulfilment' | 'manual_payment_or_gift_card' | 'order_edit' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'full_refund_without_shipment' | 'unfulfilled_order_above_de_min';
|
|
3488
|
+
type TaxDutyTransactionReasonCode = 'post_capture' | 'post_fulfilment' | 'manual_payment_or_gift_card' | 'order_edit' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'us_inbound_tax_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'full_refund_without_shipment' | 'unfulfilled_order_above_de_min';
|
|
3609
3489
|
type TaxJurisdictionType = 'country' | 'province';
|
|
3610
3490
|
type TaxReportType = 'consumer' | 'b2b';
|
|
3611
3491
|
type TaxType = 'vat' | 'gst' | 'hst' | 'pst' | 'qst' | 'sales_tax';
|
|
@@ -3622,10 +3502,10 @@ declare namespace io.flow.v0.enums {
|
|
|
3622
3502
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired' | 'unknown' | 'unmapped';
|
|
3623
3503
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
3624
3504
|
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';
|
|
3505
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'duty_refund' | 'non_l4l_tax_duty_fx' | 'merchant_payout' | 'merchant_refund' | 'ge_revenue_share' | 'merchant_fee' | 'b2b_tax' | 'b2b_tax_refund';
|
|
3626
3506
|
type TransferStatus = 'succeeded' | 'canceled';
|
|
3627
3507
|
type TransferType = 'payout_to_merchant' | 'disputed_amount_to_merchant' | 'duties_and_taxes_adjustment_to_merchant' | 'disputed_amount_from_merchant' | 'duties_and_taxes_adjustment_from_merchant' | 'refund_from_merchant';
|
|
3628
|
-
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
3508
|
+
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
3629
3509
|
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion' | 'prohibited_item' | 'undeliverable_shipment' | 'signature_required' | 'direct_delivery' | 'saturday_stop' | 'residential_extended_area_pickup' | 'package_level_detail' | 'pickup';
|
|
3630
3510
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
3631
3511
|
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_foot' | 'cubic_millimeter' | 'cubic_centimeter' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
@@ -3954,20 +3834,6 @@ declare namespace io.flow.v0.models {
|
|
|
3954
3834
|
readonly 'fingerprint_token': string;
|
|
3955
3835
|
}
|
|
3956
3836
|
|
|
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
3837
|
interface Allocation {
|
|
3972
3838
|
readonly 'order': io.flow.v0.models.AllocationOrderSummary;
|
|
3973
3839
|
readonly 'details': io.flow.v0.unions.AllocationDetail[];
|
|
@@ -4092,34 +3958,6 @@ declare namespace io.flow.v0.models {
|
|
|
4092
3958
|
readonly 'interval'?: io.flow.v0.enums.UnitOfTime;
|
|
4093
3959
|
}
|
|
4094
3960
|
|
|
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
3961
|
interface ApplePayMerchantValidationPayload {
|
|
4124
3962
|
readonly 'discriminator': 'apple_pay_merchant_validation_payload';
|
|
4125
3963
|
readonly 'validation_url': string;
|
|
@@ -4408,9 +4246,12 @@ declare namespace io.flow.v0.models {
|
|
|
4408
4246
|
readonly 'invoice': io.flow.v0.models.B2BInvoiceReference;
|
|
4409
4247
|
readonly 'lines': io.flow.v0.unions.ConsumerInvoiceLine[];
|
|
4410
4248
|
readonly 'tax_lines'?: io.flow.v0.models.InvoiceTaxLine[];
|
|
4249
|
+
readonly 'tax'?: io.flow.v0.models.Money;
|
|
4411
4250
|
readonly 'documents': io.flow.v0.models.ConsumerInvoiceDocument[];
|
|
4412
4251
|
readonly 'attributes': Record<string, string>;
|
|
4413
4252
|
readonly 'b2b_invoice_type': io.flow.v0.enums.B2BInvoiceType;
|
|
4253
|
+
readonly 'center'?: io.flow.v0.models.ConsumerInvoiceCenterReference;
|
|
4254
|
+
readonly 'order'?: io.flow.v0.models.ConsumerInvoiceOrderSummary;
|
|
4414
4255
|
}
|
|
4415
4256
|
|
|
4416
4257
|
interface B2BCreditMemoDeleted {
|
|
@@ -5237,6 +5078,7 @@ declare namespace io.flow.v0.models {
|
|
|
5237
5078
|
readonly 'shopify_order_summary': io.flow.v0.models.ChannelShopifyOrderSummary;
|
|
5238
5079
|
readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
5239
5080
|
readonly 'reasons'?: io.flow.v0.models.ChannelShopifyOrderStateReason[];
|
|
5081
|
+
readonly 'external_order_summary'?: io.flow.v0.models.ExternalOrderSummary;
|
|
5240
5082
|
}
|
|
5241
5083
|
|
|
5242
5084
|
interface ChannelShopifyOrderStateDeleted {
|
|
@@ -5466,6 +5308,77 @@ declare namespace io.flow.v0.models {
|
|
|
5466
5308
|
readonly 'amount': io.flow.v0.models.Money;
|
|
5467
5309
|
}
|
|
5468
5310
|
|
|
5311
|
+
interface CommonMerchantApplication {
|
|
5312
|
+
readonly 'discriminator': 'common_merchant_application';
|
|
5313
|
+
readonly 'id': string;
|
|
5314
|
+
readonly 'organization_id': string;
|
|
5315
|
+
readonly 'organization_reference': io.flow.v0.models.OnboardingOrganizationReference;
|
|
5316
|
+
readonly 'status': io.flow.v0.enums.OnboardingApplicationStatus;
|
|
5317
|
+
readonly 'company'?: io.flow.v0.models.MerchantInfo;
|
|
5318
|
+
readonly 'indirect_tax'?: io.flow.v0.models.IndirectTax;
|
|
5319
|
+
readonly 'ultimate_beneficiary_owner'?: io.flow.v0.models.UltimateBeneficiaryOwner;
|
|
5320
|
+
readonly 'business_url'?: string;
|
|
5321
|
+
readonly 'business_description'?: string;
|
|
5322
|
+
readonly 'business_address'?: io.flow.v0.models.Address;
|
|
5323
|
+
readonly 'refund_percentage'?: number;
|
|
5324
|
+
readonly 'chargeback_percentage'?: number;
|
|
5325
|
+
readonly 'beneficiary_details'?: io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
5326
|
+
readonly 'other_trade_sector'?: string;
|
|
5327
|
+
readonly 'center_contact'?: io.flow.v0.models.OperationsContact;
|
|
5328
|
+
readonly 'center_address'?: io.flow.v0.models.Address;
|
|
5329
|
+
readonly 'average_order_weight'?: number;
|
|
5330
|
+
readonly 'average_order_weight_unit'?: io.flow.v0.enums.UnitOfMeasurement;
|
|
5331
|
+
readonly 'package_dimensions'?: io.flow.v0.models.Dimension[];
|
|
5332
|
+
readonly 'monthly_average'?: io.flow.v0.models.MonthlyAverage;
|
|
5333
|
+
readonly 'default_country_of_origin'?: string;
|
|
5334
|
+
readonly 'rate_card': string;
|
|
5335
|
+
readonly 'shop'?: io.flow.v0.models.Shop;
|
|
5336
|
+
readonly 'created_at': string;
|
|
5337
|
+
readonly 'last_year_xborder_gmv'?: io.flow.v0.models.Money;
|
|
5338
|
+
readonly 'last_month_xborder_gmv'?: io.flow.v0.models.Money;
|
|
5339
|
+
readonly 'average_order_value'?: io.flow.v0.models.Money;
|
|
5340
|
+
readonly 'mcc_codes'?: number[];
|
|
5341
|
+
}
|
|
5342
|
+
|
|
5343
|
+
interface CommonMerchantApplicationForm {
|
|
5344
|
+
readonly 'discriminator': 'common_merchant_application_form';
|
|
5345
|
+
readonly 'company'?: io.flow.v0.models.MerchantInfo;
|
|
5346
|
+
readonly 'indirect_tax'?: io.flow.v0.models.IndirectTax;
|
|
5347
|
+
readonly 'ultimate_beneficiary_owner'?: io.flow.v0.models.UltimateBeneficiaryOwner;
|
|
5348
|
+
readonly 'business_url'?: string;
|
|
5349
|
+
readonly 'business_description'?: string;
|
|
5350
|
+
readonly 'business_address'?: io.flow.v0.models.Address;
|
|
5351
|
+
readonly 'refund_percentage'?: number;
|
|
5352
|
+
readonly 'chargeback_percentage'?: number;
|
|
5353
|
+
readonly 'beneficiary_details'?: io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
5354
|
+
readonly 'other_trade_sector'?: string;
|
|
5355
|
+
readonly 'center_contact'?: io.flow.v0.models.OperationsContact;
|
|
5356
|
+
readonly 'center_address'?: io.flow.v0.models.Address;
|
|
5357
|
+
readonly 'average_order_weight'?: number;
|
|
5358
|
+
readonly 'average_order_weight_unit'?: io.flow.v0.enums.UnitOfMeasurement;
|
|
5359
|
+
readonly 'package_dimensions'?: io.flow.v0.models.Dimension[];
|
|
5360
|
+
readonly 'monthly_average_volume_amount'?: number;
|
|
5361
|
+
readonly 'monthly_average_volume_currency'?: string;
|
|
5362
|
+
readonly 'monthly_average_number_transactions'?: number;
|
|
5363
|
+
readonly 'default_country_of_origin'?: string;
|
|
5364
|
+
readonly 'shop'?: io.flow.v0.models.Shop;
|
|
5365
|
+
readonly 'rate_card'?: string;
|
|
5366
|
+
readonly 'last_year_xborder_gmv'?: io.flow.v0.models.Money;
|
|
5367
|
+
readonly 'last_month_xborder_gmv'?: io.flow.v0.models.Money;
|
|
5368
|
+
readonly 'average_order_value'?: io.flow.v0.models.Money;
|
|
5369
|
+
readonly 'mcc_codes'?: number[];
|
|
5370
|
+
}
|
|
5371
|
+
|
|
5372
|
+
interface CommonMerchantApplicationPutForm {
|
|
5373
|
+
readonly 'discriminator': 'common_merchant_application_put_form';
|
|
5374
|
+
readonly 'status'?: io.flow.v0.enums.OnboardingApplicationStatus;
|
|
5375
|
+
}
|
|
5376
|
+
|
|
5377
|
+
interface CommonMerchantApplicationsSummary {
|
|
5378
|
+
readonly 'discriminator': 'common_merchant_applications_summary';
|
|
5379
|
+
readonly 'total': number;
|
|
5380
|
+
}
|
|
5381
|
+
|
|
5469
5382
|
interface Company {
|
|
5470
5383
|
readonly 'discriminator': 'company';
|
|
5471
5384
|
readonly 'legal_name': string;
|
|
@@ -5699,6 +5612,8 @@ declare namespace io.flow.v0.models {
|
|
|
5699
5612
|
readonly 'documents': io.flow.v0.models.ConsumerInvoiceDocument[];
|
|
5700
5613
|
readonly 'attributes': Record<string, string>;
|
|
5701
5614
|
readonly 'tax_registration'?: io.flow.v0.models.TaxRegistration;
|
|
5615
|
+
readonly 'center'?: io.flow.v0.models.ConsumerInvoiceCenterReference;
|
|
5616
|
+
readonly 'order'?: io.flow.v0.models.ConsumerInvoiceOrderSummary;
|
|
5702
5617
|
}
|
|
5703
5618
|
|
|
5704
5619
|
interface CreditMemoDeleted {
|
|
@@ -6485,6 +6400,7 @@ declare namespace io.flow.v0.models {
|
|
|
6485
6400
|
readonly 'amount': io.flow.v0.models.Money;
|
|
6486
6401
|
readonly 'origin_region'?: io.flow.v0.models.RatecardRegionReference;
|
|
6487
6402
|
readonly 'destination_region'?: io.flow.v0.models.RatecardRegionReference;
|
|
6403
|
+
readonly 'destination_regions'?: io.flow.v0.models.RatecardRegionReference[];
|
|
6488
6404
|
readonly 'interval_unit'?: io.flow.v0.enums.UnitOfMeasurement;
|
|
6489
6405
|
}
|
|
6490
6406
|
|
|
@@ -6823,6 +6739,11 @@ declare namespace io.flow.v0.models {
|
|
|
6823
6739
|
readonly 'type'?: io.flow.v0.enums.CardType;
|
|
6824
6740
|
}
|
|
6825
6741
|
|
|
6742
|
+
interface ExternalOrderSummary {
|
|
6743
|
+
readonly 'id': string;
|
|
6744
|
+
readonly 'edit_ids': string[];
|
|
6745
|
+
}
|
|
6746
|
+
|
|
6826
6747
|
interface FeeDeduction {
|
|
6827
6748
|
readonly 'type': io.flow.v0.enums.FeeDeductionType;
|
|
6828
6749
|
readonly 'amount': number;
|
|
@@ -7125,7 +7046,7 @@ declare namespace io.flow.v0.models {
|
|
|
7125
7046
|
readonly 'discriminator': 'ge_catalog_item_ingestion_result';
|
|
7126
7047
|
readonly 'event_id': string;
|
|
7127
7048
|
readonly 'event_type': io.flow.v0.enums.GeEventType;
|
|
7128
|
-
readonly 'environment': io.flow.v0.enums.
|
|
7049
|
+
readonly 'environment': io.flow.v0.enums.RestrictionEnvironment;
|
|
7129
7050
|
readonly 'timestamp': string;
|
|
7130
7051
|
readonly 'source': string;
|
|
7131
7052
|
readonly 'response': io.flow.v0.enums.GeCatalogItemIngestionResponse;
|
|
@@ -7192,7 +7113,7 @@ declare namespace io.flow.v0.models {
|
|
|
7192
7113
|
readonly 'organization': string;
|
|
7193
7114
|
readonly 'event_id': string;
|
|
7194
7115
|
readonly 'event_type': io.flow.v0.enums.GeEventType;
|
|
7195
|
-
readonly 'environment': io.flow.v0.enums.
|
|
7116
|
+
readonly 'environment': io.flow.v0.enums.RestrictionEnvironment;
|
|
7196
7117
|
readonly 'timestamp': string;
|
|
7197
7118
|
readonly 'id': string;
|
|
7198
7119
|
readonly 'operation': io.flow.v0.enums.ChangeType;
|
|
@@ -7203,7 +7124,7 @@ declare namespace io.flow.v0.models {
|
|
|
7203
7124
|
readonly 'organization': string;
|
|
7204
7125
|
readonly 'event_id': string;
|
|
7205
7126
|
readonly 'event_type': io.flow.v0.enums.GeEventType;
|
|
7206
|
-
readonly 'environment': io.flow.v0.enums.
|
|
7127
|
+
readonly 'environment': io.flow.v0.enums.RestrictionEnvironment;
|
|
7207
7128
|
readonly 'timestamp': string;
|
|
7208
7129
|
readonly 'operation': io.flow.v0.enums.ChangeType;
|
|
7209
7130
|
readonly 'ge_product_restriction_result': io.flow.v0.models.ProductRestrictionResult;
|
|
@@ -7401,20 +7322,6 @@ declare namespace io.flow.v0.models {
|
|
|
7401
7322
|
readonly 'hop_estimate': io.flow.v0.models.HopEstimateV2;
|
|
7402
7323
|
}
|
|
7403
7324
|
|
|
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
7325
|
interface Hs10 {
|
|
7419
7326
|
readonly 'id': string;
|
|
7420
7327
|
readonly 'item': io.flow.v0.models.HarmonizedItemReference;
|
|
@@ -8456,6 +8363,7 @@ declare namespace io.flow.v0.models {
|
|
|
8456
8363
|
readonly 'region'?: io.flow.v0.enums.RegionType;
|
|
8457
8364
|
readonly 'region_value'?: string;
|
|
8458
8365
|
readonly 'category_code'?: string;
|
|
8366
|
+
readonly 'description'?: string;
|
|
8459
8367
|
}
|
|
8460
8368
|
|
|
8461
8369
|
interface MerchantOfRecordAuthorizationForm {
|
|
@@ -8491,6 +8399,8 @@ declare namespace io.flow.v0.models {
|
|
|
8491
8399
|
interface MerchantOfRecordEntityRegistration {
|
|
8492
8400
|
readonly 'number': string;
|
|
8493
8401
|
readonly 'country': string;
|
|
8402
|
+
readonly 'province_number'?: string;
|
|
8403
|
+
readonly 'province'?: string;
|
|
8494
8404
|
}
|
|
8495
8405
|
|
|
8496
8406
|
interface MerchantOfRecordPaymentForm {
|
|
@@ -8510,6 +8420,17 @@ declare namespace io.flow.v0.models {
|
|
|
8510
8420
|
readonly 'country'?: string;
|
|
8511
8421
|
}
|
|
8512
8422
|
|
|
8423
|
+
interface MerchantOnboardingBeneficiaryDetails {
|
|
8424
|
+
readonly 'name'?: string;
|
|
8425
|
+
readonly 'address'?: io.flow.v0.models.Address;
|
|
8426
|
+
readonly 'phone'?: string;
|
|
8427
|
+
readonly 'email'?: string;
|
|
8428
|
+
readonly 'bank_account_number'?: string;
|
|
8429
|
+
readonly 'bank_routing_number'?: string;
|
|
8430
|
+
readonly 'bank_name'?: string;
|
|
8431
|
+
readonly 'bank_address'?: io.flow.v0.models.Address;
|
|
8432
|
+
}
|
|
8433
|
+
|
|
8513
8434
|
interface MerchantRejected {
|
|
8514
8435
|
readonly 'discriminator': 'merchant_rejected';
|
|
8515
8436
|
readonly 'reason': io.flow.v0.enums.MerchantRejectedReason;
|
|
@@ -8560,20 +8481,6 @@ declare namespace io.flow.v0.models {
|
|
|
8560
8481
|
readonly 'require_msds'?: boolean;
|
|
8561
8482
|
}
|
|
8562
8483
|
|
|
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
8484
|
interface NotificationDeletedV2 {
|
|
8578
8485
|
readonly 'discriminator': 'notification_deleted_v2';
|
|
8579
8486
|
readonly 'event_id': string;
|
|
@@ -9436,6 +9343,22 @@ declare namespace io.flow.v0.models {
|
|
|
9436
9343
|
readonly 'environment': io.flow.v0.enums.Environment;
|
|
9437
9344
|
}
|
|
9438
9345
|
|
|
9346
|
+
interface OrganizationTaxRegistration {
|
|
9347
|
+
readonly 'id': string;
|
|
9348
|
+
readonly 'organization': io.flow.v0.models.OrganizationSummary;
|
|
9349
|
+
readonly 'address': io.flow.v0.models.BillingAddress;
|
|
9350
|
+
readonly 'registration': io.flow.v0.models.TaxRegistrationDetail;
|
|
9351
|
+
readonly 'self_billing_agreement': io.flow.v0.models.SelfBillingAgreement;
|
|
9352
|
+
}
|
|
9353
|
+
|
|
9354
|
+
interface OrganizationTaxRegistrationForm {
|
|
9355
|
+
readonly 'tax_number': string;
|
|
9356
|
+
readonly 'country': string;
|
|
9357
|
+
readonly 'province'?: string;
|
|
9358
|
+
readonly 'self_billing_agreement_effective_at': string;
|
|
9359
|
+
readonly 'self_billing_agreement_expires_at'?: string;
|
|
9360
|
+
}
|
|
9361
|
+
|
|
9439
9362
|
interface OrganizationToken {
|
|
9440
9363
|
readonly 'discriminator': 'organization_token';
|
|
9441
9364
|
readonly 'id': string;
|
|
@@ -10233,6 +10156,7 @@ declare namespace io.flow.v0.models {
|
|
|
10233
10156
|
readonly 'supported_actions': io.flow.v0.enums.PaymentActionType[];
|
|
10234
10157
|
readonly 'payment_capture_option'?: io.flow.v0.unions.PaymentCaptureOption;
|
|
10235
10158
|
readonly 'review'?: io.flow.v0.models.PaymentRequestReview;
|
|
10159
|
+
readonly 'client_secret'?: string;
|
|
10236
10160
|
}
|
|
10237
10161
|
|
|
10238
10162
|
interface PaymentRequestBilling {
|
|
@@ -10761,7 +10685,7 @@ declare namespace io.flow.v0.models {
|
|
|
10761
10685
|
readonly 'updated_by'?: string;
|
|
10762
10686
|
readonly 'product_restriction_id'?: string;
|
|
10763
10687
|
readonly 'hs_code'?: string;
|
|
10764
|
-
readonly 'restricted_regions_by_type'?: io.flow.v0.models.
|
|
10688
|
+
readonly 'restricted_regions_by_type'?: io.flow.v0.models.SellabilityRegionResult[];
|
|
10765
10689
|
readonly 'needs_action_attributes'?: io.flow.v0.models.NeedsActionAttributes[];
|
|
10766
10690
|
}
|
|
10767
10691
|
|
|
@@ -10787,10 +10711,11 @@ declare namespace io.flow.v0.models {
|
|
|
10787
10711
|
readonly 'product_id'?: string;
|
|
10788
10712
|
readonly 'request_id': string;
|
|
10789
10713
|
readonly 'hs6_code': string;
|
|
10790
|
-
readonly 'restricted_regions': io.flow.v0.models.
|
|
10714
|
+
readonly 'restricted_regions': io.flow.v0.models.SellabilityRegionResult[];
|
|
10791
10715
|
}
|
|
10792
10716
|
|
|
10793
10717
|
interface ProductSellabilityForm {
|
|
10718
|
+
readonly 'discriminator': 'product_sellability_form';
|
|
10794
10719
|
readonly 'shop_id': string;
|
|
10795
10720
|
readonly 'product_id'?: string;
|
|
10796
10721
|
readonly 'name': string;
|
|
@@ -10801,6 +10726,31 @@ declare namespace io.flow.v0.models {
|
|
|
10801
10726
|
readonly 'dry_run'?: boolean;
|
|
10802
10727
|
}
|
|
10803
10728
|
|
|
10729
|
+
interface ProductSellabilityResult {
|
|
10730
|
+
readonly 'merchant_id'?: string;
|
|
10731
|
+
readonly 'product_id': string;
|
|
10732
|
+
readonly 'restricted_regions': io.flow.v0.models.SellabilityRestrictedRegion[];
|
|
10733
|
+
readonly 'needs_action_attributes'?: io.flow.v0.models.SellabilityNeedsActionAttributes[];
|
|
10734
|
+
readonly 'request_id'?: string;
|
|
10735
|
+
readonly 'hs6_code'?: string;
|
|
10736
|
+
}
|
|
10737
|
+
|
|
10738
|
+
interface ProductSellabilityResultDeleted {
|
|
10739
|
+
readonly 'discriminator': 'product_sellability_result_deleted';
|
|
10740
|
+
readonly 'event_id': string;
|
|
10741
|
+
readonly 'timestamp': string;
|
|
10742
|
+
readonly 'organization': string;
|
|
10743
|
+
readonly 'id': string;
|
|
10744
|
+
}
|
|
10745
|
+
|
|
10746
|
+
interface ProductSellabilityResultUpserted {
|
|
10747
|
+
readonly 'discriminator': 'product_sellability_result_upserted';
|
|
10748
|
+
readonly 'event_id': string;
|
|
10749
|
+
readonly 'timestamp': string;
|
|
10750
|
+
readonly 'organization': string;
|
|
10751
|
+
readonly 'product_sellability_result': io.flow.v0.models.ProductSellabilityResult;
|
|
10752
|
+
}
|
|
10753
|
+
|
|
10804
10754
|
interface ProductTaxonomyCategory {
|
|
10805
10755
|
readonly 'name': string;
|
|
10806
10756
|
readonly 'full_name': string;
|
|
@@ -11050,6 +11000,7 @@ declare namespace io.flow.v0.models {
|
|
|
11050
11000
|
readonly 'center_id'?: string;
|
|
11051
11001
|
readonly 'taxes_owed'?: io.flow.v0.models.Money;
|
|
11052
11002
|
readonly 'duties_owed'?: io.flow.v0.models.Money;
|
|
11003
|
+
readonly 'commercial_invoice_mode'?: io.flow.v0.enums.CommercialInvoiceMode;
|
|
11053
11004
|
}
|
|
11054
11005
|
|
|
11055
11006
|
interface RatecardEstimateSummaryForm {
|
|
@@ -11674,20 +11625,6 @@ declare namespace io.flow.v0.models {
|
|
|
11674
11625
|
readonly 'reversal': io.flow.v0.models.Reversal;
|
|
11675
11626
|
}
|
|
11676
11627
|
|
|
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
11628
|
interface Romanization {
|
|
11692
11629
|
readonly 'address'?: io.flow.v0.models.Address;
|
|
11693
11630
|
readonly 'contact'?: io.flow.v0.models.Contact;
|
|
@@ -11711,20 +11648,6 @@ declare namespace io.flow.v0.models {
|
|
|
11711
11648
|
readonly 'roles': io.flow.v0.enums.FlowRole[];
|
|
11712
11649
|
}
|
|
11713
11650
|
|
|
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
11651
|
interface Schedule {
|
|
11729
11652
|
readonly 'calendar'?: io.flow.v0.enums.Calendar;
|
|
11730
11653
|
readonly 'holiday': io.flow.v0.enums.HolidayCalendar;
|
|
@@ -11776,12 +11699,61 @@ declare namespace io.flow.v0.models {
|
|
|
11776
11699
|
readonly 'issuer_options': io.flow.v0.models.IssuerReference[];
|
|
11777
11700
|
}
|
|
11778
11701
|
|
|
11702
|
+
interface SelfBillingAgreement {
|
|
11703
|
+
readonly 'effective_at': string;
|
|
11704
|
+
readonly 'expires_at': string;
|
|
11705
|
+
}
|
|
11706
|
+
|
|
11779
11707
|
interface SellabilityError {
|
|
11780
11708
|
readonly 'discriminator': 'sellability_error';
|
|
11781
11709
|
readonly 'code': io.flow.v0.enums.SellabilityErrorCode;
|
|
11782
11710
|
readonly 'messages': string[];
|
|
11783
11711
|
}
|
|
11784
11712
|
|
|
11713
|
+
interface SellabilityNeedsActionAttributes {
|
|
11714
|
+
readonly 'reason_code': string;
|
|
11715
|
+
readonly 'category_metafield_handles': string[];
|
|
11716
|
+
readonly 'require_msds'?: boolean;
|
|
11717
|
+
}
|
|
11718
|
+
|
|
11719
|
+
interface SellabilityRegionResult {
|
|
11720
|
+
readonly 'type': io.flow.v0.enums.RuleEffectType;
|
|
11721
|
+
readonly 'regions': string[];
|
|
11722
|
+
}
|
|
11723
|
+
|
|
11724
|
+
interface SellabilityRegionWithReasons {
|
|
11725
|
+
readonly 'region': string;
|
|
11726
|
+
readonly 'reasons': string[];
|
|
11727
|
+
}
|
|
11728
|
+
|
|
11729
|
+
interface SellabilityRestrictedRegion {
|
|
11730
|
+
readonly 'type': io.flow.v0.enums.RuleEffectType;
|
|
11731
|
+
readonly 'regions_with_reasons': io.flow.v0.models.SellabilityRegionWithReasons[];
|
|
11732
|
+
}
|
|
11733
|
+
|
|
11734
|
+
interface SellabilityScreening {
|
|
11735
|
+
readonly 'discriminator': 'sellability_screening';
|
|
11736
|
+
readonly 'sellability_result'?: io.flow.v0.models.ProductSellabilityResult;
|
|
11737
|
+
readonly 'request_id': string;
|
|
11738
|
+
readonly 'status': io.flow.v0.enums.SellabilityResultStatus;
|
|
11739
|
+
readonly 'error_code'?: io.flow.v0.enums.SellabilityResultErrorCode;
|
|
11740
|
+
readonly 'error_message'?: string;
|
|
11741
|
+
}
|
|
11742
|
+
|
|
11743
|
+
interface SellabilityScreeningForm {
|
|
11744
|
+
readonly 'discriminator': 'sellability_screening_form';
|
|
11745
|
+
readonly 'merchant_id': string;
|
|
11746
|
+
readonly 'product_id': string;
|
|
11747
|
+
readonly 'name': string;
|
|
11748
|
+
readonly 'price': io.flow.v0.models.Money;
|
|
11749
|
+
readonly 'description': string;
|
|
11750
|
+
readonly 'taxonomy_category': io.flow.v0.models.ProductTaxonomyCategory;
|
|
11751
|
+
readonly 'mode': io.flow.v0.enums.SellabilityScreeningMode;
|
|
11752
|
+
readonly 'catalog_size'?: number;
|
|
11753
|
+
readonly 'relative_ranking'?: number;
|
|
11754
|
+
readonly 'dry_run'?: boolean;
|
|
11755
|
+
}
|
|
11756
|
+
|
|
11785
11757
|
interface SellablilityRegionResult {
|
|
11786
11758
|
readonly 'type': io.flow.v0.enums.RuleEffectType;
|
|
11787
11759
|
readonly 'regions': string[];
|
|
@@ -12192,6 +12164,43 @@ declare namespace io.flow.v0.models {
|
|
|
12192
12164
|
readonly 'shipping_notification': io.flow.v0.models.ShippingNotification;
|
|
12193
12165
|
}
|
|
12194
12166
|
|
|
12167
|
+
interface ShippingRateEstimate {
|
|
12168
|
+
readonly 'origin_address': io.flow.v0.models.Address;
|
|
12169
|
+
readonly 'destination_address': io.flow.v0.models.Address;
|
|
12170
|
+
readonly 'shipping_date_time': string;
|
|
12171
|
+
readonly 'services': string[];
|
|
12172
|
+
readonly 'available': io.flow.v0.models.ShippingRateEstimateAvailable[];
|
|
12173
|
+
readonly 'unavailable'?: io.flow.v0.models.ShippingRateEstimateUnavailable[];
|
|
12174
|
+
}
|
|
12175
|
+
|
|
12176
|
+
interface ShippingRateEstimateAvailable {
|
|
12177
|
+
readonly 'service': io.flow.v0.models.RatecardServiceSummary;
|
|
12178
|
+
readonly 'delivered_duty': io.flow.v0.enums.DeliveredDuty;
|
|
12179
|
+
readonly 'shipment_window': io.flow.v0.models.ShipmentWindow;
|
|
12180
|
+
readonly 'total_amount': io.flow.v0.models.Money;
|
|
12181
|
+
readonly 'base_amount': io.flow.v0.models.Money;
|
|
12182
|
+
readonly 'fees': io.flow.v0.unions.RatecardFee[];
|
|
12183
|
+
readonly 'dimensional_weight'?: io.flow.v0.models.Measurement;
|
|
12184
|
+
readonly 'gravitational_weight'?: io.flow.v0.models.Measurement;
|
|
12185
|
+
readonly 'weight_break'?: number;
|
|
12186
|
+
}
|
|
12187
|
+
|
|
12188
|
+
interface ShippingRateEstimateRequest {
|
|
12189
|
+
readonly 'origin_address': io.flow.v0.models.Address;
|
|
12190
|
+
readonly 'destination_address': io.flow.v0.models.Address;
|
|
12191
|
+
readonly 'package_dimensions': io.flow.v0.models.Dimension;
|
|
12192
|
+
readonly 'shipping_date_time': string;
|
|
12193
|
+
readonly 'delivered_duty'?: io.flow.v0.enums.DeliveredDuty;
|
|
12194
|
+
readonly 'duties_owed'?: io.flow.v0.models.Money;
|
|
12195
|
+
readonly 'taxes_owed'?: io.flow.v0.models.Money;
|
|
12196
|
+
readonly 'line_items'?: io.flow.v0.models.LineItemForm[];
|
|
12197
|
+
}
|
|
12198
|
+
|
|
12199
|
+
interface ShippingRateEstimateUnavailable {
|
|
12200
|
+
readonly 'service': string;
|
|
12201
|
+
readonly 'reason': string;
|
|
12202
|
+
}
|
|
12203
|
+
|
|
12195
12204
|
interface Shop {
|
|
12196
12205
|
readonly 'name': string;
|
|
12197
12206
|
readonly 'id': string;
|
|
@@ -12404,6 +12413,7 @@ declare namespace io.flow.v0.models {
|
|
|
12404
12413
|
readonly 'third_party_logistics_partners'?: io.flow.v0.models.ThirdPartyLogisticsPartner[];
|
|
12405
12414
|
readonly 'center_contact'?: io.flow.v0.models.OperationsContact;
|
|
12406
12415
|
readonly 'average_order_weight'?: number;
|
|
12416
|
+
readonly 'average_order_weight_unit'?: io.flow.v0.enums.UnitOfMeasurement;
|
|
12407
12417
|
readonly 'package_dimensions'?: io.flow.v0.models.Dimension[];
|
|
12408
12418
|
readonly 'monthly_average'?: io.flow.v0.models.MonthlyAverage;
|
|
12409
12419
|
readonly 'default_country_of_origin'?: string;
|
|
@@ -12437,6 +12447,7 @@ declare namespace io.flow.v0.models {
|
|
|
12437
12447
|
readonly 'third_party_logistics_partners'?: io.flow.v0.models.ThirdPartyLogisticsPartner[];
|
|
12438
12448
|
readonly 'center_contact'?: io.flow.v0.models.OperationsContact;
|
|
12439
12449
|
readonly 'average_order_weight'?: number;
|
|
12450
|
+
readonly 'average_order_weight_unit'?: io.flow.v0.enums.UnitOfMeasurement;
|
|
12440
12451
|
readonly 'package_dimensions'?: io.flow.v0.models.Dimension[];
|
|
12441
12452
|
readonly 'monthly_average_volume_amount'?: number;
|
|
12442
12453
|
readonly 'monthly_average_volume_currency'?: string;
|
|
@@ -12580,6 +12591,11 @@ declare namespace io.flow.v0.models {
|
|
|
12580
12591
|
readonly 'statement': io.flow.v0.models.Statement;
|
|
12581
12592
|
}
|
|
12582
12593
|
|
|
12594
|
+
interface StatementStatusForm {
|
|
12595
|
+
readonly 'code': io.flow.v0.enums.StatementStatusCode;
|
|
12596
|
+
readonly 'failure_reason'?: io.flow.v0.enums.PayoutStatusFailureCode;
|
|
12597
|
+
}
|
|
12598
|
+
|
|
12583
12599
|
interface StatementUpserted {
|
|
12584
12600
|
readonly 'discriminator': 'statement_upserted';
|
|
12585
12601
|
readonly 'event_id': string;
|
|
@@ -12857,11 +12873,34 @@ declare namespace io.flow.v0.models {
|
|
|
12857
12873
|
readonly 'company_name'?: string;
|
|
12858
12874
|
}
|
|
12859
12875
|
|
|
12876
|
+
interface TaxRegistrationDeleted {
|
|
12877
|
+
readonly 'discriminator': 'tax_registration_deleted';
|
|
12878
|
+
readonly 'event_id': string;
|
|
12879
|
+
readonly 'timestamp': string;
|
|
12880
|
+
readonly 'organization': string;
|
|
12881
|
+
readonly 'id': string;
|
|
12882
|
+
}
|
|
12883
|
+
|
|
12884
|
+
interface TaxRegistrationDetail {
|
|
12885
|
+
readonly 'tax_number': string;
|
|
12886
|
+
readonly 'country': string;
|
|
12887
|
+
readonly 'tax_code': string;
|
|
12888
|
+
readonly 'province'?: string;
|
|
12889
|
+
}
|
|
12890
|
+
|
|
12860
12891
|
interface TaxRegistrationForm {
|
|
12861
12892
|
readonly 'number': string;
|
|
12862
12893
|
readonly 'company_name'?: string;
|
|
12863
12894
|
}
|
|
12864
12895
|
|
|
12896
|
+
interface TaxRegistrationUpserted {
|
|
12897
|
+
readonly 'discriminator': 'tax_registration_upserted';
|
|
12898
|
+
readonly 'event_id': string;
|
|
12899
|
+
readonly 'timestamp': string;
|
|
12900
|
+
readonly 'organization': string;
|
|
12901
|
+
readonly 'tax_registration': io.flow.v0.models.OrganizationTaxRegistration;
|
|
12902
|
+
}
|
|
12903
|
+
|
|
12865
12904
|
interface TaxReport {
|
|
12866
12905
|
readonly 'schedule': io.flow.v0.unions.RepeatSchedule;
|
|
12867
12906
|
readonly 'timezone': string;
|
|
@@ -13140,6 +13179,29 @@ declare namespace io.flow.v0.models {
|
|
|
13140
13179
|
readonly 'order_number'?: string;
|
|
13141
13180
|
}
|
|
13142
13181
|
|
|
13182
|
+
interface TrackingLabelEventUpsertedV2 {
|
|
13183
|
+
readonly 'discriminator': 'tracking_label_event_upserted_v2';
|
|
13184
|
+
readonly 'event_id': string;
|
|
13185
|
+
readonly 'timestamp': string;
|
|
13186
|
+
readonly 'organization': string;
|
|
13187
|
+
readonly 'tracking_label_event': io.flow.v0.models.TrackingLabelEventV2;
|
|
13188
|
+
}
|
|
13189
|
+
|
|
13190
|
+
interface TrackingLabelEventV2 {
|
|
13191
|
+
readonly 'id': string;
|
|
13192
|
+
readonly 'carrier_id': string;
|
|
13193
|
+
readonly 'carrier_tracking_number': string;
|
|
13194
|
+
readonly 'carrier_tracking_url'?: string;
|
|
13195
|
+
readonly 'label_id': string;
|
|
13196
|
+
readonly 'order_number'?: string;
|
|
13197
|
+
readonly 'status': io.flow.v0.enums.TrackingStatus;
|
|
13198
|
+
readonly 'substatus'?: io.flow.v0.enums.SubstatusCode;
|
|
13199
|
+
readonly 'carrier_timestamp': string;
|
|
13200
|
+
readonly 'description'?: string;
|
|
13201
|
+
readonly 'delivery_estimate'?: string;
|
|
13202
|
+
readonly 'address'?: io.flow.v0.models.Address;
|
|
13203
|
+
}
|
|
13204
|
+
|
|
13143
13205
|
interface TrackingLabelForm {
|
|
13144
13206
|
readonly 'tracking_id': string;
|
|
13145
13207
|
readonly 'status': io.flow.v0.enums.TrackingStatus;
|
|
@@ -13717,7 +13779,7 @@ declare namespace io.flow.v0.unions {
|
|
|
13717
13779
|
type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
|
|
13718
13780
|
type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
|
|
13719
13781
|
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.
|
|
13782
|
+
type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ItemInserted | io.flow.v0.models.ItemUpdated | io.flow.v0.models.ItemDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.ChannelShopifyOrderStateUpserted | io.flow.v0.models.ChannelShopifyOrderStateDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.GeItemInserted | io.flow.v0.models.GeItemUpdated | io.flow.v0.models.GeItemDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LabelProcessingModificationUpserted | io.flow.v0.models.LabelProcessingModificationDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.TaxRegistrationUpserted | io.flow.v0.models.TaxRegistrationDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.AuthorizationRetryUpserted | io.flow.v0.models.AuthorizationRetryDeleted | io.flow.v0.models.TransferUpserted | io.flow.v0.models.TransferDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.ProductInserted | io.flow.v0.models.ProductUpdated | io.flow.v0.models.ProductDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ProductSellabilityResultUpserted | io.flow.v0.models.ProductSellabilityResultDeleted | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted | io.flow.v0.models.TrackingLabelEventUpsertedV2);
|
|
13721
13783
|
type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary | io.flow.v0.models.ExternalCard);
|
|
13722
13784
|
type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
|
|
13723
13785
|
type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
|
|
@@ -13741,10 +13803,10 @@ declare namespace io.flow.v0.unions {
|
|
|
13741
13803
|
type LabelSurchargeDetail = (io.flow.v0.models.LabelSurchargeDetailFlat | io.flow.v0.models.LabelSurchargeDetailPercentage | io.flow.v0.models.LabelSurchargeDetailPerWeightUnit);
|
|
13742
13804
|
type LocalizedPrice = (io.flow.v0.models.LocalizedItemPrice | io.flow.v0.models.LocalizedItemVat | io.flow.v0.models.LocalizedItemDuty | io.flow.v0.models.LocalizedTotal);
|
|
13743
13805
|
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);
|
|
13806
|
+
type MerchantApplication = (io.flow.v0.models.ShopifyMerchantApplication | io.flow.v0.models.CommonMerchantApplication);
|
|
13807
|
+
type MerchantApplicationForm = (io.flow.v0.models.ShopifyMerchantApplicationForm | io.flow.v0.models.CommonMerchantApplicationForm);
|
|
13808
|
+
type MerchantApplicationPutForm = (io.flow.v0.models.ShopifyMerchantApplicationPutForm | io.flow.v0.models.CommonMerchantApplicationPutForm);
|
|
13809
|
+
type MerchantApplicationsSummary = (io.flow.v0.models.ShopifyMerchantApplicationsSummary | io.flow.v0.models.CommonMerchantApplicationsSummary);
|
|
13748
13810
|
type OnboardingState = (io.flow.v0.models.InComplianceReview | io.flow.v0.models.SetupInProgress | io.flow.v0.models.MerchantRejected | io.flow.v0.models.SetupBlocked | io.flow.v0.models.SetupCompleted | io.flow.v0.models.MerchantActivated | io.flow.v0.models.MerchantDeactivated | io.flow.v0.models.MerchantDisabled);
|
|
13749
13811
|
type OnlineAuthorizationDetails = (io.flow.v0.models.CryptopayAuthorizationDetails | io.flow.v0.models.PaypalAuthorizationDetails | io.flow.v0.models.RedirectAuthorizationDetails | io.flow.v0.models.InlineAuthorizationDetails);
|
|
13750
13812
|
type OrderInformation = (io.flow.v0.models.OrderInformationFlow | io.flow.v0.models.OrderInformationDetails);
|
|
@@ -13788,7 +13850,8 @@ declare namespace io.flow.v0.unions {
|
|
|
13788
13850
|
type RepeatSchedule = (io.flow.v0.models.RepeatHourly | io.flow.v0.models.RepeatDaily | io.flow.v0.models.RepeatWeekly | io.flow.v0.models.RepeatMonthly);
|
|
13789
13851
|
type ReturnSource = (io.flow.v0.models.ReturnSourceFlow | io.flow.v0.models.ReturnSourceExternalVendor);
|
|
13790
13852
|
type SdkAdyenV3AuthenticationToken = (io.flow.v0.models.AdyenV3FingerprintToken | io.flow.v0.models.AdyenV3ChallengeToken);
|
|
13791
|
-
type
|
|
13853
|
+
type SellabilityRequest = (io.flow.v0.models.ProductSellabilityForm | io.flow.v0.models.SellabilityScreeningForm);
|
|
13854
|
+
type SellabilityResponse = (io.flow.v0.models.ProductSellability | io.flow.v0.models.SellabilityError | io.flow.v0.models.SellabilityScreening);
|
|
13792
13855
|
type ServiceDescription = (io.flow.v0.models.ServiceSummary | io.flow.v0.models.ServiceUnknown);
|
|
13793
13856
|
type ServiceFee = (io.flow.v0.models.FuelSurchargeServiceFee | io.flow.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.v0.models.RemoteAreaServiceFee | io.flow.v0.models.EmergencySituationSurchargeServiceFee | io.flow.v0.models.PeakSurchargeServiceFee | io.flow.v0.models.PeakSurchargeByWeightServiceFee | io.flow.v0.models.DutiesTaxesPaidSurchargeServiceFee | io.flow.v0.models.OversizePieceSurchargeServiceFee | io.flow.v0.models.OverweightPieceSurchargeServiceFee | io.flow.v0.models.RemoteAreaByWeightServiceFee | io.flow.v0.models.AdditionalHandlingServiceFee | io.flow.v0.models.LargePackageServiceFee | io.flow.v0.models.SecurityServiceFee | io.flow.v0.models.FixedDdpServiceFee | io.flow.v0.models.FixedCurrencyConversionServiceFee | io.flow.v0.models.EeiFilingServiceFee);
|
|
13794
13857
|
type Session = (io.flow.v0.models.OrganizationSession);
|
|
@@ -13839,6 +13902,7 @@ export const centerCapability: PropTypes.Requireable<io.flow.v0.enums.CenterCapa
|
|
|
13839
13902
|
export const changeType: PropTypes.Requireable<io.flow.v0.enums.ChangeType>;
|
|
13840
13903
|
export const channelCurrencyCapability: PropTypes.Requireable<io.flow.v0.enums.ChannelCurrencyCapability>;
|
|
13841
13904
|
export const channelShopifyOrderStateReasonCode: PropTypes.Requireable<io.flow.v0.enums.ChannelShopifyOrderStateReasonCode>;
|
|
13905
|
+
export const commercialInvoiceMode: PropTypes.Requireable<io.flow.v0.enums.CommercialInvoiceMode>;
|
|
13842
13906
|
export const consumerInvoiceCustomerType: PropTypes.Requireable<io.flow.v0.enums.ConsumerInvoiceCustomerType>;
|
|
13843
13907
|
export const consumerInvoiceDocumentType: PropTypes.Requireable<io.flow.v0.enums.ConsumerInvoiceDocumentType>;
|
|
13844
13908
|
export const consumerInvoiceStatus: PropTypes.Requireable<io.flow.v0.enums.ConsumerInvoiceStatus>;
|
|
@@ -13977,6 +14041,7 @@ export const refundFailureCategory: PropTypes.Requireable<io.flow.v0.enums.Refun
|
|
|
13977
14041
|
export const refundStatus: PropTypes.Requireable<io.flow.v0.enums.RefundStatus>;
|
|
13978
14042
|
export const regionType: PropTypes.Requireable<io.flow.v0.enums.RegionType>;
|
|
13979
14043
|
export const restrictedReviewStatus: PropTypes.Requireable<io.flow.v0.enums.RestrictedReviewStatus>;
|
|
14044
|
+
export const restrictionEnvironment: PropTypes.Requireable<io.flow.v0.enums.RestrictionEnvironment>;
|
|
13980
14045
|
export const returnItemStatus: PropTypes.Requireable<io.flow.v0.enums.ReturnItemStatus>;
|
|
13981
14046
|
export const returnPolicyState: PropTypes.Requireable<io.flow.v0.enums.ReturnPolicyState>;
|
|
13982
14047
|
export const returnStatus: PropTypes.Requireable<io.flow.v0.enums.ReturnStatus>;
|
|
@@ -13991,6 +14056,9 @@ export const ruleEffectType: PropTypes.Requireable<io.flow.v0.enums.RuleEffectTy
|
|
|
13991
14056
|
export const scheduleExceptionStatus: PropTypes.Requireable<io.flow.v0.enums.ScheduleExceptionStatus>;
|
|
13992
14057
|
export const sellabilityErrorCode: PropTypes.Requireable<io.flow.v0.enums.SellabilityErrorCode>;
|
|
13993
14058
|
export const sellabilityRequestStatus: PropTypes.Requireable<io.flow.v0.enums.SellabilityRequestStatus>;
|
|
14059
|
+
export const sellabilityResultErrorCode: PropTypes.Requireable<io.flow.v0.enums.SellabilityResultErrorCode>;
|
|
14060
|
+
export const sellabilityResultStatus: PropTypes.Requireable<io.flow.v0.enums.SellabilityResultStatus>;
|
|
14061
|
+
export const sellabilityScreeningMode: PropTypes.Requireable<io.flow.v0.enums.SellabilityScreeningMode>;
|
|
13994
14062
|
export const shipmentIntegrationType: PropTypes.Requireable<io.flow.v0.enums.ShipmentIntegrationType>;
|
|
13995
14063
|
export const shipmentRecipient: PropTypes.Requireable<io.flow.v0.enums.ShipmentRecipient>;
|
|
13996
14064
|
export const shippingConfigurationType: PropTypes.Requireable<io.flow.v0.enums.ShippingConfigurationType>;
|
|
@@ -14000,6 +14068,7 @@ export const shopifyLocalizationMethod: PropTypes.Requireable<io.flow.v0.enums.S
|
|
|
14000
14068
|
export const shopifySyncCheck: PropTypes.Requireable<io.flow.v0.enums.ShopifySyncCheck>;
|
|
14001
14069
|
export const sortDirection: PropTypes.Requireable<io.flow.v0.enums.SortDirection>;
|
|
14002
14070
|
export const statementAttachmentType: PropTypes.Requireable<io.flow.v0.enums.StatementAttachmentType>;
|
|
14071
|
+
export const statementStatusCode: PropTypes.Requireable<io.flow.v0.enums.StatementStatusCode>;
|
|
14003
14072
|
export const storedMethodUsageStep: PropTypes.Requireable<io.flow.v0.enums.StoredMethodUsageStep>;
|
|
14004
14073
|
export const strategy: PropTypes.Requireable<io.flow.v0.enums.Strategy>;
|
|
14005
14074
|
export const subcatalogItemStatus: PropTypes.Requireable<io.flow.v0.enums.SubcatalogItemStatus>;
|
|
@@ -14085,8 +14154,6 @@ export const adyenIdentifyShopperData: PropTypes.Requireable<io.flow.v0.models.A
|
|
|
14085
14154
|
export const adyenNativeActionDetails: PropTypes.Requireable<io.flow.v0.models.AdyenNativeActionDetails>;
|
|
14086
14155
|
export const adyenV3ChallengeToken: PropTypes.Requireable<io.flow.v0.models.AdyenV3ChallengeToken>;
|
|
14087
14156
|
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
14157
|
export const allocation: PropTypes.Requireable<io.flow.v0.models.Allocation>;
|
|
14091
14158
|
export const allocationDeletedV2: PropTypes.Requireable<io.flow.v0.models.AllocationDeletedV2>;
|
|
14092
14159
|
export const allocationDetailComponent: PropTypes.Requireable<io.flow.v0.models.AllocationDetailComponent>;
|
|
@@ -14102,10 +14169,6 @@ export const allocationV2: PropTypes.Requireable<io.flow.v0.models.AllocationV2>
|
|
|
14102
14169
|
export const amountMargin: PropTypes.Requireable<io.flow.v0.models.AmountMargin>;
|
|
14103
14170
|
export const amountMarginForm: PropTypes.Requireable<io.flow.v0.models.AmountMarginForm>;
|
|
14104
14171
|
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
14172
|
export const applePayMerchantValidationPayload: PropTypes.Requireable<io.flow.v0.models.ApplePayMerchantValidationPayload>;
|
|
14110
14173
|
export const applepaySdkCreateResultActionDetails: PropTypes.Requireable<io.flow.v0.models.ApplepaySdkCreateResultActionDetails>;
|
|
14111
14174
|
export const applepaySdkValidateResultActionDetails: PropTypes.Requireable<io.flow.v0.models.ApplepaySdkValidateResultActionDetails>;
|
|
@@ -14289,6 +14352,10 @@ export const checkoutUrls: PropTypes.Requireable<io.flow.v0.models.CheckoutUrls>
|
|
|
14289
14352
|
export const checkoutUrlsForm: PropTypes.Requireable<io.flow.v0.models.CheckoutUrlsForm>;
|
|
14290
14353
|
export const cleartext: PropTypes.Requireable<io.flow.v0.models.Cleartext>;
|
|
14291
14354
|
export const commercialInvoiceFee: PropTypes.Requireable<io.flow.v0.models.CommercialInvoiceFee>;
|
|
14355
|
+
export const commonMerchantApplication: PropTypes.Requireable<io.flow.v0.models.CommonMerchantApplication>;
|
|
14356
|
+
export const commonMerchantApplicationForm: PropTypes.Requireable<io.flow.v0.models.CommonMerchantApplicationForm>;
|
|
14357
|
+
export const commonMerchantApplicationPutForm: PropTypes.Requireable<io.flow.v0.models.CommonMerchantApplicationPutForm>;
|
|
14358
|
+
export const commonMerchantApplicationsSummary: PropTypes.Requireable<io.flow.v0.models.CommonMerchantApplicationsSummary>;
|
|
14292
14359
|
export const company: PropTypes.Requireable<io.flow.v0.models.Company>;
|
|
14293
14360
|
export const consumerInvoice: PropTypes.Requireable<io.flow.v0.models.ConsumerInvoice>;
|
|
14294
14361
|
export const consumerInvoiceCenterReference: PropTypes.Requireable<io.flow.v0.models.ConsumerInvoiceCenterReference>;
|
|
@@ -14488,6 +14555,7 @@ export const exportLocalizedItemPrices: PropTypes.Requireable<io.flow.v0.models.
|
|
|
14488
14555
|
export const exportLocalizedItemPricesDetail: PropTypes.Requireable<io.flow.v0.models.ExportLocalizedItemPricesDetail>;
|
|
14489
14556
|
export const exportVersion: PropTypes.Requireable<io.flow.v0.models.ExportVersion>;
|
|
14490
14557
|
export const externalCard: PropTypes.Requireable<io.flow.v0.models.ExternalCard>;
|
|
14558
|
+
export const externalOrderSummary: PropTypes.Requireable<io.flow.v0.models.ExternalOrderSummary>;
|
|
14491
14559
|
export const feeDeduction: PropTypes.Requireable<io.flow.v0.models.FeeDeduction>;
|
|
14492
14560
|
export const feeWeight: PropTypes.Requireable<io.flow.v0.models.FeeWeight>;
|
|
14493
14561
|
export const fieldValidationMax: PropTypes.Requireable<io.flow.v0.models.FieldValidationMax>;
|
|
@@ -14571,8 +14639,6 @@ export const hop: PropTypes.Requireable<io.flow.v0.models.Hop>;
|
|
|
14571
14639
|
export const hopEstimate: PropTypes.Requireable<io.flow.v0.models.HopEstimate>;
|
|
14572
14640
|
export const hopEstimateV2: PropTypes.Requireable<io.flow.v0.models.HopEstimateV2>;
|
|
14573
14641
|
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
14642
|
export const hs10: PropTypes.Requireable<io.flow.v0.models.Hs10>;
|
|
14577
14643
|
export const hs10CodeDeleted: PropTypes.Requireable<io.flow.v0.models.Hs10CodeDeleted>;
|
|
14578
14644
|
export const hs10CodeUpserted: PropTypes.Requireable<io.flow.v0.models.Hs10CodeUpserted>;
|
|
@@ -14726,6 +14792,7 @@ export const merchantOfRecordEntity: PropTypes.Requireable<io.flow.v0.models.Mer
|
|
|
14726
14792
|
export const merchantOfRecordEntityRegistration: PropTypes.Requireable<io.flow.v0.models.MerchantOfRecordEntityRegistration>;
|
|
14727
14793
|
export const merchantOfRecordPaymentForm: PropTypes.Requireable<io.flow.v0.models.MerchantOfRecordPaymentForm>;
|
|
14728
14794
|
export const merchantOnboardingAddress: PropTypes.Requireable<io.flow.v0.models.MerchantOnboardingAddress>;
|
|
14795
|
+
export const merchantOnboardingBeneficiaryDetails: PropTypes.Requireable<io.flow.v0.models.MerchantOnboardingBeneficiaryDetails>;
|
|
14729
14796
|
export const merchantRejected: PropTypes.Requireable<io.flow.v0.models.MerchantRejected>;
|
|
14730
14797
|
export const money: PropTypes.Requireable<io.flow.v0.models.Money>;
|
|
14731
14798
|
export const moneyWithBase: PropTypes.Requireable<io.flow.v0.models.MoneyWithBase>;
|
|
@@ -14735,8 +14802,6 @@ export const monthlyAverageVolume: PropTypes.Requireable<io.flow.v0.models.Month
|
|
|
14735
14802
|
export const name: PropTypes.Requireable<io.flow.v0.models.Name>;
|
|
14736
14803
|
export const nameForm: PropTypes.Requireable<io.flow.v0.models.NameForm>;
|
|
14737
14804
|
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
14805
|
export const notificationDeletedV2: PropTypes.Requireable<io.flow.v0.models.NotificationDeletedV2>;
|
|
14741
14806
|
export const notificationUpsertedV2: PropTypes.Requireable<io.flow.v0.models.NotificationUpsertedV2>;
|
|
14742
14807
|
export const numberRange: PropTypes.Requireable<io.flow.v0.models.NumberRange>;
|
|
@@ -14851,6 +14916,8 @@ export const organizationReference: PropTypes.Requireable<io.flow.v0.models.Orga
|
|
|
14851
14916
|
export const organizationSession: PropTypes.Requireable<io.flow.v0.models.OrganizationSession>;
|
|
14852
14917
|
export const organizationSessionAuthorization: PropTypes.Requireable<io.flow.v0.models.OrganizationSessionAuthorization>;
|
|
14853
14918
|
export const organizationSummary: PropTypes.Requireable<io.flow.v0.models.OrganizationSummary>;
|
|
14919
|
+
export const organizationTaxRegistration: PropTypes.Requireable<io.flow.v0.models.OrganizationTaxRegistration>;
|
|
14920
|
+
export const organizationTaxRegistrationForm: PropTypes.Requireable<io.flow.v0.models.OrganizationTaxRegistrationForm>;
|
|
14854
14921
|
export const organizationToken: PropTypes.Requireable<io.flow.v0.models.OrganizationToken>;
|
|
14855
14922
|
export const organizationTokenForm: PropTypes.Requireable<io.flow.v0.models.OrganizationTokenForm>;
|
|
14856
14923
|
export const organizationTokenFormV2: PropTypes.Requireable<io.flow.v0.models.OrganizationTokenFormV2>;
|
|
@@ -15049,6 +15116,9 @@ export const productRestrictionResultDeleted: PropTypes.Requireable<io.flow.v0.m
|
|
|
15049
15116
|
export const productRestrictionResultUpserted: PropTypes.Requireable<io.flow.v0.models.ProductRestrictionResultUpserted>;
|
|
15050
15117
|
export const productSellability: PropTypes.Requireable<io.flow.v0.models.ProductSellability>;
|
|
15051
15118
|
export const productSellabilityForm: PropTypes.Requireable<io.flow.v0.models.ProductSellabilityForm>;
|
|
15119
|
+
export const productSellabilityResult: PropTypes.Requireable<io.flow.v0.models.ProductSellabilityResult>;
|
|
15120
|
+
export const productSellabilityResultDeleted: PropTypes.Requireable<io.flow.v0.models.ProductSellabilityResultDeleted>;
|
|
15121
|
+
export const productSellabilityResultUpserted: PropTypes.Requireable<io.flow.v0.models.ProductSellabilityResultUpserted>;
|
|
15052
15122
|
export const productTaxonomyCategory: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyCategory>;
|
|
15053
15123
|
export const productTaxonomyData: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyData>;
|
|
15054
15124
|
export const productTaxonomyValue: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyValue>;
|
|
@@ -15164,14 +15234,10 @@ export const reversalForm: PropTypes.Requireable<io.flow.v0.models.ReversalForm>
|
|
|
15164
15234
|
export const reversalPutForm: PropTypes.Requireable<io.flow.v0.models.ReversalPutForm>;
|
|
15165
15235
|
export const reversalUpserted: PropTypes.Requireable<io.flow.v0.models.ReversalUpserted>;
|
|
15166
15236
|
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
15237
|
export const romanization: PropTypes.Requireable<io.flow.v0.models.Romanization>;
|
|
15170
15238
|
export const romanizationForm: PropTypes.Requireable<io.flow.v0.models.RomanizationForm>;
|
|
15171
15239
|
export const rounding: PropTypes.Requireable<io.flow.v0.models.Rounding>;
|
|
15172
15240
|
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
15241
|
export const schedule: PropTypes.Requireable<io.flow.v0.models.Schedule>;
|
|
15176
15242
|
export const scheduledExport: PropTypes.Requireable<io.flow.v0.models.ScheduledExport>;
|
|
15177
15243
|
export const scheduledExportForm: PropTypes.Requireable<io.flow.v0.models.ScheduledExportForm>;
|
|
@@ -15179,7 +15245,14 @@ export const scheduledPickup: PropTypes.Requireable<io.flow.v0.models.ScheduledP
|
|
|
15179
15245
|
export const securityRatecardFee: PropTypes.Requireable<io.flow.v0.models.SecurityRatecardFee>;
|
|
15180
15246
|
export const securityServiceFee: PropTypes.Requireable<io.flow.v0.models.SecurityServiceFee>;
|
|
15181
15247
|
export const selectIssuerOptionActionDetails: PropTypes.Requireable<io.flow.v0.models.SelectIssuerOptionActionDetails>;
|
|
15248
|
+
export const selfBillingAgreement: PropTypes.Requireable<io.flow.v0.models.SelfBillingAgreement>;
|
|
15182
15249
|
export const sellabilityError: PropTypes.Requireable<io.flow.v0.models.SellabilityError>;
|
|
15250
|
+
export const sellabilityNeedsActionAttributes: PropTypes.Requireable<io.flow.v0.models.SellabilityNeedsActionAttributes>;
|
|
15251
|
+
export const sellabilityRegionResult: PropTypes.Requireable<io.flow.v0.models.SellabilityRegionResult>;
|
|
15252
|
+
export const sellabilityRegionWithReasons: PropTypes.Requireable<io.flow.v0.models.SellabilityRegionWithReasons>;
|
|
15253
|
+
export const sellabilityRestrictedRegion: PropTypes.Requireable<io.flow.v0.models.SellabilityRestrictedRegion>;
|
|
15254
|
+
export const sellabilityScreening: PropTypes.Requireable<io.flow.v0.models.SellabilityScreening>;
|
|
15255
|
+
export const sellabilityScreeningForm: PropTypes.Requireable<io.flow.v0.models.SellabilityScreeningForm>;
|
|
15183
15256
|
export const sellablilityRegionResult: PropTypes.Requireable<io.flow.v0.models.SellablilityRegionResult>;
|
|
15184
15257
|
export const serviceReference: PropTypes.Requireable<io.flow.v0.models.ServiceReference>;
|
|
15185
15258
|
export const serviceSummary: PropTypes.Requireable<io.flow.v0.models.ServiceSummary>;
|
|
@@ -15237,6 +15310,10 @@ export const shippingLaneUpserted: PropTypes.Requireable<io.flow.v0.models.Shipp
|
|
|
15237
15310
|
export const shippingLaneVersion: PropTypes.Requireable<io.flow.v0.models.ShippingLaneVersion>;
|
|
15238
15311
|
export const shippingNotification: PropTypes.Requireable<io.flow.v0.models.ShippingNotification>;
|
|
15239
15312
|
export const shippingNotificationVersion: PropTypes.Requireable<io.flow.v0.models.ShippingNotificationVersion>;
|
|
15313
|
+
export const shippingRateEstimate: PropTypes.Requireable<io.flow.v0.models.ShippingRateEstimate>;
|
|
15314
|
+
export const shippingRateEstimateAvailable: PropTypes.Requireable<io.flow.v0.models.ShippingRateEstimateAvailable>;
|
|
15315
|
+
export const shippingRateEstimateRequest: PropTypes.Requireable<io.flow.v0.models.ShippingRateEstimateRequest>;
|
|
15316
|
+
export const shippingRateEstimateUnavailable: PropTypes.Requireable<io.flow.v0.models.ShippingRateEstimateUnavailable>;
|
|
15240
15317
|
export const shop: PropTypes.Requireable<io.flow.v0.models.Shop>;
|
|
15241
15318
|
export const shopifyCart: PropTypes.Requireable<io.flow.v0.models.ShopifyCart>;
|
|
15242
15319
|
export const shopifyCartAddMultipleForm: PropTypes.Requireable<io.flow.v0.models.ShopifyCartAddMultipleForm>;
|
|
@@ -15284,6 +15361,7 @@ export const solidusProductExportType: PropTypes.Requireable<io.flow.v0.models.S
|
|
|
15284
15361
|
export const solidusVariantExportType: PropTypes.Requireable<io.flow.v0.models.SolidusVariantExportType>;
|
|
15285
15362
|
export const statement: PropTypes.Requireable<io.flow.v0.models.Statement>;
|
|
15286
15363
|
export const statementDeleted: PropTypes.Requireable<io.flow.v0.models.StatementDeleted>;
|
|
15364
|
+
export const statementStatusForm: PropTypes.Requireable<io.flow.v0.models.StatementStatusForm>;
|
|
15287
15365
|
export const statementUpserted: PropTypes.Requireable<io.flow.v0.models.StatementUpserted>;
|
|
15288
15366
|
export const streetAddress: PropTypes.Requireable<io.flow.v0.models.StreetAddress>;
|
|
15289
15367
|
export const stripeAuthenticationData: PropTypes.Requireable<io.flow.v0.models.StripeAuthenticationData>;
|
|
@@ -15321,7 +15399,10 @@ export const taxDutyQuoteSimpleShipping: PropTypes.Requireable<io.flow.v0.models
|
|
|
15321
15399
|
export const taxDutyQuoteSimpleShippingForm: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteSimpleShippingForm>;
|
|
15322
15400
|
export const taxDutyQuoteValues: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteValues>;
|
|
15323
15401
|
export const taxRegistration: PropTypes.Requireable<io.flow.v0.models.TaxRegistration>;
|
|
15402
|
+
export const taxRegistrationDeleted: PropTypes.Requireable<io.flow.v0.models.TaxRegistrationDeleted>;
|
|
15403
|
+
export const taxRegistrationDetail: PropTypes.Requireable<io.flow.v0.models.TaxRegistrationDetail>;
|
|
15324
15404
|
export const taxRegistrationForm: PropTypes.Requireable<io.flow.v0.models.TaxRegistrationForm>;
|
|
15405
|
+
export const taxRegistrationUpserted: PropTypes.Requireable<io.flow.v0.models.TaxRegistrationUpserted>;
|
|
15325
15406
|
export const taxReport: PropTypes.Requireable<io.flow.v0.models.TaxReport>;
|
|
15326
15407
|
export const testUpserted: PropTypes.Requireable<io.flow.v0.models.TestUpserted>;
|
|
15327
15408
|
export const thirdPartyLogisticsPartner: PropTypes.Requireable<io.flow.v0.models.ThirdPartyLogisticsPartner>;
|
|
@@ -15358,6 +15439,8 @@ export const trackingEventVersion: PropTypes.Requireable<io.flow.v0.models.Track
|
|
|
15358
15439
|
export const trackingForm: PropTypes.Requireable<io.flow.v0.models.TrackingForm>;
|
|
15359
15440
|
export const trackingLabel: PropTypes.Requireable<io.flow.v0.models.TrackingLabel>;
|
|
15360
15441
|
export const trackingLabelEventUpserted: PropTypes.Requireable<io.flow.v0.models.TrackingLabelEventUpserted>;
|
|
15442
|
+
export const trackingLabelEventUpsertedV2: PropTypes.Requireable<io.flow.v0.models.TrackingLabelEventUpsertedV2>;
|
|
15443
|
+
export const trackingLabelEventV2: PropTypes.Requireable<io.flow.v0.models.TrackingLabelEventV2>;
|
|
15361
15444
|
export const trackingLabelForm: PropTypes.Requireable<io.flow.v0.models.TrackingLabelForm>;
|
|
15362
15445
|
export const trackingLabelSummary: PropTypes.Requireable<io.flow.v0.models.TrackingLabelSummary>;
|
|
15363
15446
|
export const trackingLabelVersion: PropTypes.Requireable<io.flow.v0.models.TrackingLabelVersion>;
|
|
@@ -15528,6 +15611,7 @@ export const ratecardFee: PropTypes.Requireable<io.flow.v0.unions.RatecardFee>;
|
|
|
15528
15611
|
export const repeatSchedule: PropTypes.Requireable<io.flow.v0.unions.RepeatSchedule>;
|
|
15529
15612
|
export const returnSource: PropTypes.Requireable<io.flow.v0.unions.ReturnSource>;
|
|
15530
15613
|
export const sdkAdyenV3AuthenticationToken: PropTypes.Requireable<io.flow.v0.unions.SdkAdyenV3AuthenticationToken>;
|
|
15614
|
+
export const sellabilityRequest: PropTypes.Requireable<io.flow.v0.unions.SellabilityRequest>;
|
|
15531
15615
|
export const sellabilityResponse: PropTypes.Requireable<io.flow.v0.unions.SellabilityResponse>;
|
|
15532
15616
|
export const serviceDescription: PropTypes.Requireable<io.flow.v0.unions.ServiceDescription>;
|
|
15533
15617
|
export const serviceFee: PropTypes.Requireable<io.flow.v0.unions.ServiceFee>;
|