@flowio/types 11.24.131 → 11.24.135
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 +476 -305
- package/dist/api.d.ts +241 -30
- package/package.json +2 -2
- package/src/api-internal.ts +721 -375
- package/src/api.ts +301 -28
package/dist/api.d.ts
CHANGED
|
@@ -1380,7 +1380,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1380
1380
|
readonly id: string;
|
|
1381
1381
|
readonly legacyResourceId: string;
|
|
1382
1382
|
readonly handle: string;
|
|
1383
|
-
readonly variants
|
|
1383
|
+
readonly variants: io.flow.shopify.external.v0.models.GraphqlProductVariant[];
|
|
1384
1384
|
readonly images: io.flow.shopify.external.v0.models.GraphqlProductImage[];
|
|
1385
1385
|
readonly title: string;
|
|
1386
1386
|
readonly vendor?: string;
|
|
@@ -1510,7 +1510,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1510
1510
|
interface Product {
|
|
1511
1511
|
readonly id: number;
|
|
1512
1512
|
readonly handle: string;
|
|
1513
|
-
readonly variants
|
|
1513
|
+
readonly variants: io.flow.shopify.external.v0.models.ProductVariant[];
|
|
1514
1514
|
readonly images: io.flow.shopify.external.v0.models.ProductImage[];
|
|
1515
1515
|
readonly title: string;
|
|
1516
1516
|
readonly vendor?: string;
|
|
@@ -1679,7 +1679,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1679
1679
|
readonly title: string;
|
|
1680
1680
|
}
|
|
1681
1681
|
interface ShopifyClientDetail {
|
|
1682
|
-
readonly accept_language
|
|
1682
|
+
readonly accept_language: boolean;
|
|
1683
1683
|
readonly browser_height?: number;
|
|
1684
1684
|
readonly browser_ip?: string;
|
|
1685
1685
|
readonly browser_width?: number;
|
|
@@ -1698,7 +1698,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1698
1698
|
readonly tax_exempt: boolean;
|
|
1699
1699
|
readonly verified_email: boolean;
|
|
1700
1700
|
readonly state: io.flow.shopify.external.v0.enums.ShopifyCustomerState;
|
|
1701
|
-
readonly accepts_marketing
|
|
1701
|
+
readonly accepts_marketing: boolean;
|
|
1702
1702
|
readonly default_address?: any;
|
|
1703
1703
|
readonly email?: string;
|
|
1704
1704
|
readonly first_name?: string;
|
|
@@ -1770,7 +1770,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1770
1770
|
readonly requires_shipping: boolean;
|
|
1771
1771
|
readonly currency?: string;
|
|
1772
1772
|
readonly items: io.flow.shopify.external.v0.models.ShopifyExternalCartItem[];
|
|
1773
|
-
readonly cart_level_discount_applications
|
|
1773
|
+
readonly cart_level_discount_applications: io.flow.shopify.external.v0.models.ShopifyDiscountApplication[];
|
|
1774
1774
|
}
|
|
1775
1775
|
interface ShopifyExternalCartItem {
|
|
1776
1776
|
readonly id: number;
|
|
@@ -1784,7 +1784,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1784
1784
|
readonly original_line_price: number;
|
|
1785
1785
|
readonly total_discount: number;
|
|
1786
1786
|
readonly discounted_price: number;
|
|
1787
|
-
readonly discounts
|
|
1787
|
+
readonly discounts: io.flow.shopify.external.v0.models.ShopifyCartItemDiscount[];
|
|
1788
1788
|
readonly taxable: boolean;
|
|
1789
1789
|
readonly quantity: number;
|
|
1790
1790
|
readonly sku?: string;
|
|
@@ -1802,8 +1802,8 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1802
1802
|
readonly product_description?: string;
|
|
1803
1803
|
readonly product_type: string;
|
|
1804
1804
|
readonly variant_title?: string;
|
|
1805
|
-
readonly variant_options
|
|
1806
|
-
readonly line_level_discount_allocations
|
|
1805
|
+
readonly variant_options: string[];
|
|
1806
|
+
readonly line_level_discount_allocations: io.flow.shopify.external.v0.models.ShopifyLineLevelDiscountAllocation[];
|
|
1807
1807
|
}
|
|
1808
1808
|
interface ShopifyFulfillment {
|
|
1809
1809
|
readonly location_id: number;
|
|
@@ -2032,7 +2032,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
2032
2032
|
readonly gateway?: string;
|
|
2033
2033
|
readonly transactions?: io.flow.shopify.external.v0.models.ShopifyTransactionForm[];
|
|
2034
2034
|
readonly send_receipt?: boolean;
|
|
2035
|
-
readonly metafields
|
|
2035
|
+
readonly metafields: io.flow.shopify.external.v0.models.MetafieldForm[];
|
|
2036
2036
|
}
|
|
2037
2037
|
interface ShopifyOrderCount {
|
|
2038
2038
|
readonly count: number;
|
|
@@ -2157,7 +2157,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
2157
2157
|
}
|
|
2158
2158
|
interface ShopifyWebhookOrder {
|
|
2159
2159
|
readonly id?: number;
|
|
2160
|
-
readonly line_items
|
|
2160
|
+
readonly line_items: io.flow.shopify.external.v0.models.ShopifyWebhookOrderLineItem[];
|
|
2161
2161
|
}
|
|
2162
2162
|
interface ShopifyWebhookOrderCancelled {
|
|
2163
2163
|
readonly id: number;
|
|
@@ -2409,7 +2409,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
2409
2409
|
}
|
|
2410
2410
|
interface DiscountForm {
|
|
2411
2411
|
readonly offer: io.flow.common.v0.unions.DiscountOffer;
|
|
2412
|
-
readonly target
|
|
2412
|
+
readonly target: io.flow.common.v0.enums.DiscountTarget;
|
|
2413
2413
|
readonly label?: string;
|
|
2414
2414
|
}
|
|
2415
2415
|
interface DiscountOfferFixed {
|
|
@@ -2484,6 +2484,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
2484
2484
|
interface LineItemForm {
|
|
2485
2485
|
readonly number: string;
|
|
2486
2486
|
readonly quantity: number;
|
|
2487
|
+
readonly line_item_identifier?: string;
|
|
2487
2488
|
readonly shipment_estimate?: io.flow.common.v0.models.DatetimeRange;
|
|
2488
2489
|
readonly price?: io.flow.common.v0.models.Money;
|
|
2489
2490
|
readonly attributes?: Record<string, string>;
|
|
@@ -2578,7 +2579,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
2578
2579
|
readonly parent?: io.flow.common.v0.models.OrganizationReference;
|
|
2579
2580
|
readonly defaults?: io.flow.common.v0.models.OrganizationDefaults;
|
|
2580
2581
|
readonly created_at?: string;
|
|
2581
|
-
readonly status
|
|
2582
|
+
readonly status: io.flow.common.v0.enums.OrganizationStatus;
|
|
2582
2583
|
readonly type?: io.flow.common.v0.enums.OrganizationType;
|
|
2583
2584
|
}
|
|
2584
2585
|
interface OrganizationDefaults {
|
|
@@ -2841,6 +2842,61 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
2841
2842
|
readonly identifier: string;
|
|
2842
2843
|
}
|
|
2843
2844
|
}
|
|
2845
|
+
declare namespace io.flow.tech.onboarding.playground.v0.enums {
|
|
2846
|
+
type AmruthaItemType = 'physical' | 'digital';
|
|
2847
|
+
type ChenglinItemType = 'physical' | 'digital';
|
|
2848
|
+
type GabrielItemType = 'physical' | 'digital';
|
|
2849
|
+
}
|
|
2850
|
+
declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
2851
|
+
interface AmruthaItem {
|
|
2852
|
+
readonly id: string;
|
|
2853
|
+
readonly number: string;
|
|
2854
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
2855
|
+
readonly description?: string;
|
|
2856
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.AmruthaItemType;
|
|
2857
|
+
readonly added_on: string;
|
|
2858
|
+
}
|
|
2859
|
+
interface AmruthaItemForm {
|
|
2860
|
+
readonly number: string;
|
|
2861
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
2862
|
+
readonly description?: string;
|
|
2863
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.AmruthaItemType;
|
|
2864
|
+
readonly added_on: string;
|
|
2865
|
+
}
|
|
2866
|
+
interface ChenglinItem {
|
|
2867
|
+
readonly id: string;
|
|
2868
|
+
readonly number: string;
|
|
2869
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
2870
|
+
readonly description?: string;
|
|
2871
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.GabrielItemType;
|
|
2872
|
+
readonly added_on: string;
|
|
2873
|
+
}
|
|
2874
|
+
interface ChenglinItemForm {
|
|
2875
|
+
readonly number: string;
|
|
2876
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
2877
|
+
readonly description?: string;
|
|
2878
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.GabrielItemType;
|
|
2879
|
+
readonly added_on: string;
|
|
2880
|
+
}
|
|
2881
|
+
interface GabrielItem {
|
|
2882
|
+
readonly id: string;
|
|
2883
|
+
readonly number: string;
|
|
2884
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
2885
|
+
readonly description?: string;
|
|
2886
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.GabrielItemType;
|
|
2887
|
+
readonly added_on: string;
|
|
2888
|
+
}
|
|
2889
|
+
interface GabrielItemForm {
|
|
2890
|
+
readonly number: string;
|
|
2891
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
2892
|
+
readonly description?: string;
|
|
2893
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.GabrielItemType;
|
|
2894
|
+
readonly added_on: string;
|
|
2895
|
+
}
|
|
2896
|
+
interface TechOnboardingDescription {
|
|
2897
|
+
readonly description: string;
|
|
2898
|
+
}
|
|
2899
|
+
}
|
|
2844
2900
|
declare namespace io.flow.product.v0.models {
|
|
2845
2901
|
interface Product {
|
|
2846
2902
|
readonly organization_id: string;
|
|
@@ -2872,6 +2928,11 @@ declare namespace io.flow.ben.test.internal.v0.models {
|
|
|
2872
2928
|
readonly organization_ids: string[];
|
|
2873
2929
|
readonly num_events: number;
|
|
2874
2930
|
}
|
|
2931
|
+
interface GenerateLoadRate {
|
|
2932
|
+
readonly organization_ids: string[];
|
|
2933
|
+
readonly events_per_second: number;
|
|
2934
|
+
readonly duration_seconds: number;
|
|
2935
|
+
}
|
|
2875
2936
|
interface GenerateLoadSingleOrg {
|
|
2876
2937
|
readonly discriminator: 'generate_load_single_org';
|
|
2877
2938
|
readonly organization_id: string;
|
|
@@ -2945,7 +3006,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2945
3006
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
2946
3007
|
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
2947
3008
|
type Environment = 'sandbox' | 'production';
|
|
2948
|
-
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';
|
|
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';
|
|
2949
3010
|
type ExceptionType = 'open' | 'closed';
|
|
2950
3011
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
2951
3012
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -2954,7 +3015,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2954
3015
|
type ExperienceStatus = 'draft' | 'active' | 'archiving' | 'archived';
|
|
2955
3016
|
type ExportStatus = 'created' | 'processing' | 'completed' | 'failed';
|
|
2956
3017
|
type ExporterOfRecord = 'flow' | 'organization';
|
|
2957
|
-
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';
|
|
3018
|
+
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';
|
|
2958
3019
|
type FlowBehavior = 'view_consumer_data';
|
|
2959
3020
|
type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can' | 'ge-usa' | 'ge-can' | 'ge-gbr' | 'ge-irl';
|
|
2960
3021
|
type FlowRole = 'organization_admin' | 'organization_merchant' | 'organization_customer_service' | 'organization_fulfillment' | 'organization_marketing' | 'organization_finance' | 'organization_classification' | 'flow_operations' | 'channel_admin' | 'channel_organization_admin';
|
|
@@ -2981,7 +3042,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2981
3042
|
type InvitationErrorCode = 'expired' | 'invalid_email';
|
|
2982
3043
|
type ItemAvailabilityStatus = 'available' | 'low' | 'out_of_stock';
|
|
2983
3044
|
type ItemIdentifier = 'item_number' | 'sku';
|
|
2984
|
-
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';
|
|
3045
|
+
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';
|
|
2985
3046
|
type LabelTriggerMethod = 'autogenerated' | 'on_demand';
|
|
2986
3047
|
type LaneDirection = 'outbound' | 'return';
|
|
2987
3048
|
type LanePreselectPreference = 'lowest_cost' | 'default_tier';
|
|
@@ -3011,6 +3072,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3011
3072
|
type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product';
|
|
3012
3073
|
type OrderRefundSummaryIncludes = 'duties' | 'vat' | 'shipping';
|
|
3013
3074
|
type OrderRefundSummaryPartialCharged = 'per_item' | 'for_order' | 'by_value_percentage' | 'by_quantity_percentage';
|
|
3075
|
+
type OrderStateStatus = 'pending' | 'accepted' | 'rejected';
|
|
3014
3076
|
type OrderStatus = 'open' | 'submitted';
|
|
3015
3077
|
type OrderStorage = 'do_not_persist' | 'persist';
|
|
3016
3078
|
type OrderType = 'standard' | 'replacement' | 'edit';
|
|
@@ -3022,7 +3084,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3022
3084
|
type PaymentActionType = 'redirect' | 'redirect_get' | 'redirect_post' | 'select_payment_option' | 'use_sdk_klarna_v1' | 'use_sdk_applepay_js' | 'use_sdk_googlepay' | 'use_sdk_paypal' | 'use_sdk_stripe_v3' | 'use_sdk_adyen_v3' | 'use_sdk_adyen_v4' | 'execute_script' | 'display_inline_window';
|
|
3023
3085
|
type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
|
|
3024
3086
|
type PaymentFailureCode = 'action_expired' | 'action_cancelled' | 'action_failed' | 'authorization_declined' | 'not_supported' | 'fraudulent' | 'error' | 'payment_checks_declined';
|
|
3025
|
-
type PaymentFeeType = 'fx' | 'mor' | 'sp';
|
|
3087
|
+
type PaymentFeeType = 'fx' | 'mor' | 'sp' | 'mor_tax';
|
|
3026
3088
|
type PaymentMethodCapability = 'credit' | 'debit';
|
|
3027
3089
|
type PaymentMethodDataOptionType = 'ideal_issuer_option';
|
|
3028
3090
|
type PaymentMethodRuleContentKey = 'description';
|
|
@@ -3047,6 +3109,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3047
3109
|
type PriceDetailKey = 'item_price' | 'margins' | 'vat' | 'duty' | 'rounding' | 'adjustment';
|
|
3048
3110
|
type PriceFacetBoundary = 'min' | 'max';
|
|
3049
3111
|
type PricingLevySetting = 'included' | 'displayed' | 'ignored';
|
|
3112
|
+
type PricingType = 'inclusive_pricing';
|
|
3050
3113
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
3051
3114
|
type ProvinceType = 'area' | 'city' | 'county' | 'department' | 'dependency' | 'district' | 'do_si' | 'emirate' | 'entity' | 'island' | 'municipality' | 'oblast' | 'outlying_area' | 'parish' | 'prefecture' | 'province' | 'state' | 'territory' | 'other';
|
|
3052
3115
|
type QuoteErrorCode = 'generic_error' | 'items_not_available' | 'shipping_unavailable';
|
|
@@ -3071,7 +3134,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3071
3134
|
type ScheduleExceptionStatus = 'Open' | 'Closed';
|
|
3072
3135
|
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
|
|
3073
3136
|
type SellabilityRequestStatus = 'commit';
|
|
3074
|
-
type SellabilityResultErrorCode = 'insufficient_details' | 'generic_error';
|
|
3137
|
+
type SellabilityResultErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable' | 'generic_error' | 'catalog_processing_threshold';
|
|
3075
3138
|
type SellabilityResultStatus = 'in_review' | 'succeeded' | 'failed';
|
|
3076
3139
|
type SellabilityScreeningMode = 'pre_onboarding' | 'default_on' | 'active';
|
|
3077
3140
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
@@ -3091,7 +3154,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3091
3154
|
type SurchargeResponsibleParty = 'organization' | 'customer';
|
|
3092
3155
|
type TaxApplicability = 'none' | 'all';
|
|
3093
3156
|
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';
|
|
3094
|
-
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';
|
|
3157
|
+
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';
|
|
3095
3158
|
type TaxJurisdictionType = 'country' | 'province';
|
|
3096
3159
|
type TaxReportType = 'consumer' | 'b2b';
|
|
3097
3160
|
type TaxType = 'vat' | 'gst' | 'hst' | 'pst' | 'qst' | 'sales_tax';
|
|
@@ -3108,7 +3171,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3108
3171
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired' | 'unknown' | 'unmapped';
|
|
3109
3172
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
3110
3173
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
3111
|
-
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';
|
|
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';
|
|
3112
3175
|
type TransferStatus = 'succeeded' | 'canceled';
|
|
3113
3176
|
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';
|
|
3114
3177
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
@@ -3498,6 +3561,18 @@ declare namespace io.flow.v0.models {
|
|
|
3498
3561
|
readonly discriminator: 'amount_margin_form';
|
|
3499
3562
|
readonly margin: io.flow.v0.models.Money;
|
|
3500
3563
|
}
|
|
3564
|
+
interface AmruthaItemDeleted {
|
|
3565
|
+
readonly discriminator: 'amrutha_item_deleted';
|
|
3566
|
+
readonly event_id: string;
|
|
3567
|
+
readonly timestamp: string;
|
|
3568
|
+
readonly id: string;
|
|
3569
|
+
}
|
|
3570
|
+
interface AmruthaItemUpserted {
|
|
3571
|
+
readonly discriminator: 'amrutha_item_upserted';
|
|
3572
|
+
readonly event_id: string;
|
|
3573
|
+
readonly timestamp: string;
|
|
3574
|
+
readonly item: io.flow.tech.onboarding.playground.v0.models.AmruthaItem;
|
|
3575
|
+
}
|
|
3501
3576
|
interface AnalyticsExportType {
|
|
3502
3577
|
readonly discriminator: 'analytics_export_type';
|
|
3503
3578
|
readonly from?: string;
|
|
@@ -3759,6 +3834,7 @@ declare namespace io.flow.v0.models {
|
|
|
3759
3834
|
readonly b2b_invoice_type: io.flow.v0.enums.B2BInvoiceType;
|
|
3760
3835
|
readonly center?: io.flow.v0.models.ConsumerInvoiceCenterReference;
|
|
3761
3836
|
readonly order?: io.flow.v0.models.ConsumerInvoiceOrderSummary;
|
|
3837
|
+
readonly voids_b2b_invoice?: boolean;
|
|
3762
3838
|
}
|
|
3763
3839
|
interface B2BCreditMemoDeleted {
|
|
3764
3840
|
readonly discriminator: 'b2b_credit_memo_deleted';
|
|
@@ -3842,6 +3918,17 @@ declare namespace io.flow.v0.models {
|
|
|
3842
3918
|
readonly swift_code: string;
|
|
3843
3919
|
readonly iban: string;
|
|
3844
3920
|
}
|
|
3921
|
+
interface BankAccountInfoKor {
|
|
3922
|
+
readonly discriminator: 'kor';
|
|
3923
|
+
readonly name?: string;
|
|
3924
|
+
readonly address?: io.flow.v0.models.Address;
|
|
3925
|
+
readonly phone?: string;
|
|
3926
|
+
readonly email?: string;
|
|
3927
|
+
readonly bank_account_number: string;
|
|
3928
|
+
readonly bank_routing_number?: string;
|
|
3929
|
+
readonly bank_name?: string;
|
|
3930
|
+
readonly bank_address?: io.flow.v0.models.Address;
|
|
3931
|
+
}
|
|
3845
3932
|
interface BankAccountInfoUsa {
|
|
3846
3933
|
readonly discriminator: 'usa';
|
|
3847
3934
|
readonly routing_number: string;
|
|
@@ -4689,7 +4776,6 @@ declare namespace io.flow.v0.models {
|
|
|
4689
4776
|
readonly beneficiary_details?: io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
4690
4777
|
readonly other_trade_sector?: string;
|
|
4691
4778
|
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
4692
|
-
readonly center_address?: io.flow.v0.models.Address;
|
|
4693
4779
|
readonly average_order_weight?: number;
|
|
4694
4780
|
readonly average_order_weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
4695
4781
|
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
@@ -4697,6 +4783,7 @@ declare namespace io.flow.v0.models {
|
|
|
4697
4783
|
readonly default_country_of_origin?: string;
|
|
4698
4784
|
readonly rate_card: string;
|
|
4699
4785
|
readonly shop?: io.flow.v0.models.Shop;
|
|
4786
|
+
readonly settlement_currency?: string;
|
|
4700
4787
|
readonly created_at: string;
|
|
4701
4788
|
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
4702
4789
|
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
@@ -4716,7 +4803,6 @@ declare namespace io.flow.v0.models {
|
|
|
4716
4803
|
readonly beneficiary_details?: io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
4717
4804
|
readonly other_trade_sector?: string;
|
|
4718
4805
|
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
4719
|
-
readonly center_address?: io.flow.v0.models.Address;
|
|
4720
4806
|
readonly average_order_weight?: number;
|
|
4721
4807
|
readonly average_order_weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
4722
4808
|
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
@@ -4725,6 +4811,7 @@ declare namespace io.flow.v0.models {
|
|
|
4725
4811
|
readonly monthly_average_number_transactions?: number;
|
|
4726
4812
|
readonly default_country_of_origin?: string;
|
|
4727
4813
|
readonly shop?: io.flow.v0.models.Shop;
|
|
4814
|
+
readonly settlement_currency?: string;
|
|
4728
4815
|
readonly rate_card?: string;
|
|
4729
4816
|
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
4730
4817
|
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
@@ -6292,6 +6379,10 @@ declare namespace io.flow.v0.models {
|
|
|
6292
6379
|
readonly destination?: string;
|
|
6293
6380
|
readonly sort?: string;
|
|
6294
6381
|
}
|
|
6382
|
+
interface HarmonizationTariffCode {
|
|
6383
|
+
readonly tariff_code: string;
|
|
6384
|
+
readonly destination: string;
|
|
6385
|
+
}
|
|
6295
6386
|
interface HarmonizationTariffCodesExportType {
|
|
6296
6387
|
readonly discriminator: 'harmonization_tariff_codes_export_type';
|
|
6297
6388
|
readonly sort?: string;
|
|
@@ -7487,6 +7578,7 @@ declare namespace io.flow.v0.models {
|
|
|
7487
7578
|
readonly company?: string;
|
|
7488
7579
|
readonly email?: string;
|
|
7489
7580
|
readonly phone?: string;
|
|
7581
|
+
readonly address?: io.flow.v0.models.Address;
|
|
7490
7582
|
}
|
|
7491
7583
|
interface OptionWeightEstimates {
|
|
7492
7584
|
readonly gravitational: io.flow.v0.models.Measurement;
|
|
@@ -7529,6 +7621,7 @@ declare namespace io.flow.v0.models {
|
|
|
7529
7621
|
readonly payment_source?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
7530
7622
|
readonly edits?: io.flow.v0.models.EditSummary[];
|
|
7531
7623
|
readonly rates?: io.flow.v0.models.OrderRate[];
|
|
7624
|
+
readonly pricing_type?: io.flow.v0.enums.PricingType;
|
|
7532
7625
|
}
|
|
7533
7626
|
interface OrderAddress {
|
|
7534
7627
|
readonly text?: string;
|
|
@@ -7892,6 +7985,42 @@ declare namespace io.flow.v0.models {
|
|
|
7892
7985
|
readonly source_url: string;
|
|
7893
7986
|
readonly filename?: string;
|
|
7894
7987
|
}
|
|
7988
|
+
interface OrderState {
|
|
7989
|
+
readonly id: string;
|
|
7990
|
+
readonly order_number: string;
|
|
7991
|
+
readonly external_order_reference: string;
|
|
7992
|
+
readonly payment_requests: io.flow.v0.models.PaymentRequestReference[];
|
|
7993
|
+
readonly status: io.flow.v0.enums.OrderStateStatus;
|
|
7994
|
+
readonly rejection_reasons?: io.flow.v0.unions.OrderStateRejectionReason[];
|
|
7995
|
+
}
|
|
7996
|
+
interface OrderStateDeleted {
|
|
7997
|
+
readonly discriminator: 'order_state_deleted';
|
|
7998
|
+
readonly event_id: string;
|
|
7999
|
+
readonly timestamp: string;
|
|
8000
|
+
readonly organization: string;
|
|
8001
|
+
readonly channel_id: string;
|
|
8002
|
+
readonly id: string;
|
|
8003
|
+
}
|
|
8004
|
+
interface OrderStateRejectionReasonDomesticOrder {
|
|
8005
|
+
readonly discriminator: 'order_state_rejection_reason_domestic_order';
|
|
8006
|
+
readonly destination_address: io.flow.v0.models.Address;
|
|
8007
|
+
}
|
|
8008
|
+
interface OrderStateRejectionReasonItemsEmpty {
|
|
8009
|
+
readonly discriminator: 'order_state_rejection_reason_items_empty';
|
|
8010
|
+
readonly line_items: string[];
|
|
8011
|
+
}
|
|
8012
|
+
interface OrderStateRejectionReasonRestrictedItem {
|
|
8013
|
+
readonly discriminator: 'order_state_rejection_reason_restricted_item';
|
|
8014
|
+
readonly item_numbers: string[];
|
|
8015
|
+
}
|
|
8016
|
+
interface OrderStateUpserted {
|
|
8017
|
+
readonly discriminator: 'order_state_upserted';
|
|
8018
|
+
readonly event_id: string;
|
|
8019
|
+
readonly timestamp: string;
|
|
8020
|
+
readonly organization: string;
|
|
8021
|
+
readonly channel_id: string;
|
|
8022
|
+
readonly order_state: io.flow.v0.models.OrderState;
|
|
8023
|
+
}
|
|
7895
8024
|
interface OrderSubmissionForm {
|
|
7896
8025
|
readonly identifiers?: io.flow.v0.models.OrderSubmissionIdentifierForm[];
|
|
7897
8026
|
}
|
|
@@ -9292,6 +9421,10 @@ declare namespace io.flow.v0.models {
|
|
|
9292
9421
|
readonly hs_code?: string;
|
|
9293
9422
|
readonly restricted_regions_by_type?: io.flow.v0.models.SellabilityRegionResult[];
|
|
9294
9423
|
readonly needs_action_attributes?: io.flow.v0.models.NeedsActionAttributes[];
|
|
9424
|
+
readonly fingerprint?: string;
|
|
9425
|
+
readonly restriction_created_at?: string;
|
|
9426
|
+
readonly first_reviewed_at?: string;
|
|
9427
|
+
readonly seconds_to_first_review?: number;
|
|
9295
9428
|
}
|
|
9296
9429
|
interface ProductRestrictionResultDeleted {
|
|
9297
9430
|
readonly discriminator: 'product_restriction_result_deleted';
|
|
@@ -9327,9 +9460,11 @@ declare namespace io.flow.v0.models {
|
|
|
9327
9460
|
readonly dry_run?: boolean;
|
|
9328
9461
|
}
|
|
9329
9462
|
interface ProductSellabilityResult {
|
|
9463
|
+
readonly id: string;
|
|
9330
9464
|
readonly merchant_id?: string;
|
|
9331
9465
|
readonly product_id: string;
|
|
9332
9466
|
readonly restricted_regions: io.flow.v0.models.SellabilityRestrictedRegion[];
|
|
9467
|
+
readonly restricted_reasons: io.flow.v0.models.SellabilityRestrictedReason[];
|
|
9333
9468
|
readonly needs_action_attributes?: io.flow.v0.models.SellabilityNeedsActionAttributes[];
|
|
9334
9469
|
readonly request_id?: string;
|
|
9335
9470
|
readonly hs6_code?: string;
|
|
@@ -9338,14 +9473,18 @@ declare namespace io.flow.v0.models {
|
|
|
9338
9473
|
readonly discriminator: 'product_sellability_result_deleted';
|
|
9339
9474
|
readonly event_id: string;
|
|
9340
9475
|
readonly timestamp: string;
|
|
9341
|
-
readonly organization
|
|
9476
|
+
readonly organization?: string;
|
|
9477
|
+
readonly merchant?: string;
|
|
9478
|
+
readonly channel_id?: string;
|
|
9342
9479
|
readonly id: string;
|
|
9343
9480
|
}
|
|
9344
9481
|
interface ProductSellabilityResultUpserted {
|
|
9345
9482
|
readonly discriminator: 'product_sellability_result_upserted';
|
|
9346
9483
|
readonly event_id: string;
|
|
9347
9484
|
readonly timestamp: string;
|
|
9348
|
-
readonly organization
|
|
9485
|
+
readonly organization?: string;
|
|
9486
|
+
readonly merchant?: string;
|
|
9487
|
+
readonly channel_id?: string;
|
|
9349
9488
|
readonly product_sellability_result: io.flow.v0.models.ProductSellabilityResult;
|
|
9350
9489
|
}
|
|
9351
9490
|
interface ProductTaxonomyCategory {
|
|
@@ -9541,6 +9680,11 @@ declare namespace io.flow.v0.models {
|
|
|
9541
9680
|
readonly id: string;
|
|
9542
9681
|
readonly name: string;
|
|
9543
9682
|
}
|
|
9683
|
+
interface RatecardData {
|
|
9684
|
+
readonly dhlParcelDistributionCenter?: string;
|
|
9685
|
+
readonly glbeRatecardMetadataLaneIdentifier?: string;
|
|
9686
|
+
readonly pickupCenter?: string;
|
|
9687
|
+
}
|
|
9544
9688
|
interface RatecardDeleted {
|
|
9545
9689
|
readonly discriminator: 'ratecard_deleted';
|
|
9546
9690
|
readonly event_id: string;
|
|
@@ -9633,7 +9777,7 @@ declare namespace io.flow.v0.models {
|
|
|
9633
9777
|
readonly glbe_shipping_method_id?: string;
|
|
9634
9778
|
readonly glbe_proposition_name?: string;
|
|
9635
9779
|
readonly channel_revenue_share_percentage?: number;
|
|
9636
|
-
readonly data?:
|
|
9780
|
+
readonly data?: io.flow.v0.models.RatecardData;
|
|
9637
9781
|
}
|
|
9638
9782
|
interface RatecardLane {
|
|
9639
9783
|
readonly id: string;
|
|
@@ -10182,8 +10326,14 @@ declare namespace io.flow.v0.models {
|
|
|
10182
10326
|
interface SellabilityNeedsActionAttributes {
|
|
10183
10327
|
readonly reason_code: string;
|
|
10184
10328
|
readonly category_metafield_handles: string[];
|
|
10329
|
+
readonly category_metafield_ids: string[];
|
|
10185
10330
|
readonly require_msds?: boolean;
|
|
10186
10331
|
}
|
|
10332
|
+
interface SellabilityReasonWithRegions {
|
|
10333
|
+
readonly reason: string;
|
|
10334
|
+
readonly regions: string[];
|
|
10335
|
+
readonly review_status?: string;
|
|
10336
|
+
}
|
|
10187
10337
|
interface SellabilityRegionResult {
|
|
10188
10338
|
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
10189
10339
|
readonly regions: string[];
|
|
@@ -10192,13 +10342,17 @@ declare namespace io.flow.v0.models {
|
|
|
10192
10342
|
readonly region: string;
|
|
10193
10343
|
readonly reasons: string[];
|
|
10194
10344
|
}
|
|
10345
|
+
interface SellabilityRestrictedReason {
|
|
10346
|
+
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
10347
|
+
readonly reasons_with_regions: io.flow.v0.models.SellabilityReasonWithRegions[];
|
|
10348
|
+
}
|
|
10195
10349
|
interface SellabilityRestrictedRegion {
|
|
10196
10350
|
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
10197
|
-
readonly
|
|
10351
|
+
readonly regions: string[];
|
|
10198
10352
|
}
|
|
10199
10353
|
interface SellabilityScreening {
|
|
10200
10354
|
readonly discriminator: 'sellability_screening';
|
|
10201
|
-
readonly
|
|
10355
|
+
readonly product_sellability_result?: io.flow.v0.models.ProductSellabilityResult;
|
|
10202
10356
|
readonly request_id: string;
|
|
10203
10357
|
readonly status: io.flow.v0.enums.SellabilityResultStatus;
|
|
10204
10358
|
readonly error_code?: io.flow.v0.enums.SellabilityResultErrorCode;
|
|
@@ -10799,6 +10953,7 @@ declare namespace io.flow.v0.models {
|
|
|
10799
10953
|
readonly activated_at?: string;
|
|
10800
10954
|
readonly status_updated_at?: string;
|
|
10801
10955
|
readonly shop?: io.flow.v0.models.Shop;
|
|
10956
|
+
readonly settlement_currency?: string;
|
|
10802
10957
|
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
10803
10958
|
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
10804
10959
|
readonly average_order_value?: io.flow.v0.models.Money;
|
|
@@ -10831,6 +10986,7 @@ declare namespace io.flow.v0.models {
|
|
|
10831
10986
|
readonly ratecard_id?: string;
|
|
10832
10987
|
readonly rate_card: string;
|
|
10833
10988
|
readonly shop?: io.flow.v0.models.Shop;
|
|
10989
|
+
readonly settlement_currency?: string;
|
|
10834
10990
|
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
10835
10991
|
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
10836
10992
|
readonly average_order_value?: io.flow.v0.models.Money;
|
|
@@ -11089,6 +11245,26 @@ declare namespace io.flow.v0.models {
|
|
|
11089
11245
|
readonly key: io.flow.v0.enums.DeliveryOptionCostDetailComponentKey;
|
|
11090
11246
|
readonly available: io.flow.v0.models.SurchargeResponsiblePartyDisplay[];
|
|
11091
11247
|
}
|
|
11248
|
+
interface TariffCodes {
|
|
11249
|
+
readonly item_number: string;
|
|
11250
|
+
readonly product_id: string;
|
|
11251
|
+
readonly hs6_code: string;
|
|
11252
|
+
readonly codes: io.flow.v0.models.HarmonizationTariffCode[];
|
|
11253
|
+
}
|
|
11254
|
+
interface TariffCodesDeleted {
|
|
11255
|
+
readonly discriminator: 'tariff_codes_deleted';
|
|
11256
|
+
readonly event_id: string;
|
|
11257
|
+
readonly timestamp: string;
|
|
11258
|
+
readonly organization: string;
|
|
11259
|
+
readonly id: string;
|
|
11260
|
+
}
|
|
11261
|
+
interface TariffCodesUpserted {
|
|
11262
|
+
readonly discriminator: 'tariff_codes_upserted';
|
|
11263
|
+
readonly event_id: string;
|
|
11264
|
+
readonly timestamp: string;
|
|
11265
|
+
readonly organization: string;
|
|
11266
|
+
readonly tariff_codes: io.flow.v0.models.TariffCodes;
|
|
11267
|
+
}
|
|
11092
11268
|
interface Tax {
|
|
11093
11269
|
readonly name: string;
|
|
11094
11270
|
readonly rate: number;
|
|
@@ -11224,6 +11400,8 @@ declare namespace io.flow.v0.models {
|
|
|
11224
11400
|
readonly discriminator: 'test_upserted';
|
|
11225
11401
|
readonly event_id: string;
|
|
11226
11402
|
readonly timestamp: string;
|
|
11403
|
+
readonly organization: string;
|
|
11404
|
+
readonly channel_id: string;
|
|
11227
11405
|
readonly test: io.flow.ben.test.internal.v0.models.Test;
|
|
11228
11406
|
}
|
|
11229
11407
|
interface ThirdPartyLogisticsPartner {
|
|
@@ -11565,7 +11743,7 @@ declare namespace io.flow.v0.models {
|
|
|
11565
11743
|
readonly label_created_at: string;
|
|
11566
11744
|
readonly carrier_id: string;
|
|
11567
11745
|
readonly carrier_tracking_number: string;
|
|
11568
|
-
readonly revenue_share_percentage
|
|
11746
|
+
readonly revenue_share_percentage?: number;
|
|
11569
11747
|
readonly outbound?: io.flow.v0.models.TransactionMetadataOutboundTransaction;
|
|
11570
11748
|
}
|
|
11571
11749
|
interface TransactionMetadataChannel {
|
|
@@ -11598,6 +11776,17 @@ declare namespace io.flow.v0.models {
|
|
|
11598
11776
|
readonly description: string;
|
|
11599
11777
|
readonly original?: io.flow.v0.models.TransactionMetadataOriginalTransaction;
|
|
11600
11778
|
readonly url?: string;
|
|
11779
|
+
readonly recoup?: boolean;
|
|
11780
|
+
}
|
|
11781
|
+
interface TransactionMetadataMerchantFee {
|
|
11782
|
+
readonly discriminator: 'merchant_fee';
|
|
11783
|
+
readonly items: io.flow.v0.models.TransactionMetadataMerchantFeeItem[];
|
|
11784
|
+
}
|
|
11785
|
+
interface TransactionMetadataMerchantFeeItem {
|
|
11786
|
+
readonly type: string;
|
|
11787
|
+
readonly amount: number;
|
|
11788
|
+
readonly local_amount?: number;
|
|
11789
|
+
readonly description?: string;
|
|
11601
11790
|
}
|
|
11602
11791
|
interface TransactionMetadataOriginalTransaction {
|
|
11603
11792
|
readonly id: string;
|
|
@@ -11959,7 +12148,7 @@ declare namespace io.flow.v0.unions {
|
|
|
11959
12148
|
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;
|
|
11960
12149
|
type AvailableFilter = io.flow.v0.models.AvailableFilterStructured | io.flow.v0.models.AvailableFilterUnstructured;
|
|
11961
12150
|
type BankAccountForm = io.flow.v0.models.BankAccountFormInfo | io.flow.v0.models.BankAccountFormSimple;
|
|
11962
|
-
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;
|
|
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;
|
|
11963
12152
|
type BrowserActionConfiguration = io.flow.v0.models.CardBrowserActionConfiguration;
|
|
11964
12153
|
type CardAuthorizationActionResult = io.flow.v0.models.AuthorizationActionResultAdyenV3 | io.flow.v0.models.AuthorizationActionResultAdyenV4;
|
|
11965
12154
|
type CardNumber = io.flow.v0.models.PaymentMethodCardNumberCleartext | io.flow.v0.models.PaymentMethodCardNumberCipher;
|
|
@@ -11976,7 +12165,7 @@ declare namespace io.flow.v0.unions {
|
|
|
11976
12165
|
type Document = io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument;
|
|
11977
12166
|
type EmailNotificationData = io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder;
|
|
11978
12167
|
type Entity = io.flow.v0.models.Company | io.flow.v0.models.Individual;
|
|
11979
|
-
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;
|
|
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;
|
|
11980
12169
|
type ExpandableCard = io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary | io.flow.v0.models.ExternalCard;
|
|
11981
12170
|
type ExpandableCenter = io.flow.v0.models.Center | io.flow.v0.models.CenterReference;
|
|
11982
12171
|
type ExpandableExperience = io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference;
|
|
@@ -12011,6 +12200,7 @@ declare namespace io.flow.v0.unions {
|
|
|
12011
12200
|
type OrderPromotion = io.flow.v0.models.FreeShippingOrderPromotion;
|
|
12012
12201
|
type OrderPromotionForm = io.flow.v0.models.FreeShippingOrderPromotionForm;
|
|
12013
12202
|
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;
|
|
12014
12204
|
type PartnerCenterFee = io.flow.v0.models.CommercialInvoiceFee | io.flow.v0.models.InboundCartonFee | io.flow.v0.models.OutboundCartonFee;
|
|
12015
12205
|
type Payment = io.flow.v0.models.PaymentPaypal | io.flow.v0.models.PaymentCryptopay;
|
|
12016
12206
|
type PaymentCaptureOption = io.flow.v0.models.PaymentCaptureOptionAutomaticImmediate | io.flow.v0.models.PaymentCaptureOptionManual;
|
|
@@ -12065,7 +12255,7 @@ declare namespace io.flow.v0.unions {
|
|
|
12065
12255
|
type Token = io.flow.v0.models.ChannelToken | io.flow.v0.models.OrganizationToken | io.flow.v0.models.OrganizationTokenV2 | io.flow.v0.models.PartnerToken;
|
|
12066
12256
|
type TokenReference = io.flow.v0.models.ChannelTokenReference | io.flow.v0.models.OrganizationTokenReference | io.flow.v0.models.OrganizationTokenV2Reference | io.flow.v0.models.PartnerTokenReference;
|
|
12067
12257
|
type TransactionDetails = io.flow.v0.models.TransactionDetailsCard;
|
|
12068
|
-
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;
|
|
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;
|
|
12069
12259
|
type TransferReference = io.flow.v0.models.CaptureReference | io.flow.v0.models.RefundReference | io.flow.v0.models.DisputeReference;
|
|
12070
12260
|
}
|
|
12071
12261
|
export declare type AbandonedOrderEmailSettings = io.flow.v0.models.AbandonedOrderEmailSettings;
|
|
@@ -12135,6 +12325,8 @@ export declare type AllocationUpsertedV2 = io.flow.v0.models.AllocationUpsertedV
|
|
|
12135
12325
|
export declare type AllocationV2 = io.flow.v0.models.AllocationV2;
|
|
12136
12326
|
export declare type AmountMargin = io.flow.v0.models.AmountMargin;
|
|
12137
12327
|
export declare type AmountMarginForm = io.flow.v0.models.AmountMarginForm;
|
|
12328
|
+
export declare type AmruthaItemDeleted = io.flow.v0.models.AmruthaItemDeleted;
|
|
12329
|
+
export declare type AmruthaItemUpserted = io.flow.v0.models.AmruthaItemUpserted;
|
|
12138
12330
|
export declare type AnalyticsExportType = io.flow.v0.models.AnalyticsExportType;
|
|
12139
12331
|
export declare type ApplePayMerchantValidationPayload = io.flow.v0.models.ApplePayMerchantValidationPayload;
|
|
12140
12332
|
export declare type ApplepaySdkCreateResultActionDetails = io.flow.v0.models.ApplepaySdkCreateResultActionDetails;
|
|
@@ -12208,6 +12400,7 @@ export declare type BankAccountInfoCan = io.flow.v0.models.BankAccountInfoCan;
|
|
|
12208
12400
|
export declare type BankAccountInfoFra = io.flow.v0.models.BankAccountInfoFra;
|
|
12209
12401
|
export declare type BankAccountInfoGbr = io.flow.v0.models.BankAccountInfoGbr;
|
|
12210
12402
|
export declare type BankAccountInfoIta = io.flow.v0.models.BankAccountInfoIta;
|
|
12403
|
+
export declare type BankAccountInfoKor = io.flow.v0.models.BankAccountInfoKor;
|
|
12211
12404
|
export declare type BankAccountInfoUsa = io.flow.v0.models.BankAccountInfoUsa;
|
|
12212
12405
|
export declare type BankAccountReference = io.flow.v0.models.BankAccountReference;
|
|
12213
12406
|
export declare type BankAccountSummary = io.flow.v0.models.BankAccountSummary;
|
|
@@ -12707,6 +12900,7 @@ export declare type HarmonizationDocument = io.flow.v0.models.HarmonizationDocum
|
|
|
12707
12900
|
export declare type HarmonizationHs10ExportType = io.flow.v0.models.HarmonizationHs10ExportType;
|
|
12708
12901
|
export declare type HarmonizationHs6ExportType = io.flow.v0.models.HarmonizationHs6ExportType;
|
|
12709
12902
|
export declare type HarmonizationOverviewExportType = io.flow.v0.models.HarmonizationOverviewExportType;
|
|
12903
|
+
export declare type HarmonizationTariffCode = io.flow.v0.models.HarmonizationTariffCode;
|
|
12710
12904
|
export declare type HarmonizationTariffCodesExportType = io.flow.v0.models.HarmonizationTariffCodesExportType;
|
|
12711
12905
|
export declare type HarmonizedCategoryReference = io.flow.v0.models.HarmonizedCategoryReference;
|
|
12712
12906
|
export declare type HarmonizedItem = io.flow.v0.models.HarmonizedItem;
|
|
@@ -13023,6 +13217,14 @@ export declare type OrderRulesSummary = io.flow.v0.models.OrderRulesSummary;
|
|
|
13023
13217
|
export declare type OrderServiceChange = io.flow.v0.models.OrderServiceChange;
|
|
13024
13218
|
export declare type OrderServiceChangeForm = io.flow.v0.models.OrderServiceChangeForm;
|
|
13025
13219
|
export declare type OrderServiceChangeRequestData = io.flow.v0.models.OrderServiceChangeRequestData;
|
|
13220
|
+
export declare type OrderState = io.flow.v0.models.OrderState;
|
|
13221
|
+
export declare type OrderStateDeleted = io.flow.v0.models.OrderStateDeleted;
|
|
13222
|
+
export declare type OrderStateRejectionReason = io.flow.v0.unions.OrderStateRejectionReason;
|
|
13223
|
+
export declare type OrderStateRejectionReasonDomesticOrder = io.flow.v0.models.OrderStateRejectionReasonDomesticOrder;
|
|
13224
|
+
export declare type OrderStateRejectionReasonItemsEmpty = io.flow.v0.models.OrderStateRejectionReasonItemsEmpty;
|
|
13225
|
+
export declare type OrderStateRejectionReasonRestrictedItem = io.flow.v0.models.OrderStateRejectionReasonRestrictedItem;
|
|
13226
|
+
export declare type OrderStateStatus = io.flow.v0.enums.OrderStateStatus;
|
|
13227
|
+
export declare type OrderStateUpserted = io.flow.v0.models.OrderStateUpserted;
|
|
13026
13228
|
export declare type OrderStatus = io.flow.v0.enums.OrderStatus;
|
|
13027
13229
|
export declare type OrderStorage = io.flow.v0.enums.OrderStorage;
|
|
13028
13230
|
export declare type OrderSubmissionForm = io.flow.v0.models.OrderSubmissionForm;
|
|
@@ -13304,6 +13506,7 @@ export declare type PriceWithBaseAndDetails = io.flow.v0.models.PriceWithBaseAnd
|
|
|
13304
13506
|
export declare type Pricing = io.flow.v0.models.Pricing;
|
|
13305
13507
|
export declare type PricingLevySetting = io.flow.v0.enums.PricingLevySetting;
|
|
13306
13508
|
export declare type PricingSettings = io.flow.v0.models.PricingSettings;
|
|
13509
|
+
export declare type PricingType = io.flow.v0.enums.PricingType;
|
|
13307
13510
|
export declare type PricingVersion = io.flow.v0.models.PricingVersion;
|
|
13308
13511
|
export declare type ProcessingEstimate = io.flow.v0.models.ProcessingEstimate;
|
|
13309
13512
|
export declare type Product = io.flow.v0.models.Product;
|
|
@@ -13357,6 +13560,7 @@ export declare type RateUpsertedV3 = io.flow.v0.models.RateUpsertedV3;
|
|
|
13357
13560
|
export declare type RateVersion = io.flow.v0.models.RateVersion;
|
|
13358
13561
|
export declare type Ratecard = io.flow.v0.models.Ratecard;
|
|
13359
13562
|
export declare type RatecardCarrierSummary = io.flow.v0.models.RatecardCarrierSummary;
|
|
13563
|
+
export declare type RatecardData = io.flow.v0.models.RatecardData;
|
|
13360
13564
|
export declare type RatecardDeleted = io.flow.v0.models.RatecardDeleted;
|
|
13361
13565
|
export declare type RatecardEstimate = io.flow.v0.unions.RatecardEstimate;
|
|
13362
13566
|
export declare type RatecardEstimateForm = io.flow.v0.models.RatecardEstimateForm;
|
|
@@ -13478,11 +13682,13 @@ export declare type SelfBillingAgreement = io.flow.v0.models.SelfBillingAgreemen
|
|
|
13478
13682
|
export declare type SellabilityError = io.flow.v0.models.SellabilityError;
|
|
13479
13683
|
export declare type SellabilityErrorCode = io.flow.v0.enums.SellabilityErrorCode;
|
|
13480
13684
|
export declare type SellabilityNeedsActionAttributes = io.flow.v0.models.SellabilityNeedsActionAttributes;
|
|
13685
|
+
export declare type SellabilityReasonWithRegions = io.flow.v0.models.SellabilityReasonWithRegions;
|
|
13481
13686
|
export declare type SellabilityRegionResult = io.flow.v0.models.SellabilityRegionResult;
|
|
13482
13687
|
export declare type SellabilityRegionWithReasons = io.flow.v0.models.SellabilityRegionWithReasons;
|
|
13483
13688
|
export declare type SellabilityRequest = io.flow.v0.unions.SellabilityRequest;
|
|
13484
13689
|
export declare type SellabilityRequestStatus = io.flow.v0.enums.SellabilityRequestStatus;
|
|
13485
13690
|
export declare type SellabilityResponse = io.flow.v0.unions.SellabilityResponse;
|
|
13691
|
+
export declare type SellabilityRestrictedReason = io.flow.v0.models.SellabilityRestrictedReason;
|
|
13486
13692
|
export declare type SellabilityRestrictedRegion = io.flow.v0.models.SellabilityRestrictedRegion;
|
|
13487
13693
|
export declare type SellabilityResultErrorCode = io.flow.v0.enums.SellabilityResultErrorCode;
|
|
13488
13694
|
export declare type SellabilityResultStatus = io.flow.v0.enums.SellabilityResultStatus;
|
|
@@ -13646,6 +13852,9 @@ export declare type SurchargeResponsibleParty = io.flow.v0.enums.SurchargeRespon
|
|
|
13646
13852
|
export declare type SurchargeResponsiblePartyDisplay = io.flow.v0.models.SurchargeResponsiblePartyDisplay;
|
|
13647
13853
|
export declare type SurchargeSetting = io.flow.v0.models.SurchargeSetting;
|
|
13648
13854
|
export declare type SurchargeSettingDisplay = io.flow.v0.models.SurchargeSettingDisplay;
|
|
13855
|
+
export declare type TariffCodes = io.flow.v0.models.TariffCodes;
|
|
13856
|
+
export declare type TariffCodesDeleted = io.flow.v0.models.TariffCodesDeleted;
|
|
13857
|
+
export declare type TariffCodesUpserted = io.flow.v0.models.TariffCodesUpserted;
|
|
13649
13858
|
export declare type Tax = io.flow.v0.models.Tax;
|
|
13650
13859
|
export declare type TaxApplicability = io.flow.v0.enums.TaxApplicability;
|
|
13651
13860
|
export declare type TaxBreakdown = io.flow.v0.models.TaxBreakdown;
|
|
@@ -13748,6 +13957,8 @@ export declare type TransactionMetadataChannelOrganizationTransaction = io.flow.
|
|
|
13748
13957
|
export declare type TransactionMetadataFailedPayout = io.flow.v0.models.TransactionMetadataFailedPayout;
|
|
13749
13958
|
export declare type TransactionMetadataFailedPayoutReference = io.flow.v0.models.TransactionMetadataFailedPayoutReference;
|
|
13750
13959
|
export declare type TransactionMetadataManual = io.flow.v0.models.TransactionMetadataManual;
|
|
13960
|
+
export declare type TransactionMetadataMerchantFee = io.flow.v0.models.TransactionMetadataMerchantFee;
|
|
13961
|
+
export declare type TransactionMetadataMerchantFeeItem = io.flow.v0.models.TransactionMetadataMerchantFeeItem;
|
|
13751
13962
|
export declare type TransactionMetadataOriginalTransaction = io.flow.v0.models.TransactionMetadataOriginalTransaction;
|
|
13752
13963
|
export declare type TransactionMetadataOutboundTransaction = io.flow.v0.models.TransactionMetadataOutboundTransaction;
|
|
13753
13964
|
export declare type TransactionMetadataPaymentTransaction = io.flow.v0.models.TransactionMetadataPaymentTransaction;
|