@flowio/types 11.24.130 → 11.24.132
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 +952 -73
- package/dist/api.d.ts +366 -256
- package/package.json +2 -2
- package/src/api-internal.ts +1177 -91
- package/src/api.ts +451 -315
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_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';
|
|
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';
|
|
@@ -2256,6 +2256,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
2256
2256
|
readonly order_updated_at?: string;
|
|
2257
2257
|
readonly order_edit_summary?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
2258
2258
|
readonly payment_source?: io.flow.channel.internal.v0.enums.OrderPaymentSourceType;
|
|
2259
|
+
readonly external_order_summary?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
|
|
2259
2260
|
}
|
|
2260
2261
|
interface ChannelOrderAcceptanceDetails {
|
|
2261
2262
|
readonly order_acceptance: io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
|
|
@@ -2532,6 +2533,8 @@ declare namespace io.flow.common.v0.models {
|
|
|
2532
2533
|
interface MerchantOfRecordEntityRegistration {
|
|
2533
2534
|
readonly number: string;
|
|
2534
2535
|
readonly country: string;
|
|
2536
|
+
readonly province_number?: string;
|
|
2537
|
+
readonly province?: string;
|
|
2535
2538
|
}
|
|
2536
2539
|
interface Money {
|
|
2537
2540
|
readonly amount: number;
|
|
@@ -2699,6 +2702,30 @@ declare namespace io.flow.error.v0.models {
|
|
|
2699
2702
|
readonly messages: string[];
|
|
2700
2703
|
}
|
|
2701
2704
|
}
|
|
2705
|
+
declare namespace io.flow.channel.shopify.v0.enums {
|
|
2706
|
+
type ChannelShopifyOrderStateReasonCode = 'placeholder_reason_code';
|
|
2707
|
+
}
|
|
2708
|
+
declare namespace io.flow.channel.shopify.v0.models {
|
|
2709
|
+
interface ChannelShopifyOrderState {
|
|
2710
|
+
readonly id: string;
|
|
2711
|
+
readonly shopify_order_summary: io.flow.channel.shopify.v0.models.ChannelShopifyOrderSummary;
|
|
2712
|
+
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
2713
|
+
readonly reasons?: io.flow.channel.shopify.v0.models.ChannelShopifyOrderStateReason[];
|
|
2714
|
+
readonly external_order_summary?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
|
|
2715
|
+
}
|
|
2716
|
+
interface ChannelShopifyOrderStateReason {
|
|
2717
|
+
readonly code: io.flow.channel.shopify.v0.enums.ChannelShopifyOrderStateReasonCode;
|
|
2718
|
+
readonly message: string;
|
|
2719
|
+
}
|
|
2720
|
+
interface ChannelShopifyOrderSummary {
|
|
2721
|
+
readonly order_id: number;
|
|
2722
|
+
readonly shop_id: number;
|
|
2723
|
+
}
|
|
2724
|
+
interface ExternalOrderSummary {
|
|
2725
|
+
readonly id: string;
|
|
2726
|
+
readonly edit_ids: string[];
|
|
2727
|
+
}
|
|
2728
|
+
}
|
|
2702
2729
|
declare namespace io.flow.channel.v0.enums {
|
|
2703
2730
|
type ChannelCurrencyCapability = 'payment_authorizations' | 'settlement_currency';
|
|
2704
2731
|
}
|
|
@@ -2814,145 +2841,6 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
2814
2841
|
readonly identifier: string;
|
|
2815
2842
|
}
|
|
2816
2843
|
}
|
|
2817
|
-
declare namespace io.flow.tech.onboarding.playground.v0.enums {
|
|
2818
|
-
type AldoItemType = 'physical' | 'digital';
|
|
2819
|
-
type AnirbanItemType = 'physical' | 'digital';
|
|
2820
|
-
type AnshItemType = 'physical' | 'digital';
|
|
2821
|
-
type HoseinItemType = 'physical' | 'digital';
|
|
2822
|
-
type NiallItemType = 'physical' | 'digital';
|
|
2823
|
-
type PrateekItemType = 'physical' | 'digital';
|
|
2824
|
-
type RohanItemType = 'physical' | 'digital';
|
|
2825
|
-
type SarveshItemType = 'physical' | 'digital';
|
|
2826
|
-
}
|
|
2827
|
-
declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
2828
|
-
interface AldoItem {
|
|
2829
|
-
readonly id: string;
|
|
2830
|
-
readonly number: string;
|
|
2831
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
2832
|
-
readonly description?: string;
|
|
2833
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.AldoItemType;
|
|
2834
|
-
readonly added_on: string;
|
|
2835
|
-
}
|
|
2836
|
-
interface AldoItemForm {
|
|
2837
|
-
readonly number: string;
|
|
2838
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
2839
|
-
readonly description?: string;
|
|
2840
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.AldoItemType;
|
|
2841
|
-
readonly added_on: string;
|
|
2842
|
-
}
|
|
2843
|
-
interface AnirbanItem {
|
|
2844
|
-
readonly id: string;
|
|
2845
|
-
readonly number: string;
|
|
2846
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
2847
|
-
readonly description?: string;
|
|
2848
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.AnirbanItemType;
|
|
2849
|
-
readonly added_on: string;
|
|
2850
|
-
}
|
|
2851
|
-
interface AnirbanItemForm {
|
|
2852
|
-
readonly number: string;
|
|
2853
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
2854
|
-
readonly description?: string;
|
|
2855
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.AnirbanItemType;
|
|
2856
|
-
readonly added_on: string;
|
|
2857
|
-
}
|
|
2858
|
-
interface AnshItem {
|
|
2859
|
-
readonly id: string;
|
|
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.AnshItemType;
|
|
2864
|
-
readonly added_on: string;
|
|
2865
|
-
}
|
|
2866
|
-
interface AnshItemForm {
|
|
2867
|
-
readonly number: string;
|
|
2868
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
2869
|
-
readonly description?: string;
|
|
2870
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
|
|
2871
|
-
readonly added_on: string;
|
|
2872
|
-
}
|
|
2873
|
-
interface HoseinItem {
|
|
2874
|
-
readonly id: string;
|
|
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.HoseinItemType;
|
|
2879
|
-
readonly added_on: string;
|
|
2880
|
-
}
|
|
2881
|
-
interface HoseinItemForm {
|
|
2882
|
-
readonly number: string;
|
|
2883
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
2884
|
-
readonly description?: string;
|
|
2885
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.HoseinItemType;
|
|
2886
|
-
readonly added_on: string;
|
|
2887
|
-
}
|
|
2888
|
-
interface JeanDemoItem {
|
|
2889
|
-
readonly id: string;
|
|
2890
|
-
readonly name: string;
|
|
2891
|
-
}
|
|
2892
|
-
interface NiallItem {
|
|
2893
|
-
readonly id: string;
|
|
2894
|
-
readonly number: string;
|
|
2895
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
2896
|
-
readonly description?: string;
|
|
2897
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.NiallItemType;
|
|
2898
|
-
readonly added_on: string;
|
|
2899
|
-
}
|
|
2900
|
-
interface NiallItemForm {
|
|
2901
|
-
readonly number: string;
|
|
2902
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
2903
|
-
readonly description?: string;
|
|
2904
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.NiallItemType;
|
|
2905
|
-
readonly added_on: string;
|
|
2906
|
-
}
|
|
2907
|
-
interface PrateekItem {
|
|
2908
|
-
readonly id: string;
|
|
2909
|
-
readonly number: string;
|
|
2910
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
2911
|
-
readonly description?: string;
|
|
2912
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.PrateekItemType;
|
|
2913
|
-
readonly added_on: string;
|
|
2914
|
-
}
|
|
2915
|
-
interface PrateekItemForm {
|
|
2916
|
-
readonly number: string;
|
|
2917
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
2918
|
-
readonly description?: string;
|
|
2919
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.PrateekItemType;
|
|
2920
|
-
readonly added_on: string;
|
|
2921
|
-
}
|
|
2922
|
-
interface RohanItem {
|
|
2923
|
-
readonly id: string;
|
|
2924
|
-
readonly number: string;
|
|
2925
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
2926
|
-
readonly description?: string;
|
|
2927
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.RohanItemType;
|
|
2928
|
-
readonly added_on: string;
|
|
2929
|
-
}
|
|
2930
|
-
interface RohanItemForm {
|
|
2931
|
-
readonly number: string;
|
|
2932
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
2933
|
-
readonly description?: string;
|
|
2934
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.RohanItemType;
|
|
2935
|
-
readonly added_on: string;
|
|
2936
|
-
}
|
|
2937
|
-
interface SarveshItem {
|
|
2938
|
-
readonly id: string;
|
|
2939
|
-
readonly number: string;
|
|
2940
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
2941
|
-
readonly description?: string;
|
|
2942
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.SarveshItemType;
|
|
2943
|
-
readonly added_on: string;
|
|
2944
|
-
}
|
|
2945
|
-
interface SarveshItemForm {
|
|
2946
|
-
readonly number: string;
|
|
2947
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
2948
|
-
readonly description?: string;
|
|
2949
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.SarveshItemType;
|
|
2950
|
-
readonly added_on: string;
|
|
2951
|
-
}
|
|
2952
|
-
interface TechOnboardingDescription {
|
|
2953
|
-
readonly description: string;
|
|
2954
|
-
}
|
|
2955
|
-
}
|
|
2956
2844
|
declare namespace io.flow.product.v0.models {
|
|
2957
2845
|
interface Product {
|
|
2958
2846
|
readonly organization_id: string;
|
|
@@ -3029,6 +2917,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3029
2917
|
type ChangeType = 'insert' | 'update' | 'delete';
|
|
3030
2918
|
type ChannelCurrencyCapability = 'payment_authorizations' | 'settlement_currency';
|
|
3031
2919
|
type ChannelShopifyOrderStateReasonCode = 'placeholder_reason_code';
|
|
2920
|
+
type CommercialInvoiceMode = 'direct' | 'indirect';
|
|
3032
2921
|
type ConsumerInvoiceCustomerType = 'business_eu_verified' | 'business_non_verified' | 'individual';
|
|
3033
2922
|
type ConsumerInvoiceDocumentType = 'pdf';
|
|
3034
2923
|
type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
|
|
@@ -3056,7 +2945,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3056
2945
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
3057
2946
|
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
3058
2947
|
type Environment = 'sandbox' | 'production';
|
|
3059
|
-
type EventType = 'test_upserted' | 'generate_load' | '
|
|
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';
|
|
3060
2949
|
type ExceptionType = 'open' | 'closed';
|
|
3061
2950
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
3062
2951
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -3133,7 +3022,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3133
3022
|
type PaymentActionType = 'redirect' | 'redirect_get' | 'redirect_post' | 'select_payment_option' | 'use_sdk_klarna_v1' | 'use_sdk_applepay_js' | 'use_sdk_googlepay' | 'use_sdk_paypal' | 'use_sdk_stripe_v3' | 'use_sdk_adyen_v3' | 'use_sdk_adyen_v4' | 'execute_script' | 'display_inline_window';
|
|
3134
3023
|
type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
|
|
3135
3024
|
type PaymentFailureCode = 'action_expired' | 'action_cancelled' | 'action_failed' | 'authorization_declined' | 'not_supported' | 'fraudulent' | 'error' | 'payment_checks_declined';
|
|
3136
|
-
type PaymentFeeType = 'fx' | 'mor' | 'sp';
|
|
3025
|
+
type PaymentFeeType = 'fx' | 'mor' | 'sp' | 'mor_tax';
|
|
3137
3026
|
type PaymentMethodCapability = 'credit' | 'debit';
|
|
3138
3027
|
type PaymentMethodDataOptionType = 'ideal_issuer_option';
|
|
3139
3028
|
type PaymentMethodRuleContentKey = 'description';
|
|
@@ -3158,6 +3047,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3158
3047
|
type PriceDetailKey = 'item_price' | 'margins' | 'vat' | 'duty' | 'rounding' | 'adjustment';
|
|
3159
3048
|
type PriceFacetBoundary = 'min' | 'max';
|
|
3160
3049
|
type PricingLevySetting = 'included' | 'displayed' | 'ignored';
|
|
3050
|
+
type PricingType = 'inclusive_pricing';
|
|
3161
3051
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
3162
3052
|
type ProvinceType = 'area' | 'city' | 'county' | 'department' | 'dependency' | 'district' | 'do_si' | 'emirate' | 'entity' | 'island' | 'municipality' | 'oblast' | 'outlying_area' | 'parish' | 'prefecture' | 'province' | 'state' | 'territory' | 'other';
|
|
3163
3053
|
type QuoteErrorCode = 'generic_error' | 'items_not_available' | 'shipping_unavailable';
|
|
@@ -3167,6 +3057,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3167
3057
|
type RefundStatus = 'pending' | 'succeeded' | 'failed' | 'canceled';
|
|
3168
3058
|
type RegionType = 'state' | 'province' | 'jurisdiction';
|
|
3169
3059
|
type RestrictedReviewStatus = 'in_review' | 'reviewed';
|
|
3060
|
+
type RestrictionEnvironment = 'sandbox' | 'production' | 'qa';
|
|
3170
3061
|
type ReturnItemStatus = 'returnable' | 'non-returnable';
|
|
3171
3062
|
type ReturnPolicyState = 'current' | 'deleting' | 'updating';
|
|
3172
3063
|
type ReturnStatus = 'open' | 'refunded';
|
|
@@ -3181,6 +3072,9 @@ declare namespace io.flow.v0.enums {
|
|
|
3181
3072
|
type ScheduleExceptionStatus = 'Open' | 'Closed';
|
|
3182
3073
|
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
|
|
3183
3074
|
type SellabilityRequestStatus = 'commit';
|
|
3075
|
+
type SellabilityResultErrorCode = 'insufficient_details' | 'generic_error';
|
|
3076
|
+
type SellabilityResultStatus = 'in_review' | 'succeeded' | 'failed';
|
|
3077
|
+
type SellabilityScreeningMode = 'pre_onboarding' | 'default_on' | 'active';
|
|
3184
3078
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
3185
3079
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
3186
3080
|
type ShippingConfigurationType = 'default' | 'variant';
|
|
@@ -3189,7 +3083,8 @@ declare namespace io.flow.v0.enums {
|
|
|
3189
3083
|
type ShopifyLocalizationMethod = 'api' | 'ssr';
|
|
3190
3084
|
type ShopifySyncCheck = 'localized_variants' | 'flow_variant_metafields';
|
|
3191
3085
|
type SortDirection = 'ascending' | 'descending';
|
|
3192
|
-
type StatementAttachmentType = 'csv';
|
|
3086
|
+
type StatementAttachmentType = 'csv' | 'pdf';
|
|
3087
|
+
type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
3193
3088
|
type StoredMethodUsageStep = 'initial' | 'subsequent';
|
|
3194
3089
|
type Strategy = 'range' | 'from' | 'to';
|
|
3195
3090
|
type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
|
|
@@ -3197,7 +3092,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3197
3092
|
type SurchargeResponsibleParty = 'organization' | 'customer';
|
|
3198
3093
|
type TaxApplicability = 'none' | 'all';
|
|
3199
3094
|
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';
|
|
3200
|
-
type TaxDutyTransactionReasonCode = 'post_capture' | 'post_fulfilment' | 'manual_payment_or_gift_card' | 'order_edit' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'full_refund_without_shipment' | 'unfulfilled_order_above_de_min';
|
|
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';
|
|
3201
3096
|
type TaxJurisdictionType = 'country' | 'province';
|
|
3202
3097
|
type TaxReportType = 'consumer' | 'b2b';
|
|
3203
3098
|
type TaxType = 'vat' | 'gst' | 'hst' | 'pst' | 'qst' | 'sales_tax';
|
|
@@ -3214,10 +3109,10 @@ declare namespace io.flow.v0.enums {
|
|
|
3214
3109
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired' | 'unknown' | 'unmapped';
|
|
3215
3110
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
3216
3111
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
3217
|
-
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';
|
|
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';
|
|
3218
3113
|
type TransferStatus = 'succeeded' | 'canceled';
|
|
3219
3114
|
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';
|
|
3220
|
-
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
3115
|
+
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
3221
3116
|
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion' | 'prohibited_item' | 'undeliverable_shipment' | 'signature_required' | 'direct_delivery' | 'saturday_stop' | 'residential_extended_area_pickup' | 'package_level_detail' | 'pickup';
|
|
3222
3117
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
3223
3118
|
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_foot' | 'cubic_millimeter' | 'cubic_centimeter' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
@@ -3502,18 +3397,6 @@ declare namespace io.flow.v0.models {
|
|
|
3502
3397
|
readonly type: 'fingerprint';
|
|
3503
3398
|
readonly fingerprint_token: string;
|
|
3504
3399
|
}
|
|
3505
|
-
interface AldoItemDeleted {
|
|
3506
|
-
readonly discriminator: 'aldo_item_deleted';
|
|
3507
|
-
readonly event_id: string;
|
|
3508
|
-
readonly timestamp: string;
|
|
3509
|
-
readonly id: string;
|
|
3510
|
-
}
|
|
3511
|
-
interface AldoItemUpserted {
|
|
3512
|
-
readonly discriminator: 'aldo_item_upserted';
|
|
3513
|
-
readonly event_id: string;
|
|
3514
|
-
readonly timestamp: string;
|
|
3515
|
-
readonly item: io.flow.tech.onboarding.playground.v0.models.AldoItem;
|
|
3516
|
-
}
|
|
3517
3400
|
interface Allocation {
|
|
3518
3401
|
readonly order: io.flow.v0.models.AllocationOrderSummary;
|
|
3519
3402
|
readonly details: io.flow.v0.unions.AllocationDetail[];
|
|
@@ -3623,30 +3506,6 @@ declare namespace io.flow.v0.models {
|
|
|
3623
3506
|
readonly region?: string;
|
|
3624
3507
|
readonly interval?: io.flow.v0.enums.UnitOfTime;
|
|
3625
3508
|
}
|
|
3626
|
-
interface AnirbanItemDeleted {
|
|
3627
|
-
readonly discriminator: 'anirban_item_deleted';
|
|
3628
|
-
readonly event_id: string;
|
|
3629
|
-
readonly timestamp: string;
|
|
3630
|
-
readonly id: string;
|
|
3631
|
-
}
|
|
3632
|
-
interface AnirbanItemUpserted {
|
|
3633
|
-
readonly discriminator: 'anirban_item_upserted';
|
|
3634
|
-
readonly event_id: string;
|
|
3635
|
-
readonly timestamp: string;
|
|
3636
|
-
readonly item: io.flow.tech.onboarding.playground.v0.models.AnirbanItem;
|
|
3637
|
-
}
|
|
3638
|
-
interface AnshItemDeleted {
|
|
3639
|
-
readonly discriminator: 'ansh_item_deleted';
|
|
3640
|
-
readonly event_id: string;
|
|
3641
|
-
readonly timestamp: string;
|
|
3642
|
-
readonly id: string;
|
|
3643
|
-
}
|
|
3644
|
-
interface AnshItemUpserted {
|
|
3645
|
-
readonly discriminator: 'ansh_item_upserted';
|
|
3646
|
-
readonly event_id: string;
|
|
3647
|
-
readonly timestamp: string;
|
|
3648
|
-
readonly item: io.flow.tech.onboarding.playground.v0.models.AnshItem;
|
|
3649
|
-
}
|
|
3650
3509
|
interface ApplePayMerchantValidationPayload {
|
|
3651
3510
|
readonly discriminator: 'apple_pay_merchant_validation_payload';
|
|
3652
3511
|
readonly validation_url: string;
|
|
@@ -3895,9 +3754,12 @@ declare namespace io.flow.v0.models {
|
|
|
3895
3754
|
readonly invoice: io.flow.v0.models.B2BInvoiceReference;
|
|
3896
3755
|
readonly lines: io.flow.v0.unions.ConsumerInvoiceLine[];
|
|
3897
3756
|
readonly tax_lines?: io.flow.v0.models.InvoiceTaxLine[];
|
|
3757
|
+
readonly tax?: io.flow.v0.models.Money;
|
|
3898
3758
|
readonly documents: io.flow.v0.models.ConsumerInvoiceDocument[];
|
|
3899
3759
|
readonly attributes: Record<string, string>;
|
|
3900
3760
|
readonly b2b_invoice_type: io.flow.v0.enums.B2BInvoiceType;
|
|
3761
|
+
readonly center?: io.flow.v0.models.ConsumerInvoiceCenterReference;
|
|
3762
|
+
readonly order?: io.flow.v0.models.ConsumerInvoiceOrderSummary;
|
|
3901
3763
|
}
|
|
3902
3764
|
interface B2BCreditMemoDeleted {
|
|
3903
3765
|
readonly discriminator: 'b2b_credit_memo_deleted';
|
|
@@ -3981,6 +3843,17 @@ declare namespace io.flow.v0.models {
|
|
|
3981
3843
|
readonly swift_code: string;
|
|
3982
3844
|
readonly iban: string;
|
|
3983
3845
|
}
|
|
3846
|
+
interface BankAccountInfoKor {
|
|
3847
|
+
readonly discriminator: 'kor';
|
|
3848
|
+
readonly name?: string;
|
|
3849
|
+
readonly address?: io.flow.v0.models.Address;
|
|
3850
|
+
readonly phone?: string;
|
|
3851
|
+
readonly email?: string;
|
|
3852
|
+
readonly bank_account_number: string;
|
|
3853
|
+
readonly bank_routing_number?: string;
|
|
3854
|
+
readonly bank_name?: string;
|
|
3855
|
+
readonly bank_address?: io.flow.v0.models.Address;
|
|
3856
|
+
}
|
|
3984
3857
|
interface BankAccountInfoUsa {
|
|
3985
3858
|
readonly discriminator: 'usa';
|
|
3986
3859
|
readonly routing_number: string;
|
|
@@ -4611,6 +4484,7 @@ declare namespace io.flow.v0.models {
|
|
|
4611
4484
|
readonly shopify_order_summary: io.flow.v0.models.ChannelShopifyOrderSummary;
|
|
4612
4485
|
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
4613
4486
|
readonly reasons?: io.flow.v0.models.ChannelShopifyOrderStateReason[];
|
|
4487
|
+
readonly external_order_summary?: io.flow.v0.models.ExternalOrderSummary;
|
|
4614
4488
|
}
|
|
4615
4489
|
interface ChannelShopifyOrderStateDeleted {
|
|
4616
4490
|
readonly discriminator: 'channel_shopify_order_state_deleted';
|
|
@@ -4810,6 +4684,73 @@ declare namespace io.flow.v0.models {
|
|
|
4810
4684
|
readonly discriminator: 'commercial_invoice_fee';
|
|
4811
4685
|
readonly amount: io.flow.v0.models.Money;
|
|
4812
4686
|
}
|
|
4687
|
+
interface CommonMerchantApplication {
|
|
4688
|
+
readonly discriminator: 'common_merchant_application';
|
|
4689
|
+
readonly id: string;
|
|
4690
|
+
readonly organization_id: string;
|
|
4691
|
+
readonly organization_reference: io.flow.v0.models.OnboardingOrganizationReference;
|
|
4692
|
+
readonly status: io.flow.v0.enums.OnboardingApplicationStatus;
|
|
4693
|
+
readonly company?: io.flow.v0.models.MerchantInfo;
|
|
4694
|
+
readonly indirect_tax?: io.flow.v0.models.IndirectTax;
|
|
4695
|
+
readonly ultimate_beneficiary_owner?: io.flow.v0.models.UltimateBeneficiaryOwner;
|
|
4696
|
+
readonly business_url?: string;
|
|
4697
|
+
readonly business_description?: string;
|
|
4698
|
+
readonly business_address?: io.flow.v0.models.Address;
|
|
4699
|
+
readonly refund_percentage?: number;
|
|
4700
|
+
readonly chargeback_percentage?: number;
|
|
4701
|
+
readonly beneficiary_details?: io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
4702
|
+
readonly other_trade_sector?: string;
|
|
4703
|
+
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
4704
|
+
readonly center_address?: io.flow.v0.models.Address;
|
|
4705
|
+
readonly average_order_weight?: number;
|
|
4706
|
+
readonly average_order_weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
4707
|
+
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
4708
|
+
readonly monthly_average?: io.flow.v0.models.MonthlyAverage;
|
|
4709
|
+
readonly default_country_of_origin?: string;
|
|
4710
|
+
readonly rate_card: string;
|
|
4711
|
+
readonly shop?: io.flow.v0.models.Shop;
|
|
4712
|
+
readonly created_at: string;
|
|
4713
|
+
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
4714
|
+
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
4715
|
+
readonly average_order_value?: io.flow.v0.models.Money;
|
|
4716
|
+
readonly mcc_codes?: number[];
|
|
4717
|
+
}
|
|
4718
|
+
interface CommonMerchantApplicationForm {
|
|
4719
|
+
readonly discriminator: 'common_merchant_application_form';
|
|
4720
|
+
readonly company?: io.flow.v0.models.MerchantInfo;
|
|
4721
|
+
readonly indirect_tax?: io.flow.v0.models.IndirectTax;
|
|
4722
|
+
readonly ultimate_beneficiary_owner?: io.flow.v0.models.UltimateBeneficiaryOwner;
|
|
4723
|
+
readonly business_url?: string;
|
|
4724
|
+
readonly business_description?: string;
|
|
4725
|
+
readonly business_address?: io.flow.v0.models.Address;
|
|
4726
|
+
readonly refund_percentage?: number;
|
|
4727
|
+
readonly chargeback_percentage?: number;
|
|
4728
|
+
readonly beneficiary_details?: io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
4729
|
+
readonly other_trade_sector?: string;
|
|
4730
|
+
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
4731
|
+
readonly center_address?: io.flow.v0.models.Address;
|
|
4732
|
+
readonly average_order_weight?: number;
|
|
4733
|
+
readonly average_order_weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
4734
|
+
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
4735
|
+
readonly monthly_average_volume_amount?: number;
|
|
4736
|
+
readonly monthly_average_volume_currency?: string;
|
|
4737
|
+
readonly monthly_average_number_transactions?: number;
|
|
4738
|
+
readonly default_country_of_origin?: string;
|
|
4739
|
+
readonly shop?: io.flow.v0.models.Shop;
|
|
4740
|
+
readonly rate_card?: string;
|
|
4741
|
+
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
4742
|
+
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
4743
|
+
readonly average_order_value?: io.flow.v0.models.Money;
|
|
4744
|
+
readonly mcc_codes?: number[];
|
|
4745
|
+
}
|
|
4746
|
+
interface CommonMerchantApplicationPutForm {
|
|
4747
|
+
readonly discriminator: 'common_merchant_application_put_form';
|
|
4748
|
+
readonly status?: io.flow.v0.enums.OnboardingApplicationStatus;
|
|
4749
|
+
}
|
|
4750
|
+
interface CommonMerchantApplicationsSummary {
|
|
4751
|
+
readonly discriminator: 'common_merchant_applications_summary';
|
|
4752
|
+
readonly total: number;
|
|
4753
|
+
}
|
|
4813
4754
|
interface Company {
|
|
4814
4755
|
readonly discriminator: 'company';
|
|
4815
4756
|
readonly legal_name: string;
|
|
@@ -5011,6 +4952,8 @@ declare namespace io.flow.v0.models {
|
|
|
5011
4952
|
readonly documents: io.flow.v0.models.ConsumerInvoiceDocument[];
|
|
5012
4953
|
readonly attributes: Record<string, string>;
|
|
5013
4954
|
readonly tax_registration?: io.flow.v0.models.TaxRegistration;
|
|
4955
|
+
readonly center?: io.flow.v0.models.ConsumerInvoiceCenterReference;
|
|
4956
|
+
readonly order?: io.flow.v0.models.ConsumerInvoiceOrderSummary;
|
|
5014
4957
|
}
|
|
5015
4958
|
interface CreditMemoDeleted {
|
|
5016
4959
|
readonly discriminator: 'credit_memo_deleted';
|
|
@@ -5684,6 +5627,7 @@ declare namespace io.flow.v0.models {
|
|
|
5684
5627
|
readonly amount: io.flow.v0.models.Money;
|
|
5685
5628
|
readonly origin_region?: io.flow.v0.models.RatecardRegionReference;
|
|
5686
5629
|
readonly destination_region?: io.flow.v0.models.RatecardRegionReference;
|
|
5630
|
+
readonly destination_regions?: io.flow.v0.models.RatecardRegionReference[];
|
|
5687
5631
|
readonly interval_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
5688
5632
|
}
|
|
5689
5633
|
interface EntityIdentifier {
|
|
@@ -5968,6 +5912,10 @@ declare namespace io.flow.v0.models {
|
|
|
5968
5912
|
readonly id: string;
|
|
5969
5913
|
readonly type?: io.flow.v0.enums.CardType;
|
|
5970
5914
|
}
|
|
5915
|
+
interface ExternalOrderSummary {
|
|
5916
|
+
readonly id: string;
|
|
5917
|
+
readonly edit_ids: string[];
|
|
5918
|
+
}
|
|
5971
5919
|
interface FeeDeduction {
|
|
5972
5920
|
readonly type: io.flow.v0.enums.FeeDeductionType;
|
|
5973
5921
|
readonly amount: number;
|
|
@@ -6222,7 +6170,7 @@ declare namespace io.flow.v0.models {
|
|
|
6222
6170
|
readonly discriminator: 'ge_catalog_item_ingestion_result';
|
|
6223
6171
|
readonly event_id: string;
|
|
6224
6172
|
readonly event_type: io.flow.v0.enums.GeEventType;
|
|
6225
|
-
readonly environment: io.flow.v0.enums.
|
|
6173
|
+
readonly environment: io.flow.v0.enums.RestrictionEnvironment;
|
|
6226
6174
|
readonly timestamp: string;
|
|
6227
6175
|
readonly source: string;
|
|
6228
6176
|
readonly response: io.flow.v0.enums.GeCatalogItemIngestionResponse;
|
|
@@ -6282,7 +6230,7 @@ declare namespace io.flow.v0.models {
|
|
|
6282
6230
|
readonly organization: string;
|
|
6283
6231
|
readonly event_id: string;
|
|
6284
6232
|
readonly event_type: io.flow.v0.enums.GeEventType;
|
|
6285
|
-
readonly environment: io.flow.v0.enums.
|
|
6233
|
+
readonly environment: io.flow.v0.enums.RestrictionEnvironment;
|
|
6286
6234
|
readonly timestamp: string;
|
|
6287
6235
|
readonly id: string;
|
|
6288
6236
|
readonly operation: io.flow.v0.enums.ChangeType;
|
|
@@ -6292,7 +6240,7 @@ declare namespace io.flow.v0.models {
|
|
|
6292
6240
|
readonly organization: string;
|
|
6293
6241
|
readonly event_id: string;
|
|
6294
6242
|
readonly event_type: io.flow.v0.enums.GeEventType;
|
|
6295
|
-
readonly environment: io.flow.v0.enums.
|
|
6243
|
+
readonly environment: io.flow.v0.enums.RestrictionEnvironment;
|
|
6296
6244
|
readonly timestamp: string;
|
|
6297
6245
|
readonly operation: io.flow.v0.enums.ChangeType;
|
|
6298
6246
|
readonly ge_product_restriction_result: io.flow.v0.models.ProductRestrictionResult;
|
|
@@ -6463,18 +6411,6 @@ declare namespace io.flow.v0.models {
|
|
|
6463
6411
|
readonly hop_number: number;
|
|
6464
6412
|
readonly hop_estimate: io.flow.v0.models.HopEstimateV2;
|
|
6465
6413
|
}
|
|
6466
|
-
interface HoseinItemDeleted {
|
|
6467
|
-
readonly discriminator: 'hosein_item_deleted';
|
|
6468
|
-
readonly event_id: string;
|
|
6469
|
-
readonly timestamp: string;
|
|
6470
|
-
readonly id: string;
|
|
6471
|
-
}
|
|
6472
|
-
interface HoseinItemUpserted {
|
|
6473
|
-
readonly discriminator: 'hosein_item_upserted';
|
|
6474
|
-
readonly event_id: string;
|
|
6475
|
-
readonly timestamp: string;
|
|
6476
|
-
readonly item: io.flow.tech.onboarding.playground.v0.models.HoseinItem;
|
|
6477
|
-
}
|
|
6478
6414
|
interface Hs10 {
|
|
6479
6415
|
readonly id: string;
|
|
6480
6416
|
readonly item: io.flow.v0.models.HarmonizedItemReference;
|
|
@@ -7369,6 +7305,7 @@ declare namespace io.flow.v0.models {
|
|
|
7369
7305
|
readonly region?: io.flow.v0.enums.RegionType;
|
|
7370
7306
|
readonly region_value?: string;
|
|
7371
7307
|
readonly category_code?: string;
|
|
7308
|
+
readonly description?: string;
|
|
7372
7309
|
}
|
|
7373
7310
|
interface MerchantOfRecordAuthorizationForm {
|
|
7374
7311
|
readonly discriminator: 'merchant_of_record_authorization_form';
|
|
@@ -7401,6 +7338,8 @@ declare namespace io.flow.v0.models {
|
|
|
7401
7338
|
interface MerchantOfRecordEntityRegistration {
|
|
7402
7339
|
readonly number: string;
|
|
7403
7340
|
readonly country: string;
|
|
7341
|
+
readonly province_number?: string;
|
|
7342
|
+
readonly province?: string;
|
|
7404
7343
|
}
|
|
7405
7344
|
interface MerchantOfRecordPaymentForm {
|
|
7406
7345
|
readonly discriminator: 'merchant_of_record_payment_form';
|
|
@@ -7417,6 +7356,16 @@ declare namespace io.flow.v0.models {
|
|
|
7417
7356
|
readonly postal?: string;
|
|
7418
7357
|
readonly country?: string;
|
|
7419
7358
|
}
|
|
7359
|
+
interface MerchantOnboardingBeneficiaryDetails {
|
|
7360
|
+
readonly name?: string;
|
|
7361
|
+
readonly address?: io.flow.v0.models.Address;
|
|
7362
|
+
readonly phone?: string;
|
|
7363
|
+
readonly email?: string;
|
|
7364
|
+
readonly bank_account_number?: string;
|
|
7365
|
+
readonly bank_routing_number?: string;
|
|
7366
|
+
readonly bank_name?: string;
|
|
7367
|
+
readonly bank_address?: io.flow.v0.models.Address;
|
|
7368
|
+
}
|
|
7420
7369
|
interface MerchantRejected {
|
|
7421
7370
|
readonly discriminator: 'merchant_rejected';
|
|
7422
7371
|
readonly reason: io.flow.v0.enums.MerchantRejectedReason;
|
|
@@ -7458,18 +7407,6 @@ declare namespace io.flow.v0.models {
|
|
|
7458
7407
|
readonly category_metafield_handles: string[];
|
|
7459
7408
|
readonly require_msds?: boolean;
|
|
7460
7409
|
}
|
|
7461
|
-
interface NiallItemDeleted {
|
|
7462
|
-
readonly discriminator: 'niall_item_deleted';
|
|
7463
|
-
readonly event_id: string;
|
|
7464
|
-
readonly timestamp: string;
|
|
7465
|
-
readonly id: string;
|
|
7466
|
-
}
|
|
7467
|
-
interface NiallItemUpserted {
|
|
7468
|
-
readonly discriminator: 'niall_item_upserted';
|
|
7469
|
-
readonly event_id: string;
|
|
7470
|
-
readonly timestamp: string;
|
|
7471
|
-
readonly item: io.flow.tech.onboarding.playground.v0.models.NiallItem;
|
|
7472
|
-
}
|
|
7473
7410
|
interface NotificationDeletedV2 {
|
|
7474
7411
|
readonly discriminator: 'notification_deleted_v2';
|
|
7475
7412
|
readonly event_id: string;
|
|
@@ -7604,6 +7541,7 @@ declare namespace io.flow.v0.models {
|
|
|
7604
7541
|
readonly payment_source?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
7605
7542
|
readonly edits?: io.flow.v0.models.EditSummary[];
|
|
7606
7543
|
readonly rates?: io.flow.v0.models.OrderRate[];
|
|
7544
|
+
readonly pricing_type?: io.flow.v0.enums.PricingType;
|
|
7607
7545
|
}
|
|
7608
7546
|
interface OrderAddress {
|
|
7609
7547
|
readonly text?: string;
|
|
@@ -8218,6 +8156,20 @@ declare namespace io.flow.v0.models {
|
|
|
8218
8156
|
readonly name: string;
|
|
8219
8157
|
readonly environment: io.flow.v0.enums.Environment;
|
|
8220
8158
|
}
|
|
8159
|
+
interface OrganizationTaxRegistration {
|
|
8160
|
+
readonly id: string;
|
|
8161
|
+
readonly organization: io.flow.v0.models.OrganizationSummary;
|
|
8162
|
+
readonly address: io.flow.v0.models.BillingAddress;
|
|
8163
|
+
readonly registration: io.flow.v0.models.TaxRegistrationDetail;
|
|
8164
|
+
readonly self_billing_agreement: io.flow.v0.models.SelfBillingAgreement;
|
|
8165
|
+
}
|
|
8166
|
+
interface OrganizationTaxRegistrationForm {
|
|
8167
|
+
readonly tax_number: string;
|
|
8168
|
+
readonly country: string;
|
|
8169
|
+
readonly province?: string;
|
|
8170
|
+
readonly self_billing_agreement_effective_at: string;
|
|
8171
|
+
readonly self_billing_agreement_expires_at?: string;
|
|
8172
|
+
}
|
|
8221
8173
|
interface OrganizationToken {
|
|
8222
8174
|
readonly discriminator: 'organization_token';
|
|
8223
8175
|
readonly id: string;
|
|
@@ -8894,6 +8846,7 @@ declare namespace io.flow.v0.models {
|
|
|
8894
8846
|
readonly supported_actions: io.flow.v0.enums.PaymentActionType[];
|
|
8895
8847
|
readonly payment_capture_option?: io.flow.v0.unions.PaymentCaptureOption;
|
|
8896
8848
|
readonly review?: io.flow.v0.models.PaymentRequestReview;
|
|
8849
|
+
readonly client_secret?: string;
|
|
8897
8850
|
}
|
|
8898
8851
|
interface PaymentRequestBilling {
|
|
8899
8852
|
readonly fees: io.flow.v0.models.PaymentRequestBillingFees;
|
|
@@ -9350,7 +9303,7 @@ declare namespace io.flow.v0.models {
|
|
|
9350
9303
|
readonly updated_by?: string;
|
|
9351
9304
|
readonly product_restriction_id?: string;
|
|
9352
9305
|
readonly hs_code?: string;
|
|
9353
|
-
readonly restricted_regions_by_type?: io.flow.v0.models.
|
|
9306
|
+
readonly restricted_regions_by_type?: io.flow.v0.models.SellabilityRegionResult[];
|
|
9354
9307
|
readonly needs_action_attributes?: io.flow.v0.models.NeedsActionAttributes[];
|
|
9355
9308
|
}
|
|
9356
9309
|
interface ProductRestrictionResultDeleted {
|
|
@@ -9373,9 +9326,10 @@ declare namespace io.flow.v0.models {
|
|
|
9373
9326
|
readonly product_id?: string;
|
|
9374
9327
|
readonly request_id: string;
|
|
9375
9328
|
readonly hs6_code: string;
|
|
9376
|
-
readonly restricted_regions: io.flow.v0.models.
|
|
9329
|
+
readonly restricted_regions: io.flow.v0.models.SellabilityRegionResult[];
|
|
9377
9330
|
}
|
|
9378
9331
|
interface ProductSellabilityForm {
|
|
9332
|
+
readonly discriminator: 'product_sellability_form';
|
|
9379
9333
|
readonly shop_id: string;
|
|
9380
9334
|
readonly product_id?: string;
|
|
9381
9335
|
readonly name: string;
|
|
@@ -9385,6 +9339,29 @@ declare namespace io.flow.v0.models {
|
|
|
9385
9339
|
readonly status?: io.flow.v0.enums.SellabilityRequestStatus;
|
|
9386
9340
|
readonly dry_run?: boolean;
|
|
9387
9341
|
}
|
|
9342
|
+
interface ProductSellabilityResult {
|
|
9343
|
+
readonly merchant_id?: string;
|
|
9344
|
+
readonly product_id: string;
|
|
9345
|
+
readonly restricted_regions: io.flow.v0.models.SellabilityRestrictedRegion[];
|
|
9346
|
+
readonly restricted_reasons: io.flow.v0.models.SellabilityRestrictedReason[];
|
|
9347
|
+
readonly needs_action_attributes?: io.flow.v0.models.SellabilityNeedsActionAttributes[];
|
|
9348
|
+
readonly request_id?: string;
|
|
9349
|
+
readonly hs6_code?: string;
|
|
9350
|
+
}
|
|
9351
|
+
interface ProductSellabilityResultDeleted {
|
|
9352
|
+
readonly discriminator: 'product_sellability_result_deleted';
|
|
9353
|
+
readonly event_id: string;
|
|
9354
|
+
readonly timestamp: string;
|
|
9355
|
+
readonly organization: string;
|
|
9356
|
+
readonly id: string;
|
|
9357
|
+
}
|
|
9358
|
+
interface ProductSellabilityResultUpserted {
|
|
9359
|
+
readonly discriminator: 'product_sellability_result_upserted';
|
|
9360
|
+
readonly event_id: string;
|
|
9361
|
+
readonly timestamp: string;
|
|
9362
|
+
readonly organization: string;
|
|
9363
|
+
readonly product_sellability_result: io.flow.v0.models.ProductSellabilityResult;
|
|
9364
|
+
}
|
|
9388
9365
|
interface ProductTaxonomyCategory {
|
|
9389
9366
|
readonly name: string;
|
|
9390
9367
|
readonly full_name: string;
|
|
@@ -9600,6 +9577,7 @@ declare namespace io.flow.v0.models {
|
|
|
9600
9577
|
readonly center_id?: string;
|
|
9601
9578
|
readonly taxes_owed?: io.flow.v0.models.Money;
|
|
9602
9579
|
readonly duties_owed?: io.flow.v0.models.Money;
|
|
9580
|
+
readonly commercial_invoice_mode?: io.flow.v0.enums.CommercialInvoiceMode;
|
|
9603
9581
|
}
|
|
9604
9582
|
interface RatecardEstimateSummaryForm {
|
|
9605
9583
|
readonly origin?: string;
|
|
@@ -10143,18 +10121,6 @@ declare namespace io.flow.v0.models {
|
|
|
10143
10121
|
readonly type: io.flow.v0.enums.ChangeType;
|
|
10144
10122
|
readonly reversal: io.flow.v0.models.Reversal;
|
|
10145
10123
|
}
|
|
10146
|
-
interface RohanItemDeleted {
|
|
10147
|
-
readonly discriminator: 'rohan_item_deleted';
|
|
10148
|
-
readonly event_id: string;
|
|
10149
|
-
readonly timestamp: string;
|
|
10150
|
-
readonly id: string;
|
|
10151
|
-
}
|
|
10152
|
-
interface RohanItemUpserted {
|
|
10153
|
-
readonly discriminator: 'rohan_item_upserted';
|
|
10154
|
-
readonly event_id: string;
|
|
10155
|
-
readonly timestamp: string;
|
|
10156
|
-
readonly item: io.flow.tech.onboarding.playground.v0.models.RohanItem;
|
|
10157
|
-
}
|
|
10158
10124
|
interface Romanization {
|
|
10159
10125
|
readonly address?: io.flow.v0.models.Address;
|
|
10160
10126
|
readonly contact?: io.flow.v0.models.Contact;
|
|
@@ -10174,18 +10140,6 @@ declare namespace io.flow.v0.models {
|
|
|
10174
10140
|
readonly authentication_techniques: io.flow.v0.enums.AuthenticationTechnique[];
|
|
10175
10141
|
readonly roles: io.flow.v0.enums.FlowRole[];
|
|
10176
10142
|
}
|
|
10177
|
-
interface SarveshItemDeleted {
|
|
10178
|
-
readonly discriminator: 'sarvesh_item_deleted';
|
|
10179
|
-
readonly event_id: string;
|
|
10180
|
-
readonly timestamp: string;
|
|
10181
|
-
readonly id: string;
|
|
10182
|
-
}
|
|
10183
|
-
interface SarveshItemUpserted {
|
|
10184
|
-
readonly discriminator: 'sarvesh_item_upserted';
|
|
10185
|
-
readonly event_id: string;
|
|
10186
|
-
readonly timestamp: string;
|
|
10187
|
-
readonly item: io.flow.tech.onboarding.playground.v0.models.SarveshItem;
|
|
10188
|
-
}
|
|
10189
10143
|
interface Schedule {
|
|
10190
10144
|
readonly calendar?: io.flow.v0.enums.Calendar;
|
|
10191
10145
|
readonly holiday: io.flow.v0.enums.HolidayCalendar;
|
|
@@ -10230,11 +10184,61 @@ declare namespace io.flow.v0.models {
|
|
|
10230
10184
|
readonly discriminator: 'select_issuer_option_action_details';
|
|
10231
10185
|
readonly issuer_options: io.flow.v0.models.IssuerReference[];
|
|
10232
10186
|
}
|
|
10187
|
+
interface SelfBillingAgreement {
|
|
10188
|
+
readonly effective_at: string;
|
|
10189
|
+
readonly expires_at: string;
|
|
10190
|
+
}
|
|
10233
10191
|
interface SellabilityError {
|
|
10234
10192
|
readonly discriminator: 'sellability_error';
|
|
10235
10193
|
readonly code: io.flow.v0.enums.SellabilityErrorCode;
|
|
10236
10194
|
readonly messages: string[];
|
|
10237
10195
|
}
|
|
10196
|
+
interface SellabilityNeedsActionAttributes {
|
|
10197
|
+
readonly reason_code: string;
|
|
10198
|
+
readonly category_metafield_handles: string[];
|
|
10199
|
+
readonly require_msds?: boolean;
|
|
10200
|
+
}
|
|
10201
|
+
interface SellabilityReasonWithRegions {
|
|
10202
|
+
readonly reason: string;
|
|
10203
|
+
readonly regions: string[];
|
|
10204
|
+
}
|
|
10205
|
+
interface SellabilityRegionResult {
|
|
10206
|
+
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
10207
|
+
readonly regions: string[];
|
|
10208
|
+
}
|
|
10209
|
+
interface SellabilityRegionWithReasons {
|
|
10210
|
+
readonly region: string;
|
|
10211
|
+
readonly reasons: string[];
|
|
10212
|
+
}
|
|
10213
|
+
interface SellabilityRestrictedReason {
|
|
10214
|
+
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
10215
|
+
readonly reasons_with_regions: io.flow.v0.models.SellabilityReasonWithRegions[];
|
|
10216
|
+
}
|
|
10217
|
+
interface SellabilityRestrictedRegion {
|
|
10218
|
+
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
10219
|
+
readonly regions: string[];
|
|
10220
|
+
}
|
|
10221
|
+
interface SellabilityScreening {
|
|
10222
|
+
readonly discriminator: 'sellability_screening';
|
|
10223
|
+
readonly product_sellability_result?: io.flow.v0.models.ProductSellabilityResult;
|
|
10224
|
+
readonly request_id: string;
|
|
10225
|
+
readonly status: io.flow.v0.enums.SellabilityResultStatus;
|
|
10226
|
+
readonly error_code?: io.flow.v0.enums.SellabilityResultErrorCode;
|
|
10227
|
+
readonly error_message?: string;
|
|
10228
|
+
}
|
|
10229
|
+
interface SellabilityScreeningForm {
|
|
10230
|
+
readonly discriminator: 'sellability_screening_form';
|
|
10231
|
+
readonly merchant_id: string;
|
|
10232
|
+
readonly product_id: string;
|
|
10233
|
+
readonly name: string;
|
|
10234
|
+
readonly price: io.flow.v0.models.Money;
|
|
10235
|
+
readonly description: string;
|
|
10236
|
+
readonly taxonomy_category: io.flow.v0.models.ProductTaxonomyCategory;
|
|
10237
|
+
readonly mode: io.flow.v0.enums.SellabilityScreeningMode;
|
|
10238
|
+
readonly catalog_size?: number;
|
|
10239
|
+
readonly relative_ranking?: number;
|
|
10240
|
+
readonly dry_run?: boolean;
|
|
10241
|
+
}
|
|
10238
10242
|
interface SellablilityRegionResult {
|
|
10239
10243
|
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
10240
10244
|
readonly regions: string[];
|
|
@@ -10588,6 +10592,39 @@ declare namespace io.flow.v0.models {
|
|
|
10588
10592
|
readonly type: io.flow.v0.enums.ChangeType;
|
|
10589
10593
|
readonly shipping_notification: io.flow.v0.models.ShippingNotification;
|
|
10590
10594
|
}
|
|
10595
|
+
interface ShippingRateEstimate {
|
|
10596
|
+
readonly origin_address: io.flow.v0.models.Address;
|
|
10597
|
+
readonly destination_address: io.flow.v0.models.Address;
|
|
10598
|
+
readonly shipping_date_time: string;
|
|
10599
|
+
readonly services: string[];
|
|
10600
|
+
readonly available: io.flow.v0.models.ShippingRateEstimateAvailable[];
|
|
10601
|
+
readonly unavailable?: io.flow.v0.models.ShippingRateEstimateUnavailable[];
|
|
10602
|
+
}
|
|
10603
|
+
interface ShippingRateEstimateAvailable {
|
|
10604
|
+
readonly service: io.flow.v0.models.RatecardServiceSummary;
|
|
10605
|
+
readonly delivered_duty: io.flow.v0.enums.DeliveredDuty;
|
|
10606
|
+
readonly shipment_window: io.flow.v0.models.ShipmentWindow;
|
|
10607
|
+
readonly total_amount: io.flow.v0.models.Money;
|
|
10608
|
+
readonly base_amount: io.flow.v0.models.Money;
|
|
10609
|
+
readonly fees: io.flow.v0.unions.RatecardFee[];
|
|
10610
|
+
readonly dimensional_weight?: io.flow.v0.models.Measurement;
|
|
10611
|
+
readonly gravitational_weight?: io.flow.v0.models.Measurement;
|
|
10612
|
+
readonly weight_break?: number;
|
|
10613
|
+
}
|
|
10614
|
+
interface ShippingRateEstimateRequest {
|
|
10615
|
+
readonly origin_address: io.flow.v0.models.Address;
|
|
10616
|
+
readonly destination_address: io.flow.v0.models.Address;
|
|
10617
|
+
readonly package_dimensions: io.flow.v0.models.Dimension;
|
|
10618
|
+
readonly shipping_date_time: string;
|
|
10619
|
+
readonly delivered_duty?: io.flow.v0.enums.DeliveredDuty;
|
|
10620
|
+
readonly duties_owed?: io.flow.v0.models.Money;
|
|
10621
|
+
readonly taxes_owed?: io.flow.v0.models.Money;
|
|
10622
|
+
readonly line_items?: io.flow.v0.models.LineItemForm[];
|
|
10623
|
+
}
|
|
10624
|
+
interface ShippingRateEstimateUnavailable {
|
|
10625
|
+
readonly service: string;
|
|
10626
|
+
readonly reason: string;
|
|
10627
|
+
}
|
|
10591
10628
|
interface Shop {
|
|
10592
10629
|
readonly name: string;
|
|
10593
10630
|
readonly id: string;
|
|
@@ -10774,6 +10811,7 @@ declare namespace io.flow.v0.models {
|
|
|
10774
10811
|
readonly third_party_logistics_partners?: io.flow.v0.models.ThirdPartyLogisticsPartner[];
|
|
10775
10812
|
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
10776
10813
|
readonly average_order_weight?: number;
|
|
10814
|
+
readonly average_order_weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
10777
10815
|
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
10778
10816
|
readonly monthly_average?: io.flow.v0.models.MonthlyAverage;
|
|
10779
10817
|
readonly default_country_of_origin?: string;
|
|
@@ -10806,6 +10844,7 @@ declare namespace io.flow.v0.models {
|
|
|
10806
10844
|
readonly third_party_logistics_partners?: io.flow.v0.models.ThirdPartyLogisticsPartner[];
|
|
10807
10845
|
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
10808
10846
|
readonly average_order_weight?: number;
|
|
10847
|
+
readonly average_order_weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
10809
10848
|
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
10810
10849
|
readonly monthly_average_volume_amount?: number;
|
|
10811
10850
|
readonly monthly_average_volume_currency?: string;
|
|
@@ -10929,6 +10968,10 @@ declare namespace io.flow.v0.models {
|
|
|
10929
10968
|
readonly organization: string;
|
|
10930
10969
|
readonly statement: io.flow.v0.models.Statement;
|
|
10931
10970
|
}
|
|
10971
|
+
interface StatementStatusForm {
|
|
10972
|
+
readonly code: io.flow.v0.enums.StatementStatusCode;
|
|
10973
|
+
readonly failure_reason?: io.flow.v0.enums.PayoutStatusFailureCode;
|
|
10974
|
+
}
|
|
10932
10975
|
interface StatementUpserted {
|
|
10933
10976
|
readonly discriminator: 'statement_upserted';
|
|
10934
10977
|
readonly event_id: string;
|
|
@@ -11169,10 +11212,30 @@ declare namespace io.flow.v0.models {
|
|
|
11169
11212
|
readonly address?: string;
|
|
11170
11213
|
readonly company_name?: string;
|
|
11171
11214
|
}
|
|
11215
|
+
interface TaxRegistrationDeleted {
|
|
11216
|
+
readonly discriminator: 'tax_registration_deleted';
|
|
11217
|
+
readonly event_id: string;
|
|
11218
|
+
readonly timestamp: string;
|
|
11219
|
+
readonly organization: string;
|
|
11220
|
+
readonly id: string;
|
|
11221
|
+
}
|
|
11222
|
+
interface TaxRegistrationDetail {
|
|
11223
|
+
readonly tax_number: string;
|
|
11224
|
+
readonly country: string;
|
|
11225
|
+
readonly tax_code: string;
|
|
11226
|
+
readonly province?: string;
|
|
11227
|
+
}
|
|
11172
11228
|
interface TaxRegistrationForm {
|
|
11173
11229
|
readonly number: string;
|
|
11174
11230
|
readonly company_name?: string;
|
|
11175
11231
|
}
|
|
11232
|
+
interface TaxRegistrationUpserted {
|
|
11233
|
+
readonly discriminator: 'tax_registration_upserted';
|
|
11234
|
+
readonly event_id: string;
|
|
11235
|
+
readonly timestamp: string;
|
|
11236
|
+
readonly organization: string;
|
|
11237
|
+
readonly tax_registration: io.flow.v0.models.OrganizationTaxRegistration;
|
|
11238
|
+
}
|
|
11176
11239
|
interface TaxReport {
|
|
11177
11240
|
readonly schedule: io.flow.v0.unions.RepeatSchedule;
|
|
11178
11241
|
readonly timezone: string;
|
|
@@ -11415,6 +11478,27 @@ declare namespace io.flow.v0.models {
|
|
|
11415
11478
|
readonly description?: string;
|
|
11416
11479
|
readonly order_number?: string;
|
|
11417
11480
|
}
|
|
11481
|
+
interface TrackingLabelEventUpsertedV2 {
|
|
11482
|
+
readonly discriminator: 'tracking_label_event_upserted_v2';
|
|
11483
|
+
readonly event_id: string;
|
|
11484
|
+
readonly timestamp: string;
|
|
11485
|
+
readonly organization: string;
|
|
11486
|
+
readonly tracking_label_event: io.flow.v0.models.TrackingLabelEventV2;
|
|
11487
|
+
}
|
|
11488
|
+
interface TrackingLabelEventV2 {
|
|
11489
|
+
readonly id: string;
|
|
11490
|
+
readonly carrier_id: string;
|
|
11491
|
+
readonly carrier_tracking_number: string;
|
|
11492
|
+
readonly carrier_tracking_url?: string;
|
|
11493
|
+
readonly label_id: string;
|
|
11494
|
+
readonly order_number?: string;
|
|
11495
|
+
readonly status: io.flow.v0.enums.TrackingStatus;
|
|
11496
|
+
readonly substatus?: io.flow.v0.enums.SubstatusCode;
|
|
11497
|
+
readonly carrier_timestamp: string;
|
|
11498
|
+
readonly description?: string;
|
|
11499
|
+
readonly delivery_estimate?: string;
|
|
11500
|
+
readonly address?: io.flow.v0.models.Address;
|
|
11501
|
+
}
|
|
11418
11502
|
interface TrackingLabelForm {
|
|
11419
11503
|
readonly tracking_id: string;
|
|
11420
11504
|
readonly status: io.flow.v0.enums.TrackingStatus;
|
|
@@ -11897,7 +11981,7 @@ declare namespace io.flow.v0.unions {
|
|
|
11897
11981
|
type AuthorizationResultActionDetails = io.flow.v0.models.AdyenNativeActionDetails | io.flow.v0.models.StripeAuthorizationResultActionDetails | io.flow.v0.models.ThreedsIdentifyActionDetails | io.flow.v0.models.ThreedsChallengeActionDetails | io.flow.v0.models.ApplepaySdkCreateResultActionDetails | io.flow.v0.models.ApplepaySdkValidateResultActionDetails | io.flow.v0.models.KlarnaSdkAuthorizationResultActionDetails | io.flow.v0.models.SelectIssuerOptionActionDetails;
|
|
11898
11982
|
type AvailableFilter = io.flow.v0.models.AvailableFilterStructured | io.flow.v0.models.AvailableFilterUnstructured;
|
|
11899
11983
|
type BankAccountForm = io.flow.v0.models.BankAccountFormInfo | io.flow.v0.models.BankAccountFormSimple;
|
|
11900
|
-
type BankAccountInfo = io.flow.v0.models.BankAccountInfoUsa | io.flow.v0.models.BankAccountInfoCan | io.flow.v0.models.BankAccountInfoGbr | io.flow.v0.models.BankAccountInfoFra | io.flow.v0.models.BankAccountInfoIta;
|
|
11984
|
+
type BankAccountInfo = io.flow.v0.models.BankAccountInfoUsa | io.flow.v0.models.BankAccountInfoCan | io.flow.v0.models.BankAccountInfoGbr | io.flow.v0.models.BankAccountInfoFra | io.flow.v0.models.BankAccountInfoIta | io.flow.v0.models.BankAccountInfoKor;
|
|
11901
11985
|
type BrowserActionConfiguration = io.flow.v0.models.CardBrowserActionConfiguration;
|
|
11902
11986
|
type CardAuthorizationActionResult = io.flow.v0.models.AuthorizationActionResultAdyenV3 | io.flow.v0.models.AuthorizationActionResultAdyenV4;
|
|
11903
11987
|
type CardNumber = io.flow.v0.models.PaymentMethodCardNumberCleartext | io.flow.v0.models.PaymentMethodCardNumberCipher;
|
|
@@ -11914,7 +11998,7 @@ declare namespace io.flow.v0.unions {
|
|
|
11914
11998
|
type Document = io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument;
|
|
11915
11999
|
type EmailNotificationData = io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder;
|
|
11916
12000
|
type Entity = io.flow.v0.models.Company | io.flow.v0.models.Individual;
|
|
11917
|
-
type Event = io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.
|
|
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;
|
|
11918
12002
|
type ExpandableCard = io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary | io.flow.v0.models.ExternalCard;
|
|
11919
12003
|
type ExpandableCenter = io.flow.v0.models.Center | io.flow.v0.models.CenterReference;
|
|
11920
12004
|
type ExpandableExperience = io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference;
|
|
@@ -11938,10 +12022,10 @@ declare namespace io.flow.v0.unions {
|
|
|
11938
12022
|
type LabelSurchargeDetail = io.flow.v0.models.LabelSurchargeDetailFlat | io.flow.v0.models.LabelSurchargeDetailPercentage | io.flow.v0.models.LabelSurchargeDetailPerWeightUnit;
|
|
11939
12023
|
type LocalizedPrice = io.flow.v0.models.LocalizedItemPrice | io.flow.v0.models.LocalizedItemVat | io.flow.v0.models.LocalizedItemDuty | io.flow.v0.models.LocalizedTotal;
|
|
11940
12024
|
type LogoImage = io.flow.v0.models.LogoImageSvg | io.flow.v0.models.LogoImageSetStatic;
|
|
11941
|
-
type MerchantApplication = io.flow.v0.models.ShopifyMerchantApplication;
|
|
11942
|
-
type MerchantApplicationForm = io.flow.v0.models.ShopifyMerchantApplicationForm;
|
|
11943
|
-
type MerchantApplicationPutForm = io.flow.v0.models.ShopifyMerchantApplicationPutForm;
|
|
11944
|
-
type MerchantApplicationsSummary = io.flow.v0.models.ShopifyMerchantApplicationsSummary;
|
|
12025
|
+
type MerchantApplication = io.flow.v0.models.ShopifyMerchantApplication | io.flow.v0.models.CommonMerchantApplication;
|
|
12026
|
+
type MerchantApplicationForm = io.flow.v0.models.ShopifyMerchantApplicationForm | io.flow.v0.models.CommonMerchantApplicationForm;
|
|
12027
|
+
type MerchantApplicationPutForm = io.flow.v0.models.ShopifyMerchantApplicationPutForm | io.flow.v0.models.CommonMerchantApplicationPutForm;
|
|
12028
|
+
type MerchantApplicationsSummary = io.flow.v0.models.ShopifyMerchantApplicationsSummary | io.flow.v0.models.CommonMerchantApplicationsSummary;
|
|
11945
12029
|
type OnboardingState = io.flow.v0.models.InComplianceReview | io.flow.v0.models.SetupInProgress | io.flow.v0.models.MerchantRejected | io.flow.v0.models.SetupBlocked | io.flow.v0.models.SetupCompleted | io.flow.v0.models.MerchantActivated | io.flow.v0.models.MerchantDeactivated | io.flow.v0.models.MerchantDisabled;
|
|
11946
12030
|
type OnlineAuthorizationDetails = io.flow.v0.models.CryptopayAuthorizationDetails | io.flow.v0.models.PaypalAuthorizationDetails | io.flow.v0.models.RedirectAuthorizationDetails | io.flow.v0.models.InlineAuthorizationDetails;
|
|
11947
12031
|
type OrderInformation = io.flow.v0.models.OrderInformationFlow | io.flow.v0.models.OrderInformationDetails;
|
|
@@ -11983,7 +12067,8 @@ declare namespace io.flow.v0.unions {
|
|
|
11983
12067
|
type RepeatSchedule = io.flow.v0.models.RepeatHourly | io.flow.v0.models.RepeatDaily | io.flow.v0.models.RepeatWeekly | io.flow.v0.models.RepeatMonthly;
|
|
11984
12068
|
type ReturnSource = io.flow.v0.models.ReturnSourceFlow | io.flow.v0.models.ReturnSourceExternalVendor;
|
|
11985
12069
|
type SdkAdyenV3AuthenticationToken = io.flow.v0.models.AdyenV3FingerprintToken | io.flow.v0.models.AdyenV3ChallengeToken;
|
|
11986
|
-
type
|
|
12070
|
+
type SellabilityRequest = io.flow.v0.models.ProductSellabilityForm | io.flow.v0.models.SellabilityScreeningForm;
|
|
12071
|
+
type SellabilityResponse = io.flow.v0.models.ProductSellability | io.flow.v0.models.SellabilityError | io.flow.v0.models.SellabilityScreening;
|
|
11987
12072
|
type ServiceDescription = io.flow.v0.models.ServiceSummary | io.flow.v0.models.ServiceUnknown;
|
|
11988
12073
|
type ServiceFee = io.flow.v0.models.FuelSurchargeServiceFee | io.flow.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.v0.models.RemoteAreaServiceFee | io.flow.v0.models.EmergencySituationSurchargeServiceFee | io.flow.v0.models.PeakSurchargeServiceFee | io.flow.v0.models.PeakSurchargeByWeightServiceFee | io.flow.v0.models.DutiesTaxesPaidSurchargeServiceFee | io.flow.v0.models.OversizePieceSurchargeServiceFee | io.flow.v0.models.OverweightPieceSurchargeServiceFee | io.flow.v0.models.RemoteAreaByWeightServiceFee | io.flow.v0.models.AdditionalHandlingServiceFee | io.flow.v0.models.LargePackageServiceFee | io.flow.v0.models.SecurityServiceFee | io.flow.v0.models.FixedDdpServiceFee | io.flow.v0.models.FixedCurrencyConversionServiceFee | io.flow.v0.models.EeiFilingServiceFee;
|
|
11989
12074
|
type Session = io.flow.v0.models.OrganizationSession;
|
|
@@ -12056,8 +12141,6 @@ export declare type AdyenNativeActionDetails = io.flow.v0.models.AdyenNativeActi
|
|
|
12056
12141
|
export declare type AdyenNativeData = io.flow.v0.unions.AdyenNativeData;
|
|
12057
12142
|
export declare type AdyenV3ChallengeToken = io.flow.v0.models.AdyenV3ChallengeToken;
|
|
12058
12143
|
export declare type AdyenV3FingerprintToken = io.flow.v0.models.AdyenV3FingerprintToken;
|
|
12059
|
-
export declare type AldoItemDeleted = io.flow.v0.models.AldoItemDeleted;
|
|
12060
|
-
export declare type AldoItemUpserted = io.flow.v0.models.AldoItemUpserted;
|
|
12061
12144
|
export declare type Allocation = io.flow.v0.models.Allocation;
|
|
12062
12145
|
export declare type AllocationComponent = io.flow.v0.unions.AllocationComponent;
|
|
12063
12146
|
export declare type AllocationDeletedV2 = io.flow.v0.models.AllocationDeletedV2;
|
|
@@ -12075,10 +12158,6 @@ export declare type AllocationV2 = io.flow.v0.models.AllocationV2;
|
|
|
12075
12158
|
export declare type AmountMargin = io.flow.v0.models.AmountMargin;
|
|
12076
12159
|
export declare type AmountMarginForm = io.flow.v0.models.AmountMarginForm;
|
|
12077
12160
|
export declare type AnalyticsExportType = io.flow.v0.models.AnalyticsExportType;
|
|
12078
|
-
export declare type AnirbanItemDeleted = io.flow.v0.models.AnirbanItemDeleted;
|
|
12079
|
-
export declare type AnirbanItemUpserted = io.flow.v0.models.AnirbanItemUpserted;
|
|
12080
|
-
export declare type AnshItemDeleted = io.flow.v0.models.AnshItemDeleted;
|
|
12081
|
-
export declare type AnshItemUpserted = io.flow.v0.models.AnshItemUpserted;
|
|
12082
12161
|
export declare type ApplePayMerchantValidationPayload = io.flow.v0.models.ApplePayMerchantValidationPayload;
|
|
12083
12162
|
export declare type ApplepaySdkCreateResultActionDetails = io.flow.v0.models.ApplepaySdkCreateResultActionDetails;
|
|
12084
12163
|
export declare type ApplepaySdkValidateResultActionDetails = io.flow.v0.models.ApplepaySdkValidateResultActionDetails;
|
|
@@ -12151,6 +12230,7 @@ export declare type BankAccountInfoCan = io.flow.v0.models.BankAccountInfoCan;
|
|
|
12151
12230
|
export declare type BankAccountInfoFra = io.flow.v0.models.BankAccountInfoFra;
|
|
12152
12231
|
export declare type BankAccountInfoGbr = io.flow.v0.models.BankAccountInfoGbr;
|
|
12153
12232
|
export declare type BankAccountInfoIta = io.flow.v0.models.BankAccountInfoIta;
|
|
12233
|
+
export declare type BankAccountInfoKor = io.flow.v0.models.BankAccountInfoKor;
|
|
12154
12234
|
export declare type BankAccountInfoUsa = io.flow.v0.models.BankAccountInfoUsa;
|
|
12155
12235
|
export declare type BankAccountReference = io.flow.v0.models.BankAccountReference;
|
|
12156
12236
|
export declare type BankAccountSummary = io.flow.v0.models.BankAccountSummary;
|
|
@@ -12297,6 +12377,11 @@ export declare type CheckoutUrls = io.flow.v0.models.CheckoutUrls;
|
|
|
12297
12377
|
export declare type CheckoutUrlsForm = io.flow.v0.models.CheckoutUrlsForm;
|
|
12298
12378
|
export declare type Cleartext = io.flow.v0.models.Cleartext;
|
|
12299
12379
|
export declare type CommercialInvoiceFee = io.flow.v0.models.CommercialInvoiceFee;
|
|
12380
|
+
export declare type CommercialInvoiceMode = io.flow.v0.enums.CommercialInvoiceMode;
|
|
12381
|
+
export declare type CommonMerchantApplication = io.flow.v0.models.CommonMerchantApplication;
|
|
12382
|
+
export declare type CommonMerchantApplicationForm = io.flow.v0.models.CommonMerchantApplicationForm;
|
|
12383
|
+
export declare type CommonMerchantApplicationPutForm = io.flow.v0.models.CommonMerchantApplicationPutForm;
|
|
12384
|
+
export declare type CommonMerchantApplicationsSummary = io.flow.v0.models.CommonMerchantApplicationsSummary;
|
|
12300
12385
|
export declare type Company = io.flow.v0.models.Company;
|
|
12301
12386
|
export declare type ConfirmationDetails = io.flow.v0.unions.ConfirmationDetails;
|
|
12302
12387
|
export declare type ConsumerInvoice = io.flow.v0.models.ConsumerInvoice;
|
|
@@ -12555,6 +12640,7 @@ export declare type ExportType = io.flow.v0.unions.ExportType;
|
|
|
12555
12640
|
export declare type ExportVersion = io.flow.v0.models.ExportVersion;
|
|
12556
12641
|
export declare type ExporterOfRecord = io.flow.v0.enums.ExporterOfRecord;
|
|
12557
12642
|
export declare type ExternalCard = io.flow.v0.models.ExternalCard;
|
|
12643
|
+
export declare type ExternalOrderSummary = io.flow.v0.models.ExternalOrderSummary;
|
|
12558
12644
|
export declare type FeeDeduction = io.flow.v0.models.FeeDeduction;
|
|
12559
12645
|
export declare type FeeDeductionType = io.flow.v0.enums.FeeDeductionType;
|
|
12560
12646
|
export declare type FeeWeight = io.flow.v0.models.FeeWeight;
|
|
@@ -12661,8 +12747,6 @@ export declare type Hop = io.flow.v0.models.Hop;
|
|
|
12661
12747
|
export declare type HopEstimate = io.flow.v0.models.HopEstimate;
|
|
12662
12748
|
export declare type HopEstimateV2 = io.flow.v0.models.HopEstimateV2;
|
|
12663
12749
|
export declare type HopV2 = io.flow.v0.models.HopV2;
|
|
12664
|
-
export declare type HoseinItemDeleted = io.flow.v0.models.HoseinItemDeleted;
|
|
12665
|
-
export declare type HoseinItemUpserted = io.flow.v0.models.HoseinItemUpserted;
|
|
12666
12750
|
export declare type Hs10 = io.flow.v0.models.Hs10;
|
|
12667
12751
|
export declare type Hs10CodeDeleted = io.flow.v0.models.Hs10CodeDeleted;
|
|
12668
12752
|
export declare type Hs10CodeUpserted = io.flow.v0.models.Hs10CodeUpserted;
|
|
@@ -12852,6 +12936,7 @@ export declare type MerchantOfRecordEntity = io.flow.v0.models.MerchantOfRecordE
|
|
|
12852
12936
|
export declare type MerchantOfRecordEntityRegistration = io.flow.v0.models.MerchantOfRecordEntityRegistration;
|
|
12853
12937
|
export declare type MerchantOfRecordPaymentForm = io.flow.v0.models.MerchantOfRecordPaymentForm;
|
|
12854
12938
|
export declare type MerchantOnboardingAddress = io.flow.v0.models.MerchantOnboardingAddress;
|
|
12939
|
+
export declare type MerchantOnboardingBeneficiaryDetails = io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
12855
12940
|
export declare type MerchantRejected = io.flow.v0.models.MerchantRejected;
|
|
12856
12941
|
export declare type MerchantRejectedReason = io.flow.v0.enums.MerchantRejectedReason;
|
|
12857
12942
|
export declare type Method = io.flow.v0.enums.Method;
|
|
@@ -12863,8 +12948,6 @@ export declare type MonthlyAverageVolume = io.flow.v0.models.MonthlyAverageVolum
|
|
|
12863
12948
|
export declare type Name = io.flow.v0.models.Name;
|
|
12864
12949
|
export declare type NameForm = io.flow.v0.models.NameForm;
|
|
12865
12950
|
export declare type NeedsActionAttributes = io.flow.v0.models.NeedsActionAttributes;
|
|
12866
|
-
export declare type NiallItemDeleted = io.flow.v0.models.NiallItemDeleted;
|
|
12867
|
-
export declare type NiallItemUpserted = io.flow.v0.models.NiallItemUpserted;
|
|
12868
12951
|
export declare type NotificationDeletedV2 = io.flow.v0.models.NotificationDeletedV2;
|
|
12869
12952
|
export declare type NotificationUpsertedV2 = io.flow.v0.models.NotificationUpsertedV2;
|
|
12870
12953
|
export declare type NumberRange = io.flow.v0.models.NumberRange;
|
|
@@ -13004,6 +13087,8 @@ export declare type OrganizationSession = io.flow.v0.models.OrganizationSession;
|
|
|
13004
13087
|
export declare type OrganizationSessionAuthorization = io.flow.v0.models.OrganizationSessionAuthorization;
|
|
13005
13088
|
export declare type OrganizationStatus = io.flow.v0.enums.OrganizationStatus;
|
|
13006
13089
|
export declare type OrganizationSummary = io.flow.v0.models.OrganizationSummary;
|
|
13090
|
+
export declare type OrganizationTaxRegistration = io.flow.v0.models.OrganizationTaxRegistration;
|
|
13091
|
+
export declare type OrganizationTaxRegistrationForm = io.flow.v0.models.OrganizationTaxRegistrationForm;
|
|
13007
13092
|
export declare type OrganizationToken = io.flow.v0.models.OrganizationToken;
|
|
13008
13093
|
export declare type OrganizationTokenForm = io.flow.v0.models.OrganizationTokenForm;
|
|
13009
13094
|
export declare type OrganizationTokenFormV2 = io.flow.v0.models.OrganizationTokenFormV2;
|
|
@@ -13242,6 +13327,7 @@ export declare type PriceWithBaseAndDetails = io.flow.v0.models.PriceWithBaseAnd
|
|
|
13242
13327
|
export declare type Pricing = io.flow.v0.models.Pricing;
|
|
13243
13328
|
export declare type PricingLevySetting = io.flow.v0.enums.PricingLevySetting;
|
|
13244
13329
|
export declare type PricingSettings = io.flow.v0.models.PricingSettings;
|
|
13330
|
+
export declare type PricingType = io.flow.v0.enums.PricingType;
|
|
13245
13331
|
export declare type PricingVersion = io.flow.v0.models.PricingVersion;
|
|
13246
13332
|
export declare type ProcessingEstimate = io.flow.v0.models.ProcessingEstimate;
|
|
13247
13333
|
export declare type Product = io.flow.v0.models.Product;
|
|
@@ -13252,6 +13338,9 @@ export declare type ProductRestrictionResultDeleted = io.flow.v0.models.ProductR
|
|
|
13252
13338
|
export declare type ProductRestrictionResultUpserted = io.flow.v0.models.ProductRestrictionResultUpserted;
|
|
13253
13339
|
export declare type ProductSellability = io.flow.v0.models.ProductSellability;
|
|
13254
13340
|
export declare type ProductSellabilityForm = io.flow.v0.models.ProductSellabilityForm;
|
|
13341
|
+
export declare type ProductSellabilityResult = io.flow.v0.models.ProductSellabilityResult;
|
|
13342
|
+
export declare type ProductSellabilityResultDeleted = io.flow.v0.models.ProductSellabilityResultDeleted;
|
|
13343
|
+
export declare type ProductSellabilityResultUpserted = io.flow.v0.models.ProductSellabilityResultUpserted;
|
|
13255
13344
|
export declare type ProductTaxonomyCategory = io.flow.v0.models.ProductTaxonomyCategory;
|
|
13256
13345
|
export declare type ProductTaxonomyData = io.flow.v0.models.ProductTaxonomyData;
|
|
13257
13346
|
export declare type ProductTaxonomyValue = io.flow.v0.models.ProductTaxonomyValue;
|
|
@@ -13359,6 +13448,7 @@ export declare type RepeatMonthly = io.flow.v0.models.RepeatMonthly;
|
|
|
13359
13448
|
export declare type RepeatSchedule = io.flow.v0.unions.RepeatSchedule;
|
|
13360
13449
|
export declare type RepeatWeekly = io.flow.v0.models.RepeatWeekly;
|
|
13361
13450
|
export declare type RestrictedReviewStatus = io.flow.v0.enums.RestrictedReviewStatus;
|
|
13451
|
+
export declare type RestrictionEnvironment = io.flow.v0.enums.RestrictionEnvironment;
|
|
13362
13452
|
export declare type Return = io.flow.v0.models.Return;
|
|
13363
13453
|
export declare type ReturnForm = io.flow.v0.models.ReturnForm;
|
|
13364
13454
|
export declare type ReturnItemReference = io.flow.v0.models.ReturnItemReference;
|
|
@@ -13391,8 +13481,6 @@ export declare type ReversalStatus = io.flow.v0.enums.ReversalStatus;
|
|
|
13391
13481
|
export declare type ReversalUpserted = io.flow.v0.models.ReversalUpserted;
|
|
13392
13482
|
export declare type ReversalVersion = io.flow.v0.models.ReversalVersion;
|
|
13393
13483
|
export declare type ReviewStatus = io.flow.v0.enums.ReviewStatus;
|
|
13394
|
-
export declare type RohanItemDeleted = io.flow.v0.models.RohanItemDeleted;
|
|
13395
|
-
export declare type RohanItemUpserted = io.flow.v0.models.RohanItemUpserted;
|
|
13396
13484
|
export declare type Role = io.flow.v0.enums.Role;
|
|
13397
13485
|
export declare type Romanization = io.flow.v0.models.Romanization;
|
|
13398
13486
|
export declare type RomanizationForm = io.flow.v0.models.RomanizationForm;
|
|
@@ -13401,8 +13489,6 @@ export declare type RoundingMethod = io.flow.v0.enums.RoundingMethod;
|
|
|
13401
13489
|
export declare type RoundingType = io.flow.v0.enums.RoundingType;
|
|
13402
13490
|
export declare type RouteAudit = io.flow.v0.models.RouteAudit;
|
|
13403
13491
|
export declare type RuleEffectType = io.flow.v0.enums.RuleEffectType;
|
|
13404
|
-
export declare type SarveshItemDeleted = io.flow.v0.models.SarveshItemDeleted;
|
|
13405
|
-
export declare type SarveshItemUpserted = io.flow.v0.models.SarveshItemUpserted;
|
|
13406
13492
|
export declare type Schedule = io.flow.v0.models.Schedule;
|
|
13407
13493
|
export declare type ScheduleExceptionStatus = io.flow.v0.enums.ScheduleExceptionStatus;
|
|
13408
13494
|
export declare type ScheduledExport = io.flow.v0.models.ScheduledExport;
|
|
@@ -13412,10 +13498,23 @@ export declare type SdkAdyenV3AuthenticationToken = io.flow.v0.unions.SdkAdyenV3
|
|
|
13412
13498
|
export declare type SecurityRatecardFee = io.flow.v0.models.SecurityRatecardFee;
|
|
13413
13499
|
export declare type SecurityServiceFee = io.flow.v0.models.SecurityServiceFee;
|
|
13414
13500
|
export declare type SelectIssuerOptionActionDetails = io.flow.v0.models.SelectIssuerOptionActionDetails;
|
|
13501
|
+
export declare type SelfBillingAgreement = io.flow.v0.models.SelfBillingAgreement;
|
|
13415
13502
|
export declare type SellabilityError = io.flow.v0.models.SellabilityError;
|
|
13416
13503
|
export declare type SellabilityErrorCode = io.flow.v0.enums.SellabilityErrorCode;
|
|
13504
|
+
export declare type SellabilityNeedsActionAttributes = io.flow.v0.models.SellabilityNeedsActionAttributes;
|
|
13505
|
+
export declare type SellabilityReasonWithRegions = io.flow.v0.models.SellabilityReasonWithRegions;
|
|
13506
|
+
export declare type SellabilityRegionResult = io.flow.v0.models.SellabilityRegionResult;
|
|
13507
|
+
export declare type SellabilityRegionWithReasons = io.flow.v0.models.SellabilityRegionWithReasons;
|
|
13508
|
+
export declare type SellabilityRequest = io.flow.v0.unions.SellabilityRequest;
|
|
13417
13509
|
export declare type SellabilityRequestStatus = io.flow.v0.enums.SellabilityRequestStatus;
|
|
13418
13510
|
export declare type SellabilityResponse = io.flow.v0.unions.SellabilityResponse;
|
|
13511
|
+
export declare type SellabilityRestrictedReason = io.flow.v0.models.SellabilityRestrictedReason;
|
|
13512
|
+
export declare type SellabilityRestrictedRegion = io.flow.v0.models.SellabilityRestrictedRegion;
|
|
13513
|
+
export declare type SellabilityResultErrorCode = io.flow.v0.enums.SellabilityResultErrorCode;
|
|
13514
|
+
export declare type SellabilityResultStatus = io.flow.v0.enums.SellabilityResultStatus;
|
|
13515
|
+
export declare type SellabilityScreening = io.flow.v0.models.SellabilityScreening;
|
|
13516
|
+
export declare type SellabilityScreeningForm = io.flow.v0.models.SellabilityScreeningForm;
|
|
13517
|
+
export declare type SellabilityScreeningMode = io.flow.v0.enums.SellabilityScreeningMode;
|
|
13419
13518
|
export declare type SellablilityRegionResult = io.flow.v0.models.SellablilityRegionResult;
|
|
13420
13519
|
export declare type ServiceDescription = io.flow.v0.unions.ServiceDescription;
|
|
13421
13520
|
export declare type ServiceFee = io.flow.v0.unions.ServiceFee;
|
|
@@ -13484,6 +13583,10 @@ export declare type ShippingLaneVersion = io.flow.v0.models.ShippingLaneVersion;
|
|
|
13484
13583
|
export declare type ShippingNotification = io.flow.v0.models.ShippingNotification;
|
|
13485
13584
|
export declare type ShippingNotificationForm = io.flow.v0.unions.ShippingNotificationForm;
|
|
13486
13585
|
export declare type ShippingNotificationVersion = io.flow.v0.models.ShippingNotificationVersion;
|
|
13586
|
+
export declare type ShippingRateEstimate = io.flow.v0.models.ShippingRateEstimate;
|
|
13587
|
+
export declare type ShippingRateEstimateAvailable = io.flow.v0.models.ShippingRateEstimateAvailable;
|
|
13588
|
+
export declare type ShippingRateEstimateRequest = io.flow.v0.models.ShippingRateEstimateRequest;
|
|
13589
|
+
export declare type ShippingRateEstimateUnavailable = io.flow.v0.models.ShippingRateEstimateUnavailable;
|
|
13487
13590
|
export declare type Shop = io.flow.v0.models.Shop;
|
|
13488
13591
|
export declare type ShopifyCart = io.flow.v0.models.ShopifyCart;
|
|
13489
13592
|
export declare type ShopifyCartAddForm = io.flow.v0.unions.ShopifyCartAddForm;
|
|
@@ -13538,6 +13641,8 @@ export declare type SortDirection = io.flow.v0.enums.SortDirection;
|
|
|
13538
13641
|
export declare type Statement = io.flow.v0.models.Statement;
|
|
13539
13642
|
export declare type StatementAttachmentType = io.flow.v0.enums.StatementAttachmentType;
|
|
13540
13643
|
export declare type StatementDeleted = io.flow.v0.models.StatementDeleted;
|
|
13644
|
+
export declare type StatementStatusCode = io.flow.v0.enums.StatementStatusCode;
|
|
13645
|
+
export declare type StatementStatusForm = io.flow.v0.models.StatementStatusForm;
|
|
13541
13646
|
export declare type StatementUpserted = io.flow.v0.models.StatementUpserted;
|
|
13542
13647
|
export declare type StoredMethodUsageStep = io.flow.v0.enums.StoredMethodUsageStep;
|
|
13543
13648
|
export declare type Strategy = io.flow.v0.enums.Strategy;
|
|
@@ -13585,7 +13690,10 @@ export declare type TaxDutyQuoteValues = io.flow.v0.models.TaxDutyQuoteValues;
|
|
|
13585
13690
|
export declare type TaxDutyTransactionReasonCode = io.flow.v0.enums.TaxDutyTransactionReasonCode;
|
|
13586
13691
|
export declare type TaxJurisdictionType = io.flow.v0.enums.TaxJurisdictionType;
|
|
13587
13692
|
export declare type TaxRegistration = io.flow.v0.models.TaxRegistration;
|
|
13693
|
+
export declare type TaxRegistrationDeleted = io.flow.v0.models.TaxRegistrationDeleted;
|
|
13694
|
+
export declare type TaxRegistrationDetail = io.flow.v0.models.TaxRegistrationDetail;
|
|
13588
13695
|
export declare type TaxRegistrationForm = io.flow.v0.models.TaxRegistrationForm;
|
|
13696
|
+
export declare type TaxRegistrationUpserted = io.flow.v0.models.TaxRegistrationUpserted;
|
|
13589
13697
|
export declare type TaxReport = io.flow.v0.models.TaxReport;
|
|
13590
13698
|
export declare type TaxReportType = io.flow.v0.enums.TaxReportType;
|
|
13591
13699
|
export declare type TaxSetting = io.flow.v0.unions.TaxSetting;
|
|
@@ -13640,6 +13748,8 @@ export declare type TrackingEventVersion = io.flow.v0.models.TrackingEventVersio
|
|
|
13640
13748
|
export declare type TrackingForm = io.flow.v0.models.TrackingForm;
|
|
13641
13749
|
export declare type TrackingLabel = io.flow.v0.models.TrackingLabel;
|
|
13642
13750
|
export declare type TrackingLabelEventUpserted = io.flow.v0.models.TrackingLabelEventUpserted;
|
|
13751
|
+
export declare type TrackingLabelEventUpsertedV2 = io.flow.v0.models.TrackingLabelEventUpsertedV2;
|
|
13752
|
+
export declare type TrackingLabelEventV2 = io.flow.v0.models.TrackingLabelEventV2;
|
|
13643
13753
|
export declare type TrackingLabelForm = io.flow.v0.models.TrackingLabelForm;
|
|
13644
13754
|
export declare type TrackingLabelSummary = io.flow.v0.models.TrackingLabelSummary;
|
|
13645
13755
|
export declare type TrackingLabelVersion = io.flow.v0.models.TrackingLabelVersion;
|