@flowio/types 11.24.129 → 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 +919 -80
- package/dist/api.d.ts +384 -283
- package/package.json +2 -2
- package/src/api-internal.ts +1127 -93
- package/src/api.ts +471 -345
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;
|
|
@@ -2276,9 +2277,9 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
2276
2277
|
readonly description: string;
|
|
2277
2278
|
readonly rejection_reason?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
2278
2279
|
}
|
|
2279
|
-
interface
|
|
2280
|
+
interface ChannelOrganizationDomains {
|
|
2280
2281
|
readonly internal: string;
|
|
2281
|
-
readonly
|
|
2282
|
+
readonly external: string;
|
|
2282
2283
|
}
|
|
2283
2284
|
interface ChannelOrganizationInstallation {
|
|
2284
2285
|
readonly organization: io.flow.channel.v0.models.ChannelOrganization;
|
|
@@ -2289,7 +2290,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
2289
2290
|
readonly metadata: io.flow.channel.internal.v0.models.ChannelOrganizationMetadata;
|
|
2290
2291
|
}
|
|
2291
2292
|
interface ChannelOrganizationMetadata {
|
|
2292
|
-
readonly domain: io.flow.channel.internal.v0.models.
|
|
2293
|
+
readonly domain: io.flow.channel.internal.v0.models.ChannelOrganizationDomains;
|
|
2293
2294
|
readonly token: string;
|
|
2294
2295
|
}
|
|
2295
2296
|
interface ChannelOrganizationToken {
|
|
@@ -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,8 +3091,10 @@ 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';
|
|
3095
|
+
type TaxJurisdictionType = 'country' | 'province';
|
|
3201
3096
|
type TaxReportType = 'consumer' | 'b2b';
|
|
3097
|
+
type TaxType = 'vat' | 'gst' | 'hst' | 'pst' | 'qst' | 'sales_tax';
|
|
3202
3098
|
type TaxVerificationResult = 'valid' | 'invalid' | 'unable_to_validate';
|
|
3203
3099
|
type TaxabilityType = 'tax_rule';
|
|
3204
3100
|
type TaxabilityValue = 'exempt';
|
|
@@ -3212,10 +3108,10 @@ declare namespace io.flow.v0.enums {
|
|
|
3212
3108
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired' | 'unknown' | 'unmapped';
|
|
3213
3109
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
3214
3110
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
3215
|
-
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';
|
|
3216
3112
|
type TransferStatus = 'succeeded' | 'canceled';
|
|
3217
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';
|
|
3218
|
-
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
3114
|
+
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
3219
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';
|
|
3220
3116
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
3221
3117
|
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_foot' | 'cubic_millimeter' | 'cubic_centimeter' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
@@ -3500,18 +3396,6 @@ declare namespace io.flow.v0.models {
|
|
|
3500
3396
|
readonly type: 'fingerprint';
|
|
3501
3397
|
readonly fingerprint_token: string;
|
|
3502
3398
|
}
|
|
3503
|
-
interface AldoItemDeleted {
|
|
3504
|
-
readonly discriminator: 'aldo_item_deleted';
|
|
3505
|
-
readonly event_id: string;
|
|
3506
|
-
readonly timestamp: string;
|
|
3507
|
-
readonly id: string;
|
|
3508
|
-
}
|
|
3509
|
-
interface AldoItemUpserted {
|
|
3510
|
-
readonly discriminator: 'aldo_item_upserted';
|
|
3511
|
-
readonly event_id: string;
|
|
3512
|
-
readonly timestamp: string;
|
|
3513
|
-
readonly item: io.flow.tech.onboarding.playground.v0.models.AldoItem;
|
|
3514
|
-
}
|
|
3515
3399
|
interface Allocation {
|
|
3516
3400
|
readonly order: io.flow.v0.models.AllocationOrderSummary;
|
|
3517
3401
|
readonly details: io.flow.v0.unions.AllocationDetail[];
|
|
@@ -3621,30 +3505,6 @@ declare namespace io.flow.v0.models {
|
|
|
3621
3505
|
readonly region?: string;
|
|
3622
3506
|
readonly interval?: io.flow.v0.enums.UnitOfTime;
|
|
3623
3507
|
}
|
|
3624
|
-
interface AnirbanItemDeleted {
|
|
3625
|
-
readonly discriminator: 'anirban_item_deleted';
|
|
3626
|
-
readonly event_id: string;
|
|
3627
|
-
readonly timestamp: string;
|
|
3628
|
-
readonly id: string;
|
|
3629
|
-
}
|
|
3630
|
-
interface AnirbanItemUpserted {
|
|
3631
|
-
readonly discriminator: 'anirban_item_upserted';
|
|
3632
|
-
readonly event_id: string;
|
|
3633
|
-
readonly timestamp: string;
|
|
3634
|
-
readonly item: io.flow.tech.onboarding.playground.v0.models.AnirbanItem;
|
|
3635
|
-
}
|
|
3636
|
-
interface AnshItemDeleted {
|
|
3637
|
-
readonly discriminator: 'ansh_item_deleted';
|
|
3638
|
-
readonly event_id: string;
|
|
3639
|
-
readonly timestamp: string;
|
|
3640
|
-
readonly id: string;
|
|
3641
|
-
}
|
|
3642
|
-
interface AnshItemUpserted {
|
|
3643
|
-
readonly discriminator: 'ansh_item_upserted';
|
|
3644
|
-
readonly event_id: string;
|
|
3645
|
-
readonly timestamp: string;
|
|
3646
|
-
readonly item: io.flow.tech.onboarding.playground.v0.models.AnshItem;
|
|
3647
|
-
}
|
|
3648
3508
|
interface ApplePayMerchantValidationPayload {
|
|
3649
3509
|
readonly discriminator: 'apple_pay_merchant_validation_payload';
|
|
3650
3510
|
readonly validation_url: string;
|
|
@@ -3892,9 +3752,13 @@ declare namespace io.flow.v0.models {
|
|
|
3892
3752
|
readonly key: string;
|
|
3893
3753
|
readonly invoice: io.flow.v0.models.B2BInvoiceReference;
|
|
3894
3754
|
readonly lines: io.flow.v0.unions.ConsumerInvoiceLine[];
|
|
3755
|
+
readonly tax_lines?: io.flow.v0.models.InvoiceTaxLine[];
|
|
3756
|
+
readonly tax?: io.flow.v0.models.Money;
|
|
3895
3757
|
readonly documents: io.flow.v0.models.ConsumerInvoiceDocument[];
|
|
3896
3758
|
readonly attributes: Record<string, string>;
|
|
3897
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;
|
|
3898
3762
|
}
|
|
3899
3763
|
interface B2BCreditMemoDeleted {
|
|
3900
3764
|
readonly discriminator: 'b2b_credit_memo_deleted';
|
|
@@ -3923,6 +3787,7 @@ declare namespace io.flow.v0.models {
|
|
|
3923
3787
|
readonly center?: io.flow.v0.models.ConsumerInvoiceCenterReference;
|
|
3924
3788
|
readonly destination?: io.flow.v0.models.OrderAddress;
|
|
3925
3789
|
readonly tax: io.flow.v0.models.Money;
|
|
3790
|
+
readonly tax_lines?: io.flow.v0.models.InvoiceTaxLine[];
|
|
3926
3791
|
readonly lines: io.flow.v0.unions.ConsumerInvoiceLine[];
|
|
3927
3792
|
readonly documents: io.flow.v0.models.ConsumerInvoiceDocument[];
|
|
3928
3793
|
readonly attributes: Record<string, string>;
|
|
@@ -4607,6 +4472,7 @@ declare namespace io.flow.v0.models {
|
|
|
4607
4472
|
readonly shopify_order_summary: io.flow.v0.models.ChannelShopifyOrderSummary;
|
|
4608
4473
|
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
4609
4474
|
readonly reasons?: io.flow.v0.models.ChannelShopifyOrderStateReason[];
|
|
4475
|
+
readonly external_order_summary?: io.flow.v0.models.ExternalOrderSummary;
|
|
4610
4476
|
}
|
|
4611
4477
|
interface ChannelShopifyOrderStateDeleted {
|
|
4612
4478
|
readonly discriminator: 'channel_shopify_order_state_deleted';
|
|
@@ -4806,6 +4672,73 @@ declare namespace io.flow.v0.models {
|
|
|
4806
4672
|
readonly discriminator: 'commercial_invoice_fee';
|
|
4807
4673
|
readonly amount: io.flow.v0.models.Money;
|
|
4808
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
|
+
}
|
|
4809
4742
|
interface Company {
|
|
4810
4743
|
readonly discriminator: 'company';
|
|
4811
4744
|
readonly legal_name: string;
|
|
@@ -4867,6 +4800,7 @@ declare namespace io.flow.v0.models {
|
|
|
4867
4800
|
}
|
|
4868
4801
|
interface ConsumerInvoiceLineDiscount {
|
|
4869
4802
|
readonly discriminator: 'discount';
|
|
4803
|
+
readonly line_id?: string;
|
|
4870
4804
|
readonly price: io.flow.v0.models.Price;
|
|
4871
4805
|
}
|
|
4872
4806
|
interface ConsumerInvoiceLineDiscountForm {
|
|
@@ -4875,6 +4809,7 @@ declare namespace io.flow.v0.models {
|
|
|
4875
4809
|
}
|
|
4876
4810
|
interface ConsumerInvoiceLineItem {
|
|
4877
4811
|
readonly discriminator: 'item';
|
|
4812
|
+
readonly line_id?: string;
|
|
4878
4813
|
readonly item: io.flow.v0.models.ItemReference;
|
|
4879
4814
|
readonly description: string;
|
|
4880
4815
|
readonly quantity: number;
|
|
@@ -4894,6 +4829,7 @@ declare namespace io.flow.v0.models {
|
|
|
4894
4829
|
}
|
|
4895
4830
|
interface ConsumerInvoiceLineShipping {
|
|
4896
4831
|
readonly discriminator: 'shipping';
|
|
4832
|
+
readonly line_id?: string;
|
|
4897
4833
|
readonly price: io.flow.v0.models.Price;
|
|
4898
4834
|
readonly discount?: io.flow.v0.models.Price;
|
|
4899
4835
|
readonly tax?: io.flow.v0.models.ConsumerInvoiceLevy;
|
|
@@ -4908,6 +4844,7 @@ declare namespace io.flow.v0.models {
|
|
|
4908
4844
|
}
|
|
4909
4845
|
interface ConsumerInvoiceLineTip {
|
|
4910
4846
|
readonly discriminator: 'tip';
|
|
4847
|
+
readonly line_id?: string;
|
|
4911
4848
|
readonly price: io.flow.v0.models.Price;
|
|
4912
4849
|
readonly tax?: io.flow.v0.models.ConsumerInvoiceLevy;
|
|
4913
4850
|
}
|
|
@@ -5003,6 +4940,8 @@ declare namespace io.flow.v0.models {
|
|
|
5003
4940
|
readonly documents: io.flow.v0.models.ConsumerInvoiceDocument[];
|
|
5004
4941
|
readonly attributes: Record<string, string>;
|
|
5005
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;
|
|
5006
4945
|
}
|
|
5007
4946
|
interface CreditMemoDeleted {
|
|
5008
4947
|
readonly discriminator: 'credit_memo_deleted';
|
|
@@ -5676,6 +5615,7 @@ declare namespace io.flow.v0.models {
|
|
|
5676
5615
|
readonly amount: io.flow.v0.models.Money;
|
|
5677
5616
|
readonly origin_region?: io.flow.v0.models.RatecardRegionReference;
|
|
5678
5617
|
readonly destination_region?: io.flow.v0.models.RatecardRegionReference;
|
|
5618
|
+
readonly destination_regions?: io.flow.v0.models.RatecardRegionReference[];
|
|
5679
5619
|
readonly interval_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
5680
5620
|
}
|
|
5681
5621
|
interface EntityIdentifier {
|
|
@@ -5960,6 +5900,10 @@ declare namespace io.flow.v0.models {
|
|
|
5960
5900
|
readonly id: string;
|
|
5961
5901
|
readonly type?: io.flow.v0.enums.CardType;
|
|
5962
5902
|
}
|
|
5903
|
+
interface ExternalOrderSummary {
|
|
5904
|
+
readonly id: string;
|
|
5905
|
+
readonly edit_ids: string[];
|
|
5906
|
+
}
|
|
5963
5907
|
interface FeeDeduction {
|
|
5964
5908
|
readonly type: io.flow.v0.enums.FeeDeductionType;
|
|
5965
5909
|
readonly amount: number;
|
|
@@ -6214,7 +6158,7 @@ declare namespace io.flow.v0.models {
|
|
|
6214
6158
|
readonly discriminator: 'ge_catalog_item_ingestion_result';
|
|
6215
6159
|
readonly event_id: string;
|
|
6216
6160
|
readonly event_type: io.flow.v0.enums.GeEventType;
|
|
6217
|
-
readonly environment: io.flow.v0.enums.
|
|
6161
|
+
readonly environment: io.flow.v0.enums.RestrictionEnvironment;
|
|
6218
6162
|
readonly timestamp: string;
|
|
6219
6163
|
readonly source: string;
|
|
6220
6164
|
readonly response: io.flow.v0.enums.GeCatalogItemIngestionResponse;
|
|
@@ -6274,7 +6218,7 @@ declare namespace io.flow.v0.models {
|
|
|
6274
6218
|
readonly organization: string;
|
|
6275
6219
|
readonly event_id: string;
|
|
6276
6220
|
readonly event_type: io.flow.v0.enums.GeEventType;
|
|
6277
|
-
readonly environment: io.flow.v0.enums.
|
|
6221
|
+
readonly environment: io.flow.v0.enums.RestrictionEnvironment;
|
|
6278
6222
|
readonly timestamp: string;
|
|
6279
6223
|
readonly id: string;
|
|
6280
6224
|
readonly operation: io.flow.v0.enums.ChangeType;
|
|
@@ -6284,7 +6228,7 @@ declare namespace io.flow.v0.models {
|
|
|
6284
6228
|
readonly organization: string;
|
|
6285
6229
|
readonly event_id: string;
|
|
6286
6230
|
readonly event_type: io.flow.v0.enums.GeEventType;
|
|
6287
|
-
readonly environment: io.flow.v0.enums.
|
|
6231
|
+
readonly environment: io.flow.v0.enums.RestrictionEnvironment;
|
|
6288
6232
|
readonly timestamp: string;
|
|
6289
6233
|
readonly operation: io.flow.v0.enums.ChangeType;
|
|
6290
6234
|
readonly ge_product_restriction_result: io.flow.v0.models.ProductRestrictionResult;
|
|
@@ -6455,18 +6399,6 @@ declare namespace io.flow.v0.models {
|
|
|
6455
6399
|
readonly hop_number: number;
|
|
6456
6400
|
readonly hop_estimate: io.flow.v0.models.HopEstimateV2;
|
|
6457
6401
|
}
|
|
6458
|
-
interface HoseinItemDeleted {
|
|
6459
|
-
readonly discriminator: 'hosein_item_deleted';
|
|
6460
|
-
readonly event_id: string;
|
|
6461
|
-
readonly timestamp: string;
|
|
6462
|
-
readonly id: string;
|
|
6463
|
-
}
|
|
6464
|
-
interface HoseinItemUpserted {
|
|
6465
|
-
readonly discriminator: 'hosein_item_upserted';
|
|
6466
|
-
readonly event_id: string;
|
|
6467
|
-
readonly timestamp: string;
|
|
6468
|
-
readonly item: io.flow.tech.onboarding.playground.v0.models.HoseinItem;
|
|
6469
|
-
}
|
|
6470
6402
|
interface Hs10 {
|
|
6471
6403
|
readonly id: string;
|
|
6472
6404
|
readonly item: io.flow.v0.models.HarmonizedItemReference;
|
|
@@ -6674,6 +6606,10 @@ declare namespace io.flow.v0.models {
|
|
|
6674
6606
|
readonly date_from?: string;
|
|
6675
6607
|
readonly date_to?: string;
|
|
6676
6608
|
}
|
|
6609
|
+
interface InvoiceTaxLine {
|
|
6610
|
+
readonly line_id: string;
|
|
6611
|
+
readonly tax_breakdown: io.flow.v0.models.TaxBreakdown[];
|
|
6612
|
+
}
|
|
6677
6613
|
interface IssuerReference {
|
|
6678
6614
|
readonly id: string;
|
|
6679
6615
|
}
|
|
@@ -6994,31 +6930,6 @@ declare namespace io.flow.v0.models {
|
|
|
6994
6930
|
readonly weight: io.flow.v0.enums.UnitOfWeight;
|
|
6995
6931
|
readonly length: io.flow.v0.enums.UnitOfLength;
|
|
6996
6932
|
}
|
|
6997
|
-
interface LabelUpserted {
|
|
6998
|
-
readonly discriminator: 'label_upserted';
|
|
6999
|
-
readonly event_id: string;
|
|
7000
|
-
readonly timestamp: string;
|
|
7001
|
-
readonly organization: string;
|
|
7002
|
-
readonly label_id: string;
|
|
7003
|
-
readonly carrier_tracking_number: string;
|
|
7004
|
-
readonly commercial_invoice: string;
|
|
7005
|
-
readonly flow_tracking_number: string;
|
|
7006
|
-
readonly destination: io.flow.v0.models.ShippingAddress;
|
|
7007
|
-
readonly origin: io.flow.v0.models.ShippingAddress;
|
|
7008
|
-
readonly carrier: string;
|
|
7009
|
-
readonly service: string;
|
|
7010
|
-
readonly zpl?: string;
|
|
7011
|
-
readonly pdf?: string;
|
|
7012
|
-
readonly png?: string;
|
|
7013
|
-
readonly order?: string;
|
|
7014
|
-
readonly carrier_tracking_number_url?: string;
|
|
7015
|
-
readonly flow_tracking_number_url?: string;
|
|
7016
|
-
readonly center_key?: string;
|
|
7017
|
-
readonly recipient?: io.flow.v0.enums.ShipmentRecipient;
|
|
7018
|
-
readonly package?: io.flow.v0.models.ShippingLabelPackage;
|
|
7019
|
-
readonly order_identifier?: string;
|
|
7020
|
-
readonly fulfillment_key?: string;
|
|
7021
|
-
}
|
|
7022
6933
|
interface LabelUpsertedV2 {
|
|
7023
6934
|
readonly discriminator: 'label_upserted_v2';
|
|
7024
6935
|
readonly event_id: string;
|
|
@@ -7382,6 +7293,7 @@ declare namespace io.flow.v0.models {
|
|
|
7382
7293
|
readonly region?: io.flow.v0.enums.RegionType;
|
|
7383
7294
|
readonly region_value?: string;
|
|
7384
7295
|
readonly category_code?: string;
|
|
7296
|
+
readonly description?: string;
|
|
7385
7297
|
}
|
|
7386
7298
|
interface MerchantOfRecordAuthorizationForm {
|
|
7387
7299
|
readonly discriminator: 'merchant_of_record_authorization_form';
|
|
@@ -7414,6 +7326,8 @@ declare namespace io.flow.v0.models {
|
|
|
7414
7326
|
interface MerchantOfRecordEntityRegistration {
|
|
7415
7327
|
readonly number: string;
|
|
7416
7328
|
readonly country: string;
|
|
7329
|
+
readonly province_number?: string;
|
|
7330
|
+
readonly province?: string;
|
|
7417
7331
|
}
|
|
7418
7332
|
interface MerchantOfRecordPaymentForm {
|
|
7419
7333
|
readonly discriminator: 'merchant_of_record_payment_form';
|
|
@@ -7430,6 +7344,16 @@ declare namespace io.flow.v0.models {
|
|
|
7430
7344
|
readonly postal?: string;
|
|
7431
7345
|
readonly country?: string;
|
|
7432
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
|
+
}
|
|
7433
7357
|
interface MerchantRejected {
|
|
7434
7358
|
readonly discriminator: 'merchant_rejected';
|
|
7435
7359
|
readonly reason: io.flow.v0.enums.MerchantRejectedReason;
|
|
@@ -7469,18 +7393,7 @@ declare namespace io.flow.v0.models {
|
|
|
7469
7393
|
interface NeedsActionAttributes {
|
|
7470
7394
|
readonly reason_code: string;
|
|
7471
7395
|
readonly category_metafield_handles: string[];
|
|
7472
|
-
|
|
7473
|
-
interface NiallItemDeleted {
|
|
7474
|
-
readonly discriminator: 'niall_item_deleted';
|
|
7475
|
-
readonly event_id: string;
|
|
7476
|
-
readonly timestamp: string;
|
|
7477
|
-
readonly id: string;
|
|
7478
|
-
}
|
|
7479
|
-
interface NiallItemUpserted {
|
|
7480
|
-
readonly discriminator: 'niall_item_upserted';
|
|
7481
|
-
readonly event_id: string;
|
|
7482
|
-
readonly timestamp: string;
|
|
7483
|
-
readonly item: io.flow.tech.onboarding.playground.v0.models.NiallItem;
|
|
7396
|
+
readonly require_msds?: boolean;
|
|
7484
7397
|
}
|
|
7485
7398
|
interface NotificationDeletedV2 {
|
|
7486
7399
|
readonly discriminator: 'notification_deleted_v2';
|
|
@@ -8230,6 +8143,20 @@ declare namespace io.flow.v0.models {
|
|
|
8230
8143
|
readonly name: string;
|
|
8231
8144
|
readonly environment: io.flow.v0.enums.Environment;
|
|
8232
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
|
+
}
|
|
8233
8160
|
interface OrganizationToken {
|
|
8234
8161
|
readonly discriminator: 'organization_token';
|
|
8235
8162
|
readonly id: string;
|
|
@@ -8906,6 +8833,7 @@ declare namespace io.flow.v0.models {
|
|
|
8906
8833
|
readonly supported_actions: io.flow.v0.enums.PaymentActionType[];
|
|
8907
8834
|
readonly payment_capture_option?: io.flow.v0.unions.PaymentCaptureOption;
|
|
8908
8835
|
readonly review?: io.flow.v0.models.PaymentRequestReview;
|
|
8836
|
+
readonly client_secret?: string;
|
|
8909
8837
|
}
|
|
8910
8838
|
interface PaymentRequestBilling {
|
|
8911
8839
|
readonly fees: io.flow.v0.models.PaymentRequestBillingFees;
|
|
@@ -9362,7 +9290,7 @@ declare namespace io.flow.v0.models {
|
|
|
9362
9290
|
readonly updated_by?: string;
|
|
9363
9291
|
readonly product_restriction_id?: string;
|
|
9364
9292
|
readonly hs_code?: string;
|
|
9365
|
-
readonly restricted_regions_by_type?: io.flow.v0.models.
|
|
9293
|
+
readonly restricted_regions_by_type?: io.flow.v0.models.SellabilityRegionResult[];
|
|
9366
9294
|
readonly needs_action_attributes?: io.flow.v0.models.NeedsActionAttributes[];
|
|
9367
9295
|
}
|
|
9368
9296
|
interface ProductRestrictionResultDeleted {
|
|
@@ -9385,9 +9313,10 @@ declare namespace io.flow.v0.models {
|
|
|
9385
9313
|
readonly product_id?: string;
|
|
9386
9314
|
readonly request_id: string;
|
|
9387
9315
|
readonly hs6_code: string;
|
|
9388
|
-
readonly restricted_regions: io.flow.v0.models.
|
|
9316
|
+
readonly restricted_regions: io.flow.v0.models.SellabilityRegionResult[];
|
|
9389
9317
|
}
|
|
9390
9318
|
interface ProductSellabilityForm {
|
|
9319
|
+
readonly discriminator: 'product_sellability_form';
|
|
9391
9320
|
readonly shop_id: string;
|
|
9392
9321
|
readonly product_id?: string;
|
|
9393
9322
|
readonly name: string;
|
|
@@ -9397,6 +9326,28 @@ declare namespace io.flow.v0.models {
|
|
|
9397
9326
|
readonly status?: io.flow.v0.enums.SellabilityRequestStatus;
|
|
9398
9327
|
readonly dry_run?: boolean;
|
|
9399
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
|
+
}
|
|
9400
9351
|
interface ProductTaxonomyCategory {
|
|
9401
9352
|
readonly name: string;
|
|
9402
9353
|
readonly full_name: string;
|
|
@@ -9612,6 +9563,7 @@ declare namespace io.flow.v0.models {
|
|
|
9612
9563
|
readonly center_id?: string;
|
|
9613
9564
|
readonly taxes_owed?: io.flow.v0.models.Money;
|
|
9614
9565
|
readonly duties_owed?: io.flow.v0.models.Money;
|
|
9566
|
+
readonly commercial_invoice_mode?: io.flow.v0.enums.CommercialInvoiceMode;
|
|
9615
9567
|
}
|
|
9616
9568
|
interface RatecardEstimateSummaryForm {
|
|
9617
9569
|
readonly origin?: string;
|
|
@@ -10155,18 +10107,6 @@ declare namespace io.flow.v0.models {
|
|
|
10155
10107
|
readonly type: io.flow.v0.enums.ChangeType;
|
|
10156
10108
|
readonly reversal: io.flow.v0.models.Reversal;
|
|
10157
10109
|
}
|
|
10158
|
-
interface RohanItemDeleted {
|
|
10159
|
-
readonly discriminator: 'rohan_item_deleted';
|
|
10160
|
-
readonly event_id: string;
|
|
10161
|
-
readonly timestamp: string;
|
|
10162
|
-
readonly id: string;
|
|
10163
|
-
}
|
|
10164
|
-
interface RohanItemUpserted {
|
|
10165
|
-
readonly discriminator: 'rohan_item_upserted';
|
|
10166
|
-
readonly event_id: string;
|
|
10167
|
-
readonly timestamp: string;
|
|
10168
|
-
readonly item: io.flow.tech.onboarding.playground.v0.models.RohanItem;
|
|
10169
|
-
}
|
|
10170
10110
|
interface Romanization {
|
|
10171
10111
|
readonly address?: io.flow.v0.models.Address;
|
|
10172
10112
|
readonly contact?: io.flow.v0.models.Contact;
|
|
@@ -10186,18 +10126,6 @@ declare namespace io.flow.v0.models {
|
|
|
10186
10126
|
readonly authentication_techniques: io.flow.v0.enums.AuthenticationTechnique[];
|
|
10187
10127
|
readonly roles: io.flow.v0.enums.FlowRole[];
|
|
10188
10128
|
}
|
|
10189
|
-
interface SarveshItemDeleted {
|
|
10190
|
-
readonly discriminator: 'sarvesh_item_deleted';
|
|
10191
|
-
readonly event_id: string;
|
|
10192
|
-
readonly timestamp: string;
|
|
10193
|
-
readonly id: string;
|
|
10194
|
-
}
|
|
10195
|
-
interface SarveshItemUpserted {
|
|
10196
|
-
readonly discriminator: 'sarvesh_item_upserted';
|
|
10197
|
-
readonly event_id: string;
|
|
10198
|
-
readonly timestamp: string;
|
|
10199
|
-
readonly item: io.flow.tech.onboarding.playground.v0.models.SarveshItem;
|
|
10200
|
-
}
|
|
10201
10129
|
interface Schedule {
|
|
10202
10130
|
readonly calendar?: io.flow.v0.enums.Calendar;
|
|
10203
10131
|
readonly holiday: io.flow.v0.enums.HolidayCalendar;
|
|
@@ -10242,11 +10170,53 @@ declare namespace io.flow.v0.models {
|
|
|
10242
10170
|
readonly discriminator: 'select_issuer_option_action_details';
|
|
10243
10171
|
readonly issuer_options: io.flow.v0.models.IssuerReference[];
|
|
10244
10172
|
}
|
|
10173
|
+
interface SelfBillingAgreement {
|
|
10174
|
+
readonly effective_at: string;
|
|
10175
|
+
readonly expires_at: string;
|
|
10176
|
+
}
|
|
10245
10177
|
interface SellabilityError {
|
|
10246
10178
|
readonly discriminator: 'sellability_error';
|
|
10247
10179
|
readonly code: io.flow.v0.enums.SellabilityErrorCode;
|
|
10248
10180
|
readonly messages: string[];
|
|
10249
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
|
+
}
|
|
10250
10220
|
interface SellablilityRegionResult {
|
|
10251
10221
|
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
10252
10222
|
readonly regions: string[];
|
|
@@ -10600,6 +10570,39 @@ declare namespace io.flow.v0.models {
|
|
|
10600
10570
|
readonly type: io.flow.v0.enums.ChangeType;
|
|
10601
10571
|
readonly shipping_notification: io.flow.v0.models.ShippingNotification;
|
|
10602
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
|
+
}
|
|
10603
10606
|
interface Shop {
|
|
10604
10607
|
readonly name: string;
|
|
10605
10608
|
readonly id: string;
|
|
@@ -10786,6 +10789,7 @@ declare namespace io.flow.v0.models {
|
|
|
10786
10789
|
readonly third_party_logistics_partners?: io.flow.v0.models.ThirdPartyLogisticsPartner[];
|
|
10787
10790
|
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
10788
10791
|
readonly average_order_weight?: number;
|
|
10792
|
+
readonly average_order_weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
10789
10793
|
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
10790
10794
|
readonly monthly_average?: io.flow.v0.models.MonthlyAverage;
|
|
10791
10795
|
readonly default_country_of_origin?: string;
|
|
@@ -10818,6 +10822,7 @@ declare namespace io.flow.v0.models {
|
|
|
10818
10822
|
readonly third_party_logistics_partners?: io.flow.v0.models.ThirdPartyLogisticsPartner[];
|
|
10819
10823
|
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
10820
10824
|
readonly average_order_weight?: number;
|
|
10825
|
+
readonly average_order_weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
10821
10826
|
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
10822
10827
|
readonly monthly_average_volume_amount?: number;
|
|
10823
10828
|
readonly monthly_average_volume_currency?: string;
|
|
@@ -10941,6 +10946,10 @@ declare namespace io.flow.v0.models {
|
|
|
10941
10946
|
readonly organization: string;
|
|
10942
10947
|
readonly statement: io.flow.v0.models.Statement;
|
|
10943
10948
|
}
|
|
10949
|
+
interface StatementStatusForm {
|
|
10950
|
+
readonly code: io.flow.v0.enums.StatementStatusCode;
|
|
10951
|
+
readonly failure_reason?: io.flow.v0.enums.PayoutStatusFailureCode;
|
|
10952
|
+
}
|
|
10944
10953
|
interface StatementUpserted {
|
|
10945
10954
|
readonly discriminator: 'statement_upserted';
|
|
10946
10955
|
readonly event_id: string;
|
|
@@ -11086,6 +11095,13 @@ declare namespace io.flow.v0.models {
|
|
|
11086
11095
|
readonly components: io.flow.v0.enums.LevyComponent[];
|
|
11087
11096
|
readonly deminimis?: io.flow.v0.unions.Deminimis;
|
|
11088
11097
|
}
|
|
11098
|
+
interface TaxBreakdown {
|
|
11099
|
+
readonly label: string;
|
|
11100
|
+
readonly calculated_tax: io.flow.v0.models.Money;
|
|
11101
|
+
readonly rate: number;
|
|
11102
|
+
readonly line_total: io.flow.v0.models.Money;
|
|
11103
|
+
readonly jurisdiction_type: io.flow.v0.enums.TaxJurisdictionType;
|
|
11104
|
+
}
|
|
11089
11105
|
interface TaxDutyCalculatorValidationError {
|
|
11090
11106
|
readonly code: io.flow.v0.enums.TaxDutyCalculatorValidationErrorCode;
|
|
11091
11107
|
readonly messages: string[];
|
|
@@ -11174,10 +11190,30 @@ declare namespace io.flow.v0.models {
|
|
|
11174
11190
|
readonly address?: string;
|
|
11175
11191
|
readonly company_name?: string;
|
|
11176
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
|
+
}
|
|
11177
11206
|
interface TaxRegistrationForm {
|
|
11178
11207
|
readonly number: string;
|
|
11179
11208
|
readonly company_name?: string;
|
|
11180
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
|
+
}
|
|
11181
11217
|
interface TaxReport {
|
|
11182
11218
|
readonly schedule: io.flow.v0.unions.RepeatSchedule;
|
|
11183
11219
|
readonly timezone: string;
|
|
@@ -11420,6 +11456,27 @@ declare namespace io.flow.v0.models {
|
|
|
11420
11456
|
readonly description?: string;
|
|
11421
11457
|
readonly order_number?: string;
|
|
11422
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
|
+
}
|
|
11423
11480
|
interface TrackingLabelForm {
|
|
11424
11481
|
readonly tracking_id: string;
|
|
11425
11482
|
readonly status: io.flow.v0.enums.TrackingStatus;
|
|
@@ -11567,6 +11624,22 @@ declare namespace io.flow.v0.models {
|
|
|
11567
11624
|
interface TransactionMetadataTaxDuty {
|
|
11568
11625
|
readonly discriminator: 'transaction_tax_duty';
|
|
11569
11626
|
readonly reason_code: io.flow.v0.enums.TaxDutyTransactionReasonCode;
|
|
11627
|
+
readonly local_currency?: string;
|
|
11628
|
+
readonly actual?: io.flow.v0.models.TransactionMetadataTaxDutyActual;
|
|
11629
|
+
readonly estimate?: io.flow.v0.models.TransactionMetadataTaxDutyEstimate;
|
|
11630
|
+
readonly delta?: io.flow.v0.models.TransactionMetadataTaxDutyDelta;
|
|
11631
|
+
}
|
|
11632
|
+
interface TransactionMetadataTaxDutyActual {
|
|
11633
|
+
readonly base?: number;
|
|
11634
|
+
readonly local?: number;
|
|
11635
|
+
}
|
|
11636
|
+
interface TransactionMetadataTaxDutyDelta {
|
|
11637
|
+
readonly base?: number;
|
|
11638
|
+
readonly local?: number;
|
|
11639
|
+
}
|
|
11640
|
+
interface TransactionMetadataTaxDutyEstimate {
|
|
11641
|
+
readonly base?: number;
|
|
11642
|
+
readonly local?: number;
|
|
11570
11643
|
}
|
|
11571
11644
|
interface TransactionMetadataTrueup {
|
|
11572
11645
|
readonly discriminator: 'trueup';
|
|
@@ -11903,7 +11976,7 @@ declare namespace io.flow.v0.unions {
|
|
|
11903
11976
|
type Document = io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument;
|
|
11904
11977
|
type EmailNotificationData = io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder;
|
|
11905
11978
|
type Entity = io.flow.v0.models.Company | io.flow.v0.models.Individual;
|
|
11906
|
-
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;
|
|
11907
11980
|
type ExpandableCard = io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary | io.flow.v0.models.ExternalCard;
|
|
11908
11981
|
type ExpandableCenter = io.flow.v0.models.Center | io.flow.v0.models.CenterReference;
|
|
11909
11982
|
type ExpandableExperience = io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference;
|
|
@@ -11927,10 +12000,10 @@ declare namespace io.flow.v0.unions {
|
|
|
11927
12000
|
type LabelSurchargeDetail = io.flow.v0.models.LabelSurchargeDetailFlat | io.flow.v0.models.LabelSurchargeDetailPercentage | io.flow.v0.models.LabelSurchargeDetailPerWeightUnit;
|
|
11928
12001
|
type LocalizedPrice = io.flow.v0.models.LocalizedItemPrice | io.flow.v0.models.LocalizedItemVat | io.flow.v0.models.LocalizedItemDuty | io.flow.v0.models.LocalizedTotal;
|
|
11929
12002
|
type LogoImage = io.flow.v0.models.LogoImageSvg | io.flow.v0.models.LogoImageSetStatic;
|
|
11930
|
-
type MerchantApplication = io.flow.v0.models.ShopifyMerchantApplication;
|
|
11931
|
-
type MerchantApplicationForm = io.flow.v0.models.ShopifyMerchantApplicationForm;
|
|
11932
|
-
type MerchantApplicationPutForm = io.flow.v0.models.ShopifyMerchantApplicationPutForm;
|
|
11933
|
-
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;
|
|
11934
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;
|
|
11935
12008
|
type OnlineAuthorizationDetails = io.flow.v0.models.CryptopayAuthorizationDetails | io.flow.v0.models.PaypalAuthorizationDetails | io.flow.v0.models.RedirectAuthorizationDetails | io.flow.v0.models.InlineAuthorizationDetails;
|
|
11936
12009
|
type OrderInformation = io.flow.v0.models.OrderInformationFlow | io.flow.v0.models.OrderInformationDetails;
|
|
@@ -11972,7 +12045,8 @@ declare namespace io.flow.v0.unions {
|
|
|
11972
12045
|
type RepeatSchedule = io.flow.v0.models.RepeatHourly | io.flow.v0.models.RepeatDaily | io.flow.v0.models.RepeatWeekly | io.flow.v0.models.RepeatMonthly;
|
|
11973
12046
|
type ReturnSource = io.flow.v0.models.ReturnSourceFlow | io.flow.v0.models.ReturnSourceExternalVendor;
|
|
11974
12047
|
type SdkAdyenV3AuthenticationToken = io.flow.v0.models.AdyenV3FingerprintToken | io.flow.v0.models.AdyenV3ChallengeToken;
|
|
11975
|
-
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;
|
|
11976
12050
|
type ServiceDescription = io.flow.v0.models.ServiceSummary | io.flow.v0.models.ServiceUnknown;
|
|
11977
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;
|
|
11978
12052
|
type Session = io.flow.v0.models.OrganizationSession;
|
|
@@ -12045,8 +12119,6 @@ export declare type AdyenNativeActionDetails = io.flow.v0.models.AdyenNativeActi
|
|
|
12045
12119
|
export declare type AdyenNativeData = io.flow.v0.unions.AdyenNativeData;
|
|
12046
12120
|
export declare type AdyenV3ChallengeToken = io.flow.v0.models.AdyenV3ChallengeToken;
|
|
12047
12121
|
export declare type AdyenV3FingerprintToken = io.flow.v0.models.AdyenV3FingerprintToken;
|
|
12048
|
-
export declare type AldoItemDeleted = io.flow.v0.models.AldoItemDeleted;
|
|
12049
|
-
export declare type AldoItemUpserted = io.flow.v0.models.AldoItemUpserted;
|
|
12050
12122
|
export declare type Allocation = io.flow.v0.models.Allocation;
|
|
12051
12123
|
export declare type AllocationComponent = io.flow.v0.unions.AllocationComponent;
|
|
12052
12124
|
export declare type AllocationDeletedV2 = io.flow.v0.models.AllocationDeletedV2;
|
|
@@ -12064,10 +12136,6 @@ export declare type AllocationV2 = io.flow.v0.models.AllocationV2;
|
|
|
12064
12136
|
export declare type AmountMargin = io.flow.v0.models.AmountMargin;
|
|
12065
12137
|
export declare type AmountMarginForm = io.flow.v0.models.AmountMarginForm;
|
|
12066
12138
|
export declare type AnalyticsExportType = io.flow.v0.models.AnalyticsExportType;
|
|
12067
|
-
export declare type AnirbanItemDeleted = io.flow.v0.models.AnirbanItemDeleted;
|
|
12068
|
-
export declare type AnirbanItemUpserted = io.flow.v0.models.AnirbanItemUpserted;
|
|
12069
|
-
export declare type AnshItemDeleted = io.flow.v0.models.AnshItemDeleted;
|
|
12070
|
-
export declare type AnshItemUpserted = io.flow.v0.models.AnshItemUpserted;
|
|
12071
12139
|
export declare type ApplePayMerchantValidationPayload = io.flow.v0.models.ApplePayMerchantValidationPayload;
|
|
12072
12140
|
export declare type ApplepaySdkCreateResultActionDetails = io.flow.v0.models.ApplepaySdkCreateResultActionDetails;
|
|
12073
12141
|
export declare type ApplepaySdkValidateResultActionDetails = io.flow.v0.models.ApplepaySdkValidateResultActionDetails;
|
|
@@ -12286,6 +12354,11 @@ export declare type CheckoutUrls = io.flow.v0.models.CheckoutUrls;
|
|
|
12286
12354
|
export declare type CheckoutUrlsForm = io.flow.v0.models.CheckoutUrlsForm;
|
|
12287
12355
|
export declare type Cleartext = io.flow.v0.models.Cleartext;
|
|
12288
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;
|
|
12289
12362
|
export declare type Company = io.flow.v0.models.Company;
|
|
12290
12363
|
export declare type ConfirmationDetails = io.flow.v0.unions.ConfirmationDetails;
|
|
12291
12364
|
export declare type ConsumerInvoice = io.flow.v0.models.ConsumerInvoice;
|
|
@@ -12544,6 +12617,7 @@ export declare type ExportType = io.flow.v0.unions.ExportType;
|
|
|
12544
12617
|
export declare type ExportVersion = io.flow.v0.models.ExportVersion;
|
|
12545
12618
|
export declare type ExporterOfRecord = io.flow.v0.enums.ExporterOfRecord;
|
|
12546
12619
|
export declare type ExternalCard = io.flow.v0.models.ExternalCard;
|
|
12620
|
+
export declare type ExternalOrderSummary = io.flow.v0.models.ExternalOrderSummary;
|
|
12547
12621
|
export declare type FeeDeduction = io.flow.v0.models.FeeDeduction;
|
|
12548
12622
|
export declare type FeeDeductionType = io.flow.v0.enums.FeeDeductionType;
|
|
12549
12623
|
export declare type FeeWeight = io.flow.v0.models.FeeWeight;
|
|
@@ -12650,8 +12724,6 @@ export declare type Hop = io.flow.v0.models.Hop;
|
|
|
12650
12724
|
export declare type HopEstimate = io.flow.v0.models.HopEstimate;
|
|
12651
12725
|
export declare type HopEstimateV2 = io.flow.v0.models.HopEstimateV2;
|
|
12652
12726
|
export declare type HopV2 = io.flow.v0.models.HopV2;
|
|
12653
|
-
export declare type HoseinItemDeleted = io.flow.v0.models.HoseinItemDeleted;
|
|
12654
|
-
export declare type HoseinItemUpserted = io.flow.v0.models.HoseinItemUpserted;
|
|
12655
12727
|
export declare type Hs10 = io.flow.v0.models.Hs10;
|
|
12656
12728
|
export declare type Hs10CodeDeleted = io.flow.v0.models.Hs10CodeDeleted;
|
|
12657
12729
|
export declare type Hs10CodeUpserted = io.flow.v0.models.Hs10CodeUpserted;
|
|
@@ -12699,6 +12771,7 @@ export declare type InvitationForm = io.flow.v0.models.InvitationForm;
|
|
|
12699
12771
|
export declare type InvitationVersion = io.flow.v0.models.InvitationVersion;
|
|
12700
12772
|
export declare type InvoiceExport = io.flow.v0.models.InvoiceExport;
|
|
12701
12773
|
export declare type InvoiceExportForm = io.flow.v0.models.InvoiceExportForm;
|
|
12774
|
+
export declare type InvoiceTaxLine = io.flow.v0.models.InvoiceTaxLine;
|
|
12702
12775
|
export declare type IssuerReference = io.flow.v0.models.IssuerReference;
|
|
12703
12776
|
export declare type IssuerSummary = io.flow.v0.models.IssuerSummary;
|
|
12704
12777
|
export declare type IssuerV1 = io.flow.v0.models.IssuerV1;
|
|
@@ -12755,7 +12828,6 @@ export declare type LabelTrackingSummary = io.flow.v0.models.LabelTrackingSummar
|
|
|
12755
12828
|
export declare type LabelTrackingSummaryUpdate = io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
12756
12829
|
export declare type LabelTriggerMethod = io.flow.v0.enums.LabelTriggerMethod;
|
|
12757
12830
|
export declare type LabelUnits = io.flow.v0.models.LabelUnits;
|
|
12758
|
-
export declare type LabelUpserted = io.flow.v0.models.LabelUpserted;
|
|
12759
12831
|
export declare type LabelUpsertedV2 = io.flow.v0.models.LabelUpsertedV2;
|
|
12760
12832
|
export declare type LandedCostItem = io.flow.v0.models.LandedCostItem;
|
|
12761
12833
|
export declare type LaneDirection = io.flow.v0.enums.LaneDirection;
|
|
@@ -12841,6 +12913,7 @@ export declare type MerchantOfRecordEntity = io.flow.v0.models.MerchantOfRecordE
|
|
|
12841
12913
|
export declare type MerchantOfRecordEntityRegistration = io.flow.v0.models.MerchantOfRecordEntityRegistration;
|
|
12842
12914
|
export declare type MerchantOfRecordPaymentForm = io.flow.v0.models.MerchantOfRecordPaymentForm;
|
|
12843
12915
|
export declare type MerchantOnboardingAddress = io.flow.v0.models.MerchantOnboardingAddress;
|
|
12916
|
+
export declare type MerchantOnboardingBeneficiaryDetails = io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
12844
12917
|
export declare type MerchantRejected = io.flow.v0.models.MerchantRejected;
|
|
12845
12918
|
export declare type MerchantRejectedReason = io.flow.v0.enums.MerchantRejectedReason;
|
|
12846
12919
|
export declare type Method = io.flow.v0.enums.Method;
|
|
@@ -12852,8 +12925,6 @@ export declare type MonthlyAverageVolume = io.flow.v0.models.MonthlyAverageVolum
|
|
|
12852
12925
|
export declare type Name = io.flow.v0.models.Name;
|
|
12853
12926
|
export declare type NameForm = io.flow.v0.models.NameForm;
|
|
12854
12927
|
export declare type NeedsActionAttributes = io.flow.v0.models.NeedsActionAttributes;
|
|
12855
|
-
export declare type NiallItemDeleted = io.flow.v0.models.NiallItemDeleted;
|
|
12856
|
-
export declare type NiallItemUpserted = io.flow.v0.models.NiallItemUpserted;
|
|
12857
12928
|
export declare type NotificationDeletedV2 = io.flow.v0.models.NotificationDeletedV2;
|
|
12858
12929
|
export declare type NotificationUpsertedV2 = io.flow.v0.models.NotificationUpsertedV2;
|
|
12859
12930
|
export declare type NumberRange = io.flow.v0.models.NumberRange;
|
|
@@ -12993,6 +13064,8 @@ export declare type OrganizationSession = io.flow.v0.models.OrganizationSession;
|
|
|
12993
13064
|
export declare type OrganizationSessionAuthorization = io.flow.v0.models.OrganizationSessionAuthorization;
|
|
12994
13065
|
export declare type OrganizationStatus = io.flow.v0.enums.OrganizationStatus;
|
|
12995
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;
|
|
12996
13069
|
export declare type OrganizationToken = io.flow.v0.models.OrganizationToken;
|
|
12997
13070
|
export declare type OrganizationTokenForm = io.flow.v0.models.OrganizationTokenForm;
|
|
12998
13071
|
export declare type OrganizationTokenFormV2 = io.flow.v0.models.OrganizationTokenFormV2;
|
|
@@ -13241,6 +13314,9 @@ export declare type ProductRestrictionResultDeleted = io.flow.v0.models.ProductR
|
|
|
13241
13314
|
export declare type ProductRestrictionResultUpserted = io.flow.v0.models.ProductRestrictionResultUpserted;
|
|
13242
13315
|
export declare type ProductSellability = io.flow.v0.models.ProductSellability;
|
|
13243
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;
|
|
13244
13320
|
export declare type ProductTaxonomyCategory = io.flow.v0.models.ProductTaxonomyCategory;
|
|
13245
13321
|
export declare type ProductTaxonomyData = io.flow.v0.models.ProductTaxonomyData;
|
|
13246
13322
|
export declare type ProductTaxonomyValue = io.flow.v0.models.ProductTaxonomyValue;
|
|
@@ -13348,6 +13424,7 @@ export declare type RepeatMonthly = io.flow.v0.models.RepeatMonthly;
|
|
|
13348
13424
|
export declare type RepeatSchedule = io.flow.v0.unions.RepeatSchedule;
|
|
13349
13425
|
export declare type RepeatWeekly = io.flow.v0.models.RepeatWeekly;
|
|
13350
13426
|
export declare type RestrictedReviewStatus = io.flow.v0.enums.RestrictedReviewStatus;
|
|
13427
|
+
export declare type RestrictionEnvironment = io.flow.v0.enums.RestrictionEnvironment;
|
|
13351
13428
|
export declare type Return = io.flow.v0.models.Return;
|
|
13352
13429
|
export declare type ReturnForm = io.flow.v0.models.ReturnForm;
|
|
13353
13430
|
export declare type ReturnItemReference = io.flow.v0.models.ReturnItemReference;
|
|
@@ -13380,8 +13457,6 @@ export declare type ReversalStatus = io.flow.v0.enums.ReversalStatus;
|
|
|
13380
13457
|
export declare type ReversalUpserted = io.flow.v0.models.ReversalUpserted;
|
|
13381
13458
|
export declare type ReversalVersion = io.flow.v0.models.ReversalVersion;
|
|
13382
13459
|
export declare type ReviewStatus = io.flow.v0.enums.ReviewStatus;
|
|
13383
|
-
export declare type RohanItemDeleted = io.flow.v0.models.RohanItemDeleted;
|
|
13384
|
-
export declare type RohanItemUpserted = io.flow.v0.models.RohanItemUpserted;
|
|
13385
13460
|
export declare type Role = io.flow.v0.enums.Role;
|
|
13386
13461
|
export declare type Romanization = io.flow.v0.models.Romanization;
|
|
13387
13462
|
export declare type RomanizationForm = io.flow.v0.models.RomanizationForm;
|
|
@@ -13390,8 +13465,6 @@ export declare type RoundingMethod = io.flow.v0.enums.RoundingMethod;
|
|
|
13390
13465
|
export declare type RoundingType = io.flow.v0.enums.RoundingType;
|
|
13391
13466
|
export declare type RouteAudit = io.flow.v0.models.RouteAudit;
|
|
13392
13467
|
export declare type RuleEffectType = io.flow.v0.enums.RuleEffectType;
|
|
13393
|
-
export declare type SarveshItemDeleted = io.flow.v0.models.SarveshItemDeleted;
|
|
13394
|
-
export declare type SarveshItemUpserted = io.flow.v0.models.SarveshItemUpserted;
|
|
13395
13468
|
export declare type Schedule = io.flow.v0.models.Schedule;
|
|
13396
13469
|
export declare type ScheduleExceptionStatus = io.flow.v0.enums.ScheduleExceptionStatus;
|
|
13397
13470
|
export declare type ScheduledExport = io.flow.v0.models.ScheduledExport;
|
|
@@ -13401,10 +13474,21 @@ export declare type SdkAdyenV3AuthenticationToken = io.flow.v0.unions.SdkAdyenV3
|
|
|
13401
13474
|
export declare type SecurityRatecardFee = io.flow.v0.models.SecurityRatecardFee;
|
|
13402
13475
|
export declare type SecurityServiceFee = io.flow.v0.models.SecurityServiceFee;
|
|
13403
13476
|
export declare type SelectIssuerOptionActionDetails = io.flow.v0.models.SelectIssuerOptionActionDetails;
|
|
13477
|
+
export declare type SelfBillingAgreement = io.flow.v0.models.SelfBillingAgreement;
|
|
13404
13478
|
export declare type SellabilityError = io.flow.v0.models.SellabilityError;
|
|
13405
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;
|
|
13406
13484
|
export declare type SellabilityRequestStatus = io.flow.v0.enums.SellabilityRequestStatus;
|
|
13407
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;
|
|
13408
13492
|
export declare type SellablilityRegionResult = io.flow.v0.models.SellablilityRegionResult;
|
|
13409
13493
|
export declare type ServiceDescription = io.flow.v0.unions.ServiceDescription;
|
|
13410
13494
|
export declare type ServiceFee = io.flow.v0.unions.ServiceFee;
|
|
@@ -13473,6 +13557,10 @@ export declare type ShippingLaneVersion = io.flow.v0.models.ShippingLaneVersion;
|
|
|
13473
13557
|
export declare type ShippingNotification = io.flow.v0.models.ShippingNotification;
|
|
13474
13558
|
export declare type ShippingNotificationForm = io.flow.v0.unions.ShippingNotificationForm;
|
|
13475
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;
|
|
13476
13564
|
export declare type Shop = io.flow.v0.models.Shop;
|
|
13477
13565
|
export declare type ShopifyCart = io.flow.v0.models.ShopifyCart;
|
|
13478
13566
|
export declare type ShopifyCartAddForm = io.flow.v0.unions.ShopifyCartAddForm;
|
|
@@ -13527,6 +13615,8 @@ export declare type SortDirection = io.flow.v0.enums.SortDirection;
|
|
|
13527
13615
|
export declare type Statement = io.flow.v0.models.Statement;
|
|
13528
13616
|
export declare type StatementAttachmentType = io.flow.v0.enums.StatementAttachmentType;
|
|
13529
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;
|
|
13530
13620
|
export declare type StatementUpserted = io.flow.v0.models.StatementUpserted;
|
|
13531
13621
|
export declare type StoredMethodUsageStep = io.flow.v0.enums.StoredMethodUsageStep;
|
|
13532
13622
|
export declare type Strategy = io.flow.v0.enums.Strategy;
|
|
@@ -13558,6 +13648,7 @@ export declare type SurchargeSetting = io.flow.v0.models.SurchargeSetting;
|
|
|
13558
13648
|
export declare type SurchargeSettingDisplay = io.flow.v0.models.SurchargeSettingDisplay;
|
|
13559
13649
|
export declare type Tax = io.flow.v0.models.Tax;
|
|
13560
13650
|
export declare type TaxApplicability = io.flow.v0.enums.TaxApplicability;
|
|
13651
|
+
export declare type TaxBreakdown = io.flow.v0.models.TaxBreakdown;
|
|
13561
13652
|
export declare type TaxDutyCalculatorValidationError = io.flow.v0.models.TaxDutyCalculatorValidationError;
|
|
13562
13653
|
export declare type TaxDutyCalculatorValidationErrorCode = io.flow.v0.enums.TaxDutyCalculatorValidationErrorCode;
|
|
13563
13654
|
export declare type TaxDutyQuote = io.flow.v0.models.TaxDutyQuote;
|
|
@@ -13571,11 +13662,16 @@ export declare type TaxDutyQuoteSimpleShipping = io.flow.v0.models.TaxDutyQuoteS
|
|
|
13571
13662
|
export declare type TaxDutyQuoteSimpleShippingForm = io.flow.v0.models.TaxDutyQuoteSimpleShippingForm;
|
|
13572
13663
|
export declare type TaxDutyQuoteValues = io.flow.v0.models.TaxDutyQuoteValues;
|
|
13573
13664
|
export declare type TaxDutyTransactionReasonCode = io.flow.v0.enums.TaxDutyTransactionReasonCode;
|
|
13665
|
+
export declare type TaxJurisdictionType = io.flow.v0.enums.TaxJurisdictionType;
|
|
13574
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;
|
|
13575
13669
|
export declare type TaxRegistrationForm = io.flow.v0.models.TaxRegistrationForm;
|
|
13670
|
+
export declare type TaxRegistrationUpserted = io.flow.v0.models.TaxRegistrationUpserted;
|
|
13576
13671
|
export declare type TaxReport = io.flow.v0.models.TaxReport;
|
|
13577
13672
|
export declare type TaxReportType = io.flow.v0.enums.TaxReportType;
|
|
13578
13673
|
export declare type TaxSetting = io.flow.v0.unions.TaxSetting;
|
|
13674
|
+
export declare type TaxType = io.flow.v0.enums.TaxType;
|
|
13579
13675
|
export declare type TaxVerificationResult = io.flow.v0.enums.TaxVerificationResult;
|
|
13580
13676
|
export declare type TaxabilityType = io.flow.v0.enums.TaxabilityType;
|
|
13581
13677
|
export declare type TaxabilityValue = io.flow.v0.enums.TaxabilityValue;
|
|
@@ -13626,6 +13722,8 @@ export declare type TrackingEventVersion = io.flow.v0.models.TrackingEventVersio
|
|
|
13626
13722
|
export declare type TrackingForm = io.flow.v0.models.TrackingForm;
|
|
13627
13723
|
export declare type TrackingLabel = io.flow.v0.models.TrackingLabel;
|
|
13628
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;
|
|
13629
13727
|
export declare type TrackingLabelForm = io.flow.v0.models.TrackingLabelForm;
|
|
13630
13728
|
export declare type TrackingLabelSummary = io.flow.v0.models.TrackingLabelSummary;
|
|
13631
13729
|
export declare type TrackingLabelVersion = io.flow.v0.models.TrackingLabelVersion;
|
|
@@ -13656,6 +13754,9 @@ export declare type TransactionMetadataPaymentTransaction = io.flow.v0.models.Tr
|
|
|
13656
13754
|
export declare type TransactionMetadataShippingLabel = io.flow.v0.models.TransactionMetadataShippingLabel;
|
|
13657
13755
|
export declare type TransactionMetadataShippingLabelCarrier = io.flow.v0.models.TransactionMetadataShippingLabelCarrier;
|
|
13658
13756
|
export declare type TransactionMetadataTaxDuty = io.flow.v0.models.TransactionMetadataTaxDuty;
|
|
13757
|
+
export declare type TransactionMetadataTaxDutyActual = io.flow.v0.models.TransactionMetadataTaxDutyActual;
|
|
13758
|
+
export declare type TransactionMetadataTaxDutyDelta = io.flow.v0.models.TransactionMetadataTaxDutyDelta;
|
|
13759
|
+
export declare type TransactionMetadataTaxDutyEstimate = io.flow.v0.models.TransactionMetadataTaxDutyEstimate;
|
|
13659
13760
|
export declare type TransactionMetadataTrueup = io.flow.v0.models.TransactionMetadataTrueup;
|
|
13660
13761
|
export declare type TransactionMetadataTrueupBase = io.flow.v0.models.TransactionMetadataTrueupBase;
|
|
13661
13762
|
export declare type TransactionMetadataTrueupBaseData = io.flow.v0.models.TransactionMetadataTrueupBaseData;
|