@flowio/types 11.24.135 → 11.24.137
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/dist/api-internal.d.ts +487 -87
- package/dist/api.d.ts +131 -32
- package/package.json +1 -1
- package/src/api-internal.ts +634 -117
- package/src/api.ts +165 -31
package/dist/api.d.ts
CHANGED
|
@@ -1345,6 +1345,9 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1345
1345
|
interface Count {
|
|
1346
1346
|
readonly count: number;
|
|
1347
1347
|
}
|
|
1348
|
+
interface GraphqlInferredProductCategory {
|
|
1349
|
+
readonly category?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
|
|
1350
|
+
}
|
|
1348
1351
|
interface GraphqlInventoryItem {
|
|
1349
1352
|
readonly id: string;
|
|
1350
1353
|
readonly tracked: boolean;
|
|
@@ -1380,7 +1383,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1380
1383
|
readonly id: string;
|
|
1381
1384
|
readonly legacyResourceId: string;
|
|
1382
1385
|
readonly handle: string;
|
|
1383
|
-
readonly variants
|
|
1386
|
+
readonly variants?: io.flow.shopify.external.v0.models.GraphqlProductVariant[];
|
|
1384
1387
|
readonly images: io.flow.shopify.external.v0.models.GraphqlProductImage[];
|
|
1385
1388
|
readonly title: string;
|
|
1386
1389
|
readonly vendor?: string;
|
|
@@ -1395,6 +1398,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1395
1398
|
readonly updatedAt: string;
|
|
1396
1399
|
readonly hasVariantsThatRequiresComponents?: boolean;
|
|
1397
1400
|
readonly category?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
|
|
1401
|
+
readonly inferredProductCategory?: io.flow.shopify.external.v0.models.GraphqlInferredProductCategory;
|
|
1398
1402
|
readonly metafields?: io.flow.shopify.external.v0.models.GraphqlMetafield[];
|
|
1399
1403
|
}
|
|
1400
1404
|
interface GraphqlProductImage {
|
|
@@ -1510,7 +1514,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1510
1514
|
interface Product {
|
|
1511
1515
|
readonly id: number;
|
|
1512
1516
|
readonly handle: string;
|
|
1513
|
-
readonly variants
|
|
1517
|
+
readonly variants?: io.flow.shopify.external.v0.models.ProductVariant[];
|
|
1514
1518
|
readonly images: io.flow.shopify.external.v0.models.ProductImage[];
|
|
1515
1519
|
readonly title: string;
|
|
1516
1520
|
readonly vendor?: string;
|
|
@@ -1679,7 +1683,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1679
1683
|
readonly title: string;
|
|
1680
1684
|
}
|
|
1681
1685
|
interface ShopifyClientDetail {
|
|
1682
|
-
readonly accept_language
|
|
1686
|
+
readonly accept_language?: boolean;
|
|
1683
1687
|
readonly browser_height?: number;
|
|
1684
1688
|
readonly browser_ip?: string;
|
|
1685
1689
|
readonly browser_width?: number;
|
|
@@ -1698,7 +1702,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1698
1702
|
readonly tax_exempt: boolean;
|
|
1699
1703
|
readonly verified_email: boolean;
|
|
1700
1704
|
readonly state: io.flow.shopify.external.v0.enums.ShopifyCustomerState;
|
|
1701
|
-
readonly accepts_marketing
|
|
1705
|
+
readonly accepts_marketing?: boolean;
|
|
1702
1706
|
readonly default_address?: any;
|
|
1703
1707
|
readonly email?: string;
|
|
1704
1708
|
readonly first_name?: string;
|
|
@@ -1770,7 +1774,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1770
1774
|
readonly requires_shipping: boolean;
|
|
1771
1775
|
readonly currency?: string;
|
|
1772
1776
|
readonly items: io.flow.shopify.external.v0.models.ShopifyExternalCartItem[];
|
|
1773
|
-
readonly cart_level_discount_applications
|
|
1777
|
+
readonly cart_level_discount_applications?: io.flow.shopify.external.v0.models.ShopifyDiscountApplication[];
|
|
1774
1778
|
}
|
|
1775
1779
|
interface ShopifyExternalCartItem {
|
|
1776
1780
|
readonly id: number;
|
|
@@ -1784,7 +1788,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1784
1788
|
readonly original_line_price: number;
|
|
1785
1789
|
readonly total_discount: number;
|
|
1786
1790
|
readonly discounted_price: number;
|
|
1787
|
-
readonly discounts
|
|
1791
|
+
readonly discounts?: io.flow.shopify.external.v0.models.ShopifyCartItemDiscount[];
|
|
1788
1792
|
readonly taxable: boolean;
|
|
1789
1793
|
readonly quantity: number;
|
|
1790
1794
|
readonly sku?: string;
|
|
@@ -1802,8 +1806,8 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1802
1806
|
readonly product_description?: string;
|
|
1803
1807
|
readonly product_type: string;
|
|
1804
1808
|
readonly variant_title?: string;
|
|
1805
|
-
readonly variant_options
|
|
1806
|
-
readonly line_level_discount_allocations
|
|
1809
|
+
readonly variant_options?: string[];
|
|
1810
|
+
readonly line_level_discount_allocations?: io.flow.shopify.external.v0.models.ShopifyLineLevelDiscountAllocation[];
|
|
1807
1811
|
}
|
|
1808
1812
|
interface ShopifyFulfillment {
|
|
1809
1813
|
readonly location_id: number;
|
|
@@ -2032,7 +2036,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
2032
2036
|
readonly gateway?: string;
|
|
2033
2037
|
readonly transactions?: io.flow.shopify.external.v0.models.ShopifyTransactionForm[];
|
|
2034
2038
|
readonly send_receipt?: boolean;
|
|
2035
|
-
readonly metafields
|
|
2039
|
+
readonly metafields?: io.flow.shopify.external.v0.models.MetafieldForm[];
|
|
2036
2040
|
}
|
|
2037
2041
|
interface ShopifyOrderCount {
|
|
2038
2042
|
readonly count: number;
|
|
@@ -2157,7 +2161,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
2157
2161
|
}
|
|
2158
2162
|
interface ShopifyWebhookOrder {
|
|
2159
2163
|
readonly id?: number;
|
|
2160
|
-
readonly line_items
|
|
2164
|
+
readonly line_items?: io.flow.shopify.external.v0.models.ShopifyWebhookOrderLineItem[];
|
|
2161
2165
|
}
|
|
2162
2166
|
interface ShopifyWebhookOrderCancelled {
|
|
2163
2167
|
readonly id: number;
|
|
@@ -2210,7 +2214,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
2210
2214
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
2211
2215
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
2212
2216
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
2213
|
-
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing';
|
|
2217
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing' | 'organization_deactivated';
|
|
2214
2218
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
2215
2219
|
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
|
|
2216
2220
|
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
@@ -2300,6 +2304,13 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
2300
2304
|
interface ChannelOrganizationTokenBody {
|
|
2301
2305
|
readonly cleartext: string;
|
|
2302
2306
|
}
|
|
2307
|
+
interface ChannelShopStatistics {
|
|
2308
|
+
readonly id: string;
|
|
2309
|
+
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
2310
|
+
readonly initial_catalog_synced_at?: string;
|
|
2311
|
+
readonly catalog_sync_duration?: number;
|
|
2312
|
+
readonly catalog_products_count?: number;
|
|
2313
|
+
}
|
|
2303
2314
|
interface FlowChannelOrganization {
|
|
2304
2315
|
readonly placeholder?: string;
|
|
2305
2316
|
}
|
|
@@ -2409,7 +2420,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
2409
2420
|
}
|
|
2410
2421
|
interface DiscountForm {
|
|
2411
2422
|
readonly offer: io.flow.common.v0.unions.DiscountOffer;
|
|
2412
|
-
readonly target
|
|
2423
|
+
readonly target?: io.flow.common.v0.enums.DiscountTarget;
|
|
2413
2424
|
readonly label?: string;
|
|
2414
2425
|
}
|
|
2415
2426
|
interface DiscountOfferFixed {
|
|
@@ -2579,7 +2590,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
2579
2590
|
readonly parent?: io.flow.common.v0.models.OrganizationReference;
|
|
2580
2591
|
readonly defaults?: io.flow.common.v0.models.OrganizationDefaults;
|
|
2581
2592
|
readonly created_at?: string;
|
|
2582
|
-
readonly status
|
|
2593
|
+
readonly status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
2583
2594
|
readonly type?: io.flow.common.v0.enums.OrganizationType;
|
|
2584
2595
|
}
|
|
2585
2596
|
interface OrganizationDefaults {
|
|
@@ -2844,8 +2855,10 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
2844
2855
|
}
|
|
2845
2856
|
declare namespace io.flow.tech.onboarding.playground.v0.enums {
|
|
2846
2857
|
type AmruthaItemType = 'physical' | 'digital';
|
|
2858
|
+
type BojanaItemType = 'physical' | 'digital';
|
|
2847
2859
|
type ChenglinItemType = 'physical' | 'digital';
|
|
2848
2860
|
type GabrielItemType = 'physical' | 'digital';
|
|
2861
|
+
type RaveenaItemType = 'physical' | 'digital';
|
|
2849
2862
|
}
|
|
2850
2863
|
declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
2851
2864
|
interface AmruthaItem {
|
|
@@ -2863,6 +2876,21 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
|
2863
2876
|
readonly type: io.flow.tech.onboarding.playground.v0.enums.AmruthaItemType;
|
|
2864
2877
|
readonly added_on: string;
|
|
2865
2878
|
}
|
|
2879
|
+
interface BojanaItem {
|
|
2880
|
+
readonly id: string;
|
|
2881
|
+
readonly number: string;
|
|
2882
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
2883
|
+
readonly description?: string;
|
|
2884
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.BojanaItemType;
|
|
2885
|
+
readonly added_on: string;
|
|
2886
|
+
}
|
|
2887
|
+
interface BojanaItemForm {
|
|
2888
|
+
readonly number: string;
|
|
2889
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
2890
|
+
readonly description?: string;
|
|
2891
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.BojanaItemType;
|
|
2892
|
+
readonly added_on: string;
|
|
2893
|
+
}
|
|
2866
2894
|
interface ChenglinItem {
|
|
2867
2895
|
readonly id: string;
|
|
2868
2896
|
readonly number: string;
|
|
@@ -2893,6 +2921,21 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
|
2893
2921
|
readonly type: io.flow.tech.onboarding.playground.v0.enums.GabrielItemType;
|
|
2894
2922
|
readonly added_on: string;
|
|
2895
2923
|
}
|
|
2924
|
+
interface RaveenaItem {
|
|
2925
|
+
readonly id: string;
|
|
2926
|
+
readonly number: string;
|
|
2927
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
2928
|
+
readonly description?: string;
|
|
2929
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.RaveenaItemType;
|
|
2930
|
+
readonly added_on: string;
|
|
2931
|
+
}
|
|
2932
|
+
interface RaveenaItemForm {
|
|
2933
|
+
readonly number: string;
|
|
2934
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
2935
|
+
readonly description?: string;
|
|
2936
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.RaveenaItemType;
|
|
2937
|
+
readonly added_on: string;
|
|
2938
|
+
}
|
|
2896
2939
|
interface TechOnboardingDescription {
|
|
2897
2940
|
readonly description: string;
|
|
2898
2941
|
}
|
|
@@ -2902,6 +2945,7 @@ declare namespace io.flow.product.v0.models {
|
|
|
2902
2945
|
readonly organization_id: string;
|
|
2903
2946
|
readonly number: string;
|
|
2904
2947
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
2948
|
+
readonly inferred_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
2905
2949
|
readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
2906
2950
|
readonly item_numbers: string[];
|
|
2907
2951
|
readonly highest_value_item_number?: string;
|
|
@@ -3006,7 +3050,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3006
3050
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
3007
3051
|
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
3008
3052
|
type Environment = 'sandbox' | 'production';
|
|
3009
|
-
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';
|
|
3053
|
+
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' | 'fee_invoice_upserted' | 'fee_invoice_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';
|
|
3010
3054
|
type ExceptionType = 'open' | 'closed';
|
|
3011
3055
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
3012
3056
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -3016,8 +3060,9 @@ declare namespace io.flow.v0.enums {
|
|
|
3016
3060
|
type ExportStatus = 'created' | 'processing' | 'completed' | 'failed';
|
|
3017
3061
|
type ExporterOfRecord = 'flow' | 'organization';
|
|
3018
3062
|
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';
|
|
3063
|
+
type FeeInvoiceType = 'mor_invoice' | 'label_invoice' | 'mor_credit_memo' | 'label_credit_memo';
|
|
3019
3064
|
type FlowBehavior = 'view_consumer_data';
|
|
3020
|
-
type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can' | 'ge-usa' | 'ge-can' | 'ge-gbr' | 'ge-irl';
|
|
3065
|
+
type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can' | 'ge-usa' | 'ge-can' | 'ge-can-ship' | 'ge-gbr' | 'ge-irl';
|
|
3021
3066
|
type FlowRole = 'organization_admin' | 'organization_merchant' | 'organization_customer_service' | 'organization_fulfillment' | 'organization_marketing' | 'organization_finance' | 'organization_classification' | 'flow_operations' | 'channel_admin' | 'channel_organization_admin';
|
|
3022
3067
|
type FraudEmailRuleDecision = 'approved' | 'declined';
|
|
3023
3068
|
type FraudLiability = 'flow' | 'organization';
|
|
@@ -3069,7 +3114,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3069
3114
|
type OrderPaymentType = 'card' | 'online' | 'credit' | 'external' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
|
|
3070
3115
|
type OrderPriceDetailComponentKey = 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge' | 'tip';
|
|
3071
3116
|
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
3072
|
-
type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product';
|
|
3117
|
+
type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product' | 'mor_tax';
|
|
3073
3118
|
type OrderRefundSummaryIncludes = 'duties' | 'vat' | 'shipping';
|
|
3074
3119
|
type OrderRefundSummaryPartialCharged = 'per_item' | 'for_order' | 'by_value_percentage' | 'by_quantity_percentage';
|
|
3075
3120
|
type OrderStateStatus = 'pending' | 'accepted' | 'rejected';
|
|
@@ -3140,6 +3185,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3140
3185
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
3141
3186
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
3142
3187
|
type ShippingConfigurationType = 'default' | 'variant';
|
|
3188
|
+
type ShippingCostGuarantee = 'guaranteed' | 'non_guaranteed';
|
|
3143
3189
|
type ShippingLabelErrorCode = 'generic_error' | 'cancelled_order' | 'carrier_outage' | 'catalog_issue' | 'invalid_destination' | 'invalid_origin' | 'invalid_shipping_parameters' | 'merchant_error' | 'order_not_found' | 'order_processing' | 'restricted_item' | 'unsupported_lane';
|
|
3144
3190
|
type ShopifyGrant = 'customer' | 'discount' | 'gift_card' | 'metafield' | 'order';
|
|
3145
3191
|
type ShopifyLocalizationMethod = 'api' | 'ssr';
|
|
@@ -3152,6 +3198,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3152
3198
|
type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
|
|
3153
3199
|
type SubstatusCode = 'Delivered_001' | 'Delivered_002' | 'Delivered_003' | 'Delivered_004' | 'AvailableForPickup_001' | 'Exception_001' | 'Exception_002' | 'Exception_003' | 'Exception_004' | 'Exception_005' | 'Exception_006' | 'Exception_007' | 'Exception_008' | 'Exception_009' | 'Exception_010' | 'Exception_011' | 'Exception_012' | 'Exception_013' | 'AttemptFail_001' | 'AttemptFail_002' | 'AttemptFail_003' | 'InTransit_001' | 'InTransit_002' | 'InTransit_003' | 'InTransit_004' | 'InTransit_005' | 'InTransit_006' | 'InTransit_007' | 'InTransit_008' | 'InTransit_009' | 'InfoReceived_001' | 'OutForDelivery_001' | 'OutForDelivery_003' | 'OutForDelivery_004' | 'Pending_001' | 'Pending_002' | 'Pending_003' | 'Pending_004' | 'Pending_005' | 'Pending_006' | 'Expired_001';
|
|
3154
3200
|
type SurchargeResponsibleParty = 'organization' | 'customer';
|
|
3201
|
+
type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
|
|
3155
3202
|
type TaxApplicability = 'none' | 'all';
|
|
3156
3203
|
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';
|
|
3157
3204
|
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';
|
|
@@ -3171,7 +3218,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3171
3218
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired' | 'unknown' | 'unmapped';
|
|
3172
3219
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
3173
3220
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
3174
|
-
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';
|
|
3221
|
+
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' | 'b2b_fee_shipping_tax' | 'flat_rate_label';
|
|
3175
3222
|
type TransferStatus = 'succeeded' | 'canceled';
|
|
3176
3223
|
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';
|
|
3177
3224
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
@@ -3929,6 +3976,13 @@ declare namespace io.flow.v0.models {
|
|
|
3929
3976
|
readonly bank_name?: string;
|
|
3930
3977
|
readonly bank_address?: io.flow.v0.models.Address;
|
|
3931
3978
|
}
|
|
3979
|
+
interface BankAccountInfoKorV2 {
|
|
3980
|
+
readonly discriminator: 'kor_v2';
|
|
3981
|
+
readonly name: string;
|
|
3982
|
+
readonly bank_account_number: string;
|
|
3983
|
+
readonly bank_routing_number: string;
|
|
3984
|
+
readonly bank_name: string;
|
|
3985
|
+
}
|
|
3932
3986
|
interface BankAccountInfoUsa {
|
|
3933
3987
|
readonly discriminator: 'usa';
|
|
3934
3988
|
readonly routing_number: string;
|
|
@@ -4783,7 +4837,6 @@ declare namespace io.flow.v0.models {
|
|
|
4783
4837
|
readonly default_country_of_origin?: string;
|
|
4784
4838
|
readonly rate_card: string;
|
|
4785
4839
|
readonly shop?: io.flow.v0.models.Shop;
|
|
4786
|
-
readonly settlement_currency?: string;
|
|
4787
4840
|
readonly created_at: string;
|
|
4788
4841
|
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
4789
4842
|
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
@@ -4811,7 +4864,6 @@ declare namespace io.flow.v0.models {
|
|
|
4811
4864
|
readonly monthly_average_number_transactions?: number;
|
|
4812
4865
|
readonly default_country_of_origin?: string;
|
|
4813
4866
|
readonly shop?: io.flow.v0.models.Shop;
|
|
4814
|
-
readonly settlement_currency?: string;
|
|
4815
4867
|
readonly rate_card?: string;
|
|
4816
4868
|
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
4817
4869
|
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
@@ -5996,6 +6048,34 @@ declare namespace io.flow.v0.models {
|
|
|
5996
6048
|
readonly amount: number;
|
|
5997
6049
|
readonly description?: string;
|
|
5998
6050
|
}
|
|
6051
|
+
interface FeeInvoice {
|
|
6052
|
+
readonly id: string;
|
|
6053
|
+
readonly number: string;
|
|
6054
|
+
readonly invoice_type: io.flow.v0.enums.FeeInvoiceType;
|
|
6055
|
+
readonly buyer: io.flow.v0.models.MerchantOfRecordEntity;
|
|
6056
|
+
readonly seller: io.flow.v0.models.MerchantOfRecordEntity;
|
|
6057
|
+
readonly date: string;
|
|
6058
|
+
readonly b2b_tax_transaction_id: string;
|
|
6059
|
+
readonly order_number: string;
|
|
6060
|
+
readonly tax: io.flow.v0.models.Money;
|
|
6061
|
+
readonly tax_lines?: io.flow.v0.models.InvoiceTaxLine[];
|
|
6062
|
+
readonly lines: io.flow.v0.unions.ConsumerInvoiceLine[];
|
|
6063
|
+
readonly documents: io.flow.v0.models.ConsumerInvoiceDocument[];
|
|
6064
|
+
}
|
|
6065
|
+
interface FeeInvoiceDeleted {
|
|
6066
|
+
readonly discriminator: 'fee_invoice_deleted';
|
|
6067
|
+
readonly event_id: string;
|
|
6068
|
+
readonly timestamp: string;
|
|
6069
|
+
readonly organization: string;
|
|
6070
|
+
readonly id: string;
|
|
6071
|
+
}
|
|
6072
|
+
interface FeeInvoiceUpserted {
|
|
6073
|
+
readonly discriminator: 'fee_invoice_upserted';
|
|
6074
|
+
readonly event_id: string;
|
|
6075
|
+
readonly timestamp: string;
|
|
6076
|
+
readonly organization: string;
|
|
6077
|
+
readonly fee_invoice: io.flow.v0.models.FeeInvoice;
|
|
6078
|
+
}
|
|
5999
6079
|
interface FeeWeight {
|
|
6000
6080
|
readonly weight: number;
|
|
6001
6081
|
readonly unit: io.flow.v0.enums.UnitOfMeasurement;
|
|
@@ -7078,6 +7158,7 @@ declare namespace io.flow.v0.models {
|
|
|
7078
7158
|
interface LineItemForm {
|
|
7079
7159
|
readonly number: string;
|
|
7080
7160
|
readonly quantity: number;
|
|
7161
|
+
readonly line_item_identifier?: string;
|
|
7081
7162
|
readonly shipment_estimate?: io.flow.v0.models.DatetimeRange;
|
|
7082
7163
|
readonly price?: io.flow.v0.models.Money;
|
|
7083
7164
|
readonly attributes?: Record<string, string>;
|
|
@@ -8009,6 +8090,11 @@ declare namespace io.flow.v0.models {
|
|
|
8009
8090
|
readonly discriminator: 'order_state_rejection_reason_items_empty';
|
|
8010
8091
|
readonly line_items: string[];
|
|
8011
8092
|
}
|
|
8093
|
+
interface OrderStateRejectionReasonOrganizationDeactivated {
|
|
8094
|
+
readonly discriminator: 'order_state_rejection_reason_organization_deactivated';
|
|
8095
|
+
readonly deactivation_requested_at: string;
|
|
8096
|
+
readonly deactivated_at?: string;
|
|
8097
|
+
}
|
|
8012
8098
|
interface OrderStateRejectionReasonRestrictedItem {
|
|
8013
8099
|
readonly discriminator: 'order_state_rejection_reason_restricted_item';
|
|
8014
8100
|
readonly item_numbers: string[];
|
|
@@ -9387,6 +9473,7 @@ declare namespace io.flow.v0.models {
|
|
|
9387
9473
|
readonly organization_id: string;
|
|
9388
9474
|
readonly number: string;
|
|
9389
9475
|
readonly taxonomy_category?: io.flow.v0.models.ProductTaxonomyCategory;
|
|
9476
|
+
readonly inferred_taxonomy_category?: io.flow.v0.models.ProductTaxonomyCategory;
|
|
9390
9477
|
readonly taxonomy_data?: io.flow.v0.models.ProductTaxonomyData[];
|
|
9391
9478
|
readonly item_numbers: string[];
|
|
9392
9479
|
readonly highest_value_item_number?: string;
|
|
@@ -9668,6 +9755,7 @@ declare namespace io.flow.v0.models {
|
|
|
9668
9755
|
readonly rate_level_key?: string;
|
|
9669
9756
|
readonly direction: io.flow.v0.enums.Direction;
|
|
9670
9757
|
readonly effective_at: string;
|
|
9758
|
+
readonly effective_until?: string;
|
|
9671
9759
|
readonly origination_zones: io.flow.v0.models.Zone[];
|
|
9672
9760
|
readonly service: io.flow.v0.models.RatecardServiceSummary;
|
|
9673
9761
|
readonly published_at?: string;
|
|
@@ -9692,6 +9780,9 @@ declare namespace io.flow.v0.models {
|
|
|
9692
9780
|
readonly organization: string;
|
|
9693
9781
|
readonly ratecard: io.flow.v0.models.Ratecard;
|
|
9694
9782
|
}
|
|
9783
|
+
interface RatecardEffectiveUntilForm {
|
|
9784
|
+
readonly effective_until?: string;
|
|
9785
|
+
}
|
|
9695
9786
|
interface RatecardEstimateForm {
|
|
9696
9787
|
readonly origin_address: io.flow.v0.models.Address;
|
|
9697
9788
|
readonly destination_address: io.flow.v0.models.Address;
|
|
@@ -9709,12 +9800,6 @@ declare namespace io.flow.v0.models {
|
|
|
9709
9800
|
readonly duties_owed?: io.flow.v0.models.Money;
|
|
9710
9801
|
readonly commercial_invoice_mode?: io.flow.v0.enums.CommercialInvoiceMode;
|
|
9711
9802
|
}
|
|
9712
|
-
interface RatecardEstimateSummaryForm {
|
|
9713
|
-
readonly origin?: string;
|
|
9714
|
-
readonly destination?: string;
|
|
9715
|
-
readonly service?: string;
|
|
9716
|
-
readonly center_key?: string;
|
|
9717
|
-
}
|
|
9718
9803
|
interface RatecardEstimateV1 {
|
|
9719
9804
|
readonly discriminator: 'ratecard_estimate_v1';
|
|
9720
9805
|
readonly service: io.flow.v0.models.RatecardServiceSummary;
|
|
@@ -10596,6 +10681,7 @@ declare namespace io.flow.v0.models {
|
|
|
10596
10681
|
readonly created_at?: string;
|
|
10597
10682
|
readonly updated_at?: string;
|
|
10598
10683
|
readonly direction?: io.flow.v0.enums.Direction;
|
|
10684
|
+
readonly shipping_cost_guarantee?: io.flow.v0.enums.ShippingCostGuarantee;
|
|
10599
10685
|
}
|
|
10600
10686
|
interface ShippingLabelDocument {
|
|
10601
10687
|
readonly zpl?: string;
|
|
@@ -10744,6 +10830,7 @@ declare namespace io.flow.v0.models {
|
|
|
10744
10830
|
readonly weight_break?: number;
|
|
10745
10831
|
}
|
|
10746
10832
|
interface ShippingRateEstimateRequest {
|
|
10833
|
+
readonly carrier_id: string;
|
|
10747
10834
|
readonly origin_address: io.flow.v0.models.Address;
|
|
10748
10835
|
readonly destination_address: io.flow.v0.models.Address;
|
|
10749
10836
|
readonly package_dimensions: io.flow.v0.models.Dimension;
|
|
@@ -10953,7 +11040,6 @@ declare namespace io.flow.v0.models {
|
|
|
10953
11040
|
readonly activated_at?: string;
|
|
10954
11041
|
readonly status_updated_at?: string;
|
|
10955
11042
|
readonly shop?: io.flow.v0.models.Shop;
|
|
10956
|
-
readonly settlement_currency?: string;
|
|
10957
11043
|
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
10958
11044
|
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
10959
11045
|
readonly average_order_value?: io.flow.v0.models.Money;
|
|
@@ -10986,7 +11072,6 @@ declare namespace io.flow.v0.models {
|
|
|
10986
11072
|
readonly ratecard_id?: string;
|
|
10987
11073
|
readonly rate_card: string;
|
|
10988
11074
|
readonly shop?: io.flow.v0.models.Shop;
|
|
10989
|
-
readonly settlement_currency?: string;
|
|
10990
11075
|
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
10991
11076
|
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
10992
11077
|
readonly average_order_value?: io.flow.v0.models.Money;
|
|
@@ -11771,6 +11856,11 @@ declare namespace io.flow.v0.models {
|
|
|
11771
11856
|
interface TransactionMetadataFailedPayoutReference {
|
|
11772
11857
|
readonly id: string;
|
|
11773
11858
|
}
|
|
11859
|
+
interface TransactionMetadataFlatRateLabel {
|
|
11860
|
+
readonly discriminator: 'flat_rate_label';
|
|
11861
|
+
readonly flat_rate?: number;
|
|
11862
|
+
readonly coefficient?: number;
|
|
11863
|
+
}
|
|
11774
11864
|
interface TransactionMetadataManual {
|
|
11775
11865
|
readonly discriminator: 'manual';
|
|
11776
11866
|
readonly description: string;
|
|
@@ -12148,7 +12238,7 @@ declare namespace io.flow.v0.unions {
|
|
|
12148
12238
|
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;
|
|
12149
12239
|
type AvailableFilter = io.flow.v0.models.AvailableFilterStructured | io.flow.v0.models.AvailableFilterUnstructured;
|
|
12150
12240
|
type BankAccountForm = io.flow.v0.models.BankAccountFormInfo | io.flow.v0.models.BankAccountFormSimple;
|
|
12151
|
-
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;
|
|
12241
|
+
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 | io.flow.v0.models.BankAccountInfoKorV2;
|
|
12152
12242
|
type BrowserActionConfiguration = io.flow.v0.models.CardBrowserActionConfiguration;
|
|
12153
12243
|
type CardAuthorizationActionResult = io.flow.v0.models.AuthorizationActionResultAdyenV3 | io.flow.v0.models.AuthorizationActionResultAdyenV4;
|
|
12154
12244
|
type CardNumber = io.flow.v0.models.PaymentMethodCardNumberCleartext | io.flow.v0.models.PaymentMethodCardNumberCipher;
|
|
@@ -12165,7 +12255,7 @@ declare namespace io.flow.v0.unions {
|
|
|
12165
12255
|
type Document = io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument;
|
|
12166
12256
|
type EmailNotificationData = io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder;
|
|
12167
12257
|
type Entity = io.flow.v0.models.Company | io.flow.v0.models.Individual;
|
|
12168
|
-
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;
|
|
12258
|
+
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.FeeInvoiceUpserted | io.flow.v0.models.FeeInvoiceDeleted | 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;
|
|
12169
12259
|
type ExpandableCard = io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary | io.flow.v0.models.ExternalCard;
|
|
12170
12260
|
type ExpandableCenter = io.flow.v0.models.Center | io.flow.v0.models.CenterReference;
|
|
12171
12261
|
type ExpandableExperience = io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference;
|
|
@@ -12200,7 +12290,7 @@ declare namespace io.flow.v0.unions {
|
|
|
12200
12290
|
type OrderPromotion = io.flow.v0.models.FreeShippingOrderPromotion;
|
|
12201
12291
|
type OrderPromotionForm = io.flow.v0.models.FreeShippingOrderPromotionForm;
|
|
12202
12292
|
type OrderRefundSummaryForm = io.flow.v0.models.OrderRefundSummaryFullForm | io.flow.v0.models.OrderRefundSummaryPartialForm;
|
|
12203
|
-
type OrderStateRejectionReason = io.flow.v0.models.OrderStateRejectionReasonRestrictedItem | io.flow.v0.models.OrderStateRejectionReasonDomesticOrder | io.flow.v0.models.OrderStateRejectionReasonItemsEmpty;
|
|
12293
|
+
type OrderStateRejectionReason = io.flow.v0.models.OrderStateRejectionReasonRestrictedItem | io.flow.v0.models.OrderStateRejectionReasonDomesticOrder | io.flow.v0.models.OrderStateRejectionReasonItemsEmpty | io.flow.v0.models.OrderStateRejectionReasonOrganizationDeactivated;
|
|
12204
12294
|
type PartnerCenterFee = io.flow.v0.models.CommercialInvoiceFee | io.flow.v0.models.InboundCartonFee | io.flow.v0.models.OutboundCartonFee;
|
|
12205
12295
|
type Payment = io.flow.v0.models.PaymentPaypal | io.flow.v0.models.PaymentCryptopay;
|
|
12206
12296
|
type PaymentCaptureOption = io.flow.v0.models.PaymentCaptureOptionAutomaticImmediate | io.flow.v0.models.PaymentCaptureOptionManual;
|
|
@@ -12255,7 +12345,7 @@ declare namespace io.flow.v0.unions {
|
|
|
12255
12345
|
type Token = io.flow.v0.models.ChannelToken | io.flow.v0.models.OrganizationToken | io.flow.v0.models.OrganizationTokenV2 | io.flow.v0.models.PartnerToken;
|
|
12256
12346
|
type TokenReference = io.flow.v0.models.ChannelTokenReference | io.flow.v0.models.OrganizationTokenReference | io.flow.v0.models.OrganizationTokenV2Reference | io.flow.v0.models.PartnerTokenReference;
|
|
12257
12347
|
type TransactionDetails = io.flow.v0.models.TransactionDetailsCard;
|
|
12258
|
-
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;
|
|
12348
|
+
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 | io.flow.v0.models.TransactionMetadataFlatRateLabel;
|
|
12259
12349
|
type TransferReference = io.flow.v0.models.CaptureReference | io.flow.v0.models.RefundReference | io.flow.v0.models.DisputeReference;
|
|
12260
12350
|
}
|
|
12261
12351
|
export declare type AbandonedOrderEmailSettings = io.flow.v0.models.AbandonedOrderEmailSettings;
|
|
@@ -12401,6 +12491,7 @@ export declare type BankAccountInfoFra = io.flow.v0.models.BankAccountInfoFra;
|
|
|
12401
12491
|
export declare type BankAccountInfoGbr = io.flow.v0.models.BankAccountInfoGbr;
|
|
12402
12492
|
export declare type BankAccountInfoIta = io.flow.v0.models.BankAccountInfoIta;
|
|
12403
12493
|
export declare type BankAccountInfoKor = io.flow.v0.models.BankAccountInfoKor;
|
|
12494
|
+
export declare type BankAccountInfoKorV2 = io.flow.v0.models.BankAccountInfoKorV2;
|
|
12404
12495
|
export declare type BankAccountInfoUsa = io.flow.v0.models.BankAccountInfoUsa;
|
|
12405
12496
|
export declare type BankAccountReference = io.flow.v0.models.BankAccountReference;
|
|
12406
12497
|
export declare type BankAccountSummary = io.flow.v0.models.BankAccountSummary;
|
|
@@ -12813,6 +12904,10 @@ export declare type ExternalCard = io.flow.v0.models.ExternalCard;
|
|
|
12813
12904
|
export declare type ExternalOrderSummary = io.flow.v0.models.ExternalOrderSummary;
|
|
12814
12905
|
export declare type FeeDeduction = io.flow.v0.models.FeeDeduction;
|
|
12815
12906
|
export declare type FeeDeductionType = io.flow.v0.enums.FeeDeductionType;
|
|
12907
|
+
export declare type FeeInvoice = io.flow.v0.models.FeeInvoice;
|
|
12908
|
+
export declare type FeeInvoiceDeleted = io.flow.v0.models.FeeInvoiceDeleted;
|
|
12909
|
+
export declare type FeeInvoiceType = io.flow.v0.enums.FeeInvoiceType;
|
|
12910
|
+
export declare type FeeInvoiceUpserted = io.flow.v0.models.FeeInvoiceUpserted;
|
|
12816
12911
|
export declare type FeeWeight = io.flow.v0.models.FeeWeight;
|
|
12817
12912
|
export declare type FieldValidationMax = io.flow.v0.models.FieldValidationMax;
|
|
12818
12913
|
export declare type FieldValidationMin = io.flow.v0.models.FieldValidationMin;
|
|
@@ -13222,6 +13317,7 @@ export declare type OrderStateDeleted = io.flow.v0.models.OrderStateDeleted;
|
|
|
13222
13317
|
export declare type OrderStateRejectionReason = io.flow.v0.unions.OrderStateRejectionReason;
|
|
13223
13318
|
export declare type OrderStateRejectionReasonDomesticOrder = io.flow.v0.models.OrderStateRejectionReasonDomesticOrder;
|
|
13224
13319
|
export declare type OrderStateRejectionReasonItemsEmpty = io.flow.v0.models.OrderStateRejectionReasonItemsEmpty;
|
|
13320
|
+
export declare type OrderStateRejectionReasonOrganizationDeactivated = io.flow.v0.models.OrderStateRejectionReasonOrganizationDeactivated;
|
|
13225
13321
|
export declare type OrderStateRejectionReasonRestrictedItem = io.flow.v0.models.OrderStateRejectionReasonRestrictedItem;
|
|
13226
13322
|
export declare type OrderStateStatus = io.flow.v0.enums.OrderStateStatus;
|
|
13227
13323
|
export declare type OrderStateUpserted = io.flow.v0.models.OrderStateUpserted;
|
|
@@ -13562,9 +13658,9 @@ export declare type Ratecard = io.flow.v0.models.Ratecard;
|
|
|
13562
13658
|
export declare type RatecardCarrierSummary = io.flow.v0.models.RatecardCarrierSummary;
|
|
13563
13659
|
export declare type RatecardData = io.flow.v0.models.RatecardData;
|
|
13564
13660
|
export declare type RatecardDeleted = io.flow.v0.models.RatecardDeleted;
|
|
13661
|
+
export declare type RatecardEffectiveUntilForm = io.flow.v0.models.RatecardEffectiveUntilForm;
|
|
13565
13662
|
export declare type RatecardEstimate = io.flow.v0.unions.RatecardEstimate;
|
|
13566
13663
|
export declare type RatecardEstimateForm = io.flow.v0.models.RatecardEstimateForm;
|
|
13567
|
-
export declare type RatecardEstimateSummaryForm = io.flow.v0.models.RatecardEstimateSummaryForm;
|
|
13568
13664
|
export declare type RatecardEstimateV1 = io.flow.v0.models.RatecardEstimateV1;
|
|
13569
13665
|
export declare type RatecardEstimateV2 = io.flow.v0.models.RatecardEstimateV2;
|
|
13570
13666
|
export declare type RatecardEstimateV3 = io.flow.v0.models.RatecardEstimateV3;
|
|
@@ -13740,6 +13836,7 @@ export declare type ShippingConfigurationSummary = io.flow.v0.models.ShippingCon
|
|
|
13740
13836
|
export declare type ShippingConfigurationType = io.flow.v0.enums.ShippingConfigurationType;
|
|
13741
13837
|
export declare type ShippingConfigurationUpserted = io.flow.v0.models.ShippingConfigurationUpserted;
|
|
13742
13838
|
export declare type ShippingConfigurationVersion = io.flow.v0.models.ShippingConfigurationVersion;
|
|
13839
|
+
export declare type ShippingCostGuarantee = io.flow.v0.enums.ShippingCostGuarantee;
|
|
13743
13840
|
export declare type ShippingLabel = io.flow.v0.models.ShippingLabel;
|
|
13744
13841
|
export declare type ShippingLabelDocument = io.flow.v0.models.ShippingLabelDocument;
|
|
13745
13842
|
export declare type ShippingLabelError = io.flow.v0.models.ShippingLabelError;
|
|
@@ -13856,6 +13953,7 @@ export declare type TariffCodes = io.flow.v0.models.TariffCodes;
|
|
|
13856
13953
|
export declare type TariffCodesDeleted = io.flow.v0.models.TariffCodesDeleted;
|
|
13857
13954
|
export declare type TariffCodesUpserted = io.flow.v0.models.TariffCodesUpserted;
|
|
13858
13955
|
export declare type Tax = io.flow.v0.models.Tax;
|
|
13956
|
+
export declare type TaxAndDutyInclusivitySetting = io.flow.v0.enums.TaxAndDutyInclusivitySetting;
|
|
13859
13957
|
export declare type TaxApplicability = io.flow.v0.enums.TaxApplicability;
|
|
13860
13958
|
export declare type TaxBreakdown = io.flow.v0.models.TaxBreakdown;
|
|
13861
13959
|
export declare type TaxDutyCalculatorValidationError = io.flow.v0.models.TaxDutyCalculatorValidationError;
|
|
@@ -13956,6 +14054,7 @@ export declare type TransactionMetadataChannelCardMetadataIssuerSummary = io.flo
|
|
|
13956
14054
|
export declare type TransactionMetadataChannelOrganizationTransaction = io.flow.v0.models.TransactionMetadataChannelOrganizationTransaction;
|
|
13957
14055
|
export declare type TransactionMetadataFailedPayout = io.flow.v0.models.TransactionMetadataFailedPayout;
|
|
13958
14056
|
export declare type TransactionMetadataFailedPayoutReference = io.flow.v0.models.TransactionMetadataFailedPayoutReference;
|
|
14057
|
+
export declare type TransactionMetadataFlatRateLabel = io.flow.v0.models.TransactionMetadataFlatRateLabel;
|
|
13959
14058
|
export declare type TransactionMetadataManual = io.flow.v0.models.TransactionMetadataManual;
|
|
13960
14059
|
export declare type TransactionMetadataMerchantFee = io.flow.v0.models.TransactionMetadataMerchantFee;
|
|
13961
14060
|
export declare type TransactionMetadataMerchantFeeItem = io.flow.v0.models.TransactionMetadataMerchantFeeItem;
|