@flowio/types 11.24.130 → 11.24.131
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 +868 -70
- package/dist/api.d.ts +338 -254
- package/package.json +2 -2
- package/src/api-internal.ts +1066 -81
- package/src/api.ts +417 -313
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';
|
|
@@ -3167,6 +3056,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3167
3056
|
type RefundStatus = 'pending' | 'succeeded' | 'failed' | 'canceled';
|
|
3168
3057
|
type RegionType = 'state' | 'province' | 'jurisdiction';
|
|
3169
3058
|
type RestrictedReviewStatus = 'in_review' | 'reviewed';
|
|
3059
|
+
type RestrictionEnvironment = 'sandbox' | 'production' | 'qa';
|
|
3170
3060
|
type ReturnItemStatus = 'returnable' | 'non-returnable';
|
|
3171
3061
|
type ReturnPolicyState = 'current' | 'deleting' | 'updating';
|
|
3172
3062
|
type ReturnStatus = 'open' | 'refunded';
|
|
@@ -3181,6 +3071,9 @@ declare namespace io.flow.v0.enums {
|
|
|
3181
3071
|
type ScheduleExceptionStatus = 'Open' | 'Closed';
|
|
3182
3072
|
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
|
|
3183
3073
|
type SellabilityRequestStatus = 'commit';
|
|
3074
|
+
type SellabilityResultErrorCode = 'insufficient_details' | 'generic_error';
|
|
3075
|
+
type SellabilityResultStatus = 'in_review' | 'succeeded' | 'failed';
|
|
3076
|
+
type SellabilityScreeningMode = 'pre_onboarding' | 'default_on' | 'active';
|
|
3184
3077
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
3185
3078
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
3186
3079
|
type ShippingConfigurationType = 'default' | 'variant';
|
|
@@ -3189,7 +3082,8 @@ declare namespace io.flow.v0.enums {
|
|
|
3189
3082
|
type ShopifyLocalizationMethod = 'api' | 'ssr';
|
|
3190
3083
|
type ShopifySyncCheck = 'localized_variants' | 'flow_variant_metafields';
|
|
3191
3084
|
type SortDirection = 'ascending' | 'descending';
|
|
3192
|
-
type StatementAttachmentType = 'csv';
|
|
3085
|
+
type StatementAttachmentType = 'csv' | 'pdf';
|
|
3086
|
+
type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
3193
3087
|
type StoredMethodUsageStep = 'initial' | 'subsequent';
|
|
3194
3088
|
type Strategy = 'range' | 'from' | 'to';
|
|
3195
3089
|
type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
|
|
@@ -3197,7 +3091,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3197
3091
|
type SurchargeResponsibleParty = 'organization' | 'customer';
|
|
3198
3092
|
type TaxApplicability = 'none' | 'all';
|
|
3199
3093
|
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';
|
|
3094
|
+
type TaxDutyTransactionReasonCode = 'post_capture' | 'post_fulfilment' | 'manual_payment_or_gift_card' | 'order_edit' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'us_inbound_tax_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'full_refund_without_shipment' | 'unfulfilled_order_above_de_min';
|
|
3201
3095
|
type TaxJurisdictionType = 'country' | 'province';
|
|
3202
3096
|
type TaxReportType = 'consumer' | 'b2b';
|
|
3203
3097
|
type TaxType = 'vat' | 'gst' | 'hst' | 'pst' | 'qst' | 'sales_tax';
|
|
@@ -3214,10 +3108,10 @@ declare namespace io.flow.v0.enums {
|
|
|
3214
3108
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired' | 'unknown' | 'unmapped';
|
|
3215
3109
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
3216
3110
|
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';
|
|
3111
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'duty_refund' | 'non_l4l_tax_duty_fx' | 'merchant_payout' | 'merchant_refund' | 'ge_revenue_share' | 'merchant_fee' | 'b2b_tax' | 'b2b_tax_refund';
|
|
3218
3112
|
type TransferStatus = 'succeeded' | 'canceled';
|
|
3219
3113
|
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';
|
|
3114
|
+
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
3221
3115
|
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
3116
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
3223
3117
|
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_foot' | 'cubic_millimeter' | 'cubic_centimeter' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
@@ -3502,18 +3396,6 @@ declare namespace io.flow.v0.models {
|
|
|
3502
3396
|
readonly type: 'fingerprint';
|
|
3503
3397
|
readonly fingerprint_token: string;
|
|
3504
3398
|
}
|
|
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
3399
|
interface Allocation {
|
|
3518
3400
|
readonly order: io.flow.v0.models.AllocationOrderSummary;
|
|
3519
3401
|
readonly details: io.flow.v0.unions.AllocationDetail[];
|
|
@@ -3623,30 +3505,6 @@ declare namespace io.flow.v0.models {
|
|
|
3623
3505
|
readonly region?: string;
|
|
3624
3506
|
readonly interval?: io.flow.v0.enums.UnitOfTime;
|
|
3625
3507
|
}
|
|
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
3508
|
interface ApplePayMerchantValidationPayload {
|
|
3651
3509
|
readonly discriminator: 'apple_pay_merchant_validation_payload';
|
|
3652
3510
|
readonly validation_url: string;
|
|
@@ -3895,9 +3753,12 @@ declare namespace io.flow.v0.models {
|
|
|
3895
3753
|
readonly invoice: io.flow.v0.models.B2BInvoiceReference;
|
|
3896
3754
|
readonly lines: io.flow.v0.unions.ConsumerInvoiceLine[];
|
|
3897
3755
|
readonly tax_lines?: io.flow.v0.models.InvoiceTaxLine[];
|
|
3756
|
+
readonly tax?: io.flow.v0.models.Money;
|
|
3898
3757
|
readonly documents: io.flow.v0.models.ConsumerInvoiceDocument[];
|
|
3899
3758
|
readonly attributes: Record<string, string>;
|
|
3900
3759
|
readonly b2b_invoice_type: io.flow.v0.enums.B2BInvoiceType;
|
|
3760
|
+
readonly center?: io.flow.v0.models.ConsumerInvoiceCenterReference;
|
|
3761
|
+
readonly order?: io.flow.v0.models.ConsumerInvoiceOrderSummary;
|
|
3901
3762
|
}
|
|
3902
3763
|
interface B2BCreditMemoDeleted {
|
|
3903
3764
|
readonly discriminator: 'b2b_credit_memo_deleted';
|
|
@@ -4611,6 +4472,7 @@ declare namespace io.flow.v0.models {
|
|
|
4611
4472
|
readonly shopify_order_summary: io.flow.v0.models.ChannelShopifyOrderSummary;
|
|
4612
4473
|
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
4613
4474
|
readonly reasons?: io.flow.v0.models.ChannelShopifyOrderStateReason[];
|
|
4475
|
+
readonly external_order_summary?: io.flow.v0.models.ExternalOrderSummary;
|
|
4614
4476
|
}
|
|
4615
4477
|
interface ChannelShopifyOrderStateDeleted {
|
|
4616
4478
|
readonly discriminator: 'channel_shopify_order_state_deleted';
|
|
@@ -4810,6 +4672,73 @@ declare namespace io.flow.v0.models {
|
|
|
4810
4672
|
readonly discriminator: 'commercial_invoice_fee';
|
|
4811
4673
|
readonly amount: io.flow.v0.models.Money;
|
|
4812
4674
|
}
|
|
4675
|
+
interface CommonMerchantApplication {
|
|
4676
|
+
readonly discriminator: 'common_merchant_application';
|
|
4677
|
+
readonly id: string;
|
|
4678
|
+
readonly organization_id: string;
|
|
4679
|
+
readonly organization_reference: io.flow.v0.models.OnboardingOrganizationReference;
|
|
4680
|
+
readonly status: io.flow.v0.enums.OnboardingApplicationStatus;
|
|
4681
|
+
readonly company?: io.flow.v0.models.MerchantInfo;
|
|
4682
|
+
readonly indirect_tax?: io.flow.v0.models.IndirectTax;
|
|
4683
|
+
readonly ultimate_beneficiary_owner?: io.flow.v0.models.UltimateBeneficiaryOwner;
|
|
4684
|
+
readonly business_url?: string;
|
|
4685
|
+
readonly business_description?: string;
|
|
4686
|
+
readonly business_address?: io.flow.v0.models.Address;
|
|
4687
|
+
readonly refund_percentage?: number;
|
|
4688
|
+
readonly chargeback_percentage?: number;
|
|
4689
|
+
readonly beneficiary_details?: io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
4690
|
+
readonly other_trade_sector?: string;
|
|
4691
|
+
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
4692
|
+
readonly center_address?: io.flow.v0.models.Address;
|
|
4693
|
+
readonly average_order_weight?: number;
|
|
4694
|
+
readonly average_order_weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
4695
|
+
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
4696
|
+
readonly monthly_average?: io.flow.v0.models.MonthlyAverage;
|
|
4697
|
+
readonly default_country_of_origin?: string;
|
|
4698
|
+
readonly rate_card: string;
|
|
4699
|
+
readonly shop?: io.flow.v0.models.Shop;
|
|
4700
|
+
readonly created_at: string;
|
|
4701
|
+
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
4702
|
+
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
4703
|
+
readonly average_order_value?: io.flow.v0.models.Money;
|
|
4704
|
+
readonly mcc_codes?: number[];
|
|
4705
|
+
}
|
|
4706
|
+
interface CommonMerchantApplicationForm {
|
|
4707
|
+
readonly discriminator: 'common_merchant_application_form';
|
|
4708
|
+
readonly company?: io.flow.v0.models.MerchantInfo;
|
|
4709
|
+
readonly indirect_tax?: io.flow.v0.models.IndirectTax;
|
|
4710
|
+
readonly ultimate_beneficiary_owner?: io.flow.v0.models.UltimateBeneficiaryOwner;
|
|
4711
|
+
readonly business_url?: string;
|
|
4712
|
+
readonly business_description?: string;
|
|
4713
|
+
readonly business_address?: io.flow.v0.models.Address;
|
|
4714
|
+
readonly refund_percentage?: number;
|
|
4715
|
+
readonly chargeback_percentage?: number;
|
|
4716
|
+
readonly beneficiary_details?: io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
4717
|
+
readonly other_trade_sector?: string;
|
|
4718
|
+
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
4719
|
+
readonly center_address?: io.flow.v0.models.Address;
|
|
4720
|
+
readonly average_order_weight?: number;
|
|
4721
|
+
readonly average_order_weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
4722
|
+
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
4723
|
+
readonly monthly_average_volume_amount?: number;
|
|
4724
|
+
readonly monthly_average_volume_currency?: string;
|
|
4725
|
+
readonly monthly_average_number_transactions?: number;
|
|
4726
|
+
readonly default_country_of_origin?: string;
|
|
4727
|
+
readonly shop?: io.flow.v0.models.Shop;
|
|
4728
|
+
readonly rate_card?: string;
|
|
4729
|
+
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
4730
|
+
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
4731
|
+
readonly average_order_value?: io.flow.v0.models.Money;
|
|
4732
|
+
readonly mcc_codes?: number[];
|
|
4733
|
+
}
|
|
4734
|
+
interface CommonMerchantApplicationPutForm {
|
|
4735
|
+
readonly discriminator: 'common_merchant_application_put_form';
|
|
4736
|
+
readonly status?: io.flow.v0.enums.OnboardingApplicationStatus;
|
|
4737
|
+
}
|
|
4738
|
+
interface CommonMerchantApplicationsSummary {
|
|
4739
|
+
readonly discriminator: 'common_merchant_applications_summary';
|
|
4740
|
+
readonly total: number;
|
|
4741
|
+
}
|
|
4813
4742
|
interface Company {
|
|
4814
4743
|
readonly discriminator: 'company';
|
|
4815
4744
|
readonly legal_name: string;
|
|
@@ -5011,6 +4940,8 @@ declare namespace io.flow.v0.models {
|
|
|
5011
4940
|
readonly documents: io.flow.v0.models.ConsumerInvoiceDocument[];
|
|
5012
4941
|
readonly attributes: Record<string, string>;
|
|
5013
4942
|
readonly tax_registration?: io.flow.v0.models.TaxRegistration;
|
|
4943
|
+
readonly center?: io.flow.v0.models.ConsumerInvoiceCenterReference;
|
|
4944
|
+
readonly order?: io.flow.v0.models.ConsumerInvoiceOrderSummary;
|
|
5014
4945
|
}
|
|
5015
4946
|
interface CreditMemoDeleted {
|
|
5016
4947
|
readonly discriminator: 'credit_memo_deleted';
|
|
@@ -5684,6 +5615,7 @@ declare namespace io.flow.v0.models {
|
|
|
5684
5615
|
readonly amount: io.flow.v0.models.Money;
|
|
5685
5616
|
readonly origin_region?: io.flow.v0.models.RatecardRegionReference;
|
|
5686
5617
|
readonly destination_region?: io.flow.v0.models.RatecardRegionReference;
|
|
5618
|
+
readonly destination_regions?: io.flow.v0.models.RatecardRegionReference[];
|
|
5687
5619
|
readonly interval_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
5688
5620
|
}
|
|
5689
5621
|
interface EntityIdentifier {
|
|
@@ -5968,6 +5900,10 @@ declare namespace io.flow.v0.models {
|
|
|
5968
5900
|
readonly id: string;
|
|
5969
5901
|
readonly type?: io.flow.v0.enums.CardType;
|
|
5970
5902
|
}
|
|
5903
|
+
interface ExternalOrderSummary {
|
|
5904
|
+
readonly id: string;
|
|
5905
|
+
readonly edit_ids: string[];
|
|
5906
|
+
}
|
|
5971
5907
|
interface FeeDeduction {
|
|
5972
5908
|
readonly type: io.flow.v0.enums.FeeDeductionType;
|
|
5973
5909
|
readonly amount: number;
|
|
@@ -6222,7 +6158,7 @@ declare namespace io.flow.v0.models {
|
|
|
6222
6158
|
readonly discriminator: 'ge_catalog_item_ingestion_result';
|
|
6223
6159
|
readonly event_id: string;
|
|
6224
6160
|
readonly event_type: io.flow.v0.enums.GeEventType;
|
|
6225
|
-
readonly environment: io.flow.v0.enums.
|
|
6161
|
+
readonly environment: io.flow.v0.enums.RestrictionEnvironment;
|
|
6226
6162
|
readonly timestamp: string;
|
|
6227
6163
|
readonly source: string;
|
|
6228
6164
|
readonly response: io.flow.v0.enums.GeCatalogItemIngestionResponse;
|
|
@@ -6282,7 +6218,7 @@ declare namespace io.flow.v0.models {
|
|
|
6282
6218
|
readonly organization: string;
|
|
6283
6219
|
readonly event_id: string;
|
|
6284
6220
|
readonly event_type: io.flow.v0.enums.GeEventType;
|
|
6285
|
-
readonly environment: io.flow.v0.enums.
|
|
6221
|
+
readonly environment: io.flow.v0.enums.RestrictionEnvironment;
|
|
6286
6222
|
readonly timestamp: string;
|
|
6287
6223
|
readonly id: string;
|
|
6288
6224
|
readonly operation: io.flow.v0.enums.ChangeType;
|
|
@@ -6292,7 +6228,7 @@ declare namespace io.flow.v0.models {
|
|
|
6292
6228
|
readonly organization: string;
|
|
6293
6229
|
readonly event_id: string;
|
|
6294
6230
|
readonly event_type: io.flow.v0.enums.GeEventType;
|
|
6295
|
-
readonly environment: io.flow.v0.enums.
|
|
6231
|
+
readonly environment: io.flow.v0.enums.RestrictionEnvironment;
|
|
6296
6232
|
readonly timestamp: string;
|
|
6297
6233
|
readonly operation: io.flow.v0.enums.ChangeType;
|
|
6298
6234
|
readonly ge_product_restriction_result: io.flow.v0.models.ProductRestrictionResult;
|
|
@@ -6463,18 +6399,6 @@ declare namespace io.flow.v0.models {
|
|
|
6463
6399
|
readonly hop_number: number;
|
|
6464
6400
|
readonly hop_estimate: io.flow.v0.models.HopEstimateV2;
|
|
6465
6401
|
}
|
|
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
6402
|
interface Hs10 {
|
|
6479
6403
|
readonly id: string;
|
|
6480
6404
|
readonly item: io.flow.v0.models.HarmonizedItemReference;
|
|
@@ -7369,6 +7293,7 @@ declare namespace io.flow.v0.models {
|
|
|
7369
7293
|
readonly region?: io.flow.v0.enums.RegionType;
|
|
7370
7294
|
readonly region_value?: string;
|
|
7371
7295
|
readonly category_code?: string;
|
|
7296
|
+
readonly description?: string;
|
|
7372
7297
|
}
|
|
7373
7298
|
interface MerchantOfRecordAuthorizationForm {
|
|
7374
7299
|
readonly discriminator: 'merchant_of_record_authorization_form';
|
|
@@ -7401,6 +7326,8 @@ declare namespace io.flow.v0.models {
|
|
|
7401
7326
|
interface MerchantOfRecordEntityRegistration {
|
|
7402
7327
|
readonly number: string;
|
|
7403
7328
|
readonly country: string;
|
|
7329
|
+
readonly province_number?: string;
|
|
7330
|
+
readonly province?: string;
|
|
7404
7331
|
}
|
|
7405
7332
|
interface MerchantOfRecordPaymentForm {
|
|
7406
7333
|
readonly discriminator: 'merchant_of_record_payment_form';
|
|
@@ -7417,6 +7344,16 @@ declare namespace io.flow.v0.models {
|
|
|
7417
7344
|
readonly postal?: string;
|
|
7418
7345
|
readonly country?: string;
|
|
7419
7346
|
}
|
|
7347
|
+
interface MerchantOnboardingBeneficiaryDetails {
|
|
7348
|
+
readonly name?: string;
|
|
7349
|
+
readonly address?: io.flow.v0.models.Address;
|
|
7350
|
+
readonly phone?: string;
|
|
7351
|
+
readonly email?: string;
|
|
7352
|
+
readonly bank_account_number?: string;
|
|
7353
|
+
readonly bank_routing_number?: string;
|
|
7354
|
+
readonly bank_name?: string;
|
|
7355
|
+
readonly bank_address?: io.flow.v0.models.Address;
|
|
7356
|
+
}
|
|
7420
7357
|
interface MerchantRejected {
|
|
7421
7358
|
readonly discriminator: 'merchant_rejected';
|
|
7422
7359
|
readonly reason: io.flow.v0.enums.MerchantRejectedReason;
|
|
@@ -7458,18 +7395,6 @@ declare namespace io.flow.v0.models {
|
|
|
7458
7395
|
readonly category_metafield_handles: string[];
|
|
7459
7396
|
readonly require_msds?: boolean;
|
|
7460
7397
|
}
|
|
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
7398
|
interface NotificationDeletedV2 {
|
|
7474
7399
|
readonly discriminator: 'notification_deleted_v2';
|
|
7475
7400
|
readonly event_id: string;
|
|
@@ -8218,6 +8143,20 @@ declare namespace io.flow.v0.models {
|
|
|
8218
8143
|
readonly name: string;
|
|
8219
8144
|
readonly environment: io.flow.v0.enums.Environment;
|
|
8220
8145
|
}
|
|
8146
|
+
interface OrganizationTaxRegistration {
|
|
8147
|
+
readonly id: string;
|
|
8148
|
+
readonly organization: io.flow.v0.models.OrganizationSummary;
|
|
8149
|
+
readonly address: io.flow.v0.models.BillingAddress;
|
|
8150
|
+
readonly registration: io.flow.v0.models.TaxRegistrationDetail;
|
|
8151
|
+
readonly self_billing_agreement: io.flow.v0.models.SelfBillingAgreement;
|
|
8152
|
+
}
|
|
8153
|
+
interface OrganizationTaxRegistrationForm {
|
|
8154
|
+
readonly tax_number: string;
|
|
8155
|
+
readonly country: string;
|
|
8156
|
+
readonly province?: string;
|
|
8157
|
+
readonly self_billing_agreement_effective_at: string;
|
|
8158
|
+
readonly self_billing_agreement_expires_at?: string;
|
|
8159
|
+
}
|
|
8221
8160
|
interface OrganizationToken {
|
|
8222
8161
|
readonly discriminator: 'organization_token';
|
|
8223
8162
|
readonly id: string;
|
|
@@ -8894,6 +8833,7 @@ declare namespace io.flow.v0.models {
|
|
|
8894
8833
|
readonly supported_actions: io.flow.v0.enums.PaymentActionType[];
|
|
8895
8834
|
readonly payment_capture_option?: io.flow.v0.unions.PaymentCaptureOption;
|
|
8896
8835
|
readonly review?: io.flow.v0.models.PaymentRequestReview;
|
|
8836
|
+
readonly client_secret?: string;
|
|
8897
8837
|
}
|
|
8898
8838
|
interface PaymentRequestBilling {
|
|
8899
8839
|
readonly fees: io.flow.v0.models.PaymentRequestBillingFees;
|
|
@@ -9350,7 +9290,7 @@ declare namespace io.flow.v0.models {
|
|
|
9350
9290
|
readonly updated_by?: string;
|
|
9351
9291
|
readonly product_restriction_id?: string;
|
|
9352
9292
|
readonly hs_code?: string;
|
|
9353
|
-
readonly restricted_regions_by_type?: io.flow.v0.models.
|
|
9293
|
+
readonly restricted_regions_by_type?: io.flow.v0.models.SellabilityRegionResult[];
|
|
9354
9294
|
readonly needs_action_attributes?: io.flow.v0.models.NeedsActionAttributes[];
|
|
9355
9295
|
}
|
|
9356
9296
|
interface ProductRestrictionResultDeleted {
|
|
@@ -9373,9 +9313,10 @@ declare namespace io.flow.v0.models {
|
|
|
9373
9313
|
readonly product_id?: string;
|
|
9374
9314
|
readonly request_id: string;
|
|
9375
9315
|
readonly hs6_code: string;
|
|
9376
|
-
readonly restricted_regions: io.flow.v0.models.
|
|
9316
|
+
readonly restricted_regions: io.flow.v0.models.SellabilityRegionResult[];
|
|
9377
9317
|
}
|
|
9378
9318
|
interface ProductSellabilityForm {
|
|
9319
|
+
readonly discriminator: 'product_sellability_form';
|
|
9379
9320
|
readonly shop_id: string;
|
|
9380
9321
|
readonly product_id?: string;
|
|
9381
9322
|
readonly name: string;
|
|
@@ -9385,6 +9326,28 @@ declare namespace io.flow.v0.models {
|
|
|
9385
9326
|
readonly status?: io.flow.v0.enums.SellabilityRequestStatus;
|
|
9386
9327
|
readonly dry_run?: boolean;
|
|
9387
9328
|
}
|
|
9329
|
+
interface ProductSellabilityResult {
|
|
9330
|
+
readonly merchant_id?: string;
|
|
9331
|
+
readonly product_id: string;
|
|
9332
|
+
readonly restricted_regions: io.flow.v0.models.SellabilityRestrictedRegion[];
|
|
9333
|
+
readonly needs_action_attributes?: io.flow.v0.models.SellabilityNeedsActionAttributes[];
|
|
9334
|
+
readonly request_id?: string;
|
|
9335
|
+
readonly hs6_code?: string;
|
|
9336
|
+
}
|
|
9337
|
+
interface ProductSellabilityResultDeleted {
|
|
9338
|
+
readonly discriminator: 'product_sellability_result_deleted';
|
|
9339
|
+
readonly event_id: string;
|
|
9340
|
+
readonly timestamp: string;
|
|
9341
|
+
readonly organization: string;
|
|
9342
|
+
readonly id: string;
|
|
9343
|
+
}
|
|
9344
|
+
interface ProductSellabilityResultUpserted {
|
|
9345
|
+
readonly discriminator: 'product_sellability_result_upserted';
|
|
9346
|
+
readonly event_id: string;
|
|
9347
|
+
readonly timestamp: string;
|
|
9348
|
+
readonly organization: string;
|
|
9349
|
+
readonly product_sellability_result: io.flow.v0.models.ProductSellabilityResult;
|
|
9350
|
+
}
|
|
9388
9351
|
interface ProductTaxonomyCategory {
|
|
9389
9352
|
readonly name: string;
|
|
9390
9353
|
readonly full_name: string;
|
|
@@ -9600,6 +9563,7 @@ declare namespace io.flow.v0.models {
|
|
|
9600
9563
|
readonly center_id?: string;
|
|
9601
9564
|
readonly taxes_owed?: io.flow.v0.models.Money;
|
|
9602
9565
|
readonly duties_owed?: io.flow.v0.models.Money;
|
|
9566
|
+
readonly commercial_invoice_mode?: io.flow.v0.enums.CommercialInvoiceMode;
|
|
9603
9567
|
}
|
|
9604
9568
|
interface RatecardEstimateSummaryForm {
|
|
9605
9569
|
readonly origin?: string;
|
|
@@ -10143,18 +10107,6 @@ declare namespace io.flow.v0.models {
|
|
|
10143
10107
|
readonly type: io.flow.v0.enums.ChangeType;
|
|
10144
10108
|
readonly reversal: io.flow.v0.models.Reversal;
|
|
10145
10109
|
}
|
|
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
10110
|
interface Romanization {
|
|
10159
10111
|
readonly address?: io.flow.v0.models.Address;
|
|
10160
10112
|
readonly contact?: io.flow.v0.models.Contact;
|
|
@@ -10174,18 +10126,6 @@ declare namespace io.flow.v0.models {
|
|
|
10174
10126
|
readonly authentication_techniques: io.flow.v0.enums.AuthenticationTechnique[];
|
|
10175
10127
|
readonly roles: io.flow.v0.enums.FlowRole[];
|
|
10176
10128
|
}
|
|
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
10129
|
interface Schedule {
|
|
10190
10130
|
readonly calendar?: io.flow.v0.enums.Calendar;
|
|
10191
10131
|
readonly holiday: io.flow.v0.enums.HolidayCalendar;
|
|
@@ -10230,11 +10170,53 @@ declare namespace io.flow.v0.models {
|
|
|
10230
10170
|
readonly discriminator: 'select_issuer_option_action_details';
|
|
10231
10171
|
readonly issuer_options: io.flow.v0.models.IssuerReference[];
|
|
10232
10172
|
}
|
|
10173
|
+
interface SelfBillingAgreement {
|
|
10174
|
+
readonly effective_at: string;
|
|
10175
|
+
readonly expires_at: string;
|
|
10176
|
+
}
|
|
10233
10177
|
interface SellabilityError {
|
|
10234
10178
|
readonly discriminator: 'sellability_error';
|
|
10235
10179
|
readonly code: io.flow.v0.enums.SellabilityErrorCode;
|
|
10236
10180
|
readonly messages: string[];
|
|
10237
10181
|
}
|
|
10182
|
+
interface SellabilityNeedsActionAttributes {
|
|
10183
|
+
readonly reason_code: string;
|
|
10184
|
+
readonly category_metafield_handles: string[];
|
|
10185
|
+
readonly require_msds?: boolean;
|
|
10186
|
+
}
|
|
10187
|
+
interface SellabilityRegionResult {
|
|
10188
|
+
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
10189
|
+
readonly regions: string[];
|
|
10190
|
+
}
|
|
10191
|
+
interface SellabilityRegionWithReasons {
|
|
10192
|
+
readonly region: string;
|
|
10193
|
+
readonly reasons: string[];
|
|
10194
|
+
}
|
|
10195
|
+
interface SellabilityRestrictedRegion {
|
|
10196
|
+
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
10197
|
+
readonly regions_with_reasons: io.flow.v0.models.SellabilityRegionWithReasons[];
|
|
10198
|
+
}
|
|
10199
|
+
interface SellabilityScreening {
|
|
10200
|
+
readonly discriminator: 'sellability_screening';
|
|
10201
|
+
readonly sellability_result?: io.flow.v0.models.ProductSellabilityResult;
|
|
10202
|
+
readonly request_id: string;
|
|
10203
|
+
readonly status: io.flow.v0.enums.SellabilityResultStatus;
|
|
10204
|
+
readonly error_code?: io.flow.v0.enums.SellabilityResultErrorCode;
|
|
10205
|
+
readonly error_message?: string;
|
|
10206
|
+
}
|
|
10207
|
+
interface SellabilityScreeningForm {
|
|
10208
|
+
readonly discriminator: 'sellability_screening_form';
|
|
10209
|
+
readonly merchant_id: string;
|
|
10210
|
+
readonly product_id: string;
|
|
10211
|
+
readonly name: string;
|
|
10212
|
+
readonly price: io.flow.v0.models.Money;
|
|
10213
|
+
readonly description: string;
|
|
10214
|
+
readonly taxonomy_category: io.flow.v0.models.ProductTaxonomyCategory;
|
|
10215
|
+
readonly mode: io.flow.v0.enums.SellabilityScreeningMode;
|
|
10216
|
+
readonly catalog_size?: number;
|
|
10217
|
+
readonly relative_ranking?: number;
|
|
10218
|
+
readonly dry_run?: boolean;
|
|
10219
|
+
}
|
|
10238
10220
|
interface SellablilityRegionResult {
|
|
10239
10221
|
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
10240
10222
|
readonly regions: string[];
|
|
@@ -10588,6 +10570,39 @@ declare namespace io.flow.v0.models {
|
|
|
10588
10570
|
readonly type: io.flow.v0.enums.ChangeType;
|
|
10589
10571
|
readonly shipping_notification: io.flow.v0.models.ShippingNotification;
|
|
10590
10572
|
}
|
|
10573
|
+
interface ShippingRateEstimate {
|
|
10574
|
+
readonly origin_address: io.flow.v0.models.Address;
|
|
10575
|
+
readonly destination_address: io.flow.v0.models.Address;
|
|
10576
|
+
readonly shipping_date_time: string;
|
|
10577
|
+
readonly services: string[];
|
|
10578
|
+
readonly available: io.flow.v0.models.ShippingRateEstimateAvailable[];
|
|
10579
|
+
readonly unavailable?: io.flow.v0.models.ShippingRateEstimateUnavailable[];
|
|
10580
|
+
}
|
|
10581
|
+
interface ShippingRateEstimateAvailable {
|
|
10582
|
+
readonly service: io.flow.v0.models.RatecardServiceSummary;
|
|
10583
|
+
readonly delivered_duty: io.flow.v0.enums.DeliveredDuty;
|
|
10584
|
+
readonly shipment_window: io.flow.v0.models.ShipmentWindow;
|
|
10585
|
+
readonly total_amount: io.flow.v0.models.Money;
|
|
10586
|
+
readonly base_amount: io.flow.v0.models.Money;
|
|
10587
|
+
readonly fees: io.flow.v0.unions.RatecardFee[];
|
|
10588
|
+
readonly dimensional_weight?: io.flow.v0.models.Measurement;
|
|
10589
|
+
readonly gravitational_weight?: io.flow.v0.models.Measurement;
|
|
10590
|
+
readonly weight_break?: number;
|
|
10591
|
+
}
|
|
10592
|
+
interface ShippingRateEstimateRequest {
|
|
10593
|
+
readonly origin_address: io.flow.v0.models.Address;
|
|
10594
|
+
readonly destination_address: io.flow.v0.models.Address;
|
|
10595
|
+
readonly package_dimensions: io.flow.v0.models.Dimension;
|
|
10596
|
+
readonly shipping_date_time: string;
|
|
10597
|
+
readonly delivered_duty?: io.flow.v0.enums.DeliveredDuty;
|
|
10598
|
+
readonly duties_owed?: io.flow.v0.models.Money;
|
|
10599
|
+
readonly taxes_owed?: io.flow.v0.models.Money;
|
|
10600
|
+
readonly line_items?: io.flow.v0.models.LineItemForm[];
|
|
10601
|
+
}
|
|
10602
|
+
interface ShippingRateEstimateUnavailable {
|
|
10603
|
+
readonly service: string;
|
|
10604
|
+
readonly reason: string;
|
|
10605
|
+
}
|
|
10591
10606
|
interface Shop {
|
|
10592
10607
|
readonly name: string;
|
|
10593
10608
|
readonly id: string;
|
|
@@ -10774,6 +10789,7 @@ declare namespace io.flow.v0.models {
|
|
|
10774
10789
|
readonly third_party_logistics_partners?: io.flow.v0.models.ThirdPartyLogisticsPartner[];
|
|
10775
10790
|
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
10776
10791
|
readonly average_order_weight?: number;
|
|
10792
|
+
readonly average_order_weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
10777
10793
|
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
10778
10794
|
readonly monthly_average?: io.flow.v0.models.MonthlyAverage;
|
|
10779
10795
|
readonly default_country_of_origin?: string;
|
|
@@ -10806,6 +10822,7 @@ declare namespace io.flow.v0.models {
|
|
|
10806
10822
|
readonly third_party_logistics_partners?: io.flow.v0.models.ThirdPartyLogisticsPartner[];
|
|
10807
10823
|
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
10808
10824
|
readonly average_order_weight?: number;
|
|
10825
|
+
readonly average_order_weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
10809
10826
|
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
10810
10827
|
readonly monthly_average_volume_amount?: number;
|
|
10811
10828
|
readonly monthly_average_volume_currency?: string;
|
|
@@ -10929,6 +10946,10 @@ declare namespace io.flow.v0.models {
|
|
|
10929
10946
|
readonly organization: string;
|
|
10930
10947
|
readonly statement: io.flow.v0.models.Statement;
|
|
10931
10948
|
}
|
|
10949
|
+
interface StatementStatusForm {
|
|
10950
|
+
readonly code: io.flow.v0.enums.StatementStatusCode;
|
|
10951
|
+
readonly failure_reason?: io.flow.v0.enums.PayoutStatusFailureCode;
|
|
10952
|
+
}
|
|
10932
10953
|
interface StatementUpserted {
|
|
10933
10954
|
readonly discriminator: 'statement_upserted';
|
|
10934
10955
|
readonly event_id: string;
|
|
@@ -11169,10 +11190,30 @@ declare namespace io.flow.v0.models {
|
|
|
11169
11190
|
readonly address?: string;
|
|
11170
11191
|
readonly company_name?: string;
|
|
11171
11192
|
}
|
|
11193
|
+
interface TaxRegistrationDeleted {
|
|
11194
|
+
readonly discriminator: 'tax_registration_deleted';
|
|
11195
|
+
readonly event_id: string;
|
|
11196
|
+
readonly timestamp: string;
|
|
11197
|
+
readonly organization: string;
|
|
11198
|
+
readonly id: string;
|
|
11199
|
+
}
|
|
11200
|
+
interface TaxRegistrationDetail {
|
|
11201
|
+
readonly tax_number: string;
|
|
11202
|
+
readonly country: string;
|
|
11203
|
+
readonly tax_code: string;
|
|
11204
|
+
readonly province?: string;
|
|
11205
|
+
}
|
|
11172
11206
|
interface TaxRegistrationForm {
|
|
11173
11207
|
readonly number: string;
|
|
11174
11208
|
readonly company_name?: string;
|
|
11175
11209
|
}
|
|
11210
|
+
interface TaxRegistrationUpserted {
|
|
11211
|
+
readonly discriminator: 'tax_registration_upserted';
|
|
11212
|
+
readonly event_id: string;
|
|
11213
|
+
readonly timestamp: string;
|
|
11214
|
+
readonly organization: string;
|
|
11215
|
+
readonly tax_registration: io.flow.v0.models.OrganizationTaxRegistration;
|
|
11216
|
+
}
|
|
11176
11217
|
interface TaxReport {
|
|
11177
11218
|
readonly schedule: io.flow.v0.unions.RepeatSchedule;
|
|
11178
11219
|
readonly timezone: string;
|
|
@@ -11415,6 +11456,27 @@ declare namespace io.flow.v0.models {
|
|
|
11415
11456
|
readonly description?: string;
|
|
11416
11457
|
readonly order_number?: string;
|
|
11417
11458
|
}
|
|
11459
|
+
interface TrackingLabelEventUpsertedV2 {
|
|
11460
|
+
readonly discriminator: 'tracking_label_event_upserted_v2';
|
|
11461
|
+
readonly event_id: string;
|
|
11462
|
+
readonly timestamp: string;
|
|
11463
|
+
readonly organization: string;
|
|
11464
|
+
readonly tracking_label_event: io.flow.v0.models.TrackingLabelEventV2;
|
|
11465
|
+
}
|
|
11466
|
+
interface TrackingLabelEventV2 {
|
|
11467
|
+
readonly id: string;
|
|
11468
|
+
readonly carrier_id: string;
|
|
11469
|
+
readonly carrier_tracking_number: string;
|
|
11470
|
+
readonly carrier_tracking_url?: string;
|
|
11471
|
+
readonly label_id: string;
|
|
11472
|
+
readonly order_number?: string;
|
|
11473
|
+
readonly status: io.flow.v0.enums.TrackingStatus;
|
|
11474
|
+
readonly substatus?: io.flow.v0.enums.SubstatusCode;
|
|
11475
|
+
readonly carrier_timestamp: string;
|
|
11476
|
+
readonly description?: string;
|
|
11477
|
+
readonly delivery_estimate?: string;
|
|
11478
|
+
readonly address?: io.flow.v0.models.Address;
|
|
11479
|
+
}
|
|
11418
11480
|
interface TrackingLabelForm {
|
|
11419
11481
|
readonly tracking_id: string;
|
|
11420
11482
|
readonly status: io.flow.v0.enums.TrackingStatus;
|
|
@@ -11914,7 +11976,7 @@ declare namespace io.flow.v0.unions {
|
|
|
11914
11976
|
type Document = io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument;
|
|
11915
11977
|
type EmailNotificationData = io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder;
|
|
11916
11978
|
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.
|
|
11979
|
+
type Event = io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ItemInserted | io.flow.v0.models.ItemUpdated | io.flow.v0.models.ItemDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.ChannelShopifyOrderStateUpserted | io.flow.v0.models.ChannelShopifyOrderStateDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.GeItemInserted | io.flow.v0.models.GeItemUpdated | io.flow.v0.models.GeItemDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LabelProcessingModificationUpserted | io.flow.v0.models.LabelProcessingModificationDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.TaxRegistrationUpserted | io.flow.v0.models.TaxRegistrationDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.AuthorizationRetryUpserted | io.flow.v0.models.AuthorizationRetryDeleted | io.flow.v0.models.TransferUpserted | io.flow.v0.models.TransferDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.ProductInserted | io.flow.v0.models.ProductUpdated | io.flow.v0.models.ProductDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ProductSellabilityResultUpserted | io.flow.v0.models.ProductSellabilityResultDeleted | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted | io.flow.v0.models.TrackingLabelEventUpsertedV2;
|
|
11918
11980
|
type ExpandableCard = io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary | io.flow.v0.models.ExternalCard;
|
|
11919
11981
|
type ExpandableCenter = io.flow.v0.models.Center | io.flow.v0.models.CenterReference;
|
|
11920
11982
|
type ExpandableExperience = io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference;
|
|
@@ -11938,10 +12000,10 @@ declare namespace io.flow.v0.unions {
|
|
|
11938
12000
|
type LabelSurchargeDetail = io.flow.v0.models.LabelSurchargeDetailFlat | io.flow.v0.models.LabelSurchargeDetailPercentage | io.flow.v0.models.LabelSurchargeDetailPerWeightUnit;
|
|
11939
12001
|
type LocalizedPrice = io.flow.v0.models.LocalizedItemPrice | io.flow.v0.models.LocalizedItemVat | io.flow.v0.models.LocalizedItemDuty | io.flow.v0.models.LocalizedTotal;
|
|
11940
12002
|
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;
|
|
12003
|
+
type MerchantApplication = io.flow.v0.models.ShopifyMerchantApplication | io.flow.v0.models.CommonMerchantApplication;
|
|
12004
|
+
type MerchantApplicationForm = io.flow.v0.models.ShopifyMerchantApplicationForm | io.flow.v0.models.CommonMerchantApplicationForm;
|
|
12005
|
+
type MerchantApplicationPutForm = io.flow.v0.models.ShopifyMerchantApplicationPutForm | io.flow.v0.models.CommonMerchantApplicationPutForm;
|
|
12006
|
+
type MerchantApplicationsSummary = io.flow.v0.models.ShopifyMerchantApplicationsSummary | io.flow.v0.models.CommonMerchantApplicationsSummary;
|
|
11945
12007
|
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
12008
|
type OnlineAuthorizationDetails = io.flow.v0.models.CryptopayAuthorizationDetails | io.flow.v0.models.PaypalAuthorizationDetails | io.flow.v0.models.RedirectAuthorizationDetails | io.flow.v0.models.InlineAuthorizationDetails;
|
|
11947
12009
|
type OrderInformation = io.flow.v0.models.OrderInformationFlow | io.flow.v0.models.OrderInformationDetails;
|
|
@@ -11983,7 +12045,8 @@ declare namespace io.flow.v0.unions {
|
|
|
11983
12045
|
type RepeatSchedule = io.flow.v0.models.RepeatHourly | io.flow.v0.models.RepeatDaily | io.flow.v0.models.RepeatWeekly | io.flow.v0.models.RepeatMonthly;
|
|
11984
12046
|
type ReturnSource = io.flow.v0.models.ReturnSourceFlow | io.flow.v0.models.ReturnSourceExternalVendor;
|
|
11985
12047
|
type SdkAdyenV3AuthenticationToken = io.flow.v0.models.AdyenV3FingerprintToken | io.flow.v0.models.AdyenV3ChallengeToken;
|
|
11986
|
-
type
|
|
12048
|
+
type SellabilityRequest = io.flow.v0.models.ProductSellabilityForm | io.flow.v0.models.SellabilityScreeningForm;
|
|
12049
|
+
type SellabilityResponse = io.flow.v0.models.ProductSellability | io.flow.v0.models.SellabilityError | io.flow.v0.models.SellabilityScreening;
|
|
11987
12050
|
type ServiceDescription = io.flow.v0.models.ServiceSummary | io.flow.v0.models.ServiceUnknown;
|
|
11988
12051
|
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
12052
|
type Session = io.flow.v0.models.OrganizationSession;
|
|
@@ -12056,8 +12119,6 @@ export declare type AdyenNativeActionDetails = io.flow.v0.models.AdyenNativeActi
|
|
|
12056
12119
|
export declare type AdyenNativeData = io.flow.v0.unions.AdyenNativeData;
|
|
12057
12120
|
export declare type AdyenV3ChallengeToken = io.flow.v0.models.AdyenV3ChallengeToken;
|
|
12058
12121
|
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
12122
|
export declare type Allocation = io.flow.v0.models.Allocation;
|
|
12062
12123
|
export declare type AllocationComponent = io.flow.v0.unions.AllocationComponent;
|
|
12063
12124
|
export declare type AllocationDeletedV2 = io.flow.v0.models.AllocationDeletedV2;
|
|
@@ -12075,10 +12136,6 @@ export declare type AllocationV2 = io.flow.v0.models.AllocationV2;
|
|
|
12075
12136
|
export declare type AmountMargin = io.flow.v0.models.AmountMargin;
|
|
12076
12137
|
export declare type AmountMarginForm = io.flow.v0.models.AmountMarginForm;
|
|
12077
12138
|
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
12139
|
export declare type ApplePayMerchantValidationPayload = io.flow.v0.models.ApplePayMerchantValidationPayload;
|
|
12083
12140
|
export declare type ApplepaySdkCreateResultActionDetails = io.flow.v0.models.ApplepaySdkCreateResultActionDetails;
|
|
12084
12141
|
export declare type ApplepaySdkValidateResultActionDetails = io.flow.v0.models.ApplepaySdkValidateResultActionDetails;
|
|
@@ -12297,6 +12354,11 @@ export declare type CheckoutUrls = io.flow.v0.models.CheckoutUrls;
|
|
|
12297
12354
|
export declare type CheckoutUrlsForm = io.flow.v0.models.CheckoutUrlsForm;
|
|
12298
12355
|
export declare type Cleartext = io.flow.v0.models.Cleartext;
|
|
12299
12356
|
export declare type CommercialInvoiceFee = io.flow.v0.models.CommercialInvoiceFee;
|
|
12357
|
+
export declare type CommercialInvoiceMode = io.flow.v0.enums.CommercialInvoiceMode;
|
|
12358
|
+
export declare type CommonMerchantApplication = io.flow.v0.models.CommonMerchantApplication;
|
|
12359
|
+
export declare type CommonMerchantApplicationForm = io.flow.v0.models.CommonMerchantApplicationForm;
|
|
12360
|
+
export declare type CommonMerchantApplicationPutForm = io.flow.v0.models.CommonMerchantApplicationPutForm;
|
|
12361
|
+
export declare type CommonMerchantApplicationsSummary = io.flow.v0.models.CommonMerchantApplicationsSummary;
|
|
12300
12362
|
export declare type Company = io.flow.v0.models.Company;
|
|
12301
12363
|
export declare type ConfirmationDetails = io.flow.v0.unions.ConfirmationDetails;
|
|
12302
12364
|
export declare type ConsumerInvoice = io.flow.v0.models.ConsumerInvoice;
|
|
@@ -12555,6 +12617,7 @@ export declare type ExportType = io.flow.v0.unions.ExportType;
|
|
|
12555
12617
|
export declare type ExportVersion = io.flow.v0.models.ExportVersion;
|
|
12556
12618
|
export declare type ExporterOfRecord = io.flow.v0.enums.ExporterOfRecord;
|
|
12557
12619
|
export declare type ExternalCard = io.flow.v0.models.ExternalCard;
|
|
12620
|
+
export declare type ExternalOrderSummary = io.flow.v0.models.ExternalOrderSummary;
|
|
12558
12621
|
export declare type FeeDeduction = io.flow.v0.models.FeeDeduction;
|
|
12559
12622
|
export declare type FeeDeductionType = io.flow.v0.enums.FeeDeductionType;
|
|
12560
12623
|
export declare type FeeWeight = io.flow.v0.models.FeeWeight;
|
|
@@ -12661,8 +12724,6 @@ export declare type Hop = io.flow.v0.models.Hop;
|
|
|
12661
12724
|
export declare type HopEstimate = io.flow.v0.models.HopEstimate;
|
|
12662
12725
|
export declare type HopEstimateV2 = io.flow.v0.models.HopEstimateV2;
|
|
12663
12726
|
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
12727
|
export declare type Hs10 = io.flow.v0.models.Hs10;
|
|
12667
12728
|
export declare type Hs10CodeDeleted = io.flow.v0.models.Hs10CodeDeleted;
|
|
12668
12729
|
export declare type Hs10CodeUpserted = io.flow.v0.models.Hs10CodeUpserted;
|
|
@@ -12852,6 +12913,7 @@ export declare type MerchantOfRecordEntity = io.flow.v0.models.MerchantOfRecordE
|
|
|
12852
12913
|
export declare type MerchantOfRecordEntityRegistration = io.flow.v0.models.MerchantOfRecordEntityRegistration;
|
|
12853
12914
|
export declare type MerchantOfRecordPaymentForm = io.flow.v0.models.MerchantOfRecordPaymentForm;
|
|
12854
12915
|
export declare type MerchantOnboardingAddress = io.flow.v0.models.MerchantOnboardingAddress;
|
|
12916
|
+
export declare type MerchantOnboardingBeneficiaryDetails = io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
12855
12917
|
export declare type MerchantRejected = io.flow.v0.models.MerchantRejected;
|
|
12856
12918
|
export declare type MerchantRejectedReason = io.flow.v0.enums.MerchantRejectedReason;
|
|
12857
12919
|
export declare type Method = io.flow.v0.enums.Method;
|
|
@@ -12863,8 +12925,6 @@ export declare type MonthlyAverageVolume = io.flow.v0.models.MonthlyAverageVolum
|
|
|
12863
12925
|
export declare type Name = io.flow.v0.models.Name;
|
|
12864
12926
|
export declare type NameForm = io.flow.v0.models.NameForm;
|
|
12865
12927
|
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
12928
|
export declare type NotificationDeletedV2 = io.flow.v0.models.NotificationDeletedV2;
|
|
12869
12929
|
export declare type NotificationUpsertedV2 = io.flow.v0.models.NotificationUpsertedV2;
|
|
12870
12930
|
export declare type NumberRange = io.flow.v0.models.NumberRange;
|
|
@@ -13004,6 +13064,8 @@ export declare type OrganizationSession = io.flow.v0.models.OrganizationSession;
|
|
|
13004
13064
|
export declare type OrganizationSessionAuthorization = io.flow.v0.models.OrganizationSessionAuthorization;
|
|
13005
13065
|
export declare type OrganizationStatus = io.flow.v0.enums.OrganizationStatus;
|
|
13006
13066
|
export declare type OrganizationSummary = io.flow.v0.models.OrganizationSummary;
|
|
13067
|
+
export declare type OrganizationTaxRegistration = io.flow.v0.models.OrganizationTaxRegistration;
|
|
13068
|
+
export declare type OrganizationTaxRegistrationForm = io.flow.v0.models.OrganizationTaxRegistrationForm;
|
|
13007
13069
|
export declare type OrganizationToken = io.flow.v0.models.OrganizationToken;
|
|
13008
13070
|
export declare type OrganizationTokenForm = io.flow.v0.models.OrganizationTokenForm;
|
|
13009
13071
|
export declare type OrganizationTokenFormV2 = io.flow.v0.models.OrganizationTokenFormV2;
|
|
@@ -13252,6 +13314,9 @@ export declare type ProductRestrictionResultDeleted = io.flow.v0.models.ProductR
|
|
|
13252
13314
|
export declare type ProductRestrictionResultUpserted = io.flow.v0.models.ProductRestrictionResultUpserted;
|
|
13253
13315
|
export declare type ProductSellability = io.flow.v0.models.ProductSellability;
|
|
13254
13316
|
export declare type ProductSellabilityForm = io.flow.v0.models.ProductSellabilityForm;
|
|
13317
|
+
export declare type ProductSellabilityResult = io.flow.v0.models.ProductSellabilityResult;
|
|
13318
|
+
export declare type ProductSellabilityResultDeleted = io.flow.v0.models.ProductSellabilityResultDeleted;
|
|
13319
|
+
export declare type ProductSellabilityResultUpserted = io.flow.v0.models.ProductSellabilityResultUpserted;
|
|
13255
13320
|
export declare type ProductTaxonomyCategory = io.flow.v0.models.ProductTaxonomyCategory;
|
|
13256
13321
|
export declare type ProductTaxonomyData = io.flow.v0.models.ProductTaxonomyData;
|
|
13257
13322
|
export declare type ProductTaxonomyValue = io.flow.v0.models.ProductTaxonomyValue;
|
|
@@ -13359,6 +13424,7 @@ export declare type RepeatMonthly = io.flow.v0.models.RepeatMonthly;
|
|
|
13359
13424
|
export declare type RepeatSchedule = io.flow.v0.unions.RepeatSchedule;
|
|
13360
13425
|
export declare type RepeatWeekly = io.flow.v0.models.RepeatWeekly;
|
|
13361
13426
|
export declare type RestrictedReviewStatus = io.flow.v0.enums.RestrictedReviewStatus;
|
|
13427
|
+
export declare type RestrictionEnvironment = io.flow.v0.enums.RestrictionEnvironment;
|
|
13362
13428
|
export declare type Return = io.flow.v0.models.Return;
|
|
13363
13429
|
export declare type ReturnForm = io.flow.v0.models.ReturnForm;
|
|
13364
13430
|
export declare type ReturnItemReference = io.flow.v0.models.ReturnItemReference;
|
|
@@ -13391,8 +13457,6 @@ export declare type ReversalStatus = io.flow.v0.enums.ReversalStatus;
|
|
|
13391
13457
|
export declare type ReversalUpserted = io.flow.v0.models.ReversalUpserted;
|
|
13392
13458
|
export declare type ReversalVersion = io.flow.v0.models.ReversalVersion;
|
|
13393
13459
|
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
13460
|
export declare type Role = io.flow.v0.enums.Role;
|
|
13397
13461
|
export declare type Romanization = io.flow.v0.models.Romanization;
|
|
13398
13462
|
export declare type RomanizationForm = io.flow.v0.models.RomanizationForm;
|
|
@@ -13401,8 +13465,6 @@ export declare type RoundingMethod = io.flow.v0.enums.RoundingMethod;
|
|
|
13401
13465
|
export declare type RoundingType = io.flow.v0.enums.RoundingType;
|
|
13402
13466
|
export declare type RouteAudit = io.flow.v0.models.RouteAudit;
|
|
13403
13467
|
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
13468
|
export declare type Schedule = io.flow.v0.models.Schedule;
|
|
13407
13469
|
export declare type ScheduleExceptionStatus = io.flow.v0.enums.ScheduleExceptionStatus;
|
|
13408
13470
|
export declare type ScheduledExport = io.flow.v0.models.ScheduledExport;
|
|
@@ -13412,10 +13474,21 @@ export declare type SdkAdyenV3AuthenticationToken = io.flow.v0.unions.SdkAdyenV3
|
|
|
13412
13474
|
export declare type SecurityRatecardFee = io.flow.v0.models.SecurityRatecardFee;
|
|
13413
13475
|
export declare type SecurityServiceFee = io.flow.v0.models.SecurityServiceFee;
|
|
13414
13476
|
export declare type SelectIssuerOptionActionDetails = io.flow.v0.models.SelectIssuerOptionActionDetails;
|
|
13477
|
+
export declare type SelfBillingAgreement = io.flow.v0.models.SelfBillingAgreement;
|
|
13415
13478
|
export declare type SellabilityError = io.flow.v0.models.SellabilityError;
|
|
13416
13479
|
export declare type SellabilityErrorCode = io.flow.v0.enums.SellabilityErrorCode;
|
|
13480
|
+
export declare type SellabilityNeedsActionAttributes = io.flow.v0.models.SellabilityNeedsActionAttributes;
|
|
13481
|
+
export declare type SellabilityRegionResult = io.flow.v0.models.SellabilityRegionResult;
|
|
13482
|
+
export declare type SellabilityRegionWithReasons = io.flow.v0.models.SellabilityRegionWithReasons;
|
|
13483
|
+
export declare type SellabilityRequest = io.flow.v0.unions.SellabilityRequest;
|
|
13417
13484
|
export declare type SellabilityRequestStatus = io.flow.v0.enums.SellabilityRequestStatus;
|
|
13418
13485
|
export declare type SellabilityResponse = io.flow.v0.unions.SellabilityResponse;
|
|
13486
|
+
export declare type SellabilityRestrictedRegion = io.flow.v0.models.SellabilityRestrictedRegion;
|
|
13487
|
+
export declare type SellabilityResultErrorCode = io.flow.v0.enums.SellabilityResultErrorCode;
|
|
13488
|
+
export declare type SellabilityResultStatus = io.flow.v0.enums.SellabilityResultStatus;
|
|
13489
|
+
export declare type SellabilityScreening = io.flow.v0.models.SellabilityScreening;
|
|
13490
|
+
export declare type SellabilityScreeningForm = io.flow.v0.models.SellabilityScreeningForm;
|
|
13491
|
+
export declare type SellabilityScreeningMode = io.flow.v0.enums.SellabilityScreeningMode;
|
|
13419
13492
|
export declare type SellablilityRegionResult = io.flow.v0.models.SellablilityRegionResult;
|
|
13420
13493
|
export declare type ServiceDescription = io.flow.v0.unions.ServiceDescription;
|
|
13421
13494
|
export declare type ServiceFee = io.flow.v0.unions.ServiceFee;
|
|
@@ -13484,6 +13557,10 @@ export declare type ShippingLaneVersion = io.flow.v0.models.ShippingLaneVersion;
|
|
|
13484
13557
|
export declare type ShippingNotification = io.flow.v0.models.ShippingNotification;
|
|
13485
13558
|
export declare type ShippingNotificationForm = io.flow.v0.unions.ShippingNotificationForm;
|
|
13486
13559
|
export declare type ShippingNotificationVersion = io.flow.v0.models.ShippingNotificationVersion;
|
|
13560
|
+
export declare type ShippingRateEstimate = io.flow.v0.models.ShippingRateEstimate;
|
|
13561
|
+
export declare type ShippingRateEstimateAvailable = io.flow.v0.models.ShippingRateEstimateAvailable;
|
|
13562
|
+
export declare type ShippingRateEstimateRequest = io.flow.v0.models.ShippingRateEstimateRequest;
|
|
13563
|
+
export declare type ShippingRateEstimateUnavailable = io.flow.v0.models.ShippingRateEstimateUnavailable;
|
|
13487
13564
|
export declare type Shop = io.flow.v0.models.Shop;
|
|
13488
13565
|
export declare type ShopifyCart = io.flow.v0.models.ShopifyCart;
|
|
13489
13566
|
export declare type ShopifyCartAddForm = io.flow.v0.unions.ShopifyCartAddForm;
|
|
@@ -13538,6 +13615,8 @@ export declare type SortDirection = io.flow.v0.enums.SortDirection;
|
|
|
13538
13615
|
export declare type Statement = io.flow.v0.models.Statement;
|
|
13539
13616
|
export declare type StatementAttachmentType = io.flow.v0.enums.StatementAttachmentType;
|
|
13540
13617
|
export declare type StatementDeleted = io.flow.v0.models.StatementDeleted;
|
|
13618
|
+
export declare type StatementStatusCode = io.flow.v0.enums.StatementStatusCode;
|
|
13619
|
+
export declare type StatementStatusForm = io.flow.v0.models.StatementStatusForm;
|
|
13541
13620
|
export declare type StatementUpserted = io.flow.v0.models.StatementUpserted;
|
|
13542
13621
|
export declare type StoredMethodUsageStep = io.flow.v0.enums.StoredMethodUsageStep;
|
|
13543
13622
|
export declare type Strategy = io.flow.v0.enums.Strategy;
|
|
@@ -13585,7 +13664,10 @@ export declare type TaxDutyQuoteValues = io.flow.v0.models.TaxDutyQuoteValues;
|
|
|
13585
13664
|
export declare type TaxDutyTransactionReasonCode = io.flow.v0.enums.TaxDutyTransactionReasonCode;
|
|
13586
13665
|
export declare type TaxJurisdictionType = io.flow.v0.enums.TaxJurisdictionType;
|
|
13587
13666
|
export declare type TaxRegistration = io.flow.v0.models.TaxRegistration;
|
|
13667
|
+
export declare type TaxRegistrationDeleted = io.flow.v0.models.TaxRegistrationDeleted;
|
|
13668
|
+
export declare type TaxRegistrationDetail = io.flow.v0.models.TaxRegistrationDetail;
|
|
13588
13669
|
export declare type TaxRegistrationForm = io.flow.v0.models.TaxRegistrationForm;
|
|
13670
|
+
export declare type TaxRegistrationUpserted = io.flow.v0.models.TaxRegistrationUpserted;
|
|
13589
13671
|
export declare type TaxReport = io.flow.v0.models.TaxReport;
|
|
13590
13672
|
export declare type TaxReportType = io.flow.v0.enums.TaxReportType;
|
|
13591
13673
|
export declare type TaxSetting = io.flow.v0.unions.TaxSetting;
|
|
@@ -13640,6 +13722,8 @@ export declare type TrackingEventVersion = io.flow.v0.models.TrackingEventVersio
|
|
|
13640
13722
|
export declare type TrackingForm = io.flow.v0.models.TrackingForm;
|
|
13641
13723
|
export declare type TrackingLabel = io.flow.v0.models.TrackingLabel;
|
|
13642
13724
|
export declare type TrackingLabelEventUpserted = io.flow.v0.models.TrackingLabelEventUpserted;
|
|
13725
|
+
export declare type TrackingLabelEventUpsertedV2 = io.flow.v0.models.TrackingLabelEventUpsertedV2;
|
|
13726
|
+
export declare type TrackingLabelEventV2 = io.flow.v0.models.TrackingLabelEventV2;
|
|
13643
13727
|
export declare type TrackingLabelForm = io.flow.v0.models.TrackingLabelForm;
|
|
13644
13728
|
export declare type TrackingLabelSummary = io.flow.v0.models.TrackingLabelSummary;
|
|
13645
13729
|
export declare type TrackingLabelVersion = io.flow.v0.models.TrackingLabelVersion;
|