@flowio/types 11.24.132 → 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 +408 -318
- package/dist/api.d.ts +211 -26
- package/package.json +2 -2
- package/src/api-internal.ts +635 -390
- package/src/api.ts +265 -24
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';
|
|
@@ -3072,7 +3134,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3072
3134
|
type ScheduleExceptionStatus = 'Open' | 'Closed';
|
|
3073
3135
|
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
|
|
3074
3136
|
type SellabilityRequestStatus = 'commit';
|
|
3075
|
-
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';
|
|
3076
3138
|
type SellabilityResultStatus = 'in_review' | 'succeeded' | 'failed';
|
|
3077
3139
|
type SellabilityScreeningMode = 'pre_onboarding' | 'default_on' | 'active';
|
|
3078
3140
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
@@ -3092,7 +3154,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3092
3154
|
type SurchargeResponsibleParty = 'organization' | 'customer';
|
|
3093
3155
|
type TaxApplicability = 'none' | 'all';
|
|
3094
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';
|
|
3095
|
-
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';
|
|
3096
3158
|
type TaxJurisdictionType = 'country' | 'province';
|
|
3097
3159
|
type TaxReportType = 'consumer' | 'b2b';
|
|
3098
3160
|
type TaxType = 'vat' | 'gst' | 'hst' | 'pst' | 'qst' | 'sales_tax';
|
|
@@ -3109,7 +3171,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3109
3171
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired' | 'unknown' | 'unmapped';
|
|
3110
3172
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
3111
3173
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
3112
|
-
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';
|
|
3113
3175
|
type TransferStatus = 'succeeded' | 'canceled';
|
|
3114
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';
|
|
3115
3177
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
@@ -3499,6 +3561,18 @@ declare namespace io.flow.v0.models {
|
|
|
3499
3561
|
readonly discriminator: 'amount_margin_form';
|
|
3500
3562
|
readonly margin: io.flow.v0.models.Money;
|
|
3501
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
|
+
}
|
|
3502
3576
|
interface AnalyticsExportType {
|
|
3503
3577
|
readonly discriminator: 'analytics_export_type';
|
|
3504
3578
|
readonly from?: string;
|
|
@@ -3760,6 +3834,7 @@ declare namespace io.flow.v0.models {
|
|
|
3760
3834
|
readonly b2b_invoice_type: io.flow.v0.enums.B2BInvoiceType;
|
|
3761
3835
|
readonly center?: io.flow.v0.models.ConsumerInvoiceCenterReference;
|
|
3762
3836
|
readonly order?: io.flow.v0.models.ConsumerInvoiceOrderSummary;
|
|
3837
|
+
readonly voids_b2b_invoice?: boolean;
|
|
3763
3838
|
}
|
|
3764
3839
|
interface B2BCreditMemoDeleted {
|
|
3765
3840
|
readonly discriminator: 'b2b_credit_memo_deleted';
|
|
@@ -4701,7 +4776,6 @@ declare namespace io.flow.v0.models {
|
|
|
4701
4776
|
readonly beneficiary_details?: io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
4702
4777
|
readonly other_trade_sector?: string;
|
|
4703
4778
|
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
4704
|
-
readonly center_address?: io.flow.v0.models.Address;
|
|
4705
4779
|
readonly average_order_weight?: number;
|
|
4706
4780
|
readonly average_order_weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
4707
4781
|
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
@@ -4709,6 +4783,7 @@ declare namespace io.flow.v0.models {
|
|
|
4709
4783
|
readonly default_country_of_origin?: string;
|
|
4710
4784
|
readonly rate_card: string;
|
|
4711
4785
|
readonly shop?: io.flow.v0.models.Shop;
|
|
4786
|
+
readonly settlement_currency?: string;
|
|
4712
4787
|
readonly created_at: string;
|
|
4713
4788
|
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
4714
4789
|
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
@@ -4728,7 +4803,6 @@ declare namespace io.flow.v0.models {
|
|
|
4728
4803
|
readonly beneficiary_details?: io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
4729
4804
|
readonly other_trade_sector?: string;
|
|
4730
4805
|
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
4731
|
-
readonly center_address?: io.flow.v0.models.Address;
|
|
4732
4806
|
readonly average_order_weight?: number;
|
|
4733
4807
|
readonly average_order_weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
4734
4808
|
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
@@ -4737,6 +4811,7 @@ declare namespace io.flow.v0.models {
|
|
|
4737
4811
|
readonly monthly_average_number_transactions?: number;
|
|
4738
4812
|
readonly default_country_of_origin?: string;
|
|
4739
4813
|
readonly shop?: io.flow.v0.models.Shop;
|
|
4814
|
+
readonly settlement_currency?: string;
|
|
4740
4815
|
readonly rate_card?: string;
|
|
4741
4816
|
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
4742
4817
|
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
@@ -6304,6 +6379,10 @@ declare namespace io.flow.v0.models {
|
|
|
6304
6379
|
readonly destination?: string;
|
|
6305
6380
|
readonly sort?: string;
|
|
6306
6381
|
}
|
|
6382
|
+
interface HarmonizationTariffCode {
|
|
6383
|
+
readonly tariff_code: string;
|
|
6384
|
+
readonly destination: string;
|
|
6385
|
+
}
|
|
6307
6386
|
interface HarmonizationTariffCodesExportType {
|
|
6308
6387
|
readonly discriminator: 'harmonization_tariff_codes_export_type';
|
|
6309
6388
|
readonly sort?: string;
|
|
@@ -7499,6 +7578,7 @@ declare namespace io.flow.v0.models {
|
|
|
7499
7578
|
readonly company?: string;
|
|
7500
7579
|
readonly email?: string;
|
|
7501
7580
|
readonly phone?: string;
|
|
7581
|
+
readonly address?: io.flow.v0.models.Address;
|
|
7502
7582
|
}
|
|
7503
7583
|
interface OptionWeightEstimates {
|
|
7504
7584
|
readonly gravitational: io.flow.v0.models.Measurement;
|
|
@@ -7905,6 +7985,42 @@ declare namespace io.flow.v0.models {
|
|
|
7905
7985
|
readonly source_url: string;
|
|
7906
7986
|
readonly filename?: string;
|
|
7907
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
|
+
}
|
|
7908
8024
|
interface OrderSubmissionForm {
|
|
7909
8025
|
readonly identifiers?: io.flow.v0.models.OrderSubmissionIdentifierForm[];
|
|
7910
8026
|
}
|
|
@@ -9305,6 +9421,10 @@ declare namespace io.flow.v0.models {
|
|
|
9305
9421
|
readonly hs_code?: string;
|
|
9306
9422
|
readonly restricted_regions_by_type?: io.flow.v0.models.SellabilityRegionResult[];
|
|
9307
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;
|
|
9308
9428
|
}
|
|
9309
9429
|
interface ProductRestrictionResultDeleted {
|
|
9310
9430
|
readonly discriminator: 'product_restriction_result_deleted';
|
|
@@ -9340,6 +9460,7 @@ declare namespace io.flow.v0.models {
|
|
|
9340
9460
|
readonly dry_run?: boolean;
|
|
9341
9461
|
}
|
|
9342
9462
|
interface ProductSellabilityResult {
|
|
9463
|
+
readonly id: string;
|
|
9343
9464
|
readonly merchant_id?: string;
|
|
9344
9465
|
readonly product_id: string;
|
|
9345
9466
|
readonly restricted_regions: io.flow.v0.models.SellabilityRestrictedRegion[];
|
|
@@ -9352,14 +9473,18 @@ declare namespace io.flow.v0.models {
|
|
|
9352
9473
|
readonly discriminator: 'product_sellability_result_deleted';
|
|
9353
9474
|
readonly event_id: string;
|
|
9354
9475
|
readonly timestamp: string;
|
|
9355
|
-
readonly organization
|
|
9476
|
+
readonly organization?: string;
|
|
9477
|
+
readonly merchant?: string;
|
|
9478
|
+
readonly channel_id?: string;
|
|
9356
9479
|
readonly id: string;
|
|
9357
9480
|
}
|
|
9358
9481
|
interface ProductSellabilityResultUpserted {
|
|
9359
9482
|
readonly discriminator: 'product_sellability_result_upserted';
|
|
9360
9483
|
readonly event_id: string;
|
|
9361
9484
|
readonly timestamp: string;
|
|
9362
|
-
readonly organization
|
|
9485
|
+
readonly organization?: string;
|
|
9486
|
+
readonly merchant?: string;
|
|
9487
|
+
readonly channel_id?: string;
|
|
9363
9488
|
readonly product_sellability_result: io.flow.v0.models.ProductSellabilityResult;
|
|
9364
9489
|
}
|
|
9365
9490
|
interface ProductTaxonomyCategory {
|
|
@@ -9555,6 +9680,11 @@ declare namespace io.flow.v0.models {
|
|
|
9555
9680
|
readonly id: string;
|
|
9556
9681
|
readonly name: string;
|
|
9557
9682
|
}
|
|
9683
|
+
interface RatecardData {
|
|
9684
|
+
readonly dhlParcelDistributionCenter?: string;
|
|
9685
|
+
readonly glbeRatecardMetadataLaneIdentifier?: string;
|
|
9686
|
+
readonly pickupCenter?: string;
|
|
9687
|
+
}
|
|
9558
9688
|
interface RatecardDeleted {
|
|
9559
9689
|
readonly discriminator: 'ratecard_deleted';
|
|
9560
9690
|
readonly event_id: string;
|
|
@@ -9647,7 +9777,7 @@ declare namespace io.flow.v0.models {
|
|
|
9647
9777
|
readonly glbe_shipping_method_id?: string;
|
|
9648
9778
|
readonly glbe_proposition_name?: string;
|
|
9649
9779
|
readonly channel_revenue_share_percentage?: number;
|
|
9650
|
-
readonly data?:
|
|
9780
|
+
readonly data?: io.flow.v0.models.RatecardData;
|
|
9651
9781
|
}
|
|
9652
9782
|
interface RatecardLane {
|
|
9653
9783
|
readonly id: string;
|
|
@@ -10196,11 +10326,13 @@ declare namespace io.flow.v0.models {
|
|
|
10196
10326
|
interface SellabilityNeedsActionAttributes {
|
|
10197
10327
|
readonly reason_code: string;
|
|
10198
10328
|
readonly category_metafield_handles: string[];
|
|
10329
|
+
readonly category_metafield_ids: string[];
|
|
10199
10330
|
readonly require_msds?: boolean;
|
|
10200
10331
|
}
|
|
10201
10332
|
interface SellabilityReasonWithRegions {
|
|
10202
10333
|
readonly reason: string;
|
|
10203
10334
|
readonly regions: string[];
|
|
10335
|
+
readonly review_status?: string;
|
|
10204
10336
|
}
|
|
10205
10337
|
interface SellabilityRegionResult {
|
|
10206
10338
|
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
@@ -10821,6 +10953,7 @@ declare namespace io.flow.v0.models {
|
|
|
10821
10953
|
readonly activated_at?: string;
|
|
10822
10954
|
readonly status_updated_at?: string;
|
|
10823
10955
|
readonly shop?: io.flow.v0.models.Shop;
|
|
10956
|
+
readonly settlement_currency?: string;
|
|
10824
10957
|
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
10825
10958
|
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
10826
10959
|
readonly average_order_value?: io.flow.v0.models.Money;
|
|
@@ -10853,6 +10986,7 @@ declare namespace io.flow.v0.models {
|
|
|
10853
10986
|
readonly ratecard_id?: string;
|
|
10854
10987
|
readonly rate_card: string;
|
|
10855
10988
|
readonly shop?: io.flow.v0.models.Shop;
|
|
10989
|
+
readonly settlement_currency?: string;
|
|
10856
10990
|
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
10857
10991
|
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
10858
10992
|
readonly average_order_value?: io.flow.v0.models.Money;
|
|
@@ -11111,6 +11245,26 @@ declare namespace io.flow.v0.models {
|
|
|
11111
11245
|
readonly key: io.flow.v0.enums.DeliveryOptionCostDetailComponentKey;
|
|
11112
11246
|
readonly available: io.flow.v0.models.SurchargeResponsiblePartyDisplay[];
|
|
11113
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
|
+
}
|
|
11114
11268
|
interface Tax {
|
|
11115
11269
|
readonly name: string;
|
|
11116
11270
|
readonly rate: number;
|
|
@@ -11246,6 +11400,8 @@ declare namespace io.flow.v0.models {
|
|
|
11246
11400
|
readonly discriminator: 'test_upserted';
|
|
11247
11401
|
readonly event_id: string;
|
|
11248
11402
|
readonly timestamp: string;
|
|
11403
|
+
readonly organization: string;
|
|
11404
|
+
readonly channel_id: string;
|
|
11249
11405
|
readonly test: io.flow.ben.test.internal.v0.models.Test;
|
|
11250
11406
|
}
|
|
11251
11407
|
interface ThirdPartyLogisticsPartner {
|
|
@@ -11587,7 +11743,7 @@ declare namespace io.flow.v0.models {
|
|
|
11587
11743
|
readonly label_created_at: string;
|
|
11588
11744
|
readonly carrier_id: string;
|
|
11589
11745
|
readonly carrier_tracking_number: string;
|
|
11590
|
-
readonly revenue_share_percentage
|
|
11746
|
+
readonly revenue_share_percentage?: number;
|
|
11591
11747
|
readonly outbound?: io.flow.v0.models.TransactionMetadataOutboundTransaction;
|
|
11592
11748
|
}
|
|
11593
11749
|
interface TransactionMetadataChannel {
|
|
@@ -11620,6 +11776,17 @@ declare namespace io.flow.v0.models {
|
|
|
11620
11776
|
readonly description: string;
|
|
11621
11777
|
readonly original?: io.flow.v0.models.TransactionMetadataOriginalTransaction;
|
|
11622
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;
|
|
11623
11790
|
}
|
|
11624
11791
|
interface TransactionMetadataOriginalTransaction {
|
|
11625
11792
|
readonly id: string;
|
|
@@ -11998,7 +12165,7 @@ declare namespace io.flow.v0.unions {
|
|
|
11998
12165
|
type Document = io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument;
|
|
11999
12166
|
type EmailNotificationData = io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder;
|
|
12000
12167
|
type Entity = io.flow.v0.models.Company | io.flow.v0.models.Individual;
|
|
12001
|
-
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;
|
|
12002
12169
|
type ExpandableCard = io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary | io.flow.v0.models.ExternalCard;
|
|
12003
12170
|
type ExpandableCenter = io.flow.v0.models.Center | io.flow.v0.models.CenterReference;
|
|
12004
12171
|
type ExpandableExperience = io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference;
|
|
@@ -12033,6 +12200,7 @@ declare namespace io.flow.v0.unions {
|
|
|
12033
12200
|
type OrderPromotion = io.flow.v0.models.FreeShippingOrderPromotion;
|
|
12034
12201
|
type OrderPromotionForm = io.flow.v0.models.FreeShippingOrderPromotionForm;
|
|
12035
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;
|
|
12036
12204
|
type PartnerCenterFee = io.flow.v0.models.CommercialInvoiceFee | io.flow.v0.models.InboundCartonFee | io.flow.v0.models.OutboundCartonFee;
|
|
12037
12205
|
type Payment = io.flow.v0.models.PaymentPaypal | io.flow.v0.models.PaymentCryptopay;
|
|
12038
12206
|
type PaymentCaptureOption = io.flow.v0.models.PaymentCaptureOptionAutomaticImmediate | io.flow.v0.models.PaymentCaptureOptionManual;
|
|
@@ -12087,7 +12255,7 @@ declare namespace io.flow.v0.unions {
|
|
|
12087
12255
|
type Token = io.flow.v0.models.ChannelToken | io.flow.v0.models.OrganizationToken | io.flow.v0.models.OrganizationTokenV2 | io.flow.v0.models.PartnerToken;
|
|
12088
12256
|
type TokenReference = io.flow.v0.models.ChannelTokenReference | io.flow.v0.models.OrganizationTokenReference | io.flow.v0.models.OrganizationTokenV2Reference | io.flow.v0.models.PartnerTokenReference;
|
|
12089
12257
|
type TransactionDetails = io.flow.v0.models.TransactionDetailsCard;
|
|
12090
|
-
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;
|
|
12091
12259
|
type TransferReference = io.flow.v0.models.CaptureReference | io.flow.v0.models.RefundReference | io.flow.v0.models.DisputeReference;
|
|
12092
12260
|
}
|
|
12093
12261
|
export declare type AbandonedOrderEmailSettings = io.flow.v0.models.AbandonedOrderEmailSettings;
|
|
@@ -12157,6 +12325,8 @@ export declare type AllocationUpsertedV2 = io.flow.v0.models.AllocationUpsertedV
|
|
|
12157
12325
|
export declare type AllocationV2 = io.flow.v0.models.AllocationV2;
|
|
12158
12326
|
export declare type AmountMargin = io.flow.v0.models.AmountMargin;
|
|
12159
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;
|
|
12160
12330
|
export declare type AnalyticsExportType = io.flow.v0.models.AnalyticsExportType;
|
|
12161
12331
|
export declare type ApplePayMerchantValidationPayload = io.flow.v0.models.ApplePayMerchantValidationPayload;
|
|
12162
12332
|
export declare type ApplepaySdkCreateResultActionDetails = io.flow.v0.models.ApplepaySdkCreateResultActionDetails;
|
|
@@ -12730,6 +12900,7 @@ export declare type HarmonizationDocument = io.flow.v0.models.HarmonizationDocum
|
|
|
12730
12900
|
export declare type HarmonizationHs10ExportType = io.flow.v0.models.HarmonizationHs10ExportType;
|
|
12731
12901
|
export declare type HarmonizationHs6ExportType = io.flow.v0.models.HarmonizationHs6ExportType;
|
|
12732
12902
|
export declare type HarmonizationOverviewExportType = io.flow.v0.models.HarmonizationOverviewExportType;
|
|
12903
|
+
export declare type HarmonizationTariffCode = io.flow.v0.models.HarmonizationTariffCode;
|
|
12733
12904
|
export declare type HarmonizationTariffCodesExportType = io.flow.v0.models.HarmonizationTariffCodesExportType;
|
|
12734
12905
|
export declare type HarmonizedCategoryReference = io.flow.v0.models.HarmonizedCategoryReference;
|
|
12735
12906
|
export declare type HarmonizedItem = io.flow.v0.models.HarmonizedItem;
|
|
@@ -13046,6 +13217,14 @@ export declare type OrderRulesSummary = io.flow.v0.models.OrderRulesSummary;
|
|
|
13046
13217
|
export declare type OrderServiceChange = io.flow.v0.models.OrderServiceChange;
|
|
13047
13218
|
export declare type OrderServiceChangeForm = io.flow.v0.models.OrderServiceChangeForm;
|
|
13048
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;
|
|
13049
13228
|
export declare type OrderStatus = io.flow.v0.enums.OrderStatus;
|
|
13050
13229
|
export declare type OrderStorage = io.flow.v0.enums.OrderStorage;
|
|
13051
13230
|
export declare type OrderSubmissionForm = io.flow.v0.models.OrderSubmissionForm;
|
|
@@ -13381,6 +13560,7 @@ export declare type RateUpsertedV3 = io.flow.v0.models.RateUpsertedV3;
|
|
|
13381
13560
|
export declare type RateVersion = io.flow.v0.models.RateVersion;
|
|
13382
13561
|
export declare type Ratecard = io.flow.v0.models.Ratecard;
|
|
13383
13562
|
export declare type RatecardCarrierSummary = io.flow.v0.models.RatecardCarrierSummary;
|
|
13563
|
+
export declare type RatecardData = io.flow.v0.models.RatecardData;
|
|
13384
13564
|
export declare type RatecardDeleted = io.flow.v0.models.RatecardDeleted;
|
|
13385
13565
|
export declare type RatecardEstimate = io.flow.v0.unions.RatecardEstimate;
|
|
13386
13566
|
export declare type RatecardEstimateForm = io.flow.v0.models.RatecardEstimateForm;
|
|
@@ -13672,6 +13852,9 @@ export declare type SurchargeResponsibleParty = io.flow.v0.enums.SurchargeRespon
|
|
|
13672
13852
|
export declare type SurchargeResponsiblePartyDisplay = io.flow.v0.models.SurchargeResponsiblePartyDisplay;
|
|
13673
13853
|
export declare type SurchargeSetting = io.flow.v0.models.SurchargeSetting;
|
|
13674
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;
|
|
13675
13858
|
export declare type Tax = io.flow.v0.models.Tax;
|
|
13676
13859
|
export declare type TaxApplicability = io.flow.v0.enums.TaxApplicability;
|
|
13677
13860
|
export declare type TaxBreakdown = io.flow.v0.models.TaxBreakdown;
|
|
@@ -13774,6 +13957,8 @@ export declare type TransactionMetadataChannelOrganizationTransaction = io.flow.
|
|
|
13774
13957
|
export declare type TransactionMetadataFailedPayout = io.flow.v0.models.TransactionMetadataFailedPayout;
|
|
13775
13958
|
export declare type TransactionMetadataFailedPayoutReference = io.flow.v0.models.TransactionMetadataFailedPayoutReference;
|
|
13776
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;
|
|
13777
13962
|
export declare type TransactionMetadataOriginalTransaction = io.flow.v0.models.TransactionMetadataOriginalTransaction;
|
|
13778
13963
|
export declare type TransactionMetadataOutboundTransaction = io.flow.v0.models.TransactionMetadataOutboundTransaction;
|
|
13779
13964
|
export declare type TransactionMetadataPaymentTransaction = io.flow.v0.models.TransactionMetadataPaymentTransaction;
|