@flowio/types 11.24.132 → 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 +647 -385
- package/dist/api.d.ts +276 -31
- package/package.json +2 -2
- package/src/api-internal.ts +956 -496
- package/src/api.ts +357 -30
package/dist/api.d.ts
CHANGED
|
@@ -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';
|
|
@@ -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>;
|
|
@@ -2841,6 +2842,93 @@ 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 BojanaItemType = 'physical' | 'digital';
|
|
2848
|
+
type ChenglinItemType = 'physical' | 'digital';
|
|
2849
|
+
type GabrielItemType = 'physical' | 'digital';
|
|
2850
|
+
type RaveenaItemType = 'physical' | 'digital';
|
|
2851
|
+
}
|
|
2852
|
+
declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
2853
|
+
interface AmruthaItem {
|
|
2854
|
+
readonly id: string;
|
|
2855
|
+
readonly number: string;
|
|
2856
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
2857
|
+
readonly description?: string;
|
|
2858
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.AmruthaItemType;
|
|
2859
|
+
readonly added_on: string;
|
|
2860
|
+
}
|
|
2861
|
+
interface AmruthaItemForm {
|
|
2862
|
+
readonly number: string;
|
|
2863
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
2864
|
+
readonly description?: string;
|
|
2865
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.AmruthaItemType;
|
|
2866
|
+
readonly added_on: string;
|
|
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
|
+
}
|
|
2883
|
+
interface ChenglinItem {
|
|
2884
|
+
readonly id: string;
|
|
2885
|
+
readonly number: string;
|
|
2886
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
2887
|
+
readonly description?: string;
|
|
2888
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.GabrielItemType;
|
|
2889
|
+
readonly added_on: string;
|
|
2890
|
+
}
|
|
2891
|
+
interface ChenglinItemForm {
|
|
2892
|
+
readonly number: string;
|
|
2893
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
2894
|
+
readonly description?: string;
|
|
2895
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.GabrielItemType;
|
|
2896
|
+
readonly added_on: string;
|
|
2897
|
+
}
|
|
2898
|
+
interface GabrielItem {
|
|
2899
|
+
readonly id: string;
|
|
2900
|
+
readonly number: string;
|
|
2901
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
2902
|
+
readonly description?: string;
|
|
2903
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.GabrielItemType;
|
|
2904
|
+
readonly added_on: string;
|
|
2905
|
+
}
|
|
2906
|
+
interface GabrielItemForm {
|
|
2907
|
+
readonly number: string;
|
|
2908
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
2909
|
+
readonly description?: string;
|
|
2910
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.GabrielItemType;
|
|
2911
|
+
readonly added_on: string;
|
|
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
|
+
}
|
|
2928
|
+
interface TechOnboardingDescription {
|
|
2929
|
+
readonly description: string;
|
|
2930
|
+
}
|
|
2931
|
+
}
|
|
2844
2932
|
declare namespace io.flow.product.v0.models {
|
|
2845
2933
|
interface Product {
|
|
2846
2934
|
readonly organization_id: string;
|
|
@@ -2872,6 +2960,11 @@ declare namespace io.flow.ben.test.internal.v0.models {
|
|
|
2872
2960
|
readonly organization_ids: string[];
|
|
2873
2961
|
readonly num_events: number;
|
|
2874
2962
|
}
|
|
2963
|
+
interface GenerateLoadRate {
|
|
2964
|
+
readonly organization_ids: string[];
|
|
2965
|
+
readonly events_per_second: number;
|
|
2966
|
+
readonly duration_seconds: number;
|
|
2967
|
+
}
|
|
2875
2968
|
interface GenerateLoadSingleOrg {
|
|
2876
2969
|
readonly discriminator: 'generate_load_single_org';
|
|
2877
2970
|
readonly organization_id: string;
|
|
@@ -2945,7 +3038,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2945
3038
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
2946
3039
|
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
2947
3040
|
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';
|
|
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';
|
|
2949
3042
|
type ExceptionType = 'open' | 'closed';
|
|
2950
3043
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
2951
3044
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -2954,9 +3047,10 @@ declare namespace io.flow.v0.enums {
|
|
|
2954
3047
|
type ExperienceStatus = 'draft' | 'active' | 'archiving' | 'archived';
|
|
2955
3048
|
type ExportStatus = 'created' | 'processing' | 'completed' | 'failed';
|
|
2956
3049
|
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';
|
|
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';
|
|
2958
3052
|
type FlowBehavior = 'view_consumer_data';
|
|
2959
|
-
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';
|
|
2960
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';
|
|
2961
3055
|
type FraudEmailRuleDecision = 'approved' | 'declined';
|
|
2962
3056
|
type FraudLiability = 'flow' | 'organization';
|
|
@@ -2981,7 +3075,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2981
3075
|
type InvitationErrorCode = 'expired' | 'invalid_email';
|
|
2982
3076
|
type ItemAvailabilityStatus = 'available' | 'low' | 'out_of_stock';
|
|
2983
3077
|
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';
|
|
3078
|
+
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
3079
|
type LabelTriggerMethod = 'autogenerated' | 'on_demand';
|
|
2986
3080
|
type LaneDirection = 'outbound' | 'return';
|
|
2987
3081
|
type LanePreselectPreference = 'lowest_cost' | 'default_tier';
|
|
@@ -3008,9 +3102,10 @@ declare namespace io.flow.v0.enums {
|
|
|
3008
3102
|
type OrderPaymentType = 'card' | 'online' | 'credit' | 'external' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
|
|
3009
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';
|
|
3010
3104
|
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
3011
|
-
type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product';
|
|
3105
|
+
type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product' | 'mor_tax';
|
|
3012
3106
|
type OrderRefundSummaryIncludes = 'duties' | 'vat' | 'shipping';
|
|
3013
3107
|
type OrderRefundSummaryPartialCharged = 'per_item' | 'for_order' | 'by_value_percentage' | 'by_quantity_percentage';
|
|
3108
|
+
type OrderStateStatus = 'pending' | 'accepted' | 'rejected';
|
|
3014
3109
|
type OrderStatus = 'open' | 'submitted';
|
|
3015
3110
|
type OrderStorage = 'do_not_persist' | 'persist';
|
|
3016
3111
|
type OrderType = 'standard' | 'replacement' | 'edit';
|
|
@@ -3072,7 +3167,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3072
3167
|
type ScheduleExceptionStatus = 'Open' | 'Closed';
|
|
3073
3168
|
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
|
|
3074
3169
|
type SellabilityRequestStatus = 'commit';
|
|
3075
|
-
type SellabilityResultErrorCode = 'insufficient_details' | 'generic_error';
|
|
3170
|
+
type SellabilityResultErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable' | 'generic_error' | 'catalog_processing_threshold';
|
|
3076
3171
|
type SellabilityResultStatus = 'in_review' | 'succeeded' | 'failed';
|
|
3077
3172
|
type SellabilityScreeningMode = 'pre_onboarding' | 'default_on' | 'active';
|
|
3078
3173
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
@@ -3090,9 +3185,10 @@ declare namespace io.flow.v0.enums {
|
|
|
3090
3185
|
type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
|
|
3091
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';
|
|
3092
3187
|
type SurchargeResponsibleParty = 'organization' | 'customer';
|
|
3188
|
+
type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
|
|
3093
3189
|
type TaxApplicability = 'none' | 'all';
|
|
3094
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';
|
|
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';
|
|
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';
|
|
3096
3192
|
type TaxJurisdictionType = 'country' | 'province';
|
|
3097
3193
|
type TaxReportType = 'consumer' | 'b2b';
|
|
3098
3194
|
type TaxType = 'vat' | 'gst' | 'hst' | 'pst' | 'qst' | 'sales_tax';
|
|
@@ -3109,7 +3205,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3109
3205
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired' | 'unknown' | 'unmapped';
|
|
3110
3206
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
3111
3207
|
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';
|
|
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';
|
|
3113
3209
|
type TransferStatus = 'succeeded' | 'canceled';
|
|
3114
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';
|
|
3115
3211
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
@@ -3499,6 +3595,18 @@ declare namespace io.flow.v0.models {
|
|
|
3499
3595
|
readonly discriminator: 'amount_margin_form';
|
|
3500
3596
|
readonly margin: io.flow.v0.models.Money;
|
|
3501
3597
|
}
|
|
3598
|
+
interface AmruthaItemDeleted {
|
|
3599
|
+
readonly discriminator: 'amrutha_item_deleted';
|
|
3600
|
+
readonly event_id: string;
|
|
3601
|
+
readonly timestamp: string;
|
|
3602
|
+
readonly id: string;
|
|
3603
|
+
}
|
|
3604
|
+
interface AmruthaItemUpserted {
|
|
3605
|
+
readonly discriminator: 'amrutha_item_upserted';
|
|
3606
|
+
readonly event_id: string;
|
|
3607
|
+
readonly timestamp: string;
|
|
3608
|
+
readonly item: io.flow.tech.onboarding.playground.v0.models.AmruthaItem;
|
|
3609
|
+
}
|
|
3502
3610
|
interface AnalyticsExportType {
|
|
3503
3611
|
readonly discriminator: 'analytics_export_type';
|
|
3504
3612
|
readonly from?: string;
|
|
@@ -3760,6 +3868,7 @@ declare namespace io.flow.v0.models {
|
|
|
3760
3868
|
readonly b2b_invoice_type: io.flow.v0.enums.B2BInvoiceType;
|
|
3761
3869
|
readonly center?: io.flow.v0.models.ConsumerInvoiceCenterReference;
|
|
3762
3870
|
readonly order?: io.flow.v0.models.ConsumerInvoiceOrderSummary;
|
|
3871
|
+
readonly voids_b2b_invoice?: boolean;
|
|
3763
3872
|
}
|
|
3764
3873
|
interface B2BCreditMemoDeleted {
|
|
3765
3874
|
readonly discriminator: 'b2b_credit_memo_deleted';
|
|
@@ -3845,14 +3954,10 @@ declare namespace io.flow.v0.models {
|
|
|
3845
3954
|
}
|
|
3846
3955
|
interface BankAccountInfoKor {
|
|
3847
3956
|
readonly discriminator: 'kor';
|
|
3848
|
-
readonly name
|
|
3849
|
-
readonly address?: io.flow.v0.models.Address;
|
|
3850
|
-
readonly phone?: string;
|
|
3851
|
-
readonly email?: string;
|
|
3957
|
+
readonly name: string;
|
|
3852
3958
|
readonly bank_account_number: string;
|
|
3853
|
-
readonly bank_routing_number
|
|
3854
|
-
readonly bank_name
|
|
3855
|
-
readonly bank_address?: io.flow.v0.models.Address;
|
|
3959
|
+
readonly bank_routing_number: string;
|
|
3960
|
+
readonly bank_name: string;
|
|
3856
3961
|
}
|
|
3857
3962
|
interface BankAccountInfoUsa {
|
|
3858
3963
|
readonly discriminator: 'usa';
|
|
@@ -4701,7 +4806,6 @@ declare namespace io.flow.v0.models {
|
|
|
4701
4806
|
readonly beneficiary_details?: io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
4702
4807
|
readonly other_trade_sector?: string;
|
|
4703
4808
|
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
4704
|
-
readonly center_address?: io.flow.v0.models.Address;
|
|
4705
4809
|
readonly average_order_weight?: number;
|
|
4706
4810
|
readonly average_order_weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
4707
4811
|
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
@@ -4728,7 +4832,6 @@ declare namespace io.flow.v0.models {
|
|
|
4728
4832
|
readonly beneficiary_details?: io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
4729
4833
|
readonly other_trade_sector?: string;
|
|
4730
4834
|
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
4731
|
-
readonly center_address?: io.flow.v0.models.Address;
|
|
4732
4835
|
readonly average_order_weight?: number;
|
|
4733
4836
|
readonly average_order_weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
4734
4837
|
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
@@ -5921,6 +6024,34 @@ declare namespace io.flow.v0.models {
|
|
|
5921
6024
|
readonly amount: number;
|
|
5922
6025
|
readonly description?: string;
|
|
5923
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
|
+
}
|
|
5924
6055
|
interface FeeWeight {
|
|
5925
6056
|
readonly weight: number;
|
|
5926
6057
|
readonly unit: io.flow.v0.enums.UnitOfMeasurement;
|
|
@@ -6304,6 +6435,10 @@ declare namespace io.flow.v0.models {
|
|
|
6304
6435
|
readonly destination?: string;
|
|
6305
6436
|
readonly sort?: string;
|
|
6306
6437
|
}
|
|
6438
|
+
interface HarmonizationTariffCode {
|
|
6439
|
+
readonly tariff_code: string;
|
|
6440
|
+
readonly destination: string;
|
|
6441
|
+
}
|
|
6307
6442
|
interface HarmonizationTariffCodesExportType {
|
|
6308
6443
|
readonly discriminator: 'harmonization_tariff_codes_export_type';
|
|
6309
6444
|
readonly sort?: string;
|
|
@@ -6999,6 +7134,7 @@ declare namespace io.flow.v0.models {
|
|
|
6999
7134
|
interface LineItemForm {
|
|
7000
7135
|
readonly number: string;
|
|
7001
7136
|
readonly quantity: number;
|
|
7137
|
+
readonly line_item_identifier?: string;
|
|
7002
7138
|
readonly shipment_estimate?: io.flow.v0.models.DatetimeRange;
|
|
7003
7139
|
readonly price?: io.flow.v0.models.Money;
|
|
7004
7140
|
readonly attributes?: Record<string, string>;
|
|
@@ -7499,6 +7635,7 @@ declare namespace io.flow.v0.models {
|
|
|
7499
7635
|
readonly company?: string;
|
|
7500
7636
|
readonly email?: string;
|
|
7501
7637
|
readonly phone?: string;
|
|
7638
|
+
readonly address?: io.flow.v0.models.Address;
|
|
7502
7639
|
}
|
|
7503
7640
|
interface OptionWeightEstimates {
|
|
7504
7641
|
readonly gravitational: io.flow.v0.models.Measurement;
|
|
@@ -7905,6 +8042,42 @@ declare namespace io.flow.v0.models {
|
|
|
7905
8042
|
readonly source_url: string;
|
|
7906
8043
|
readonly filename?: string;
|
|
7907
8044
|
}
|
|
8045
|
+
interface OrderState {
|
|
8046
|
+
readonly id: string;
|
|
8047
|
+
readonly order_number: string;
|
|
8048
|
+
readonly external_order_reference: string;
|
|
8049
|
+
readonly payment_requests: io.flow.v0.models.PaymentRequestReference[];
|
|
8050
|
+
readonly status: io.flow.v0.enums.OrderStateStatus;
|
|
8051
|
+
readonly rejection_reasons?: io.flow.v0.unions.OrderStateRejectionReason[];
|
|
8052
|
+
}
|
|
8053
|
+
interface OrderStateDeleted {
|
|
8054
|
+
readonly discriminator: 'order_state_deleted';
|
|
8055
|
+
readonly event_id: string;
|
|
8056
|
+
readonly timestamp: string;
|
|
8057
|
+
readonly organization: string;
|
|
8058
|
+
readonly channel_id: string;
|
|
8059
|
+
readonly id: string;
|
|
8060
|
+
}
|
|
8061
|
+
interface OrderStateRejectionReasonDomesticOrder {
|
|
8062
|
+
readonly discriminator: 'order_state_rejection_reason_domestic_order';
|
|
8063
|
+
readonly destination_address: io.flow.v0.models.Address;
|
|
8064
|
+
}
|
|
8065
|
+
interface OrderStateRejectionReasonItemsEmpty {
|
|
8066
|
+
readonly discriminator: 'order_state_rejection_reason_items_empty';
|
|
8067
|
+
readonly line_items: string[];
|
|
8068
|
+
}
|
|
8069
|
+
interface OrderStateRejectionReasonRestrictedItem {
|
|
8070
|
+
readonly discriminator: 'order_state_rejection_reason_restricted_item';
|
|
8071
|
+
readonly item_numbers: string[];
|
|
8072
|
+
}
|
|
8073
|
+
interface OrderStateUpserted {
|
|
8074
|
+
readonly discriminator: 'order_state_upserted';
|
|
8075
|
+
readonly event_id: string;
|
|
8076
|
+
readonly timestamp: string;
|
|
8077
|
+
readonly organization: string;
|
|
8078
|
+
readonly channel_id: string;
|
|
8079
|
+
readonly order_state: io.flow.v0.models.OrderState;
|
|
8080
|
+
}
|
|
7908
8081
|
interface OrderSubmissionForm {
|
|
7909
8082
|
readonly identifiers?: io.flow.v0.models.OrderSubmissionIdentifierForm[];
|
|
7910
8083
|
}
|
|
@@ -9305,6 +9478,10 @@ declare namespace io.flow.v0.models {
|
|
|
9305
9478
|
readonly hs_code?: string;
|
|
9306
9479
|
readonly restricted_regions_by_type?: io.flow.v0.models.SellabilityRegionResult[];
|
|
9307
9480
|
readonly needs_action_attributes?: io.flow.v0.models.NeedsActionAttributes[];
|
|
9481
|
+
readonly fingerprint?: string;
|
|
9482
|
+
readonly restriction_created_at?: string;
|
|
9483
|
+
readonly first_reviewed_at?: string;
|
|
9484
|
+
readonly seconds_to_first_review?: number;
|
|
9308
9485
|
}
|
|
9309
9486
|
interface ProductRestrictionResultDeleted {
|
|
9310
9487
|
readonly discriminator: 'product_restriction_result_deleted';
|
|
@@ -9340,6 +9517,7 @@ declare namespace io.flow.v0.models {
|
|
|
9340
9517
|
readonly dry_run?: boolean;
|
|
9341
9518
|
}
|
|
9342
9519
|
interface ProductSellabilityResult {
|
|
9520
|
+
readonly id: string;
|
|
9343
9521
|
readonly merchant_id?: string;
|
|
9344
9522
|
readonly product_id: string;
|
|
9345
9523
|
readonly restricted_regions: io.flow.v0.models.SellabilityRestrictedRegion[];
|
|
@@ -9352,14 +9530,18 @@ declare namespace io.flow.v0.models {
|
|
|
9352
9530
|
readonly discriminator: 'product_sellability_result_deleted';
|
|
9353
9531
|
readonly event_id: string;
|
|
9354
9532
|
readonly timestamp: string;
|
|
9355
|
-
readonly organization
|
|
9533
|
+
readonly organization?: string;
|
|
9534
|
+
readonly merchant?: string;
|
|
9535
|
+
readonly channel_id?: string;
|
|
9356
9536
|
readonly id: string;
|
|
9357
9537
|
}
|
|
9358
9538
|
interface ProductSellabilityResultUpserted {
|
|
9359
9539
|
readonly discriminator: 'product_sellability_result_upserted';
|
|
9360
9540
|
readonly event_id: string;
|
|
9361
9541
|
readonly timestamp: string;
|
|
9362
|
-
readonly organization
|
|
9542
|
+
readonly organization?: string;
|
|
9543
|
+
readonly merchant?: string;
|
|
9544
|
+
readonly channel_id?: string;
|
|
9363
9545
|
readonly product_sellability_result: io.flow.v0.models.ProductSellabilityResult;
|
|
9364
9546
|
}
|
|
9365
9547
|
interface ProductTaxonomyCategory {
|
|
@@ -9555,6 +9737,11 @@ declare namespace io.flow.v0.models {
|
|
|
9555
9737
|
readonly id: string;
|
|
9556
9738
|
readonly name: string;
|
|
9557
9739
|
}
|
|
9740
|
+
interface RatecardData {
|
|
9741
|
+
readonly dhlParcelDistributionCenter?: string;
|
|
9742
|
+
readonly glbeRatecardMetadataLaneIdentifier?: string;
|
|
9743
|
+
readonly pickupCenter?: string;
|
|
9744
|
+
}
|
|
9558
9745
|
interface RatecardDeleted {
|
|
9559
9746
|
readonly discriminator: 'ratecard_deleted';
|
|
9560
9747
|
readonly event_id: string;
|
|
@@ -9579,12 +9766,6 @@ declare namespace io.flow.v0.models {
|
|
|
9579
9766
|
readonly duties_owed?: io.flow.v0.models.Money;
|
|
9580
9767
|
readonly commercial_invoice_mode?: io.flow.v0.enums.CommercialInvoiceMode;
|
|
9581
9768
|
}
|
|
9582
|
-
interface RatecardEstimateSummaryForm {
|
|
9583
|
-
readonly origin?: string;
|
|
9584
|
-
readonly destination?: string;
|
|
9585
|
-
readonly service?: string;
|
|
9586
|
-
readonly center_key?: string;
|
|
9587
|
-
}
|
|
9588
9769
|
interface RatecardEstimateV1 {
|
|
9589
9770
|
readonly discriminator: 'ratecard_estimate_v1';
|
|
9590
9771
|
readonly service: io.flow.v0.models.RatecardServiceSummary;
|
|
@@ -9647,7 +9828,7 @@ declare namespace io.flow.v0.models {
|
|
|
9647
9828
|
readonly glbe_shipping_method_id?: string;
|
|
9648
9829
|
readonly glbe_proposition_name?: string;
|
|
9649
9830
|
readonly channel_revenue_share_percentage?: number;
|
|
9650
|
-
readonly data?:
|
|
9831
|
+
readonly data?: io.flow.v0.models.RatecardData;
|
|
9651
9832
|
}
|
|
9652
9833
|
interface RatecardLane {
|
|
9653
9834
|
readonly id: string;
|
|
@@ -10196,11 +10377,13 @@ declare namespace io.flow.v0.models {
|
|
|
10196
10377
|
interface SellabilityNeedsActionAttributes {
|
|
10197
10378
|
readonly reason_code: string;
|
|
10198
10379
|
readonly category_metafield_handles: string[];
|
|
10380
|
+
readonly category_metafield_ids: string[];
|
|
10199
10381
|
readonly require_msds?: boolean;
|
|
10200
10382
|
}
|
|
10201
10383
|
interface SellabilityReasonWithRegions {
|
|
10202
10384
|
readonly reason: string;
|
|
10203
10385
|
readonly regions: string[];
|
|
10386
|
+
readonly review_status?: string;
|
|
10204
10387
|
}
|
|
10205
10388
|
interface SellabilityRegionResult {
|
|
10206
10389
|
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
@@ -10612,6 +10795,7 @@ declare namespace io.flow.v0.models {
|
|
|
10612
10795
|
readonly weight_break?: number;
|
|
10613
10796
|
}
|
|
10614
10797
|
interface ShippingRateEstimateRequest {
|
|
10798
|
+
readonly carrier_id: string;
|
|
10615
10799
|
readonly origin_address: io.flow.v0.models.Address;
|
|
10616
10800
|
readonly destination_address: io.flow.v0.models.Address;
|
|
10617
10801
|
readonly package_dimensions: io.flow.v0.models.Dimension;
|
|
@@ -11111,6 +11295,26 @@ declare namespace io.flow.v0.models {
|
|
|
11111
11295
|
readonly key: io.flow.v0.enums.DeliveryOptionCostDetailComponentKey;
|
|
11112
11296
|
readonly available: io.flow.v0.models.SurchargeResponsiblePartyDisplay[];
|
|
11113
11297
|
}
|
|
11298
|
+
interface TariffCodes {
|
|
11299
|
+
readonly item_number: string;
|
|
11300
|
+
readonly product_id: string;
|
|
11301
|
+
readonly hs6_code: string;
|
|
11302
|
+
readonly codes: io.flow.v0.models.HarmonizationTariffCode[];
|
|
11303
|
+
}
|
|
11304
|
+
interface TariffCodesDeleted {
|
|
11305
|
+
readonly discriminator: 'tariff_codes_deleted';
|
|
11306
|
+
readonly event_id: string;
|
|
11307
|
+
readonly timestamp: string;
|
|
11308
|
+
readonly organization: string;
|
|
11309
|
+
readonly id: string;
|
|
11310
|
+
}
|
|
11311
|
+
interface TariffCodesUpserted {
|
|
11312
|
+
readonly discriminator: 'tariff_codes_upserted';
|
|
11313
|
+
readonly event_id: string;
|
|
11314
|
+
readonly timestamp: string;
|
|
11315
|
+
readonly organization: string;
|
|
11316
|
+
readonly tariff_codes: io.flow.v0.models.TariffCodes;
|
|
11317
|
+
}
|
|
11114
11318
|
interface Tax {
|
|
11115
11319
|
readonly name: string;
|
|
11116
11320
|
readonly rate: number;
|
|
@@ -11246,6 +11450,8 @@ declare namespace io.flow.v0.models {
|
|
|
11246
11450
|
readonly discriminator: 'test_upserted';
|
|
11247
11451
|
readonly event_id: string;
|
|
11248
11452
|
readonly timestamp: string;
|
|
11453
|
+
readonly organization: string;
|
|
11454
|
+
readonly channel_id: string;
|
|
11249
11455
|
readonly test: io.flow.ben.test.internal.v0.models.Test;
|
|
11250
11456
|
}
|
|
11251
11457
|
interface ThirdPartyLogisticsPartner {
|
|
@@ -11587,7 +11793,7 @@ declare namespace io.flow.v0.models {
|
|
|
11587
11793
|
readonly label_created_at: string;
|
|
11588
11794
|
readonly carrier_id: string;
|
|
11589
11795
|
readonly carrier_tracking_number: string;
|
|
11590
|
-
readonly revenue_share_percentage
|
|
11796
|
+
readonly revenue_share_percentage?: number;
|
|
11591
11797
|
readonly outbound?: io.flow.v0.models.TransactionMetadataOutboundTransaction;
|
|
11592
11798
|
}
|
|
11593
11799
|
interface TransactionMetadataChannel {
|
|
@@ -11615,11 +11821,27 @@ declare namespace io.flow.v0.models {
|
|
|
11615
11821
|
interface TransactionMetadataFailedPayoutReference {
|
|
11616
11822
|
readonly id: string;
|
|
11617
11823
|
}
|
|
11824
|
+
interface TransactionMetadataFlatRateLabel {
|
|
11825
|
+
readonly discriminator: 'flat_rate_label';
|
|
11826
|
+
readonly flat_rate?: number;
|
|
11827
|
+
readonly coefficient?: number;
|
|
11828
|
+
}
|
|
11618
11829
|
interface TransactionMetadataManual {
|
|
11619
11830
|
readonly discriminator: 'manual';
|
|
11620
11831
|
readonly description: string;
|
|
11621
11832
|
readonly original?: io.flow.v0.models.TransactionMetadataOriginalTransaction;
|
|
11622
11833
|
readonly url?: string;
|
|
11834
|
+
readonly recoup?: boolean;
|
|
11835
|
+
}
|
|
11836
|
+
interface TransactionMetadataMerchantFee {
|
|
11837
|
+
readonly discriminator: 'merchant_fee';
|
|
11838
|
+
readonly items: io.flow.v0.models.TransactionMetadataMerchantFeeItem[];
|
|
11839
|
+
}
|
|
11840
|
+
interface TransactionMetadataMerchantFeeItem {
|
|
11841
|
+
readonly type: string;
|
|
11842
|
+
readonly amount: number;
|
|
11843
|
+
readonly local_amount?: number;
|
|
11844
|
+
readonly description?: string;
|
|
11623
11845
|
}
|
|
11624
11846
|
interface TransactionMetadataOriginalTransaction {
|
|
11625
11847
|
readonly id: string;
|
|
@@ -11998,7 +12220,7 @@ declare namespace io.flow.v0.unions {
|
|
|
11998
12220
|
type Document = io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument;
|
|
11999
12221
|
type EmailNotificationData = io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder;
|
|
12000
12222
|
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;
|
|
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;
|
|
12002
12224
|
type ExpandableCard = io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary | io.flow.v0.models.ExternalCard;
|
|
12003
12225
|
type ExpandableCenter = io.flow.v0.models.Center | io.flow.v0.models.CenterReference;
|
|
12004
12226
|
type ExpandableExperience = io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference;
|
|
@@ -12033,6 +12255,7 @@ declare namespace io.flow.v0.unions {
|
|
|
12033
12255
|
type OrderPromotion = io.flow.v0.models.FreeShippingOrderPromotion;
|
|
12034
12256
|
type OrderPromotionForm = io.flow.v0.models.FreeShippingOrderPromotionForm;
|
|
12035
12257
|
type OrderRefundSummaryForm = io.flow.v0.models.OrderRefundSummaryFullForm | io.flow.v0.models.OrderRefundSummaryPartialForm;
|
|
12258
|
+
type OrderStateRejectionReason = io.flow.v0.models.OrderStateRejectionReasonRestrictedItem | io.flow.v0.models.OrderStateRejectionReasonDomesticOrder | io.flow.v0.models.OrderStateRejectionReasonItemsEmpty;
|
|
12036
12259
|
type PartnerCenterFee = io.flow.v0.models.CommercialInvoiceFee | io.flow.v0.models.InboundCartonFee | io.flow.v0.models.OutboundCartonFee;
|
|
12037
12260
|
type Payment = io.flow.v0.models.PaymentPaypal | io.flow.v0.models.PaymentCryptopay;
|
|
12038
12261
|
type PaymentCaptureOption = io.flow.v0.models.PaymentCaptureOptionAutomaticImmediate | io.flow.v0.models.PaymentCaptureOptionManual;
|
|
@@ -12087,7 +12310,7 @@ declare namespace io.flow.v0.unions {
|
|
|
12087
12310
|
type Token = io.flow.v0.models.ChannelToken | io.flow.v0.models.OrganizationToken | io.flow.v0.models.OrganizationTokenV2 | io.flow.v0.models.PartnerToken;
|
|
12088
12311
|
type TokenReference = io.flow.v0.models.ChannelTokenReference | io.flow.v0.models.OrganizationTokenReference | io.flow.v0.models.OrganizationTokenV2Reference | io.flow.v0.models.PartnerTokenReference;
|
|
12089
12312
|
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;
|
|
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;
|
|
12091
12314
|
type TransferReference = io.flow.v0.models.CaptureReference | io.flow.v0.models.RefundReference | io.flow.v0.models.DisputeReference;
|
|
12092
12315
|
}
|
|
12093
12316
|
export declare type AbandonedOrderEmailSettings = io.flow.v0.models.AbandonedOrderEmailSettings;
|
|
@@ -12157,6 +12380,8 @@ export declare type AllocationUpsertedV2 = io.flow.v0.models.AllocationUpsertedV
|
|
|
12157
12380
|
export declare type AllocationV2 = io.flow.v0.models.AllocationV2;
|
|
12158
12381
|
export declare type AmountMargin = io.flow.v0.models.AmountMargin;
|
|
12159
12382
|
export declare type AmountMarginForm = io.flow.v0.models.AmountMarginForm;
|
|
12383
|
+
export declare type AmruthaItemDeleted = io.flow.v0.models.AmruthaItemDeleted;
|
|
12384
|
+
export declare type AmruthaItemUpserted = io.flow.v0.models.AmruthaItemUpserted;
|
|
12160
12385
|
export declare type AnalyticsExportType = io.flow.v0.models.AnalyticsExportType;
|
|
12161
12386
|
export declare type ApplePayMerchantValidationPayload = io.flow.v0.models.ApplePayMerchantValidationPayload;
|
|
12162
12387
|
export declare type ApplepaySdkCreateResultActionDetails = io.flow.v0.models.ApplepaySdkCreateResultActionDetails;
|
|
@@ -12643,6 +12868,10 @@ export declare type ExternalCard = io.flow.v0.models.ExternalCard;
|
|
|
12643
12868
|
export declare type ExternalOrderSummary = io.flow.v0.models.ExternalOrderSummary;
|
|
12644
12869
|
export declare type FeeDeduction = io.flow.v0.models.FeeDeduction;
|
|
12645
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;
|
|
12646
12875
|
export declare type FeeWeight = io.flow.v0.models.FeeWeight;
|
|
12647
12876
|
export declare type FieldValidationMax = io.flow.v0.models.FieldValidationMax;
|
|
12648
12877
|
export declare type FieldValidationMin = io.flow.v0.models.FieldValidationMin;
|
|
@@ -12730,6 +12959,7 @@ export declare type HarmonizationDocument = io.flow.v0.models.HarmonizationDocum
|
|
|
12730
12959
|
export declare type HarmonizationHs10ExportType = io.flow.v0.models.HarmonizationHs10ExportType;
|
|
12731
12960
|
export declare type HarmonizationHs6ExportType = io.flow.v0.models.HarmonizationHs6ExportType;
|
|
12732
12961
|
export declare type HarmonizationOverviewExportType = io.flow.v0.models.HarmonizationOverviewExportType;
|
|
12962
|
+
export declare type HarmonizationTariffCode = io.flow.v0.models.HarmonizationTariffCode;
|
|
12733
12963
|
export declare type HarmonizationTariffCodesExportType = io.flow.v0.models.HarmonizationTariffCodesExportType;
|
|
12734
12964
|
export declare type HarmonizedCategoryReference = io.flow.v0.models.HarmonizedCategoryReference;
|
|
12735
12965
|
export declare type HarmonizedItem = io.flow.v0.models.HarmonizedItem;
|
|
@@ -13046,6 +13276,14 @@ export declare type OrderRulesSummary = io.flow.v0.models.OrderRulesSummary;
|
|
|
13046
13276
|
export declare type OrderServiceChange = io.flow.v0.models.OrderServiceChange;
|
|
13047
13277
|
export declare type OrderServiceChangeForm = io.flow.v0.models.OrderServiceChangeForm;
|
|
13048
13278
|
export declare type OrderServiceChangeRequestData = io.flow.v0.models.OrderServiceChangeRequestData;
|
|
13279
|
+
export declare type OrderState = io.flow.v0.models.OrderState;
|
|
13280
|
+
export declare type OrderStateDeleted = io.flow.v0.models.OrderStateDeleted;
|
|
13281
|
+
export declare type OrderStateRejectionReason = io.flow.v0.unions.OrderStateRejectionReason;
|
|
13282
|
+
export declare type OrderStateRejectionReasonDomesticOrder = io.flow.v0.models.OrderStateRejectionReasonDomesticOrder;
|
|
13283
|
+
export declare type OrderStateRejectionReasonItemsEmpty = io.flow.v0.models.OrderStateRejectionReasonItemsEmpty;
|
|
13284
|
+
export declare type OrderStateRejectionReasonRestrictedItem = io.flow.v0.models.OrderStateRejectionReasonRestrictedItem;
|
|
13285
|
+
export declare type OrderStateStatus = io.flow.v0.enums.OrderStateStatus;
|
|
13286
|
+
export declare type OrderStateUpserted = io.flow.v0.models.OrderStateUpserted;
|
|
13049
13287
|
export declare type OrderStatus = io.flow.v0.enums.OrderStatus;
|
|
13050
13288
|
export declare type OrderStorage = io.flow.v0.enums.OrderStorage;
|
|
13051
13289
|
export declare type OrderSubmissionForm = io.flow.v0.models.OrderSubmissionForm;
|
|
@@ -13381,10 +13619,10 @@ export declare type RateUpsertedV3 = io.flow.v0.models.RateUpsertedV3;
|
|
|
13381
13619
|
export declare type RateVersion = io.flow.v0.models.RateVersion;
|
|
13382
13620
|
export declare type Ratecard = io.flow.v0.models.Ratecard;
|
|
13383
13621
|
export declare type RatecardCarrierSummary = io.flow.v0.models.RatecardCarrierSummary;
|
|
13622
|
+
export declare type RatecardData = io.flow.v0.models.RatecardData;
|
|
13384
13623
|
export declare type RatecardDeleted = io.flow.v0.models.RatecardDeleted;
|
|
13385
13624
|
export declare type RatecardEstimate = io.flow.v0.unions.RatecardEstimate;
|
|
13386
13625
|
export declare type RatecardEstimateForm = io.flow.v0.models.RatecardEstimateForm;
|
|
13387
|
-
export declare type RatecardEstimateSummaryForm = io.flow.v0.models.RatecardEstimateSummaryForm;
|
|
13388
13626
|
export declare type RatecardEstimateV1 = io.flow.v0.models.RatecardEstimateV1;
|
|
13389
13627
|
export declare type RatecardEstimateV2 = io.flow.v0.models.RatecardEstimateV2;
|
|
13390
13628
|
export declare type RatecardEstimateV3 = io.flow.v0.models.RatecardEstimateV3;
|
|
@@ -13672,7 +13910,11 @@ export declare type SurchargeResponsibleParty = io.flow.v0.enums.SurchargeRespon
|
|
|
13672
13910
|
export declare type SurchargeResponsiblePartyDisplay = io.flow.v0.models.SurchargeResponsiblePartyDisplay;
|
|
13673
13911
|
export declare type SurchargeSetting = io.flow.v0.models.SurchargeSetting;
|
|
13674
13912
|
export declare type SurchargeSettingDisplay = io.flow.v0.models.SurchargeSettingDisplay;
|
|
13913
|
+
export declare type TariffCodes = io.flow.v0.models.TariffCodes;
|
|
13914
|
+
export declare type TariffCodesDeleted = io.flow.v0.models.TariffCodesDeleted;
|
|
13915
|
+
export declare type TariffCodesUpserted = io.flow.v0.models.TariffCodesUpserted;
|
|
13675
13916
|
export declare type Tax = io.flow.v0.models.Tax;
|
|
13917
|
+
export declare type TaxAndDutyInclusivitySetting = io.flow.v0.enums.TaxAndDutyInclusivitySetting;
|
|
13676
13918
|
export declare type TaxApplicability = io.flow.v0.enums.TaxApplicability;
|
|
13677
13919
|
export declare type TaxBreakdown = io.flow.v0.models.TaxBreakdown;
|
|
13678
13920
|
export declare type TaxDutyCalculatorValidationError = io.flow.v0.models.TaxDutyCalculatorValidationError;
|
|
@@ -13773,7 +14015,10 @@ export declare type TransactionMetadataChannelCardMetadataIssuerSummary = io.flo
|
|
|
13773
14015
|
export declare type TransactionMetadataChannelOrganizationTransaction = io.flow.v0.models.TransactionMetadataChannelOrganizationTransaction;
|
|
13774
14016
|
export declare type TransactionMetadataFailedPayout = io.flow.v0.models.TransactionMetadataFailedPayout;
|
|
13775
14017
|
export declare type TransactionMetadataFailedPayoutReference = io.flow.v0.models.TransactionMetadataFailedPayoutReference;
|
|
14018
|
+
export declare type TransactionMetadataFlatRateLabel = io.flow.v0.models.TransactionMetadataFlatRateLabel;
|
|
13776
14019
|
export declare type TransactionMetadataManual = io.flow.v0.models.TransactionMetadataManual;
|
|
14020
|
+
export declare type TransactionMetadataMerchantFee = io.flow.v0.models.TransactionMetadataMerchantFee;
|
|
14021
|
+
export declare type TransactionMetadataMerchantFeeItem = io.flow.v0.models.TransactionMetadataMerchantFeeItem;
|
|
13777
14022
|
export declare type TransactionMetadataOriginalTransaction = io.flow.v0.models.TransactionMetadataOriginalTransaction;
|
|
13778
14023
|
export declare type TransactionMetadataOutboundTransaction = io.flow.v0.models.TransactionMetadataOutboundTransaction;
|
|
13779
14024
|
export declare type TransactionMetadataPaymentTransaction = io.flow.v0.models.TransactionMetadataPaymentTransaction;
|