@flowio/api-prop-types 10.16.109 → 10.16.112
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 +268 -30
- package/lib/api.js +1 -1
- package/package.json +2 -3
- package/src/api.d.ts +268 -30
- package/src/api.js +340 -71
package/src/api.d.ts
CHANGED
|
@@ -1548,7 +1548,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1548
1548
|
readonly 'id': string;
|
|
1549
1549
|
readonly 'legacyResourceId': string;
|
|
1550
1550
|
readonly 'handle': string;
|
|
1551
|
-
readonly 'variants'
|
|
1551
|
+
readonly 'variants': io.flow.shopify.external.v0.models.GraphqlProductVariant[];
|
|
1552
1552
|
readonly 'images': io.flow.shopify.external.v0.models.GraphqlProductImage[];
|
|
1553
1553
|
readonly 'title': string;
|
|
1554
1554
|
readonly 'vendor'?: string;
|
|
@@ -1694,7 +1694,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1694
1694
|
interface Product {
|
|
1695
1695
|
readonly 'id': number;
|
|
1696
1696
|
readonly 'handle': string;
|
|
1697
|
-
readonly 'variants'
|
|
1697
|
+
readonly 'variants': io.flow.shopify.external.v0.models.ProductVariant[];
|
|
1698
1698
|
readonly 'images': io.flow.shopify.external.v0.models.ProductImage[];
|
|
1699
1699
|
readonly 'title': string;
|
|
1700
1700
|
readonly 'vendor'?: string;
|
|
@@ -1894,7 +1894,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1894
1894
|
}
|
|
1895
1895
|
|
|
1896
1896
|
interface ShopifyClientDetail {
|
|
1897
|
-
readonly 'accept_language'
|
|
1897
|
+
readonly 'accept_language': boolean;
|
|
1898
1898
|
readonly 'browser_height'?: number;
|
|
1899
1899
|
readonly 'browser_ip'?: string;
|
|
1900
1900
|
readonly 'browser_width'?: number;
|
|
@@ -1915,7 +1915,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1915
1915
|
readonly 'tax_exempt': boolean;
|
|
1916
1916
|
readonly 'verified_email': boolean;
|
|
1917
1917
|
readonly 'state': io.flow.shopify.external.v0.enums.ShopifyCustomerState;
|
|
1918
|
-
readonly 'accepts_marketing'
|
|
1918
|
+
readonly 'accepts_marketing': boolean;
|
|
1919
1919
|
readonly 'default_address'?: any/*object*/;
|
|
1920
1920
|
readonly 'email'?: string;
|
|
1921
1921
|
readonly 'first_name'?: string;
|
|
@@ -1994,7 +1994,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1994
1994
|
readonly 'requires_shipping': boolean;
|
|
1995
1995
|
readonly 'currency'?: string;
|
|
1996
1996
|
readonly 'items': io.flow.shopify.external.v0.models.ShopifyExternalCartItem[];
|
|
1997
|
-
readonly 'cart_level_discount_applications'
|
|
1997
|
+
readonly 'cart_level_discount_applications': io.flow.shopify.external.v0.models.ShopifyDiscountApplication[];
|
|
1998
1998
|
}
|
|
1999
1999
|
|
|
2000
2000
|
interface ShopifyExternalCartItem {
|
|
@@ -2009,7 +2009,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
2009
2009
|
readonly 'original_line_price': number;
|
|
2010
2010
|
readonly 'total_discount': number;
|
|
2011
2011
|
readonly 'discounted_price': number;
|
|
2012
|
-
readonly 'discounts'
|
|
2012
|
+
readonly 'discounts': io.flow.shopify.external.v0.models.ShopifyCartItemDiscount[];
|
|
2013
2013
|
readonly 'taxable': boolean;
|
|
2014
2014
|
readonly 'quantity': number;
|
|
2015
2015
|
readonly 'sku'?: string;
|
|
@@ -2027,8 +2027,8 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
2027
2027
|
readonly 'product_description'?: string;
|
|
2028
2028
|
readonly 'product_type': string;
|
|
2029
2029
|
readonly 'variant_title'?: string;
|
|
2030
|
-
readonly 'variant_options'
|
|
2031
|
-
readonly 'line_level_discount_allocations'
|
|
2030
|
+
readonly 'variant_options': string[];
|
|
2031
|
+
readonly 'line_level_discount_allocations': io.flow.shopify.external.v0.models.ShopifyLineLevelDiscountAllocation[];
|
|
2032
2032
|
}
|
|
2033
2033
|
|
|
2034
2034
|
interface ShopifyFulfillment {
|
|
@@ -2279,7 +2279,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
2279
2279
|
readonly 'gateway'?: string;
|
|
2280
2280
|
readonly 'transactions'?: io.flow.shopify.external.v0.models.ShopifyTransactionForm[];
|
|
2281
2281
|
readonly 'send_receipt'?: boolean;
|
|
2282
|
-
readonly 'metafields'
|
|
2282
|
+
readonly 'metafields': io.flow.shopify.external.v0.models.MetafieldForm[];
|
|
2283
2283
|
}
|
|
2284
2284
|
|
|
2285
2285
|
interface ShopifyOrderCount {
|
|
@@ -2422,7 +2422,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
2422
2422
|
|
|
2423
2423
|
interface ShopifyWebhookOrder {
|
|
2424
2424
|
readonly 'id'?: number;
|
|
2425
|
-
readonly 'line_items'
|
|
2425
|
+
readonly 'line_items': io.flow.shopify.external.v0.models.ShopifyWebhookOrderLineItem[];
|
|
2426
2426
|
}
|
|
2427
2427
|
|
|
2428
2428
|
interface ShopifyWebhookOrderCancelled {
|
|
@@ -2716,7 +2716,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
2716
2716
|
|
|
2717
2717
|
interface DiscountForm {
|
|
2718
2718
|
readonly 'offer': io.flow.common.v0.unions.DiscountOffer;
|
|
2719
|
-
readonly 'target'
|
|
2719
|
+
readonly 'target': io.flow.common.v0.enums.DiscountTarget;
|
|
2720
2720
|
readonly 'label'?: string;
|
|
2721
2721
|
}
|
|
2722
2722
|
|
|
@@ -2808,6 +2808,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
2808
2808
|
interface LineItemForm {
|
|
2809
2809
|
readonly 'number': string;
|
|
2810
2810
|
readonly 'quantity': number;
|
|
2811
|
+
readonly 'line_item_identifier'?: string;
|
|
2811
2812
|
readonly 'shipment_estimate'?: io.flow.common.v0.models.DatetimeRange;
|
|
2812
2813
|
readonly 'price'?: io.flow.common.v0.models.Money;
|
|
2813
2814
|
readonly 'attributes'?: Record<string, string>;
|
|
@@ -2917,7 +2918,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
2917
2918
|
readonly 'parent'?: io.flow.common.v0.models.OrganizationReference;
|
|
2918
2919
|
readonly 'defaults'?: io.flow.common.v0.models.OrganizationDefaults;
|
|
2919
2920
|
readonly 'created_at'?: string;
|
|
2920
|
-
readonly 'status'
|
|
2921
|
+
readonly 'status': io.flow.common.v0.enums.OrganizationStatus;
|
|
2921
2922
|
readonly 'type'?: io.flow.common.v0.enums.OrganizationType;
|
|
2922
2923
|
}
|
|
2923
2924
|
|
|
@@ -3226,6 +3227,69 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
3226
3227
|
}
|
|
3227
3228
|
}
|
|
3228
3229
|
|
|
3230
|
+
declare namespace io.flow.tech.onboarding.playground.v0.enums {
|
|
3231
|
+
type AmruthaItemType = 'physical' | 'digital';
|
|
3232
|
+
type ChenglinItemType = 'physical' | 'digital';
|
|
3233
|
+
type GabrielItemType = 'physical' | 'digital';
|
|
3234
|
+
}
|
|
3235
|
+
|
|
3236
|
+
declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
3237
|
+
interface AmruthaItem {
|
|
3238
|
+
readonly 'id': string;
|
|
3239
|
+
readonly 'number': string;
|
|
3240
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
3241
|
+
readonly 'description'?: string;
|
|
3242
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AmruthaItemType;
|
|
3243
|
+
readonly 'added_on': string;
|
|
3244
|
+
}
|
|
3245
|
+
|
|
3246
|
+
interface AmruthaItemForm {
|
|
3247
|
+
readonly 'number': string;
|
|
3248
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
3249
|
+
readonly 'description'?: string;
|
|
3250
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AmruthaItemType;
|
|
3251
|
+
readonly 'added_on': string;
|
|
3252
|
+
}
|
|
3253
|
+
|
|
3254
|
+
interface ChenglinItem {
|
|
3255
|
+
readonly 'id': string;
|
|
3256
|
+
readonly 'number': string;
|
|
3257
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
3258
|
+
readonly 'description'?: string;
|
|
3259
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.GabrielItemType;
|
|
3260
|
+
readonly 'added_on': string;
|
|
3261
|
+
}
|
|
3262
|
+
|
|
3263
|
+
interface ChenglinItemForm {
|
|
3264
|
+
readonly 'number': string;
|
|
3265
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
3266
|
+
readonly 'description'?: string;
|
|
3267
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.GabrielItemType;
|
|
3268
|
+
readonly 'added_on': string;
|
|
3269
|
+
}
|
|
3270
|
+
|
|
3271
|
+
interface GabrielItem {
|
|
3272
|
+
readonly 'id': string;
|
|
3273
|
+
readonly 'number': string;
|
|
3274
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
3275
|
+
readonly 'description'?: string;
|
|
3276
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.GabrielItemType;
|
|
3277
|
+
readonly 'added_on': string;
|
|
3278
|
+
}
|
|
3279
|
+
|
|
3280
|
+
interface GabrielItemForm {
|
|
3281
|
+
readonly 'number': string;
|
|
3282
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
3283
|
+
readonly 'description'?: string;
|
|
3284
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.GabrielItemType;
|
|
3285
|
+
readonly 'added_on': string;
|
|
3286
|
+
}
|
|
3287
|
+
|
|
3288
|
+
interface TechOnboardingDescription {
|
|
3289
|
+
readonly 'description': string;
|
|
3290
|
+
}
|
|
3291
|
+
}
|
|
3292
|
+
|
|
3229
3293
|
declare namespace io.flow.product.v0.models {
|
|
3230
3294
|
interface Product {
|
|
3231
3295
|
readonly 'organization_id': string;
|
|
@@ -3262,6 +3326,12 @@ declare namespace io.flow.ben.test.internal.v0.models {
|
|
|
3262
3326
|
readonly 'num_events': number;
|
|
3263
3327
|
}
|
|
3264
3328
|
|
|
3329
|
+
interface GenerateLoadRate {
|
|
3330
|
+
readonly 'organization_ids': string[];
|
|
3331
|
+
readonly 'events_per_second': number;
|
|
3332
|
+
readonly 'duration_seconds': number;
|
|
3333
|
+
}
|
|
3334
|
+
|
|
3265
3335
|
interface GenerateLoadSingleOrg {
|
|
3266
3336
|
readonly 'discriminator': 'generate_load_single_org';
|
|
3267
3337
|
readonly 'organization_id': string;
|
|
@@ -3339,7 +3409,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3339
3409
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
3340
3410
|
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
3341
3411
|
type Environment = 'sandbox' | 'production';
|
|
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';
|
|
3412
|
+
type EventType = 'test_upserted' | 'generate_load' | 'amrutha_item_upserted' | 'amrutha_item_deleted' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'item_inserted' | 'item_updated' | 'item_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'channel_shopify_order_state_upserted' | 'channel_shopify_order_state_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v3' | 'order_state_upserted' | 'order_state_deleted' | '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' | 'tariff_codes_upserted' | 'tariff_codes_deleted' | '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';
|
|
3343
3413
|
type ExceptionType = 'open' | 'closed';
|
|
3344
3414
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
3345
3415
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -3348,7 +3418,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3348
3418
|
type ExperienceStatus = 'draft' | 'active' | 'archiving' | 'archived';
|
|
3349
3419
|
type ExportStatus = 'created' | 'processing' | 'completed' | 'failed';
|
|
3350
3420
|
type ExporterOfRecord = 'flow' | 'organization';
|
|
3351
|
-
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'tax' | 'duty' | 'tax_and_duty' | 'product' | 'tax_and_duty_fx_diff' | 'fx' | 'processing' | 'rate_lock' | 'transfer' | 'negative_balance_guarantee' | 'sp';
|
|
3421
|
+
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'tax' | 'duty' | 'tax_and_duty' | 'product' | 'tax_and_duty_fx_diff' | 'fx' | 'processing' | 'rate_lock' | 'transfer' | 'negative_balance_guarantee' | 'sp' | 'rev_share';
|
|
3352
3422
|
type FlowBehavior = 'view_consumer_data';
|
|
3353
3423
|
type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can' | 'ge-usa' | 'ge-can' | 'ge-gbr' | 'ge-irl';
|
|
3354
3424
|
type FlowRole = 'organization_admin' | 'organization_merchant' | 'organization_customer_service' | 'organization_fulfillment' | 'organization_marketing' | 'organization_finance' | 'organization_classification' | 'flow_operations' | 'channel_admin' | 'channel_organization_admin';
|
|
@@ -3375,7 +3445,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3375
3445
|
type InvitationErrorCode = 'expired' | 'invalid_email';
|
|
3376
3446
|
type ItemAvailabilityStatus = 'available' | 'low' | 'out_of_stock';
|
|
3377
3447
|
type ItemIdentifier = 'item_number' | 'sku';
|
|
3378
|
-
type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'notification_requiring_crossdock' | 'flow_simulation_sync' | 'autogenerated';
|
|
3448
|
+
type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'notification_requiring_crossdock' | 'flow_simulation_sync' | 'autogenerated' | 'legacy_shopify_graphql_server';
|
|
3379
3449
|
type LabelTriggerMethod = 'autogenerated' | 'on_demand';
|
|
3380
3450
|
type LaneDirection = 'outbound' | 'return';
|
|
3381
3451
|
type LanePreselectPreference = 'lowest_cost' | 'default_tier';
|
|
@@ -3405,6 +3475,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3405
3475
|
type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product';
|
|
3406
3476
|
type OrderRefundSummaryIncludes = 'duties' | 'vat' | 'shipping';
|
|
3407
3477
|
type OrderRefundSummaryPartialCharged = 'per_item' | 'for_order' | 'by_value_percentage' | 'by_quantity_percentage';
|
|
3478
|
+
type OrderStateStatus = 'pending' | 'accepted' | 'rejected';
|
|
3408
3479
|
type OrderStatus = 'open' | 'submitted';
|
|
3409
3480
|
type OrderStorage = 'do_not_persist' | 'persist';
|
|
3410
3481
|
type OrderType = 'standard' | 'replacement' | 'edit';
|
|
@@ -3416,7 +3487,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3416
3487
|
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';
|
|
3417
3488
|
type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
|
|
3418
3489
|
type PaymentFailureCode = 'action_expired' | 'action_cancelled' | 'action_failed' | 'authorization_declined' | 'not_supported' | 'fraudulent' | 'error' | 'payment_checks_declined';
|
|
3419
|
-
type PaymentFeeType = 'fx' | 'mor' | 'sp';
|
|
3490
|
+
type PaymentFeeType = 'fx' | 'mor' | 'sp' | 'mor_tax';
|
|
3420
3491
|
type PaymentMethodCapability = 'credit' | 'debit';
|
|
3421
3492
|
type PaymentMethodDataOptionType = 'ideal_issuer_option';
|
|
3422
3493
|
type PaymentMethodRuleContentKey = 'description';
|
|
@@ -3441,6 +3512,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3441
3512
|
type PriceDetailKey = 'item_price' | 'margins' | 'vat' | 'duty' | 'rounding' | 'adjustment';
|
|
3442
3513
|
type PriceFacetBoundary = 'min' | 'max';
|
|
3443
3514
|
type PricingLevySetting = 'included' | 'displayed' | 'ignored';
|
|
3515
|
+
type PricingType = 'inclusive_pricing';
|
|
3444
3516
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
3445
3517
|
type ProvinceType = 'area' | 'city' | 'county' | 'department' | 'dependency' | 'district' | 'do_si' | 'emirate' | 'entity' | 'island' | 'municipality' | 'oblast' | 'outlying_area' | 'parish' | 'prefecture' | 'province' | 'state' | 'territory' | 'other';
|
|
3446
3518
|
type QuoteErrorCode = 'generic_error' | 'items_not_available' | 'shipping_unavailable';
|
|
@@ -3465,7 +3537,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3465
3537
|
type ScheduleExceptionStatus = 'Open' | 'Closed';
|
|
3466
3538
|
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
|
|
3467
3539
|
type SellabilityRequestStatus = 'commit';
|
|
3468
|
-
type SellabilityResultErrorCode = 'insufficient_details' | 'generic_error';
|
|
3540
|
+
type SellabilityResultErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable' | 'generic_error' | 'catalog_processing_threshold';
|
|
3469
3541
|
type SellabilityResultStatus = 'in_review' | 'succeeded' | 'failed';
|
|
3470
3542
|
type SellabilityScreeningMode = 'pre_onboarding' | 'default_on' | 'active';
|
|
3471
3543
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
@@ -3485,7 +3557,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3485
3557
|
type SurchargeResponsibleParty = 'organization' | 'customer';
|
|
3486
3558
|
type TaxApplicability = 'none' | 'all';
|
|
3487
3559
|
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';
|
|
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';
|
|
3560
|
+
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' | 'order_cancellation_without_capture';
|
|
3489
3561
|
type TaxJurisdictionType = 'country' | 'province';
|
|
3490
3562
|
type TaxReportType = 'consumer' | 'b2b';
|
|
3491
3563
|
type TaxType = 'vat' | 'gst' | 'hst' | 'pst' | 'qst' | 'sales_tax';
|
|
@@ -3502,7 +3574,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3502
3574
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired' | 'unknown' | 'unmapped';
|
|
3503
3575
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
3504
3576
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
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';
|
|
3577
|
+
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' | 'b2b_fee_mor_tax';
|
|
3506
3578
|
type TransferStatus = 'succeeded' | 'canceled';
|
|
3507
3579
|
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';
|
|
3508
3580
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
@@ -3950,6 +4022,20 @@ declare namespace io.flow.v0.models {
|
|
|
3950
4022
|
readonly 'margin': io.flow.v0.models.Money;
|
|
3951
4023
|
}
|
|
3952
4024
|
|
|
4025
|
+
interface AmruthaItemDeleted {
|
|
4026
|
+
readonly 'discriminator': 'amrutha_item_deleted';
|
|
4027
|
+
readonly 'event_id': string;
|
|
4028
|
+
readonly 'timestamp': string;
|
|
4029
|
+
readonly 'id': string;
|
|
4030
|
+
}
|
|
4031
|
+
|
|
4032
|
+
interface AmruthaItemUpserted {
|
|
4033
|
+
readonly 'discriminator': 'amrutha_item_upserted';
|
|
4034
|
+
readonly 'event_id': string;
|
|
4035
|
+
readonly 'timestamp': string;
|
|
4036
|
+
readonly 'item': io.flow.tech.onboarding.playground.v0.models.AmruthaItem;
|
|
4037
|
+
}
|
|
4038
|
+
|
|
3953
4039
|
interface AnalyticsExportType {
|
|
3954
4040
|
readonly 'discriminator': 'analytics_export_type';
|
|
3955
4041
|
readonly 'from'?: string;
|
|
@@ -4252,6 +4338,7 @@ declare namespace io.flow.v0.models {
|
|
|
4252
4338
|
readonly 'b2b_invoice_type': io.flow.v0.enums.B2BInvoiceType;
|
|
4253
4339
|
readonly 'center'?: io.flow.v0.models.ConsumerInvoiceCenterReference;
|
|
4254
4340
|
readonly 'order'?: io.flow.v0.models.ConsumerInvoiceOrderSummary;
|
|
4341
|
+
readonly 'voids_b2b_invoice'?: boolean;
|
|
4255
4342
|
}
|
|
4256
4343
|
|
|
4257
4344
|
interface B2BCreditMemoDeleted {
|
|
@@ -4348,6 +4435,18 @@ declare namespace io.flow.v0.models {
|
|
|
4348
4435
|
readonly 'iban': string;
|
|
4349
4436
|
}
|
|
4350
4437
|
|
|
4438
|
+
interface BankAccountInfoKor {
|
|
4439
|
+
readonly 'discriminator': 'kor';
|
|
4440
|
+
readonly 'name'?: string;
|
|
4441
|
+
readonly 'address'?: io.flow.v0.models.Address;
|
|
4442
|
+
readonly 'phone'?: string;
|
|
4443
|
+
readonly 'email'?: string;
|
|
4444
|
+
readonly 'bank_account_number': string;
|
|
4445
|
+
readonly 'bank_routing_number'?: string;
|
|
4446
|
+
readonly 'bank_name'?: string;
|
|
4447
|
+
readonly 'bank_address'?: io.flow.v0.models.Address;
|
|
4448
|
+
}
|
|
4449
|
+
|
|
4351
4450
|
interface BankAccountInfoUsa {
|
|
4352
4451
|
readonly 'discriminator': 'usa';
|
|
4353
4452
|
readonly 'routing_number': string;
|
|
@@ -5325,7 +5424,6 @@ declare namespace io.flow.v0.models {
|
|
|
5325
5424
|
readonly 'beneficiary_details'?: io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
5326
5425
|
readonly 'other_trade_sector'?: string;
|
|
5327
5426
|
readonly 'center_contact'?: io.flow.v0.models.OperationsContact;
|
|
5328
|
-
readonly 'center_address'?: io.flow.v0.models.Address;
|
|
5329
5427
|
readonly 'average_order_weight'?: number;
|
|
5330
5428
|
readonly 'average_order_weight_unit'?: io.flow.v0.enums.UnitOfMeasurement;
|
|
5331
5429
|
readonly 'package_dimensions'?: io.flow.v0.models.Dimension[];
|
|
@@ -5333,6 +5431,7 @@ declare namespace io.flow.v0.models {
|
|
|
5333
5431
|
readonly 'default_country_of_origin'?: string;
|
|
5334
5432
|
readonly 'rate_card': string;
|
|
5335
5433
|
readonly 'shop'?: io.flow.v0.models.Shop;
|
|
5434
|
+
readonly 'settlement_currency'?: string;
|
|
5336
5435
|
readonly 'created_at': string;
|
|
5337
5436
|
readonly 'last_year_xborder_gmv'?: io.flow.v0.models.Money;
|
|
5338
5437
|
readonly 'last_month_xborder_gmv'?: io.flow.v0.models.Money;
|
|
@@ -5353,7 +5452,6 @@ declare namespace io.flow.v0.models {
|
|
|
5353
5452
|
readonly 'beneficiary_details'?: io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
5354
5453
|
readonly 'other_trade_sector'?: string;
|
|
5355
5454
|
readonly 'center_contact'?: io.flow.v0.models.OperationsContact;
|
|
5356
|
-
readonly 'center_address'?: io.flow.v0.models.Address;
|
|
5357
5455
|
readonly 'average_order_weight'?: number;
|
|
5358
5456
|
readonly 'average_order_weight_unit'?: io.flow.v0.enums.UnitOfMeasurement;
|
|
5359
5457
|
readonly 'package_dimensions'?: io.flow.v0.models.Dimension[];
|
|
@@ -5362,6 +5460,7 @@ declare namespace io.flow.v0.models {
|
|
|
5362
5460
|
readonly 'monthly_average_number_transactions'?: number;
|
|
5363
5461
|
readonly 'default_country_of_origin'?: string;
|
|
5364
5462
|
readonly 'shop'?: io.flow.v0.models.Shop;
|
|
5463
|
+
readonly 'settlement_currency'?: string;
|
|
5365
5464
|
readonly 'rate_card'?: string;
|
|
5366
5465
|
readonly 'last_year_xborder_gmv'?: io.flow.v0.models.Money;
|
|
5367
5466
|
readonly 'last_month_xborder_gmv'?: io.flow.v0.models.Money;
|
|
@@ -7199,6 +7298,11 @@ declare namespace io.flow.v0.models {
|
|
|
7199
7298
|
readonly 'sort'?: string;
|
|
7200
7299
|
}
|
|
7201
7300
|
|
|
7301
|
+
interface HarmonizationTariffCode {
|
|
7302
|
+
readonly 'tariff_code': string;
|
|
7303
|
+
readonly 'destination': string;
|
|
7304
|
+
}
|
|
7305
|
+
|
|
7202
7306
|
interface HarmonizationTariffCodesExportType {
|
|
7203
7307
|
readonly 'discriminator': 'harmonization_tariff_codes_export_type';
|
|
7204
7308
|
readonly 'sort'?: string;
|
|
@@ -8585,6 +8689,7 @@ declare namespace io.flow.v0.models {
|
|
|
8585
8689
|
readonly 'company'?: string;
|
|
8586
8690
|
readonly 'email'?: string;
|
|
8587
8691
|
readonly 'phone'?: string;
|
|
8692
|
+
readonly 'address'?: io.flow.v0.models.Address;
|
|
8588
8693
|
}
|
|
8589
8694
|
|
|
8590
8695
|
interface OptionWeightEstimates {
|
|
@@ -8630,6 +8735,7 @@ declare namespace io.flow.v0.models {
|
|
|
8630
8735
|
readonly 'payment_source'?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
8631
8736
|
readonly 'edits'?: io.flow.v0.models.EditSummary[];
|
|
8632
8737
|
readonly 'rates'?: io.flow.v0.models.OrderRate[];
|
|
8738
|
+
readonly 'pricing_type'?: io.flow.v0.enums.PricingType;
|
|
8633
8739
|
}
|
|
8634
8740
|
|
|
8635
8741
|
interface OrderAddress {
|
|
@@ -9056,6 +9162,48 @@ declare namespace io.flow.v0.models {
|
|
|
9056
9162
|
readonly 'filename'?: string;
|
|
9057
9163
|
}
|
|
9058
9164
|
|
|
9165
|
+
interface OrderState {
|
|
9166
|
+
readonly 'id': string;
|
|
9167
|
+
readonly 'order_number': string;
|
|
9168
|
+
readonly 'external_order_reference': string;
|
|
9169
|
+
readonly 'payment_requests': io.flow.v0.models.PaymentRequestReference[];
|
|
9170
|
+
readonly 'status': io.flow.v0.enums.OrderStateStatus;
|
|
9171
|
+
readonly 'rejection_reasons'?: io.flow.v0.unions.OrderStateRejectionReason[];
|
|
9172
|
+
}
|
|
9173
|
+
|
|
9174
|
+
interface OrderStateDeleted {
|
|
9175
|
+
readonly 'discriminator': 'order_state_deleted';
|
|
9176
|
+
readonly 'event_id': string;
|
|
9177
|
+
readonly 'timestamp': string;
|
|
9178
|
+
readonly 'organization': string;
|
|
9179
|
+
readonly 'channel_id': string;
|
|
9180
|
+
readonly 'id': string;
|
|
9181
|
+
}
|
|
9182
|
+
|
|
9183
|
+
interface OrderStateRejectionReasonDomesticOrder {
|
|
9184
|
+
readonly 'discriminator': 'order_state_rejection_reason_domestic_order';
|
|
9185
|
+
readonly 'destination_address': io.flow.v0.models.Address;
|
|
9186
|
+
}
|
|
9187
|
+
|
|
9188
|
+
interface OrderStateRejectionReasonItemsEmpty {
|
|
9189
|
+
readonly 'discriminator': 'order_state_rejection_reason_items_empty';
|
|
9190
|
+
readonly 'line_items': string[];
|
|
9191
|
+
}
|
|
9192
|
+
|
|
9193
|
+
interface OrderStateRejectionReasonRestrictedItem {
|
|
9194
|
+
readonly 'discriminator': 'order_state_rejection_reason_restricted_item';
|
|
9195
|
+
readonly 'item_numbers': string[];
|
|
9196
|
+
}
|
|
9197
|
+
|
|
9198
|
+
interface OrderStateUpserted {
|
|
9199
|
+
readonly 'discriminator': 'order_state_upserted';
|
|
9200
|
+
readonly 'event_id': string;
|
|
9201
|
+
readonly 'timestamp': string;
|
|
9202
|
+
readonly 'organization': string;
|
|
9203
|
+
readonly 'channel_id': string;
|
|
9204
|
+
readonly 'order_state': io.flow.v0.models.OrderState;
|
|
9205
|
+
}
|
|
9206
|
+
|
|
9059
9207
|
interface OrderSubmissionForm {
|
|
9060
9208
|
readonly 'identifiers'?: io.flow.v0.models.OrderSubmissionIdentifierForm[];
|
|
9061
9209
|
}
|
|
@@ -10687,6 +10835,10 @@ declare namespace io.flow.v0.models {
|
|
|
10687
10835
|
readonly 'hs_code'?: string;
|
|
10688
10836
|
readonly 'restricted_regions_by_type'?: io.flow.v0.models.SellabilityRegionResult[];
|
|
10689
10837
|
readonly 'needs_action_attributes'?: io.flow.v0.models.NeedsActionAttributes[];
|
|
10838
|
+
readonly 'fingerprint'?: string;
|
|
10839
|
+
readonly 'restriction_created_at'?: string;
|
|
10840
|
+
readonly 'first_reviewed_at'?: string;
|
|
10841
|
+
readonly 'seconds_to_first_review'?: number;
|
|
10690
10842
|
}
|
|
10691
10843
|
|
|
10692
10844
|
interface ProductRestrictionResultDeleted {
|
|
@@ -10727,9 +10879,11 @@ declare namespace io.flow.v0.models {
|
|
|
10727
10879
|
}
|
|
10728
10880
|
|
|
10729
10881
|
interface ProductSellabilityResult {
|
|
10882
|
+
readonly 'id': string;
|
|
10730
10883
|
readonly 'merchant_id'?: string;
|
|
10731
10884
|
readonly 'product_id': string;
|
|
10732
10885
|
readonly 'restricted_regions': io.flow.v0.models.SellabilityRestrictedRegion[];
|
|
10886
|
+
readonly 'restricted_reasons': io.flow.v0.models.SellabilityRestrictedReason[];
|
|
10733
10887
|
readonly 'needs_action_attributes'?: io.flow.v0.models.SellabilityNeedsActionAttributes[];
|
|
10734
10888
|
readonly 'request_id'?: string;
|
|
10735
10889
|
readonly 'hs6_code'?: string;
|
|
@@ -10739,7 +10893,9 @@ declare namespace io.flow.v0.models {
|
|
|
10739
10893
|
readonly 'discriminator': 'product_sellability_result_deleted';
|
|
10740
10894
|
readonly 'event_id': string;
|
|
10741
10895
|
readonly 'timestamp': string;
|
|
10742
|
-
readonly 'organization'
|
|
10896
|
+
readonly 'organization'?: string;
|
|
10897
|
+
readonly 'merchant'?: string;
|
|
10898
|
+
readonly 'channel_id'?: string;
|
|
10743
10899
|
readonly 'id': string;
|
|
10744
10900
|
}
|
|
10745
10901
|
|
|
@@ -10747,7 +10903,9 @@ declare namespace io.flow.v0.models {
|
|
|
10747
10903
|
readonly 'discriminator': 'product_sellability_result_upserted';
|
|
10748
10904
|
readonly 'event_id': string;
|
|
10749
10905
|
readonly 'timestamp': string;
|
|
10750
|
-
readonly 'organization'
|
|
10906
|
+
readonly 'organization'?: string;
|
|
10907
|
+
readonly 'merchant'?: string;
|
|
10908
|
+
readonly 'channel_id'?: string;
|
|
10751
10909
|
readonly 'product_sellability_result': io.flow.v0.models.ProductSellabilityResult;
|
|
10752
10910
|
}
|
|
10753
10911
|
|
|
@@ -10977,6 +11135,12 @@ declare namespace io.flow.v0.models {
|
|
|
10977
11135
|
readonly 'name': string;
|
|
10978
11136
|
}
|
|
10979
11137
|
|
|
11138
|
+
interface RatecardData {
|
|
11139
|
+
readonly 'dhlParcelDistributionCenter'?: string;
|
|
11140
|
+
readonly 'glbeRatecardMetadataLaneIdentifier'?: string;
|
|
11141
|
+
readonly 'pickupCenter'?: string;
|
|
11142
|
+
}
|
|
11143
|
+
|
|
10980
11144
|
interface RatecardDeleted {
|
|
10981
11145
|
readonly 'discriminator': 'ratecard_deleted';
|
|
10982
11146
|
readonly 'event_id': string;
|
|
@@ -11077,7 +11241,7 @@ declare namespace io.flow.v0.models {
|
|
|
11077
11241
|
readonly 'glbe_shipping_method_id'?: string;
|
|
11078
11242
|
readonly 'glbe_proposition_name'?: string;
|
|
11079
11243
|
readonly 'channel_revenue_share_percentage'?: number;
|
|
11080
|
-
readonly 'data'?:
|
|
11244
|
+
readonly 'data'?: io.flow.v0.models.RatecardData;
|
|
11081
11245
|
}
|
|
11082
11246
|
|
|
11083
11247
|
interface RatecardLane {
|
|
@@ -11713,9 +11877,16 @@ declare namespace io.flow.v0.models {
|
|
|
11713
11877
|
interface SellabilityNeedsActionAttributes {
|
|
11714
11878
|
readonly 'reason_code': string;
|
|
11715
11879
|
readonly 'category_metafield_handles': string[];
|
|
11880
|
+
readonly 'category_metafield_ids': string[];
|
|
11716
11881
|
readonly 'require_msds'?: boolean;
|
|
11717
11882
|
}
|
|
11718
11883
|
|
|
11884
|
+
interface SellabilityReasonWithRegions {
|
|
11885
|
+
readonly 'reason': string;
|
|
11886
|
+
readonly 'regions': string[];
|
|
11887
|
+
readonly 'review_status'?: string;
|
|
11888
|
+
}
|
|
11889
|
+
|
|
11719
11890
|
interface SellabilityRegionResult {
|
|
11720
11891
|
readonly 'type': io.flow.v0.enums.RuleEffectType;
|
|
11721
11892
|
readonly 'regions': string[];
|
|
@@ -11726,14 +11897,19 @@ declare namespace io.flow.v0.models {
|
|
|
11726
11897
|
readonly 'reasons': string[];
|
|
11727
11898
|
}
|
|
11728
11899
|
|
|
11900
|
+
interface SellabilityRestrictedReason {
|
|
11901
|
+
readonly 'type': io.flow.v0.enums.RuleEffectType;
|
|
11902
|
+
readonly 'reasons_with_regions': io.flow.v0.models.SellabilityReasonWithRegions[];
|
|
11903
|
+
}
|
|
11904
|
+
|
|
11729
11905
|
interface SellabilityRestrictedRegion {
|
|
11730
11906
|
readonly 'type': io.flow.v0.enums.RuleEffectType;
|
|
11731
|
-
readonly '
|
|
11907
|
+
readonly 'regions': string[];
|
|
11732
11908
|
}
|
|
11733
11909
|
|
|
11734
11910
|
interface SellabilityScreening {
|
|
11735
11911
|
readonly 'discriminator': 'sellability_screening';
|
|
11736
|
-
readonly '
|
|
11912
|
+
readonly 'product_sellability_result'?: io.flow.v0.models.ProductSellabilityResult;
|
|
11737
11913
|
readonly 'request_id': string;
|
|
11738
11914
|
readonly 'status': io.flow.v0.enums.SellabilityResultStatus;
|
|
11739
11915
|
readonly 'error_code'?: io.flow.v0.enums.SellabilityResultErrorCode;
|
|
@@ -12423,6 +12599,7 @@ declare namespace io.flow.v0.models {
|
|
|
12423
12599
|
readonly 'activated_at'?: string;
|
|
12424
12600
|
readonly 'status_updated_at'?: string;
|
|
12425
12601
|
readonly 'shop'?: io.flow.v0.models.Shop;
|
|
12602
|
+
readonly 'settlement_currency'?: string;
|
|
12426
12603
|
readonly 'last_year_xborder_gmv'?: io.flow.v0.models.Money;
|
|
12427
12604
|
readonly 'last_month_xborder_gmv'?: io.flow.v0.models.Money;
|
|
12428
12605
|
readonly 'average_order_value'?: io.flow.v0.models.Money;
|
|
@@ -12456,6 +12633,7 @@ declare namespace io.flow.v0.models {
|
|
|
12456
12633
|
readonly 'ratecard_id'?: string;
|
|
12457
12634
|
readonly 'rate_card': string;
|
|
12458
12635
|
readonly 'shop'?: io.flow.v0.models.Shop;
|
|
12636
|
+
readonly 'settlement_currency'?: string;
|
|
12459
12637
|
readonly 'last_year_xborder_gmv'?: io.flow.v0.models.Money;
|
|
12460
12638
|
readonly 'last_month_xborder_gmv'?: io.flow.v0.models.Money;
|
|
12461
12639
|
readonly 'average_order_value'?: io.flow.v0.models.Money;
|
|
@@ -12759,6 +12937,29 @@ declare namespace io.flow.v0.models {
|
|
|
12759
12937
|
readonly 'available': io.flow.v0.models.SurchargeResponsiblePartyDisplay[];
|
|
12760
12938
|
}
|
|
12761
12939
|
|
|
12940
|
+
interface TariffCodes {
|
|
12941
|
+
readonly 'item_number': string;
|
|
12942
|
+
readonly 'product_id': string;
|
|
12943
|
+
readonly 'hs6_code': string;
|
|
12944
|
+
readonly 'codes': io.flow.v0.models.HarmonizationTariffCode[];
|
|
12945
|
+
}
|
|
12946
|
+
|
|
12947
|
+
interface TariffCodesDeleted {
|
|
12948
|
+
readonly 'discriminator': 'tariff_codes_deleted';
|
|
12949
|
+
readonly 'event_id': string;
|
|
12950
|
+
readonly 'timestamp': string;
|
|
12951
|
+
readonly 'organization': string;
|
|
12952
|
+
readonly 'id': string;
|
|
12953
|
+
}
|
|
12954
|
+
|
|
12955
|
+
interface TariffCodesUpserted {
|
|
12956
|
+
readonly 'discriminator': 'tariff_codes_upserted';
|
|
12957
|
+
readonly 'event_id': string;
|
|
12958
|
+
readonly 'timestamp': string;
|
|
12959
|
+
readonly 'organization': string;
|
|
12960
|
+
readonly 'tariff_codes': io.flow.v0.models.TariffCodes;
|
|
12961
|
+
}
|
|
12962
|
+
|
|
12762
12963
|
interface Tax {
|
|
12763
12964
|
readonly 'name': string;
|
|
12764
12965
|
readonly 'rate': number;
|
|
@@ -12912,6 +13113,8 @@ declare namespace io.flow.v0.models {
|
|
|
12912
13113
|
readonly 'discriminator': 'test_upserted';
|
|
12913
13114
|
readonly 'event_id': string;
|
|
12914
13115
|
readonly 'timestamp': string;
|
|
13116
|
+
readonly 'organization': string;
|
|
13117
|
+
readonly 'channel_id': string;
|
|
12915
13118
|
readonly 'test': io.flow.ben.test.internal.v0.models.Test;
|
|
12916
13119
|
}
|
|
12917
13120
|
|
|
@@ -13300,7 +13503,7 @@ declare namespace io.flow.v0.models {
|
|
|
13300
13503
|
readonly 'label_created_at': string;
|
|
13301
13504
|
readonly 'carrier_id': string;
|
|
13302
13505
|
readonly 'carrier_tracking_number': string;
|
|
13303
|
-
readonly 'revenue_share_percentage'
|
|
13506
|
+
readonly 'revenue_share_percentage'?: number;
|
|
13304
13507
|
readonly 'outbound'?: io.flow.v0.models.TransactionMetadataOutboundTransaction;
|
|
13305
13508
|
}
|
|
13306
13509
|
|
|
@@ -13340,6 +13543,19 @@ declare namespace io.flow.v0.models {
|
|
|
13340
13543
|
readonly 'description': string;
|
|
13341
13544
|
readonly 'original'?: io.flow.v0.models.TransactionMetadataOriginalTransaction;
|
|
13342
13545
|
readonly 'url'?: string;
|
|
13546
|
+
readonly 'recoup'?: boolean;
|
|
13547
|
+
}
|
|
13548
|
+
|
|
13549
|
+
interface TransactionMetadataMerchantFee {
|
|
13550
|
+
readonly 'discriminator': 'merchant_fee';
|
|
13551
|
+
readonly 'items': io.flow.v0.models.TransactionMetadataMerchantFeeItem[];
|
|
13552
|
+
}
|
|
13553
|
+
|
|
13554
|
+
interface TransactionMetadataMerchantFeeItem {
|
|
13555
|
+
readonly 'type': string;
|
|
13556
|
+
readonly 'amount': number;
|
|
13557
|
+
readonly 'local_amount'?: number;
|
|
13558
|
+
readonly 'description'?: string;
|
|
13343
13559
|
}
|
|
13344
13560
|
|
|
13345
13561
|
interface TransactionMetadataOriginalTransaction {
|
|
@@ -13762,7 +13978,7 @@ declare namespace io.flow.v0.unions {
|
|
|
13762
13978
|
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);
|
|
13763
13979
|
type AvailableFilter = (io.flow.v0.models.AvailableFilterStructured | io.flow.v0.models.AvailableFilterUnstructured);
|
|
13764
13980
|
type BankAccountForm = (io.flow.v0.models.BankAccountFormInfo | io.flow.v0.models.BankAccountFormSimple);
|
|
13765
|
-
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);
|
|
13981
|
+
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);
|
|
13766
13982
|
type BrowserActionConfiguration = (io.flow.v0.models.CardBrowserActionConfiguration);
|
|
13767
13983
|
type CardAuthorizationActionResult = (io.flow.v0.models.AuthorizationActionResultAdyenV3 | io.flow.v0.models.AuthorizationActionResultAdyenV4);
|
|
13768
13984
|
type CardNumber = (io.flow.v0.models.PaymentMethodCardNumberCleartext | io.flow.v0.models.PaymentMethodCardNumberCipher);
|
|
@@ -13779,7 +13995,7 @@ declare namespace io.flow.v0.unions {
|
|
|
13779
13995
|
type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
|
|
13780
13996
|
type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
|
|
13781
13997
|
type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
|
|
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);
|
|
13998
|
+
type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.AmruthaItemUpserted | io.flow.v0.models.AmruthaItemDeleted | 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.OrderStateUpserted | io.flow.v0.models.OrderStateDeleted | 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.TariffCodesUpserted | io.flow.v0.models.TariffCodesDeleted | 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);
|
|
13783
13999
|
type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary | io.flow.v0.models.ExternalCard);
|
|
13784
14000
|
type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
|
|
13785
14001
|
type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
|
|
@@ -13814,6 +14030,7 @@ declare namespace io.flow.v0.unions {
|
|
|
13814
14030
|
type OrderPromotion = (io.flow.v0.models.FreeShippingOrderPromotion);
|
|
13815
14031
|
type OrderPromotionForm = (io.flow.v0.models.FreeShippingOrderPromotionForm);
|
|
13816
14032
|
type OrderRefundSummaryForm = (io.flow.v0.models.OrderRefundSummaryFullForm | io.flow.v0.models.OrderRefundSummaryPartialForm);
|
|
14033
|
+
type OrderStateRejectionReason = (io.flow.v0.models.OrderStateRejectionReasonRestrictedItem | io.flow.v0.models.OrderStateRejectionReasonDomesticOrder | io.flow.v0.models.OrderStateRejectionReasonItemsEmpty);
|
|
13817
14034
|
type PartnerCenterFee = (io.flow.v0.models.CommercialInvoiceFee | io.flow.v0.models.InboundCartonFee | io.flow.v0.models.OutboundCartonFee);
|
|
13818
14035
|
type Payment = (io.flow.v0.models.PaymentPaypal | io.flow.v0.models.PaymentCryptopay);
|
|
13819
14036
|
type PaymentCaptureOption = (io.flow.v0.models.PaymentCaptureOptionAutomaticImmediate | io.flow.v0.models.PaymentCaptureOptionManual);
|
|
@@ -13870,7 +14087,7 @@ declare namespace io.flow.v0.unions {
|
|
|
13870
14087
|
type Token = (io.flow.v0.models.ChannelToken | io.flow.v0.models.OrganizationToken | io.flow.v0.models.OrganizationTokenV2 | io.flow.v0.models.PartnerToken);
|
|
13871
14088
|
type TokenReference = (io.flow.v0.models.ChannelTokenReference | io.flow.v0.models.OrganizationTokenReference | io.flow.v0.models.OrganizationTokenV2Reference | io.flow.v0.models.PartnerTokenReference);
|
|
13872
14089
|
type TransactionDetails = (io.flow.v0.models.TransactionDetailsCard);
|
|
13873
|
-
type TransactionMetadata = (io.flow.v0.models.TransactionMetadataShippingLabel | io.flow.v0.models.TransactionMetadataChannel | io.flow.v0.models.TransactionMetadataTrueup | io.flow.v0.models.TransactionMetadataTrueupBase | io.flow.v0.models.TransactionMetadataTrueupSurcharge | io.flow.v0.models.TransactionMetadataCarrierCharge | io.flow.v0.models.TransactionMetadataManual | io.flow.v0.models.TransactionMetadataFailedPayout | io.flow.v0.models.TransactionMetadataPaymentTransaction | io.flow.v0.models.TransactionMetadataTaxDuty);
|
|
14090
|
+
type TransactionMetadata = (io.flow.v0.models.TransactionMetadataShippingLabel | io.flow.v0.models.TransactionMetadataChannel | io.flow.v0.models.TransactionMetadataTrueup | io.flow.v0.models.TransactionMetadataTrueupBase | io.flow.v0.models.TransactionMetadataTrueupSurcharge | io.flow.v0.models.TransactionMetadataCarrierCharge | io.flow.v0.models.TransactionMetadataManual | io.flow.v0.models.TransactionMetadataFailedPayout | io.flow.v0.models.TransactionMetadataPaymentTransaction | io.flow.v0.models.TransactionMetadataTaxDuty | io.flow.v0.models.TransactionMetadataMerchantFee);
|
|
13874
14091
|
type TransferReference = (io.flow.v0.models.CaptureReference | io.flow.v0.models.RefundReference | io.flow.v0.models.DisputeReference);
|
|
13875
14092
|
}
|
|
13876
14093
|
|
|
@@ -13996,6 +14213,7 @@ export const orderPriceDetailKey: PropTypes.Requireable<io.flow.v0.enums.OrderPr
|
|
|
13996
14213
|
export const orderPriceFeeType: PropTypes.Requireable<io.flow.v0.enums.OrderPriceFeeType>;
|
|
13997
14214
|
export const orderRefundSummaryIncludes: PropTypes.Requireable<io.flow.v0.enums.OrderRefundSummaryIncludes>;
|
|
13998
14215
|
export const orderRefundSummaryPartialCharged: PropTypes.Requireable<io.flow.v0.enums.OrderRefundSummaryPartialCharged>;
|
|
14216
|
+
export const orderStateStatus: PropTypes.Requireable<io.flow.v0.enums.OrderStateStatus>;
|
|
13999
14217
|
export const orderStatus: PropTypes.Requireable<io.flow.v0.enums.OrderStatus>;
|
|
14000
14218
|
export const orderStorage: PropTypes.Requireable<io.flow.v0.enums.OrderStorage>;
|
|
14001
14219
|
export const orderType: PropTypes.Requireable<io.flow.v0.enums.OrderType>;
|
|
@@ -14032,6 +14250,7 @@ export const priceDetailComponentKey: PropTypes.Requireable<io.flow.v0.enums.Pri
|
|
|
14032
14250
|
export const priceDetailKey: PropTypes.Requireable<io.flow.v0.enums.PriceDetailKey>;
|
|
14033
14251
|
export const priceFacetBoundary: PropTypes.Requireable<io.flow.v0.enums.PriceFacetBoundary>;
|
|
14034
14252
|
export const pricingLevySetting: PropTypes.Requireable<io.flow.v0.enums.PricingLevySetting>;
|
|
14253
|
+
export const pricingType: PropTypes.Requireable<io.flow.v0.enums.PricingType>;
|
|
14035
14254
|
export const promotionTriggerType: PropTypes.Requireable<io.flow.v0.enums.PromotionTriggerType>;
|
|
14036
14255
|
export const provinceType: PropTypes.Requireable<io.flow.v0.enums.ProvinceType>;
|
|
14037
14256
|
export const quoteErrorCode: PropTypes.Requireable<io.flow.v0.enums.QuoteErrorCode>;
|
|
@@ -14168,6 +14387,8 @@ export const allocationUpsertedV2: PropTypes.Requireable<io.flow.v0.models.Alloc
|
|
|
14168
14387
|
export const allocationV2: PropTypes.Requireable<io.flow.v0.models.AllocationV2>;
|
|
14169
14388
|
export const amountMargin: PropTypes.Requireable<io.flow.v0.models.AmountMargin>;
|
|
14170
14389
|
export const amountMarginForm: PropTypes.Requireable<io.flow.v0.models.AmountMarginForm>;
|
|
14390
|
+
export const amruthaItemDeleted: PropTypes.Requireable<io.flow.v0.models.AmruthaItemDeleted>;
|
|
14391
|
+
export const amruthaItemUpserted: PropTypes.Requireable<io.flow.v0.models.AmruthaItemUpserted>;
|
|
14171
14392
|
export const analyticsExportType: PropTypes.Requireable<io.flow.v0.models.AnalyticsExportType>;
|
|
14172
14393
|
export const applePayMerchantValidationPayload: PropTypes.Requireable<io.flow.v0.models.ApplePayMerchantValidationPayload>;
|
|
14173
14394
|
export const applepaySdkCreateResultActionDetails: PropTypes.Requireable<io.flow.v0.models.ApplepaySdkCreateResultActionDetails>;
|
|
@@ -14222,6 +14443,7 @@ export const bankAccountInfoCan: PropTypes.Requireable<io.flow.v0.models.BankAcc
|
|
|
14222
14443
|
export const bankAccountInfoFra: PropTypes.Requireable<io.flow.v0.models.BankAccountInfoFra>;
|
|
14223
14444
|
export const bankAccountInfoGbr: PropTypes.Requireable<io.flow.v0.models.BankAccountInfoGbr>;
|
|
14224
14445
|
export const bankAccountInfoIta: PropTypes.Requireable<io.flow.v0.models.BankAccountInfoIta>;
|
|
14446
|
+
export const bankAccountInfoKor: PropTypes.Requireable<io.flow.v0.models.BankAccountInfoKor>;
|
|
14225
14447
|
export const bankAccountInfoUsa: PropTypes.Requireable<io.flow.v0.models.BankAccountInfoUsa>;
|
|
14226
14448
|
export const bankAccountReference: PropTypes.Requireable<io.flow.v0.models.BankAccountReference>;
|
|
14227
14449
|
export const bankAccountSummary: PropTypes.Requireable<io.flow.v0.models.BankAccountSummary>;
|
|
@@ -14623,6 +14845,7 @@ export const harmonizationDocument: PropTypes.Requireable<io.flow.v0.models.Harm
|
|
|
14623
14845
|
export const harmonizationHs10ExportType: PropTypes.Requireable<io.flow.v0.models.HarmonizationHs10ExportType>;
|
|
14624
14846
|
export const harmonizationHs6ExportType: PropTypes.Requireable<io.flow.v0.models.HarmonizationHs6ExportType>;
|
|
14625
14847
|
export const harmonizationOverviewExportType: PropTypes.Requireable<io.flow.v0.models.HarmonizationOverviewExportType>;
|
|
14848
|
+
export const harmonizationTariffCode: PropTypes.Requireable<io.flow.v0.models.HarmonizationTariffCode>;
|
|
14626
14849
|
export const harmonizationTariffCodesExportType: PropTypes.Requireable<io.flow.v0.models.HarmonizationTariffCodesExportType>;
|
|
14627
14850
|
export const harmonizedCategoryReference: PropTypes.Requireable<io.flow.v0.models.HarmonizedCategoryReference>;
|
|
14628
14851
|
export const harmonizedItem: PropTypes.Requireable<io.flow.v0.models.HarmonizedItem>;
|
|
@@ -14880,6 +15103,12 @@ export const orderRulesSummary: PropTypes.Requireable<io.flow.v0.models.OrderRul
|
|
|
14880
15103
|
export const orderServiceChange: PropTypes.Requireable<io.flow.v0.models.OrderServiceChange>;
|
|
14881
15104
|
export const orderServiceChangeForm: PropTypes.Requireable<io.flow.v0.models.OrderServiceChangeForm>;
|
|
14882
15105
|
export const orderServiceChangeRequestData: PropTypes.Requireable<io.flow.v0.models.OrderServiceChangeRequestData>;
|
|
15106
|
+
export const orderState: PropTypes.Requireable<io.flow.v0.models.OrderState>;
|
|
15107
|
+
export const orderStateDeleted: PropTypes.Requireable<io.flow.v0.models.OrderStateDeleted>;
|
|
15108
|
+
export const orderStateRejectionReasonDomesticOrder: PropTypes.Requireable<io.flow.v0.models.OrderStateRejectionReasonDomesticOrder>;
|
|
15109
|
+
export const orderStateRejectionReasonItemsEmpty: PropTypes.Requireable<io.flow.v0.models.OrderStateRejectionReasonItemsEmpty>;
|
|
15110
|
+
export const orderStateRejectionReasonRestrictedItem: PropTypes.Requireable<io.flow.v0.models.OrderStateRejectionReasonRestrictedItem>;
|
|
15111
|
+
export const orderStateUpserted: PropTypes.Requireable<io.flow.v0.models.OrderStateUpserted>;
|
|
14883
15112
|
export const orderSubmissionForm: PropTypes.Requireable<io.flow.v0.models.OrderSubmissionForm>;
|
|
14884
15113
|
export const orderSubmissionIdentifierForm: PropTypes.Requireable<io.flow.v0.models.OrderSubmissionIdentifierForm>;
|
|
14885
15114
|
export const orderSummary: PropTypes.Requireable<io.flow.v0.models.OrderSummary>;
|
|
@@ -15152,6 +15381,7 @@ export const rateUpsertedV3: PropTypes.Requireable<io.flow.v0.models.RateUpserte
|
|
|
15152
15381
|
export const rateVersion: PropTypes.Requireable<io.flow.v0.models.RateVersion>;
|
|
15153
15382
|
export const ratecard: PropTypes.Requireable<io.flow.v0.models.Ratecard>;
|
|
15154
15383
|
export const ratecardCarrierSummary: PropTypes.Requireable<io.flow.v0.models.RatecardCarrierSummary>;
|
|
15384
|
+
export const ratecardData: PropTypes.Requireable<io.flow.v0.models.RatecardData>;
|
|
15155
15385
|
export const ratecardDeleted: PropTypes.Requireable<io.flow.v0.models.RatecardDeleted>;
|
|
15156
15386
|
export const ratecardEstimateForm: PropTypes.Requireable<io.flow.v0.models.RatecardEstimateForm>;
|
|
15157
15387
|
export const ratecardEstimateSummaryForm: PropTypes.Requireable<io.flow.v0.models.RatecardEstimateSummaryForm>;
|
|
@@ -15248,8 +15478,10 @@ export const selectIssuerOptionActionDetails: PropTypes.Requireable<io.flow.v0.m
|
|
|
15248
15478
|
export const selfBillingAgreement: PropTypes.Requireable<io.flow.v0.models.SelfBillingAgreement>;
|
|
15249
15479
|
export const sellabilityError: PropTypes.Requireable<io.flow.v0.models.SellabilityError>;
|
|
15250
15480
|
export const sellabilityNeedsActionAttributes: PropTypes.Requireable<io.flow.v0.models.SellabilityNeedsActionAttributes>;
|
|
15481
|
+
export const sellabilityReasonWithRegions: PropTypes.Requireable<io.flow.v0.models.SellabilityReasonWithRegions>;
|
|
15251
15482
|
export const sellabilityRegionResult: PropTypes.Requireable<io.flow.v0.models.SellabilityRegionResult>;
|
|
15252
15483
|
export const sellabilityRegionWithReasons: PropTypes.Requireable<io.flow.v0.models.SellabilityRegionWithReasons>;
|
|
15484
|
+
export const sellabilityRestrictedReason: PropTypes.Requireable<io.flow.v0.models.SellabilityRestrictedReason>;
|
|
15253
15485
|
export const sellabilityRestrictedRegion: PropTypes.Requireable<io.flow.v0.models.SellabilityRestrictedRegion>;
|
|
15254
15486
|
export const sellabilityScreening: PropTypes.Requireable<io.flow.v0.models.SellabilityScreening>;
|
|
15255
15487
|
export const sellabilityScreeningForm: PropTypes.Requireable<io.flow.v0.models.SellabilityScreeningForm>;
|
|
@@ -15386,6 +15618,9 @@ export const summaryShippingNotificationForm: PropTypes.Requireable<io.flow.v0.m
|
|
|
15386
15618
|
export const surchargeResponsiblePartyDisplay: PropTypes.Requireable<io.flow.v0.models.SurchargeResponsiblePartyDisplay>;
|
|
15387
15619
|
export const surchargeSetting: PropTypes.Requireable<io.flow.v0.models.SurchargeSetting>;
|
|
15388
15620
|
export const surchargeSettingDisplay: PropTypes.Requireable<io.flow.v0.models.SurchargeSettingDisplay>;
|
|
15621
|
+
export const tariffCodes: PropTypes.Requireable<io.flow.v0.models.TariffCodes>;
|
|
15622
|
+
export const tariffCodesDeleted: PropTypes.Requireable<io.flow.v0.models.TariffCodesDeleted>;
|
|
15623
|
+
export const tariffCodesUpserted: PropTypes.Requireable<io.flow.v0.models.TariffCodesUpserted>;
|
|
15389
15624
|
export const tax: PropTypes.Requireable<io.flow.v0.models.Tax>;
|
|
15390
15625
|
export const taxBreakdown: PropTypes.Requireable<io.flow.v0.models.TaxBreakdown>;
|
|
15391
15626
|
export const taxDutyCalculatorValidationError: PropTypes.Requireable<io.flow.v0.models.TaxDutyCalculatorValidationError>;
|
|
@@ -15459,6 +15694,8 @@ export const transactionMetadataChannelOrganizationTransaction: PropTypes.Requir
|
|
|
15459
15694
|
export const transactionMetadataFailedPayout: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataFailedPayout>;
|
|
15460
15695
|
export const transactionMetadataFailedPayoutReference: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataFailedPayoutReference>;
|
|
15461
15696
|
export const transactionMetadataManual: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataManual>;
|
|
15697
|
+
export const transactionMetadataMerchantFee: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataMerchantFee>;
|
|
15698
|
+
export const transactionMetadataMerchantFeeItem: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataMerchantFeeItem>;
|
|
15462
15699
|
export const transactionMetadataOriginalTransaction: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataOriginalTransaction>;
|
|
15463
15700
|
export const transactionMetadataOutboundTransaction: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataOutboundTransaction>;
|
|
15464
15701
|
export const transactionMetadataPaymentTransaction: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataPaymentTransaction>;
|
|
@@ -15583,6 +15820,7 @@ export const orderNumberGenerator: PropTypes.Requireable<io.flow.v0.unions.Order
|
|
|
15583
15820
|
export const orderPromotion: PropTypes.Requireable<io.flow.v0.unions.OrderPromotion>;
|
|
15584
15821
|
export const orderPromotionForm: PropTypes.Requireable<io.flow.v0.unions.OrderPromotionForm>;
|
|
15585
15822
|
export const orderRefundSummaryForm: PropTypes.Requireable<io.flow.v0.unions.OrderRefundSummaryForm>;
|
|
15823
|
+
export const orderStateRejectionReason: PropTypes.Requireable<io.flow.v0.unions.OrderStateRejectionReason>;
|
|
15586
15824
|
export const partnerCenterFee: PropTypes.Requireable<io.flow.v0.unions.PartnerCenterFee>;
|
|
15587
15825
|
export const payment: PropTypes.Requireable<io.flow.v0.unions.Payment>;
|
|
15588
15826
|
export const paymentCaptureOption: PropTypes.Requireable<io.flow.v0.unions.PaymentCaptureOption>;
|