@flowio/api-prop-types 10.16.110 → 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 +235 -26
- package/lib/api.js +1 -1
- package/package.json +2 -3
- package/src/api.d.ts +235 -26
- package/src/api.js +285 -47
package/lib/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';
|
|
@@ -3466,7 +3537,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3466
3537
|
type ScheduleExceptionStatus = 'Open' | 'Closed';
|
|
3467
3538
|
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
|
|
3468
3539
|
type SellabilityRequestStatus = 'commit';
|
|
3469
|
-
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';
|
|
3470
3541
|
type SellabilityResultStatus = 'in_review' | 'succeeded' | 'failed';
|
|
3471
3542
|
type SellabilityScreeningMode = 'pre_onboarding' | 'default_on' | 'active';
|
|
3472
3543
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
@@ -3486,7 +3557,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3486
3557
|
type SurchargeResponsibleParty = 'organization' | 'customer';
|
|
3487
3558
|
type TaxApplicability = 'none' | 'all';
|
|
3488
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';
|
|
3489
|
-
type TaxDutyTransactionReasonCode = 'post_capture' | 'post_fulfilment' | 'manual_payment_or_gift_card' | 'order_edit' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'us_inbound_tax_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'full_refund_without_shipment' | 'unfulfilled_order_above_de_min';
|
|
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';
|
|
3490
3561
|
type TaxJurisdictionType = 'country' | 'province';
|
|
3491
3562
|
type TaxReportType = 'consumer' | 'b2b';
|
|
3492
3563
|
type TaxType = 'vat' | 'gst' | 'hst' | 'pst' | 'qst' | 'sales_tax';
|
|
@@ -3503,7 +3574,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3503
3574
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired' | 'unknown' | 'unmapped';
|
|
3504
3575
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
3505
3576
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
3506
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'duty_refund' | 'non_l4l_tax_duty_fx' | 'merchant_payout' | 'merchant_refund' | 'ge_revenue_share' | 'merchant_fee' | 'b2b_tax' | 'b2b_tax_refund';
|
|
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';
|
|
3507
3578
|
type TransferStatus = 'succeeded' | 'canceled';
|
|
3508
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';
|
|
3509
3580
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
@@ -3951,6 +4022,20 @@ declare namespace io.flow.v0.models {
|
|
|
3951
4022
|
readonly 'margin': io.flow.v0.models.Money;
|
|
3952
4023
|
}
|
|
3953
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
|
+
|
|
3954
4039
|
interface AnalyticsExportType {
|
|
3955
4040
|
readonly 'discriminator': 'analytics_export_type';
|
|
3956
4041
|
readonly 'from'?: string;
|
|
@@ -4253,6 +4338,7 @@ declare namespace io.flow.v0.models {
|
|
|
4253
4338
|
readonly 'b2b_invoice_type': io.flow.v0.enums.B2BInvoiceType;
|
|
4254
4339
|
readonly 'center'?: io.flow.v0.models.ConsumerInvoiceCenterReference;
|
|
4255
4340
|
readonly 'order'?: io.flow.v0.models.ConsumerInvoiceOrderSummary;
|
|
4341
|
+
readonly 'voids_b2b_invoice'?: boolean;
|
|
4256
4342
|
}
|
|
4257
4343
|
|
|
4258
4344
|
interface B2BCreditMemoDeleted {
|
|
@@ -5338,7 +5424,6 @@ declare namespace io.flow.v0.models {
|
|
|
5338
5424
|
readonly 'beneficiary_details'?: io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
5339
5425
|
readonly 'other_trade_sector'?: string;
|
|
5340
5426
|
readonly 'center_contact'?: io.flow.v0.models.OperationsContact;
|
|
5341
|
-
readonly 'center_address'?: io.flow.v0.models.Address;
|
|
5342
5427
|
readonly 'average_order_weight'?: number;
|
|
5343
5428
|
readonly 'average_order_weight_unit'?: io.flow.v0.enums.UnitOfMeasurement;
|
|
5344
5429
|
readonly 'package_dimensions'?: io.flow.v0.models.Dimension[];
|
|
@@ -5346,6 +5431,7 @@ declare namespace io.flow.v0.models {
|
|
|
5346
5431
|
readonly 'default_country_of_origin'?: string;
|
|
5347
5432
|
readonly 'rate_card': string;
|
|
5348
5433
|
readonly 'shop'?: io.flow.v0.models.Shop;
|
|
5434
|
+
readonly 'settlement_currency'?: string;
|
|
5349
5435
|
readonly 'created_at': string;
|
|
5350
5436
|
readonly 'last_year_xborder_gmv'?: io.flow.v0.models.Money;
|
|
5351
5437
|
readonly 'last_month_xborder_gmv'?: io.flow.v0.models.Money;
|
|
@@ -5366,7 +5452,6 @@ declare namespace io.flow.v0.models {
|
|
|
5366
5452
|
readonly 'beneficiary_details'?: io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
5367
5453
|
readonly 'other_trade_sector'?: string;
|
|
5368
5454
|
readonly 'center_contact'?: io.flow.v0.models.OperationsContact;
|
|
5369
|
-
readonly 'center_address'?: io.flow.v0.models.Address;
|
|
5370
5455
|
readonly 'average_order_weight'?: number;
|
|
5371
5456
|
readonly 'average_order_weight_unit'?: io.flow.v0.enums.UnitOfMeasurement;
|
|
5372
5457
|
readonly 'package_dimensions'?: io.flow.v0.models.Dimension[];
|
|
@@ -5375,6 +5460,7 @@ declare namespace io.flow.v0.models {
|
|
|
5375
5460
|
readonly 'monthly_average_number_transactions'?: number;
|
|
5376
5461
|
readonly 'default_country_of_origin'?: string;
|
|
5377
5462
|
readonly 'shop'?: io.flow.v0.models.Shop;
|
|
5463
|
+
readonly 'settlement_currency'?: string;
|
|
5378
5464
|
readonly 'rate_card'?: string;
|
|
5379
5465
|
readonly 'last_year_xborder_gmv'?: io.flow.v0.models.Money;
|
|
5380
5466
|
readonly 'last_month_xborder_gmv'?: io.flow.v0.models.Money;
|
|
@@ -7212,6 +7298,11 @@ declare namespace io.flow.v0.models {
|
|
|
7212
7298
|
readonly 'sort'?: string;
|
|
7213
7299
|
}
|
|
7214
7300
|
|
|
7301
|
+
interface HarmonizationTariffCode {
|
|
7302
|
+
readonly 'tariff_code': string;
|
|
7303
|
+
readonly 'destination': string;
|
|
7304
|
+
}
|
|
7305
|
+
|
|
7215
7306
|
interface HarmonizationTariffCodesExportType {
|
|
7216
7307
|
readonly 'discriminator': 'harmonization_tariff_codes_export_type';
|
|
7217
7308
|
readonly 'sort'?: string;
|
|
@@ -8598,6 +8689,7 @@ declare namespace io.flow.v0.models {
|
|
|
8598
8689
|
readonly 'company'?: string;
|
|
8599
8690
|
readonly 'email'?: string;
|
|
8600
8691
|
readonly 'phone'?: string;
|
|
8692
|
+
readonly 'address'?: io.flow.v0.models.Address;
|
|
8601
8693
|
}
|
|
8602
8694
|
|
|
8603
8695
|
interface OptionWeightEstimates {
|
|
@@ -9070,6 +9162,48 @@ declare namespace io.flow.v0.models {
|
|
|
9070
9162
|
readonly 'filename'?: string;
|
|
9071
9163
|
}
|
|
9072
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
|
+
|
|
9073
9207
|
interface OrderSubmissionForm {
|
|
9074
9208
|
readonly 'identifiers'?: io.flow.v0.models.OrderSubmissionIdentifierForm[];
|
|
9075
9209
|
}
|
|
@@ -10701,6 +10835,10 @@ declare namespace io.flow.v0.models {
|
|
|
10701
10835
|
readonly 'hs_code'?: string;
|
|
10702
10836
|
readonly 'restricted_regions_by_type'?: io.flow.v0.models.SellabilityRegionResult[];
|
|
10703
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;
|
|
10704
10842
|
}
|
|
10705
10843
|
|
|
10706
10844
|
interface ProductRestrictionResultDeleted {
|
|
@@ -10741,6 +10879,7 @@ declare namespace io.flow.v0.models {
|
|
|
10741
10879
|
}
|
|
10742
10880
|
|
|
10743
10881
|
interface ProductSellabilityResult {
|
|
10882
|
+
readonly 'id': string;
|
|
10744
10883
|
readonly 'merchant_id'?: string;
|
|
10745
10884
|
readonly 'product_id': string;
|
|
10746
10885
|
readonly 'restricted_regions': io.flow.v0.models.SellabilityRestrictedRegion[];
|
|
@@ -10754,7 +10893,9 @@ declare namespace io.flow.v0.models {
|
|
|
10754
10893
|
readonly 'discriminator': 'product_sellability_result_deleted';
|
|
10755
10894
|
readonly 'event_id': string;
|
|
10756
10895
|
readonly 'timestamp': string;
|
|
10757
|
-
readonly 'organization'
|
|
10896
|
+
readonly 'organization'?: string;
|
|
10897
|
+
readonly 'merchant'?: string;
|
|
10898
|
+
readonly 'channel_id'?: string;
|
|
10758
10899
|
readonly 'id': string;
|
|
10759
10900
|
}
|
|
10760
10901
|
|
|
@@ -10762,7 +10903,9 @@ declare namespace io.flow.v0.models {
|
|
|
10762
10903
|
readonly 'discriminator': 'product_sellability_result_upserted';
|
|
10763
10904
|
readonly 'event_id': string;
|
|
10764
10905
|
readonly 'timestamp': string;
|
|
10765
|
-
readonly 'organization'
|
|
10906
|
+
readonly 'organization'?: string;
|
|
10907
|
+
readonly 'merchant'?: string;
|
|
10908
|
+
readonly 'channel_id'?: string;
|
|
10766
10909
|
readonly 'product_sellability_result': io.flow.v0.models.ProductSellabilityResult;
|
|
10767
10910
|
}
|
|
10768
10911
|
|
|
@@ -10992,6 +11135,12 @@ declare namespace io.flow.v0.models {
|
|
|
10992
11135
|
readonly 'name': string;
|
|
10993
11136
|
}
|
|
10994
11137
|
|
|
11138
|
+
interface RatecardData {
|
|
11139
|
+
readonly 'dhlParcelDistributionCenter'?: string;
|
|
11140
|
+
readonly 'glbeRatecardMetadataLaneIdentifier'?: string;
|
|
11141
|
+
readonly 'pickupCenter'?: string;
|
|
11142
|
+
}
|
|
11143
|
+
|
|
10995
11144
|
interface RatecardDeleted {
|
|
10996
11145
|
readonly 'discriminator': 'ratecard_deleted';
|
|
10997
11146
|
readonly 'event_id': string;
|
|
@@ -11092,7 +11241,7 @@ declare namespace io.flow.v0.models {
|
|
|
11092
11241
|
readonly 'glbe_shipping_method_id'?: string;
|
|
11093
11242
|
readonly 'glbe_proposition_name'?: string;
|
|
11094
11243
|
readonly 'channel_revenue_share_percentage'?: number;
|
|
11095
|
-
readonly 'data'?:
|
|
11244
|
+
readonly 'data'?: io.flow.v0.models.RatecardData;
|
|
11096
11245
|
}
|
|
11097
11246
|
|
|
11098
11247
|
interface RatecardLane {
|
|
@@ -11728,12 +11877,14 @@ declare namespace io.flow.v0.models {
|
|
|
11728
11877
|
interface SellabilityNeedsActionAttributes {
|
|
11729
11878
|
readonly 'reason_code': string;
|
|
11730
11879
|
readonly 'category_metafield_handles': string[];
|
|
11880
|
+
readonly 'category_metafield_ids': string[];
|
|
11731
11881
|
readonly 'require_msds'?: boolean;
|
|
11732
11882
|
}
|
|
11733
11883
|
|
|
11734
11884
|
interface SellabilityReasonWithRegions {
|
|
11735
11885
|
readonly 'reason': string;
|
|
11736
11886
|
readonly 'regions': string[];
|
|
11887
|
+
readonly 'review_status'?: string;
|
|
11737
11888
|
}
|
|
11738
11889
|
|
|
11739
11890
|
interface SellabilityRegionResult {
|
|
@@ -12448,6 +12599,7 @@ declare namespace io.flow.v0.models {
|
|
|
12448
12599
|
readonly 'activated_at'?: string;
|
|
12449
12600
|
readonly 'status_updated_at'?: string;
|
|
12450
12601
|
readonly 'shop'?: io.flow.v0.models.Shop;
|
|
12602
|
+
readonly 'settlement_currency'?: string;
|
|
12451
12603
|
readonly 'last_year_xborder_gmv'?: io.flow.v0.models.Money;
|
|
12452
12604
|
readonly 'last_month_xborder_gmv'?: io.flow.v0.models.Money;
|
|
12453
12605
|
readonly 'average_order_value'?: io.flow.v0.models.Money;
|
|
@@ -12481,6 +12633,7 @@ declare namespace io.flow.v0.models {
|
|
|
12481
12633
|
readonly 'ratecard_id'?: string;
|
|
12482
12634
|
readonly 'rate_card': string;
|
|
12483
12635
|
readonly 'shop'?: io.flow.v0.models.Shop;
|
|
12636
|
+
readonly 'settlement_currency'?: string;
|
|
12484
12637
|
readonly 'last_year_xborder_gmv'?: io.flow.v0.models.Money;
|
|
12485
12638
|
readonly 'last_month_xborder_gmv'?: io.flow.v0.models.Money;
|
|
12486
12639
|
readonly 'average_order_value'?: io.flow.v0.models.Money;
|
|
@@ -12784,6 +12937,29 @@ declare namespace io.flow.v0.models {
|
|
|
12784
12937
|
readonly 'available': io.flow.v0.models.SurchargeResponsiblePartyDisplay[];
|
|
12785
12938
|
}
|
|
12786
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
|
+
|
|
12787
12963
|
interface Tax {
|
|
12788
12964
|
readonly 'name': string;
|
|
12789
12965
|
readonly 'rate': number;
|
|
@@ -12937,6 +13113,8 @@ declare namespace io.flow.v0.models {
|
|
|
12937
13113
|
readonly 'discriminator': 'test_upserted';
|
|
12938
13114
|
readonly 'event_id': string;
|
|
12939
13115
|
readonly 'timestamp': string;
|
|
13116
|
+
readonly 'organization': string;
|
|
13117
|
+
readonly 'channel_id': string;
|
|
12940
13118
|
readonly 'test': io.flow.ben.test.internal.v0.models.Test;
|
|
12941
13119
|
}
|
|
12942
13120
|
|
|
@@ -13325,7 +13503,7 @@ declare namespace io.flow.v0.models {
|
|
|
13325
13503
|
readonly 'label_created_at': string;
|
|
13326
13504
|
readonly 'carrier_id': string;
|
|
13327
13505
|
readonly 'carrier_tracking_number': string;
|
|
13328
|
-
readonly 'revenue_share_percentage'
|
|
13506
|
+
readonly 'revenue_share_percentage'?: number;
|
|
13329
13507
|
readonly 'outbound'?: io.flow.v0.models.TransactionMetadataOutboundTransaction;
|
|
13330
13508
|
}
|
|
13331
13509
|
|
|
@@ -13365,6 +13543,19 @@ declare namespace io.flow.v0.models {
|
|
|
13365
13543
|
readonly 'description': string;
|
|
13366
13544
|
readonly 'original'?: io.flow.v0.models.TransactionMetadataOriginalTransaction;
|
|
13367
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;
|
|
13368
13559
|
}
|
|
13369
13560
|
|
|
13370
13561
|
interface TransactionMetadataOriginalTransaction {
|
|
@@ -13804,7 +13995,7 @@ declare namespace io.flow.v0.unions {
|
|
|
13804
13995
|
type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
|
|
13805
13996
|
type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
|
|
13806
13997
|
type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
|
|
13807
|
-
type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ItemInserted | io.flow.v0.models.ItemUpdated | io.flow.v0.models.ItemDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.ChannelShopifyOrderStateUpserted | io.flow.v0.models.ChannelShopifyOrderStateDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.GeItemInserted | io.flow.v0.models.GeItemUpdated | io.flow.v0.models.GeItemDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LabelProcessingModificationUpserted | io.flow.v0.models.LabelProcessingModificationDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.TaxRegistrationUpserted | io.flow.v0.models.TaxRegistrationDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.AuthorizationRetryUpserted | io.flow.v0.models.AuthorizationRetryDeleted | io.flow.v0.models.TransferUpserted | io.flow.v0.models.TransferDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.ProductInserted | io.flow.v0.models.ProductUpdated | io.flow.v0.models.ProductDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ProductSellabilityResultUpserted | io.flow.v0.models.ProductSellabilityResultDeleted | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted | io.flow.v0.models.TrackingLabelEventUpsertedV2);
|
|
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);
|
|
13808
13999
|
type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary | io.flow.v0.models.ExternalCard);
|
|
13809
14000
|
type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
|
|
13810
14001
|
type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
|
|
@@ -13839,6 +14030,7 @@ declare namespace io.flow.v0.unions {
|
|
|
13839
14030
|
type OrderPromotion = (io.flow.v0.models.FreeShippingOrderPromotion);
|
|
13840
14031
|
type OrderPromotionForm = (io.flow.v0.models.FreeShippingOrderPromotionForm);
|
|
13841
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);
|
|
13842
14034
|
type PartnerCenterFee = (io.flow.v0.models.CommercialInvoiceFee | io.flow.v0.models.InboundCartonFee | io.flow.v0.models.OutboundCartonFee);
|
|
13843
14035
|
type Payment = (io.flow.v0.models.PaymentPaypal | io.flow.v0.models.PaymentCryptopay);
|
|
13844
14036
|
type PaymentCaptureOption = (io.flow.v0.models.PaymentCaptureOptionAutomaticImmediate | io.flow.v0.models.PaymentCaptureOptionManual);
|
|
@@ -13895,7 +14087,7 @@ declare namespace io.flow.v0.unions {
|
|
|
13895
14087
|
type Token = (io.flow.v0.models.ChannelToken | io.flow.v0.models.OrganizationToken | io.flow.v0.models.OrganizationTokenV2 | io.flow.v0.models.PartnerToken);
|
|
13896
14088
|
type TokenReference = (io.flow.v0.models.ChannelTokenReference | io.flow.v0.models.OrganizationTokenReference | io.flow.v0.models.OrganizationTokenV2Reference | io.flow.v0.models.PartnerTokenReference);
|
|
13897
14089
|
type TransactionDetails = (io.flow.v0.models.TransactionDetailsCard);
|
|
13898
|
-
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);
|
|
13899
14091
|
type TransferReference = (io.flow.v0.models.CaptureReference | io.flow.v0.models.RefundReference | io.flow.v0.models.DisputeReference);
|
|
13900
14092
|
}
|
|
13901
14093
|
|
|
@@ -14021,6 +14213,7 @@ export const orderPriceDetailKey: PropTypes.Requireable<io.flow.v0.enums.OrderPr
|
|
|
14021
14213
|
export const orderPriceFeeType: PropTypes.Requireable<io.flow.v0.enums.OrderPriceFeeType>;
|
|
14022
14214
|
export const orderRefundSummaryIncludes: PropTypes.Requireable<io.flow.v0.enums.OrderRefundSummaryIncludes>;
|
|
14023
14215
|
export const orderRefundSummaryPartialCharged: PropTypes.Requireable<io.flow.v0.enums.OrderRefundSummaryPartialCharged>;
|
|
14216
|
+
export const orderStateStatus: PropTypes.Requireable<io.flow.v0.enums.OrderStateStatus>;
|
|
14024
14217
|
export const orderStatus: PropTypes.Requireable<io.flow.v0.enums.OrderStatus>;
|
|
14025
14218
|
export const orderStorage: PropTypes.Requireable<io.flow.v0.enums.OrderStorage>;
|
|
14026
14219
|
export const orderType: PropTypes.Requireable<io.flow.v0.enums.OrderType>;
|
|
@@ -14194,6 +14387,8 @@ export const allocationUpsertedV2: PropTypes.Requireable<io.flow.v0.models.Alloc
|
|
|
14194
14387
|
export const allocationV2: PropTypes.Requireable<io.flow.v0.models.AllocationV2>;
|
|
14195
14388
|
export const amountMargin: PropTypes.Requireable<io.flow.v0.models.AmountMargin>;
|
|
14196
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>;
|
|
14197
14392
|
export const analyticsExportType: PropTypes.Requireable<io.flow.v0.models.AnalyticsExportType>;
|
|
14198
14393
|
export const applePayMerchantValidationPayload: PropTypes.Requireable<io.flow.v0.models.ApplePayMerchantValidationPayload>;
|
|
14199
14394
|
export const applepaySdkCreateResultActionDetails: PropTypes.Requireable<io.flow.v0.models.ApplepaySdkCreateResultActionDetails>;
|
|
@@ -14650,6 +14845,7 @@ export const harmonizationDocument: PropTypes.Requireable<io.flow.v0.models.Harm
|
|
|
14650
14845
|
export const harmonizationHs10ExportType: PropTypes.Requireable<io.flow.v0.models.HarmonizationHs10ExportType>;
|
|
14651
14846
|
export const harmonizationHs6ExportType: PropTypes.Requireable<io.flow.v0.models.HarmonizationHs6ExportType>;
|
|
14652
14847
|
export const harmonizationOverviewExportType: PropTypes.Requireable<io.flow.v0.models.HarmonizationOverviewExportType>;
|
|
14848
|
+
export const harmonizationTariffCode: PropTypes.Requireable<io.flow.v0.models.HarmonizationTariffCode>;
|
|
14653
14849
|
export const harmonizationTariffCodesExportType: PropTypes.Requireable<io.flow.v0.models.HarmonizationTariffCodesExportType>;
|
|
14654
14850
|
export const harmonizedCategoryReference: PropTypes.Requireable<io.flow.v0.models.HarmonizedCategoryReference>;
|
|
14655
14851
|
export const harmonizedItem: PropTypes.Requireable<io.flow.v0.models.HarmonizedItem>;
|
|
@@ -14907,6 +15103,12 @@ export const orderRulesSummary: PropTypes.Requireable<io.flow.v0.models.OrderRul
|
|
|
14907
15103
|
export const orderServiceChange: PropTypes.Requireable<io.flow.v0.models.OrderServiceChange>;
|
|
14908
15104
|
export const orderServiceChangeForm: PropTypes.Requireable<io.flow.v0.models.OrderServiceChangeForm>;
|
|
14909
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>;
|
|
14910
15112
|
export const orderSubmissionForm: PropTypes.Requireable<io.flow.v0.models.OrderSubmissionForm>;
|
|
14911
15113
|
export const orderSubmissionIdentifierForm: PropTypes.Requireable<io.flow.v0.models.OrderSubmissionIdentifierForm>;
|
|
14912
15114
|
export const orderSummary: PropTypes.Requireable<io.flow.v0.models.OrderSummary>;
|
|
@@ -15179,6 +15381,7 @@ export const rateUpsertedV3: PropTypes.Requireable<io.flow.v0.models.RateUpserte
|
|
|
15179
15381
|
export const rateVersion: PropTypes.Requireable<io.flow.v0.models.RateVersion>;
|
|
15180
15382
|
export const ratecard: PropTypes.Requireable<io.flow.v0.models.Ratecard>;
|
|
15181
15383
|
export const ratecardCarrierSummary: PropTypes.Requireable<io.flow.v0.models.RatecardCarrierSummary>;
|
|
15384
|
+
export const ratecardData: PropTypes.Requireable<io.flow.v0.models.RatecardData>;
|
|
15182
15385
|
export const ratecardDeleted: PropTypes.Requireable<io.flow.v0.models.RatecardDeleted>;
|
|
15183
15386
|
export const ratecardEstimateForm: PropTypes.Requireable<io.flow.v0.models.RatecardEstimateForm>;
|
|
15184
15387
|
export const ratecardEstimateSummaryForm: PropTypes.Requireable<io.flow.v0.models.RatecardEstimateSummaryForm>;
|
|
@@ -15415,6 +15618,9 @@ export const summaryShippingNotificationForm: PropTypes.Requireable<io.flow.v0.m
|
|
|
15415
15618
|
export const surchargeResponsiblePartyDisplay: PropTypes.Requireable<io.flow.v0.models.SurchargeResponsiblePartyDisplay>;
|
|
15416
15619
|
export const surchargeSetting: PropTypes.Requireable<io.flow.v0.models.SurchargeSetting>;
|
|
15417
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>;
|
|
15418
15624
|
export const tax: PropTypes.Requireable<io.flow.v0.models.Tax>;
|
|
15419
15625
|
export const taxBreakdown: PropTypes.Requireable<io.flow.v0.models.TaxBreakdown>;
|
|
15420
15626
|
export const taxDutyCalculatorValidationError: PropTypes.Requireable<io.flow.v0.models.TaxDutyCalculatorValidationError>;
|
|
@@ -15488,6 +15694,8 @@ export const transactionMetadataChannelOrganizationTransaction: PropTypes.Requir
|
|
|
15488
15694
|
export const transactionMetadataFailedPayout: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataFailedPayout>;
|
|
15489
15695
|
export const transactionMetadataFailedPayoutReference: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataFailedPayoutReference>;
|
|
15490
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>;
|
|
15491
15699
|
export const transactionMetadataOriginalTransaction: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataOriginalTransaction>;
|
|
15492
15700
|
export const transactionMetadataOutboundTransaction: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataOutboundTransaction>;
|
|
15493
15701
|
export const transactionMetadataPaymentTransaction: PropTypes.Requireable<io.flow.v0.models.TransactionMetadataPaymentTransaction>;
|
|
@@ -15612,6 +15820,7 @@ export const orderNumberGenerator: PropTypes.Requireable<io.flow.v0.unions.Order
|
|
|
15612
15820
|
export const orderPromotion: PropTypes.Requireable<io.flow.v0.unions.OrderPromotion>;
|
|
15613
15821
|
export const orderPromotionForm: PropTypes.Requireable<io.flow.v0.unions.OrderPromotionForm>;
|
|
15614
15822
|
export const orderRefundSummaryForm: PropTypes.Requireable<io.flow.v0.unions.OrderRefundSummaryForm>;
|
|
15823
|
+
export const orderStateRejectionReason: PropTypes.Requireable<io.flow.v0.unions.OrderStateRejectionReason>;
|
|
15615
15824
|
export const partnerCenterFee: PropTypes.Requireable<io.flow.v0.unions.PartnerCenterFee>;
|
|
15616
15825
|
export const payment: PropTypes.Requireable<io.flow.v0.unions.Payment>;
|
|
15617
15826
|
export const paymentCaptureOption: PropTypes.Requireable<io.flow.v0.unions.PaymentCaptureOption>;
|