@flowio/types 11.24.135 → 11.24.136
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 +248 -76
- package/dist/api.d.ts +97 -37
- package/package.json +1 -1
- package/src/api-internal.ts +321 -106
- package/src/api.ts +122 -36
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;
|
|
@@ -2210,7 +2210,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
2210
2210
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
2211
2211
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
2212
2212
|
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';
|
|
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' | 'organization_deactivated';
|
|
2214
2214
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
2215
2215
|
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
|
|
2216
2216
|
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
@@ -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 {
|
|
@@ -2579,7 +2579,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
2579
2579
|
readonly parent?: io.flow.common.v0.models.OrganizationReference;
|
|
2580
2580
|
readonly defaults?: io.flow.common.v0.models.OrganizationDefaults;
|
|
2581
2581
|
readonly created_at?: string;
|
|
2582
|
-
readonly status
|
|
2582
|
+
readonly status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
2583
2583
|
readonly type?: io.flow.common.v0.enums.OrganizationType;
|
|
2584
2584
|
}
|
|
2585
2585
|
interface OrganizationDefaults {
|
|
@@ -2844,8 +2844,10 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
2844
2844
|
}
|
|
2845
2845
|
declare namespace io.flow.tech.onboarding.playground.v0.enums {
|
|
2846
2846
|
type AmruthaItemType = 'physical' | 'digital';
|
|
2847
|
+
type BojanaItemType = 'physical' | 'digital';
|
|
2847
2848
|
type ChenglinItemType = 'physical' | 'digital';
|
|
2848
2849
|
type GabrielItemType = 'physical' | 'digital';
|
|
2850
|
+
type RaveenaItemType = 'physical' | 'digital';
|
|
2849
2851
|
}
|
|
2850
2852
|
declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
2851
2853
|
interface AmruthaItem {
|
|
@@ -2863,6 +2865,21 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
|
2863
2865
|
readonly type: io.flow.tech.onboarding.playground.v0.enums.AmruthaItemType;
|
|
2864
2866
|
readonly added_on: string;
|
|
2865
2867
|
}
|
|
2868
|
+
interface BojanaItem {
|
|
2869
|
+
readonly id: string;
|
|
2870
|
+
readonly number: string;
|
|
2871
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
2872
|
+
readonly description?: string;
|
|
2873
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.BojanaItemType;
|
|
2874
|
+
readonly added_on: string;
|
|
2875
|
+
}
|
|
2876
|
+
interface BojanaItemForm {
|
|
2877
|
+
readonly number: string;
|
|
2878
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
2879
|
+
readonly description?: string;
|
|
2880
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.BojanaItemType;
|
|
2881
|
+
readonly added_on: string;
|
|
2882
|
+
}
|
|
2866
2883
|
interface ChenglinItem {
|
|
2867
2884
|
readonly id: string;
|
|
2868
2885
|
readonly number: string;
|
|
@@ -2893,6 +2910,21 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
|
2893
2910
|
readonly type: io.flow.tech.onboarding.playground.v0.enums.GabrielItemType;
|
|
2894
2911
|
readonly added_on: string;
|
|
2895
2912
|
}
|
|
2913
|
+
interface RaveenaItem {
|
|
2914
|
+
readonly id: string;
|
|
2915
|
+
readonly number: string;
|
|
2916
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
2917
|
+
readonly description?: string;
|
|
2918
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.RaveenaItemType;
|
|
2919
|
+
readonly added_on: string;
|
|
2920
|
+
}
|
|
2921
|
+
interface RaveenaItemForm {
|
|
2922
|
+
readonly number: string;
|
|
2923
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
2924
|
+
readonly description?: string;
|
|
2925
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.RaveenaItemType;
|
|
2926
|
+
readonly added_on: string;
|
|
2927
|
+
}
|
|
2896
2928
|
interface TechOnboardingDescription {
|
|
2897
2929
|
readonly description: string;
|
|
2898
2930
|
}
|
|
@@ -3006,7 +3038,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3006
3038
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
3007
3039
|
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
3008
3040
|
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';
|
|
3041
|
+
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
3042
|
type ExceptionType = 'open' | 'closed';
|
|
3011
3043
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
3012
3044
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -3016,8 +3048,9 @@ declare namespace io.flow.v0.enums {
|
|
|
3016
3048
|
type ExportStatus = 'created' | 'processing' | 'completed' | 'failed';
|
|
3017
3049
|
type ExporterOfRecord = 'flow' | 'organization';
|
|
3018
3050
|
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';
|
|
3051
|
+
type FeeInvoiceType = 'mor_invoice' | 'label_invoice' | 'mor_credit_memo' | 'label_credit_memo';
|
|
3019
3052
|
type FlowBehavior = 'view_consumer_data';
|
|
3020
|
-
type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can' | 'ge-usa' | 'ge-can' | 'ge-gbr' | 'ge-irl';
|
|
3053
|
+
type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can' | 'ge-usa' | 'ge-can' | 'ge-can-ship' | 'ge-gbr' | 'ge-irl';
|
|
3021
3054
|
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
3055
|
type FraudEmailRuleDecision = 'approved' | 'declined';
|
|
3023
3056
|
type FraudLiability = 'flow' | 'organization';
|
|
@@ -3069,7 +3102,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3069
3102
|
type OrderPaymentType = 'card' | 'online' | 'credit' | 'external' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
|
|
3070
3103
|
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
3104
|
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
3072
|
-
type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product';
|
|
3105
|
+
type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product' | 'mor_tax';
|
|
3073
3106
|
type OrderRefundSummaryIncludes = 'duties' | 'vat' | 'shipping';
|
|
3074
3107
|
type OrderRefundSummaryPartialCharged = 'per_item' | 'for_order' | 'by_value_percentage' | 'by_quantity_percentage';
|
|
3075
3108
|
type OrderStateStatus = 'pending' | 'accepted' | 'rejected';
|
|
@@ -3152,6 +3185,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3152
3185
|
type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
|
|
3153
3186
|
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
3187
|
type SurchargeResponsibleParty = 'organization' | 'customer';
|
|
3188
|
+
type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
|
|
3155
3189
|
type TaxApplicability = 'none' | 'all';
|
|
3156
3190
|
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
3191
|
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 +3205,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3171
3205
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired' | 'unknown' | 'unmapped';
|
|
3172
3206
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
3173
3207
|
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';
|
|
3208
|
+
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
3209
|
type TransferStatus = 'succeeded' | 'canceled';
|
|
3176
3210
|
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
3211
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
@@ -3920,14 +3954,10 @@ declare namespace io.flow.v0.models {
|
|
|
3920
3954
|
}
|
|
3921
3955
|
interface BankAccountInfoKor {
|
|
3922
3956
|
readonly discriminator: 'kor';
|
|
3923
|
-
readonly name
|
|
3924
|
-
readonly address?: io.flow.v0.models.Address;
|
|
3925
|
-
readonly phone?: string;
|
|
3926
|
-
readonly email?: string;
|
|
3957
|
+
readonly name: string;
|
|
3927
3958
|
readonly bank_account_number: string;
|
|
3928
|
-
readonly bank_routing_number
|
|
3929
|
-
readonly bank_name
|
|
3930
|
-
readonly bank_address?: io.flow.v0.models.Address;
|
|
3959
|
+
readonly bank_routing_number: string;
|
|
3960
|
+
readonly bank_name: string;
|
|
3931
3961
|
}
|
|
3932
3962
|
interface BankAccountInfoUsa {
|
|
3933
3963
|
readonly discriminator: 'usa';
|
|
@@ -4783,7 +4813,6 @@ declare namespace io.flow.v0.models {
|
|
|
4783
4813
|
readonly default_country_of_origin?: string;
|
|
4784
4814
|
readonly rate_card: string;
|
|
4785
4815
|
readonly shop?: io.flow.v0.models.Shop;
|
|
4786
|
-
readonly settlement_currency?: string;
|
|
4787
4816
|
readonly created_at: string;
|
|
4788
4817
|
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
4789
4818
|
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
@@ -4811,7 +4840,6 @@ declare namespace io.flow.v0.models {
|
|
|
4811
4840
|
readonly monthly_average_number_transactions?: number;
|
|
4812
4841
|
readonly default_country_of_origin?: string;
|
|
4813
4842
|
readonly shop?: io.flow.v0.models.Shop;
|
|
4814
|
-
readonly settlement_currency?: string;
|
|
4815
4843
|
readonly rate_card?: string;
|
|
4816
4844
|
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
4817
4845
|
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
@@ -5996,6 +6024,34 @@ declare namespace io.flow.v0.models {
|
|
|
5996
6024
|
readonly amount: number;
|
|
5997
6025
|
readonly description?: string;
|
|
5998
6026
|
}
|
|
6027
|
+
interface FeeInvoice {
|
|
6028
|
+
readonly id: string;
|
|
6029
|
+
readonly number: string;
|
|
6030
|
+
readonly invoice_type: io.flow.v0.enums.FeeInvoiceType;
|
|
6031
|
+
readonly buyer: io.flow.v0.models.MerchantOfRecordEntity;
|
|
6032
|
+
readonly seller: io.flow.v0.models.MerchantOfRecordEntity;
|
|
6033
|
+
readonly date: string;
|
|
6034
|
+
readonly b2b_tax_transaction_id: string;
|
|
6035
|
+
readonly order_number: string;
|
|
6036
|
+
readonly tax: io.flow.v0.models.Money;
|
|
6037
|
+
readonly tax_lines?: io.flow.v0.models.InvoiceTaxLine[];
|
|
6038
|
+
readonly lines: io.flow.v0.unions.ConsumerInvoiceLine[];
|
|
6039
|
+
readonly documents: io.flow.v0.models.ConsumerInvoiceDocument[];
|
|
6040
|
+
}
|
|
6041
|
+
interface FeeInvoiceDeleted {
|
|
6042
|
+
readonly discriminator: 'fee_invoice_deleted';
|
|
6043
|
+
readonly event_id: string;
|
|
6044
|
+
readonly timestamp: string;
|
|
6045
|
+
readonly organization: string;
|
|
6046
|
+
readonly id: string;
|
|
6047
|
+
}
|
|
6048
|
+
interface FeeInvoiceUpserted {
|
|
6049
|
+
readonly discriminator: 'fee_invoice_upserted';
|
|
6050
|
+
readonly event_id: string;
|
|
6051
|
+
readonly timestamp: string;
|
|
6052
|
+
readonly organization: string;
|
|
6053
|
+
readonly fee_invoice: io.flow.v0.models.FeeInvoice;
|
|
6054
|
+
}
|
|
5999
6055
|
interface FeeWeight {
|
|
6000
6056
|
readonly weight: number;
|
|
6001
6057
|
readonly unit: io.flow.v0.enums.UnitOfMeasurement;
|
|
@@ -7078,6 +7134,7 @@ declare namespace io.flow.v0.models {
|
|
|
7078
7134
|
interface LineItemForm {
|
|
7079
7135
|
readonly number: string;
|
|
7080
7136
|
readonly quantity: number;
|
|
7137
|
+
readonly line_item_identifier?: string;
|
|
7081
7138
|
readonly shipment_estimate?: io.flow.v0.models.DatetimeRange;
|
|
7082
7139
|
readonly price?: io.flow.v0.models.Money;
|
|
7083
7140
|
readonly attributes?: Record<string, string>;
|
|
@@ -9709,12 +9766,6 @@ declare namespace io.flow.v0.models {
|
|
|
9709
9766
|
readonly duties_owed?: io.flow.v0.models.Money;
|
|
9710
9767
|
readonly commercial_invoice_mode?: io.flow.v0.enums.CommercialInvoiceMode;
|
|
9711
9768
|
}
|
|
9712
|
-
interface RatecardEstimateSummaryForm {
|
|
9713
|
-
readonly origin?: string;
|
|
9714
|
-
readonly destination?: string;
|
|
9715
|
-
readonly service?: string;
|
|
9716
|
-
readonly center_key?: string;
|
|
9717
|
-
}
|
|
9718
9769
|
interface RatecardEstimateV1 {
|
|
9719
9770
|
readonly discriminator: 'ratecard_estimate_v1';
|
|
9720
9771
|
readonly service: io.flow.v0.models.RatecardServiceSummary;
|
|
@@ -10744,6 +10795,7 @@ declare namespace io.flow.v0.models {
|
|
|
10744
10795
|
readonly weight_break?: number;
|
|
10745
10796
|
}
|
|
10746
10797
|
interface ShippingRateEstimateRequest {
|
|
10798
|
+
readonly carrier_id: string;
|
|
10747
10799
|
readonly origin_address: io.flow.v0.models.Address;
|
|
10748
10800
|
readonly destination_address: io.flow.v0.models.Address;
|
|
10749
10801
|
readonly package_dimensions: io.flow.v0.models.Dimension;
|
|
@@ -10953,7 +11005,6 @@ declare namespace io.flow.v0.models {
|
|
|
10953
11005
|
readonly activated_at?: string;
|
|
10954
11006
|
readonly status_updated_at?: string;
|
|
10955
11007
|
readonly shop?: io.flow.v0.models.Shop;
|
|
10956
|
-
readonly settlement_currency?: string;
|
|
10957
11008
|
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
10958
11009
|
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
10959
11010
|
readonly average_order_value?: io.flow.v0.models.Money;
|
|
@@ -10986,7 +11037,6 @@ declare namespace io.flow.v0.models {
|
|
|
10986
11037
|
readonly ratecard_id?: string;
|
|
10987
11038
|
readonly rate_card: string;
|
|
10988
11039
|
readonly shop?: io.flow.v0.models.Shop;
|
|
10989
|
-
readonly settlement_currency?: string;
|
|
10990
11040
|
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
10991
11041
|
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
10992
11042
|
readonly average_order_value?: io.flow.v0.models.Money;
|
|
@@ -11771,6 +11821,11 @@ declare namespace io.flow.v0.models {
|
|
|
11771
11821
|
interface TransactionMetadataFailedPayoutReference {
|
|
11772
11822
|
readonly id: string;
|
|
11773
11823
|
}
|
|
11824
|
+
interface TransactionMetadataFlatRateLabel {
|
|
11825
|
+
readonly discriminator: 'flat_rate_label';
|
|
11826
|
+
readonly flat_rate?: number;
|
|
11827
|
+
readonly coefficient?: number;
|
|
11828
|
+
}
|
|
11774
11829
|
interface TransactionMetadataManual {
|
|
11775
11830
|
readonly discriminator: 'manual';
|
|
11776
11831
|
readonly description: string;
|
|
@@ -12165,7 +12220,7 @@ declare namespace io.flow.v0.unions {
|
|
|
12165
12220
|
type Document = io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument;
|
|
12166
12221
|
type EmailNotificationData = io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder;
|
|
12167
12222
|
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;
|
|
12223
|
+
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
12224
|
type ExpandableCard = io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary | io.flow.v0.models.ExternalCard;
|
|
12170
12225
|
type ExpandableCenter = io.flow.v0.models.Center | io.flow.v0.models.CenterReference;
|
|
12171
12226
|
type ExpandableExperience = io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference;
|
|
@@ -12255,7 +12310,7 @@ declare namespace io.flow.v0.unions {
|
|
|
12255
12310
|
type Token = io.flow.v0.models.ChannelToken | io.flow.v0.models.OrganizationToken | io.flow.v0.models.OrganizationTokenV2 | io.flow.v0.models.PartnerToken;
|
|
12256
12311
|
type TokenReference = io.flow.v0.models.ChannelTokenReference | io.flow.v0.models.OrganizationTokenReference | io.flow.v0.models.OrganizationTokenV2Reference | io.flow.v0.models.PartnerTokenReference;
|
|
12257
12312
|
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;
|
|
12313
|
+
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
12314
|
type TransferReference = io.flow.v0.models.CaptureReference | io.flow.v0.models.RefundReference | io.flow.v0.models.DisputeReference;
|
|
12260
12315
|
}
|
|
12261
12316
|
export declare type AbandonedOrderEmailSettings = io.flow.v0.models.AbandonedOrderEmailSettings;
|
|
@@ -12813,6 +12868,10 @@ export declare type ExternalCard = io.flow.v0.models.ExternalCard;
|
|
|
12813
12868
|
export declare type ExternalOrderSummary = io.flow.v0.models.ExternalOrderSummary;
|
|
12814
12869
|
export declare type FeeDeduction = io.flow.v0.models.FeeDeduction;
|
|
12815
12870
|
export declare type FeeDeductionType = io.flow.v0.enums.FeeDeductionType;
|
|
12871
|
+
export declare type FeeInvoice = io.flow.v0.models.FeeInvoice;
|
|
12872
|
+
export declare type FeeInvoiceDeleted = io.flow.v0.models.FeeInvoiceDeleted;
|
|
12873
|
+
export declare type FeeInvoiceType = io.flow.v0.enums.FeeInvoiceType;
|
|
12874
|
+
export declare type FeeInvoiceUpserted = io.flow.v0.models.FeeInvoiceUpserted;
|
|
12816
12875
|
export declare type FeeWeight = io.flow.v0.models.FeeWeight;
|
|
12817
12876
|
export declare type FieldValidationMax = io.flow.v0.models.FieldValidationMax;
|
|
12818
12877
|
export declare type FieldValidationMin = io.flow.v0.models.FieldValidationMin;
|
|
@@ -13564,7 +13623,6 @@ export declare type RatecardData = io.flow.v0.models.RatecardData;
|
|
|
13564
13623
|
export declare type RatecardDeleted = io.flow.v0.models.RatecardDeleted;
|
|
13565
13624
|
export declare type RatecardEstimate = io.flow.v0.unions.RatecardEstimate;
|
|
13566
13625
|
export declare type RatecardEstimateForm = io.flow.v0.models.RatecardEstimateForm;
|
|
13567
|
-
export declare type RatecardEstimateSummaryForm = io.flow.v0.models.RatecardEstimateSummaryForm;
|
|
13568
13626
|
export declare type RatecardEstimateV1 = io.flow.v0.models.RatecardEstimateV1;
|
|
13569
13627
|
export declare type RatecardEstimateV2 = io.flow.v0.models.RatecardEstimateV2;
|
|
13570
13628
|
export declare type RatecardEstimateV3 = io.flow.v0.models.RatecardEstimateV3;
|
|
@@ -13856,6 +13914,7 @@ export declare type TariffCodes = io.flow.v0.models.TariffCodes;
|
|
|
13856
13914
|
export declare type TariffCodesDeleted = io.flow.v0.models.TariffCodesDeleted;
|
|
13857
13915
|
export declare type TariffCodesUpserted = io.flow.v0.models.TariffCodesUpserted;
|
|
13858
13916
|
export declare type Tax = io.flow.v0.models.Tax;
|
|
13917
|
+
export declare type TaxAndDutyInclusivitySetting = io.flow.v0.enums.TaxAndDutyInclusivitySetting;
|
|
13859
13918
|
export declare type TaxApplicability = io.flow.v0.enums.TaxApplicability;
|
|
13860
13919
|
export declare type TaxBreakdown = io.flow.v0.models.TaxBreakdown;
|
|
13861
13920
|
export declare type TaxDutyCalculatorValidationError = io.flow.v0.models.TaxDutyCalculatorValidationError;
|
|
@@ -13956,6 +14015,7 @@ export declare type TransactionMetadataChannelCardMetadataIssuerSummary = io.flo
|
|
|
13956
14015
|
export declare type TransactionMetadataChannelOrganizationTransaction = io.flow.v0.models.TransactionMetadataChannelOrganizationTransaction;
|
|
13957
14016
|
export declare type TransactionMetadataFailedPayout = io.flow.v0.models.TransactionMetadataFailedPayout;
|
|
13958
14017
|
export declare type TransactionMetadataFailedPayoutReference = io.flow.v0.models.TransactionMetadataFailedPayoutReference;
|
|
14018
|
+
export declare type TransactionMetadataFlatRateLabel = io.flow.v0.models.TransactionMetadataFlatRateLabel;
|
|
13959
14019
|
export declare type TransactionMetadataManual = io.flow.v0.models.TransactionMetadataManual;
|
|
13960
14020
|
export declare type TransactionMetadataMerchantFee = io.flow.v0.models.TransactionMetadataMerchantFee;
|
|
13961
14021
|
export declare type TransactionMetadataMerchantFeeItem = io.flow.v0.models.TransactionMetadataMerchantFeeItem;
|