@flowio/api-prop-types 10.16.89 → 10.16.91
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/lib/api.d.ts +209 -133
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +209 -133
- package/src/api.js +1865 -1823
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-prop-types",
|
|
3
|
-
"version": "10.16.
|
|
3
|
+
"version": "10.16.91",
|
|
4
4
|
"description": "PropType validators that work with Flow API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"flow",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"prop-types": "^15.7.0"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "13edc138093b0ffde7bb465d676930ec320158dc"
|
|
33
33
|
}
|
package/src/api.d.ts
CHANGED
|
@@ -779,6 +779,13 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
779
779
|
readonly 'transfer_group'?: string;
|
|
780
780
|
}
|
|
781
781
|
|
|
782
|
+
interface PaymentIntents {
|
|
783
|
+
readonly 'object': string;
|
|
784
|
+
readonly 'data': io.flow.stripe.v0.models.PaymentIntent[];
|
|
785
|
+
readonly 'has_more': boolean;
|
|
786
|
+
readonly 'url'?: string;
|
|
787
|
+
}
|
|
788
|
+
|
|
782
789
|
interface PaymentMethod {
|
|
783
790
|
readonly 'id': string;
|
|
784
791
|
readonly 'object': string;
|
|
@@ -2818,6 +2825,133 @@ declare namespace io.flow.common.v0.unions {
|
|
|
2818
2825
|
type RepeatSchedule = (io.flow.common.v0.models.RepeatHourly | io.flow.common.v0.models.RepeatDaily | io.flow.common.v0.models.RepeatWeekly | io.flow.common.v0.models.RepeatMonthly);
|
|
2819
2826
|
}
|
|
2820
2827
|
|
|
2828
|
+
declare namespace io.flow.token.v0.models {
|
|
2829
|
+
interface ChannelToken {
|
|
2830
|
+
readonly 'discriminator': 'channel_token';
|
|
2831
|
+
readonly 'id': string;
|
|
2832
|
+
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
2833
|
+
readonly 'user': io.flow.common.v0.models.UserReference;
|
|
2834
|
+
readonly 'partial': string;
|
|
2835
|
+
readonly 'cleartext'?: string;
|
|
2836
|
+
readonly 'created_at': string;
|
|
2837
|
+
readonly 'description'?: string;
|
|
2838
|
+
}
|
|
2839
|
+
|
|
2840
|
+
interface ChannelTokenForm {
|
|
2841
|
+
readonly 'channel_id': string;
|
|
2842
|
+
readonly 'description'?: string;
|
|
2843
|
+
}
|
|
2844
|
+
|
|
2845
|
+
interface ChannelTokenReference {
|
|
2846
|
+
readonly 'discriminator': 'channel_token_reference';
|
|
2847
|
+
readonly 'id': string;
|
|
2848
|
+
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
2849
|
+
readonly 'user': io.flow.common.v0.models.UserReference;
|
|
2850
|
+
}
|
|
2851
|
+
|
|
2852
|
+
interface Cleartext {
|
|
2853
|
+
readonly 'value': string;
|
|
2854
|
+
}
|
|
2855
|
+
|
|
2856
|
+
interface OrganizationToken {
|
|
2857
|
+
readonly 'discriminator': 'organization_token';
|
|
2858
|
+
readonly 'id': string;
|
|
2859
|
+
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
2860
|
+
readonly 'user': io.flow.common.v0.models.UserReference;
|
|
2861
|
+
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
2862
|
+
readonly 'partial': string;
|
|
2863
|
+
readonly 'created_at': string;
|
|
2864
|
+
readonly 'description'?: string;
|
|
2865
|
+
}
|
|
2866
|
+
|
|
2867
|
+
interface OrganizationTokenForm {
|
|
2868
|
+
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
2869
|
+
readonly 'description'?: string;
|
|
2870
|
+
}
|
|
2871
|
+
|
|
2872
|
+
interface OrganizationTokenFormV2 {
|
|
2873
|
+
readonly 'organization_id': string;
|
|
2874
|
+
readonly 'description'?: string;
|
|
2875
|
+
}
|
|
2876
|
+
|
|
2877
|
+
interface OrganizationTokenReference {
|
|
2878
|
+
readonly 'discriminator': 'organization_token_reference';
|
|
2879
|
+
readonly 'id': string;
|
|
2880
|
+
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
2881
|
+
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
2882
|
+
readonly 'user': io.flow.common.v0.models.UserReference;
|
|
2883
|
+
}
|
|
2884
|
+
|
|
2885
|
+
interface OrganizationTokenV2 {
|
|
2886
|
+
readonly 'discriminator': 'organization_token_v2';
|
|
2887
|
+
readonly 'id': string;
|
|
2888
|
+
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
2889
|
+
readonly 'user': io.flow.common.v0.models.UserReference;
|
|
2890
|
+
readonly 'partial': string;
|
|
2891
|
+
readonly 'cleartext'?: string;
|
|
2892
|
+
readonly 'created_at': string;
|
|
2893
|
+
readonly 'description'?: string;
|
|
2894
|
+
}
|
|
2895
|
+
|
|
2896
|
+
interface OrganizationTokenV2Reference {
|
|
2897
|
+
readonly 'discriminator': 'organization_token_v2_reference';
|
|
2898
|
+
readonly 'id': string;
|
|
2899
|
+
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
2900
|
+
}
|
|
2901
|
+
|
|
2902
|
+
interface PartnerToken {
|
|
2903
|
+
readonly 'discriminator': 'partner_token';
|
|
2904
|
+
readonly 'id': string;
|
|
2905
|
+
readonly 'partner': io.flow.token.v0.models.TokenPartnerReference;
|
|
2906
|
+
readonly 'user': io.flow.common.v0.models.UserReference;
|
|
2907
|
+
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
2908
|
+
readonly 'partial': string;
|
|
2909
|
+
readonly 'created_at': string;
|
|
2910
|
+
readonly 'description'?: string;
|
|
2911
|
+
}
|
|
2912
|
+
|
|
2913
|
+
interface PartnerTokenForm {
|
|
2914
|
+
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
2915
|
+
readonly 'description'?: string;
|
|
2916
|
+
}
|
|
2917
|
+
|
|
2918
|
+
interface PartnerTokenReference {
|
|
2919
|
+
readonly 'discriminator': 'partner_token_reference';
|
|
2920
|
+
readonly 'id': string;
|
|
2921
|
+
readonly 'partner': io.flow.token.v0.models.TokenPartnerReference;
|
|
2922
|
+
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
2923
|
+
readonly 'user': io.flow.common.v0.models.UserReference;
|
|
2924
|
+
}
|
|
2925
|
+
|
|
2926
|
+
interface TokenAuthenticationForm {
|
|
2927
|
+
readonly 'token': string;
|
|
2928
|
+
}
|
|
2929
|
+
|
|
2930
|
+
interface TokenPartnerReference {
|
|
2931
|
+
readonly 'id': string;
|
|
2932
|
+
}
|
|
2933
|
+
|
|
2934
|
+
interface TokenRbacAuthenticationForm {
|
|
2935
|
+
readonly 'token': string;
|
|
2936
|
+
readonly 'method': string;
|
|
2937
|
+
readonly 'path_pattern': string;
|
|
2938
|
+
readonly 'path': string;
|
|
2939
|
+
}
|
|
2940
|
+
|
|
2941
|
+
interface TokenValidation {
|
|
2942
|
+
readonly 'status': string;
|
|
2943
|
+
}
|
|
2944
|
+
|
|
2945
|
+
interface TokenValidationForm {
|
|
2946
|
+
readonly 'token': string;
|
|
2947
|
+
}
|
|
2948
|
+
}
|
|
2949
|
+
|
|
2950
|
+
declare namespace io.flow.token.v0.unions {
|
|
2951
|
+
type Token = (io.flow.token.v0.models.ChannelToken | io.flow.token.v0.models.OrganizationToken | io.flow.token.v0.models.OrganizationTokenV2 | io.flow.token.v0.models.PartnerToken);
|
|
2952
|
+
type TokenReference = (io.flow.token.v0.models.ChannelTokenReference | io.flow.token.v0.models.OrganizationTokenReference | io.flow.token.v0.models.OrganizationTokenV2Reference | io.flow.token.v0.models.PartnerTokenReference);
|
|
2953
|
+
}
|
|
2954
|
+
|
|
2821
2955
|
declare namespace io.flow.error.v0.enums {
|
|
2822
2956
|
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
2823
2957
|
}
|
|
@@ -3855,6 +3989,38 @@ declare namespace io.flow.merchant.of.record.v0.enums {
|
|
|
3855
3989
|
type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can' | 'ge-usa';
|
|
3856
3990
|
}
|
|
3857
3991
|
|
|
3992
|
+
declare namespace io.flow.tech.onboarding.playground.v0.enums {
|
|
3993
|
+
type AldoItemType = 'physical' | 'digital';
|
|
3994
|
+
}
|
|
3995
|
+
|
|
3996
|
+
declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
3997
|
+
interface AldoItem {
|
|
3998
|
+
readonly 'id': string;
|
|
3999
|
+
readonly 'number': string;
|
|
4000
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
4001
|
+
readonly 'description'?: string;
|
|
4002
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AldoItemType;
|
|
4003
|
+
readonly 'added_on': string;
|
|
4004
|
+
}
|
|
4005
|
+
|
|
4006
|
+
interface AldoItemForm {
|
|
4007
|
+
readonly 'number': string;
|
|
4008
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
4009
|
+
readonly 'description'?: string;
|
|
4010
|
+
readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AldoItemType;
|
|
4011
|
+
readonly 'added_on': string;
|
|
4012
|
+
}
|
|
4013
|
+
|
|
4014
|
+
interface JeanDemoItem {
|
|
4015
|
+
readonly 'id': string;
|
|
4016
|
+
readonly 'name': string;
|
|
4017
|
+
}
|
|
4018
|
+
|
|
4019
|
+
interface TechOnboardingDescription {
|
|
4020
|
+
readonly 'description': string;
|
|
4021
|
+
}
|
|
4022
|
+
}
|
|
4023
|
+
|
|
3858
4024
|
declare namespace io.flow.currency.v0.models {
|
|
3859
4025
|
interface Rate {
|
|
3860
4026
|
readonly 'id': string;
|
|
@@ -4675,7 +4841,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4675
4841
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
4676
4842
|
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
4677
4843
|
type Environment = 'sandbox' | 'production';
|
|
4678
|
-
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' | 'catalog_item_upserted' | 'catalog_item_deleted' | 'catalog_item_upserted_v2' | 'catalog_item_deleted_v2' | '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' | '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' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | '
|
|
4844
|
+
type EventType = 'test_upserted' | 'generate_load' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'catalog_item_upserted' | 'catalog_item_deleted' | 'catalog_item_upserted_v2' | 'catalog_item_deleted_v2' | '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' | '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' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | 'available_promotions_upserted' | 'available_promotions_deleted' | 'available_promotions_upserted_v2' | 'available_promotions_deleted_v2' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'currency_format_deleted' | 'currency_format_upserted' | 'experience_deleted' | 'experience_upserted' | 'experience_deleted_v2' | 'experience_upserted_v2' | 'country_status_upserted' | 'country_status_deleted' | 'experience_price_book_mapping_deleted' | 'experience_price_book_mapping_upserted' | 'experience_logistics_settings_upserted' | 'experience_logistics_settings_deleted' | 'item_margin_deleted_v2' | 'item_margin_upserted_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'label_format_deleted' | 'label_format_upserted' | 'order_deleted' | 'order_upserted' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted' | 'order_identifier_upserted' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v2' | 'order_identifier_upserted_v3' | 'order_replacement_upserted' | 'order_replacement_deleted' | 'pricing_deleted' | 'pricing_upserted' | 'order_service_change_request' | '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' | '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' | 'import_completed_v2' | 'import_failed_v2' | 'label_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' | 'local_item_upserted' | 'local_item_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'checkout_optin_responses_upserted' | 'checkout_optin_responses_deleted' | 'browse_optin_responses_upserted' | 'browse_optin_responses_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' | 'organization_default_configurations_upserted' | 'organization_default_configurations_deleted' | 'ecommerce_platform_upserted' | 'ecommerce_platform_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' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | 'organization_rates_published' | 'ratecard_lane_upserted' | 'ratecard_lane_deleted' | 'ratecard_upserted' | 'ratecard_deleted' | 'product_restriction_result_upserted' | 'product_restriction_result_deleted' | 'return_upserted' | 'return_deleted' | 'return_upserted_v2' | 'return_deleted_v2' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
|
|
4679
4845
|
type ExceptionType = 'open' | 'closed';
|
|
4680
4846
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
4681
4847
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -4715,7 +4881,6 @@ declare namespace io.flow.v0.enums {
|
|
|
4715
4881
|
type LanePreselectPreference = 'lowest_cost' | 'default_tier';
|
|
4716
4882
|
type LaneStrategy = 'oldest' | 'fastest' | 'lowest_cost' | 'highest_priority';
|
|
4717
4883
|
type LevyComponent = 'goods' | 'duty' | 'insurance' | 'freight' | 'vat';
|
|
4718
|
-
type LevyInclusion = 'tax' | 'duty';
|
|
4719
4884
|
type LevyStrategy = 'minimum' | 'average' | 'maximum';
|
|
4720
4885
|
type LocationErrorCode = 'address_required' | 'ip_invalid' | 'ip_required' | 'timezone_unavailable';
|
|
4721
4886
|
type LogisticsFormatPreference = 'shopify_console' | 'existing_3pl_integration' | 'byo_integration';
|
|
@@ -4810,7 +4975,6 @@ declare namespace io.flow.v0.enums {
|
|
|
4810
4975
|
type SyncStreamType = 'submitted_order' | 'placed_order';
|
|
4811
4976
|
type SyncUnitOfTime = 'day' | 'hour' | 'minute' | 'second';
|
|
4812
4977
|
type TaxApplicability = 'none' | 'all';
|
|
4813
|
-
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';
|
|
4814
4978
|
type TaxReportType = 'consumer' | 'b2b';
|
|
4815
4979
|
type TaxVerificationResult = 'valid' | 'invalid' | 'unable_to_validate';
|
|
4816
4980
|
type TaxabilityType = 'tax_rule';
|
|
@@ -4840,7 +5004,6 @@ declare namespace io.flow.v0.enums {
|
|
|
4840
5004
|
type WebhookStatus = 'pending' | 'success' | 'failure' | 'ignored';
|
|
4841
5005
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
4842
5006
|
type ZeroAmountIndicator = 'zero' | 'free';
|
|
4843
|
-
type ZeroLevyReasonCode = 'zero_basis' | 'zero_rate_on_goods' | 'value_rounds_to_zero' | 'order_below_de_minimis_threshold' | 'amount_below_de_minimis_threshold' | 'delivered_unpaid' | 'duty_free_domestic' | 'duty_free_intra_community' | 'duty_free_reimport' | 'duty_free_by_trade_agreement';
|
|
4844
5007
|
}
|
|
4845
5008
|
|
|
4846
5009
|
declare namespace io.flow.v0.models {
|
|
@@ -5155,6 +5318,20 @@ declare namespace io.flow.v0.models {
|
|
|
5155
5318
|
readonly 'fingerprint_token': string;
|
|
5156
5319
|
}
|
|
5157
5320
|
|
|
5321
|
+
interface AldoItemDeleted {
|
|
5322
|
+
readonly 'discriminator': 'aldo_item_deleted';
|
|
5323
|
+
readonly 'event_id': string;
|
|
5324
|
+
readonly 'timestamp': string;
|
|
5325
|
+
readonly 'id': string;
|
|
5326
|
+
}
|
|
5327
|
+
|
|
5328
|
+
interface AldoItemUpserted {
|
|
5329
|
+
readonly 'discriminator': 'aldo_item_upserted';
|
|
5330
|
+
readonly 'event_id': string;
|
|
5331
|
+
readonly 'timestamp': string;
|
|
5332
|
+
readonly 'item': io.flow.tech.onboarding.playground.v0.models.AldoItem;
|
|
5333
|
+
}
|
|
5334
|
+
|
|
5158
5335
|
interface Allocation {
|
|
5159
5336
|
readonly 'order': io.flow.v0.models.AllocationOrderSummary;
|
|
5160
5337
|
readonly 'details': io.flow.v0.unions.AllocationDetail[];
|
|
@@ -7699,28 +7876,12 @@ declare namespace io.flow.v0.models {
|
|
|
7699
7876
|
readonly 'payment': io.flow.v0.models.EmailPaymentSummary;
|
|
7700
7877
|
}
|
|
7701
7878
|
|
|
7702
|
-
interface EmailNotificationDeleted {
|
|
7703
|
-
readonly 'discriminator': 'email_notification_deleted';
|
|
7704
|
-
readonly 'event_id': string;
|
|
7705
|
-
readonly 'timestamp': string;
|
|
7706
|
-
readonly 'organization': string;
|
|
7707
|
-
readonly 'notification': io.flow.v0.models.EmailNotification;
|
|
7708
|
-
}
|
|
7709
|
-
|
|
7710
7879
|
interface EmailNotificationForm {
|
|
7711
7880
|
readonly 'to': io.flow.v0.models.EmailRecipient;
|
|
7712
7881
|
readonly 'created_at': string;
|
|
7713
7882
|
readonly 'data': io.flow.v0.unions.EmailNotificationData;
|
|
7714
7883
|
}
|
|
7715
7884
|
|
|
7716
|
-
interface EmailNotificationUpserted {
|
|
7717
|
-
readonly 'discriminator': 'email_notification_upserted';
|
|
7718
|
-
readonly 'event_id': string;
|
|
7719
|
-
readonly 'timestamp': string;
|
|
7720
|
-
readonly 'organization': string;
|
|
7721
|
-
readonly 'notification': io.flow.v0.models.EmailNotification;
|
|
7722
|
-
}
|
|
7723
|
-
|
|
7724
7885
|
interface EmailPaymentSummary {
|
|
7725
7886
|
readonly 'refund': io.flow.v0.models.Refund;
|
|
7726
7887
|
}
|
|
@@ -12140,6 +12301,17 @@ declare namespace io.flow.v0.models {
|
|
|
12140
12301
|
readonly 'source': io.flow.v0.enums.DeliveryWindowComponentSource;
|
|
12141
12302
|
}
|
|
12142
12303
|
|
|
12304
|
+
interface Product {
|
|
12305
|
+
readonly 'id': string;
|
|
12306
|
+
readonly 'organization_id': string;
|
|
12307
|
+
readonly 'number': string;
|
|
12308
|
+
readonly 'taxonomy_category'?: io.flow.v0.models.ProductTaxonomyCategory;
|
|
12309
|
+
readonly 'taxonomy_data'?: io.flow.v0.models.ProductTaxonomyData[];
|
|
12310
|
+
readonly 'item_numbers': string[];
|
|
12311
|
+
readonly 'updated_at': string;
|
|
12312
|
+
readonly 'deleted_at'?: string;
|
|
12313
|
+
}
|
|
12314
|
+
|
|
12143
12315
|
interface ProductRestrictionResult {
|
|
12144
12316
|
readonly 'id': string;
|
|
12145
12317
|
readonly 'product_id': string;
|
|
@@ -12169,6 +12341,16 @@ declare namespace io.flow.v0.models {
|
|
|
12169
12341
|
readonly 'product_restriction_result': io.flow.v0.models.ProductRestrictionResult;
|
|
12170
12342
|
}
|
|
12171
12343
|
|
|
12344
|
+
interface ProductTaxonomyCategory {
|
|
12345
|
+
readonly 'name': string;
|
|
12346
|
+
readonly 'fullname': string;
|
|
12347
|
+
}
|
|
12348
|
+
|
|
12349
|
+
interface ProductTaxonomyData {
|
|
12350
|
+
readonly 'key': string;
|
|
12351
|
+
readonly 'value': string[];
|
|
12352
|
+
}
|
|
12353
|
+
|
|
12172
12354
|
interface PromotionTrigger {
|
|
12173
12355
|
readonly 'type': io.flow.v0.enums.PromotionTriggerType;
|
|
12174
12356
|
readonly 'min': io.flow.v0.models.Price;
|
|
@@ -13915,14 +14097,6 @@ declare namespace io.flow.v0.models {
|
|
|
13915
14097
|
readonly 'statement': io.flow.v0.models.Statement;
|
|
13916
14098
|
}
|
|
13917
14099
|
|
|
13918
|
-
interface StreetAddress {
|
|
13919
|
-
readonly 'streets'?: string[];
|
|
13920
|
-
readonly 'city'?: string;
|
|
13921
|
-
readonly 'province'?: string;
|
|
13922
|
-
readonly 'postal'?: string;
|
|
13923
|
-
readonly 'country'?: string;
|
|
13924
|
-
}
|
|
13925
|
-
|
|
13926
14100
|
interface StripeAuthenticationData {
|
|
13927
14101
|
readonly 'discriminator': 'stripe_authentication_data';
|
|
13928
14102
|
readonly 'secret_key_reference': string;
|
|
@@ -14150,92 +14324,6 @@ declare namespace io.flow.v0.models {
|
|
|
14150
14324
|
readonly 'deminimis'?: io.flow.v0.unions.Deminimis;
|
|
14151
14325
|
}
|
|
14152
14326
|
|
|
14153
|
-
interface TaxDutyCalculatorValidationError {
|
|
14154
|
-
readonly 'code': io.flow.v0.enums.TaxDutyCalculatorValidationErrorCode;
|
|
14155
|
-
readonly 'messages': string[];
|
|
14156
|
-
}
|
|
14157
|
-
|
|
14158
|
-
interface TaxDutyQuote {
|
|
14159
|
-
readonly 'id': string;
|
|
14160
|
-
readonly 'primary_identifier': string;
|
|
14161
|
-
readonly 'attributes'?: Record<string, string>;
|
|
14162
|
-
readonly 'merchant_of_record': io.flow.v0.enums.MerchantOfRecord;
|
|
14163
|
-
readonly 'delivered_duty': io.flow.v0.enums.DeliveredDuty;
|
|
14164
|
-
readonly 'destination': io.flow.v0.models.StreetAddress;
|
|
14165
|
-
readonly 'quote_date': string;
|
|
14166
|
-
readonly 'currency': string;
|
|
14167
|
-
readonly 'lines': io.flow.v0.models.TaxDutyQuoteLineItem[];
|
|
14168
|
-
readonly 'shipping': io.flow.v0.models.TaxDutyQuoteSimpleShipping[];
|
|
14169
|
-
readonly 'total_values': io.flow.v0.models.TaxDutyQuoteValues;
|
|
14170
|
-
}
|
|
14171
|
-
|
|
14172
|
-
interface TaxDutyQuoteFeeValue {
|
|
14173
|
-
readonly 'amount': number;
|
|
14174
|
-
readonly 'description': string;
|
|
14175
|
-
readonly 'amount_refundable_on_return': number;
|
|
14176
|
-
}
|
|
14177
|
-
|
|
14178
|
-
interface TaxDutyQuoteForm {
|
|
14179
|
-
readonly 'primary_identifier': string;
|
|
14180
|
-
readonly 'attributes'?: Record<string, string>;
|
|
14181
|
-
readonly 'delivered_duty': io.flow.v0.enums.DeliveredDuty;
|
|
14182
|
-
readonly 'destination': io.flow.v0.models.StreetAddress;
|
|
14183
|
-
readonly 'currency': string;
|
|
14184
|
-
readonly 'lines': io.flow.v0.models.TaxDutyQuoteLineItemForm[];
|
|
14185
|
-
readonly 'shipping': io.flow.v0.models.TaxDutyQuoteSimpleShippingForm[];
|
|
14186
|
-
readonly 'includes'?: io.flow.v0.enums.LevyInclusion[];
|
|
14187
|
-
}
|
|
14188
|
-
|
|
14189
|
-
interface TaxDutyQuoteLineItem {
|
|
14190
|
-
readonly 'primary_identifier': string;
|
|
14191
|
-
readonly 'attributes'?: Record<string, string>;
|
|
14192
|
-
readonly 'ship_from': io.flow.v0.models.StreetAddress;
|
|
14193
|
-
readonly 'quantity': number;
|
|
14194
|
-
readonly 'unit_values': io.flow.v0.models.TaxDutyQuoteValues;
|
|
14195
|
-
readonly 'country_of_origin': string;
|
|
14196
|
-
readonly 'hs_code': string;
|
|
14197
|
-
}
|
|
14198
|
-
|
|
14199
|
-
interface TaxDutyQuoteLineItemForm {
|
|
14200
|
-
readonly 'primary_identifier': string;
|
|
14201
|
-
readonly 'attributes'?: Record<string, string>;
|
|
14202
|
-
readonly 'ship_from': io.flow.v0.models.StreetAddress;
|
|
14203
|
-
readonly 'quantity': number;
|
|
14204
|
-
readonly 'unit_price': number;
|
|
14205
|
-
readonly 'unit_weight'?: io.flow.v0.models.Measurement;
|
|
14206
|
-
readonly 'country_of_origin'?: string;
|
|
14207
|
-
readonly 'hs_code'?: string;
|
|
14208
|
-
readonly 'includes': io.flow.v0.enums.LevyInclusion[];
|
|
14209
|
-
}
|
|
14210
|
-
|
|
14211
|
-
interface TaxDutyQuoteSimpleLevyValue {
|
|
14212
|
-
readonly 'discriminator': 'tax_duty_quote_simple_levy_value';
|
|
14213
|
-
readonly 'amount': number;
|
|
14214
|
-
readonly 'rate': number;
|
|
14215
|
-
readonly 'description': string;
|
|
14216
|
-
readonly 'zero_levy_reason'?: io.flow.v0.enums.ZeroLevyReasonCode[];
|
|
14217
|
-
readonly 'amount_refundable_on_return': number;
|
|
14218
|
-
}
|
|
14219
|
-
|
|
14220
|
-
interface TaxDutyQuoteSimpleShipping {
|
|
14221
|
-
readonly 'values': io.flow.v0.models.TaxDutyQuoteValues;
|
|
14222
|
-
readonly 'ship_from': io.flow.v0.models.StreetAddress;
|
|
14223
|
-
}
|
|
14224
|
-
|
|
14225
|
-
interface TaxDutyQuoteSimpleShippingForm {
|
|
14226
|
-
readonly 'price': number;
|
|
14227
|
-
readonly 'includes': io.flow.v0.enums.LevyInclusion[];
|
|
14228
|
-
readonly 'ship_from'?: io.flow.v0.models.StreetAddress;
|
|
14229
|
-
}
|
|
14230
|
-
|
|
14231
|
-
interface TaxDutyQuoteValues {
|
|
14232
|
-
readonly 'price': number;
|
|
14233
|
-
readonly 'duty': io.flow.v0.models.TaxDutyQuoteSimpleLevyValue;
|
|
14234
|
-
readonly 'tax': io.flow.v0.models.TaxDutyQuoteSimpleLevyValue;
|
|
14235
|
-
readonly 'fees': io.flow.v0.models.TaxDutyQuoteFeeValue;
|
|
14236
|
-
readonly 'total': number;
|
|
14237
|
-
}
|
|
14238
|
-
|
|
14239
14327
|
interface TaxRegistration {
|
|
14240
14328
|
readonly 'id': string;
|
|
14241
14329
|
readonly 'key': string;
|
|
@@ -14473,6 +14561,7 @@ declare namespace io.flow.v0.models {
|
|
|
14473
14561
|
readonly 'timestamp': string;
|
|
14474
14562
|
readonly 'description'?: string;
|
|
14475
14563
|
readonly 'aggregator_status_code'?: string;
|
|
14564
|
+
readonly 'created_at'?: string;
|
|
14476
14565
|
}
|
|
14477
14566
|
|
|
14478
14567
|
interface TrackingEventForm {
|
|
@@ -15056,7 +15145,7 @@ declare namespace io.flow.v0.unions {
|
|
|
15056
15145
|
type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
|
|
15057
15146
|
type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
|
|
15058
15147
|
type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
|
|
15059
|
-
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.CatalogItemUpserted | io.flow.v0.models.CatalogItemDeleted | io.flow.v0.models.CatalogItemUpsertedV2 | io.flow.v0.models.CatalogItemDeletedV2 | 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.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.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.
|
|
15148
|
+
type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.AldoItemUpserted | io.flow.v0.models.AldoItemDeleted | 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.CatalogItemUpserted | io.flow.v0.models.CatalogItemDeleted | io.flow.v0.models.CatalogItemUpsertedV2 | io.flow.v0.models.CatalogItemDeletedV2 | 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.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.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | 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.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.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.LabelUpserted | 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.LocalItemUpserted | io.flow.v0.models.LocalItemDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.CheckoutOptinResponsesUpserted | io.flow.v0.models.CheckoutOptinResponsesDeleted | io.flow.v0.models.BrowseOptinResponsesUpserted | io.flow.v0.models.BrowseOptinResponsesDeleted | 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.OrganizationDefaultConfigurationsUpserted | io.flow.v0.models.OrganizationDefaultConfigurationsDeleted | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | 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.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.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.ReturnUpserted | io.flow.v0.models.ReturnDeleted | io.flow.v0.models.ReturnUpsertedV2 | io.flow.v0.models.ReturnDeletedV2 | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted);
|
|
15060
15149
|
type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary);
|
|
15061
15150
|
type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
|
|
15062
15151
|
type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
|
|
@@ -15135,7 +15224,6 @@ declare namespace io.flow.v0.unions {
|
|
|
15135
15224
|
type ShippingNotificationForm = (io.flow.v0.models.DetailedShippingNotificationForm | io.flow.v0.models.SinglePackageShippingNotificationForm | io.flow.v0.models.SummaryShippingNotificationForm);
|
|
15136
15225
|
type ShopifyCartAddForm = (io.flow.v0.models.ShopifyCartAddSingleForm | io.flow.v0.models.ShopifyCartAddMultipleForm);
|
|
15137
15226
|
type ShopifyEventBucket = (io.flow.v0.models.ShopifyItemEventBucket);
|
|
15138
|
-
type TaxDutyQuoteLevyValue = (io.flow.v0.models.TaxDutyQuoteSimpleLevyValue);
|
|
15139
15227
|
type TaxSetting = (io.flow.v0.models.AvalaraTaxSetting | io.flow.v0.models.AvalaraTaxCsvSetting);
|
|
15140
15228
|
type ThreedsChallengeAction = (io.flow.v0.models.ThreedsTwoChallengeRequest);
|
|
15141
15229
|
type ThreedsIdentifyAction = (io.flow.v0.models.ThreedsTwoMethod);
|
|
@@ -15241,7 +15329,6 @@ export const laneDirection: PropTypes.Requireable<io.flow.v0.enums.LaneDirection
|
|
|
15241
15329
|
export const lanePreselectPreference: PropTypes.Requireable<io.flow.v0.enums.LanePreselectPreference>;
|
|
15242
15330
|
export const laneStrategy: PropTypes.Requireable<io.flow.v0.enums.LaneStrategy>;
|
|
15243
15331
|
export const levyComponent: PropTypes.Requireable<io.flow.v0.enums.LevyComponent>;
|
|
15244
|
-
export const levyInclusion: PropTypes.Requireable<io.flow.v0.enums.LevyInclusion>;
|
|
15245
15332
|
export const levyStrategy: PropTypes.Requireable<io.flow.v0.enums.LevyStrategy>;
|
|
15246
15333
|
export const locationErrorCode: PropTypes.Requireable<io.flow.v0.enums.LocationErrorCode>;
|
|
15247
15334
|
export const logisticsFormatPreference: PropTypes.Requireable<io.flow.v0.enums.LogisticsFormatPreference>;
|
|
@@ -15336,7 +15423,6 @@ export const syncRecordFailureReason: PropTypes.Requireable<io.flow.v0.enums.Syn
|
|
|
15336
15423
|
export const syncStreamType: PropTypes.Requireable<io.flow.v0.enums.SyncStreamType>;
|
|
15337
15424
|
export const syncUnitOfTime: PropTypes.Requireable<io.flow.v0.enums.SyncUnitOfTime>;
|
|
15338
15425
|
export const taxApplicability: PropTypes.Requireable<io.flow.v0.enums.TaxApplicability>;
|
|
15339
|
-
export const taxDutyCalculatorValidationErrorCode: PropTypes.Requireable<io.flow.v0.enums.TaxDutyCalculatorValidationErrorCode>;
|
|
15340
15426
|
export const taxReportType: PropTypes.Requireable<io.flow.v0.enums.TaxReportType>;
|
|
15341
15427
|
export const taxVerificationResult: PropTypes.Requireable<io.flow.v0.enums.TaxVerificationResult>;
|
|
15342
15428
|
export const taxabilityType: PropTypes.Requireable<io.flow.v0.enums.TaxabilityType>;
|
|
@@ -15366,7 +15452,6 @@ export const visibility: PropTypes.Requireable<io.flow.v0.enums.Visibility>;
|
|
|
15366
15452
|
export const webhookStatus: PropTypes.Requireable<io.flow.v0.enums.WebhookStatus>;
|
|
15367
15453
|
export const withholdingDeductionType: PropTypes.Requireable<io.flow.v0.enums.WithholdingDeductionType>;
|
|
15368
15454
|
export const zeroAmountIndicator: PropTypes.Requireable<io.flow.v0.enums.ZeroAmountIndicator>;
|
|
15369
|
-
export const zeroLevyReasonCode: PropTypes.Requireable<io.flow.v0.enums.ZeroLevyReasonCode>;
|
|
15370
15455
|
export const abandonedOrderEmailSettings: PropTypes.Requireable<io.flow.v0.models.AbandonedOrderEmailSettings>;
|
|
15371
15456
|
export const abandonedOrderPromotion: PropTypes.Requireable<io.flow.v0.models.AbandonedOrderPromotion>;
|
|
15372
15457
|
export const abandonedOrderPromotionDiscountDetails: PropTypes.Requireable<io.flow.v0.models.AbandonedOrderPromotionDiscountDetails>;
|
|
@@ -15410,6 +15495,8 @@ export const adyenIdentifyShopperData: PropTypes.Requireable<io.flow.v0.models.A
|
|
|
15410
15495
|
export const adyenNativeActionDetails: PropTypes.Requireable<io.flow.v0.models.AdyenNativeActionDetails>;
|
|
15411
15496
|
export const adyenV3ChallengeToken: PropTypes.Requireable<io.flow.v0.models.AdyenV3ChallengeToken>;
|
|
15412
15497
|
export const adyenV3FingerprintToken: PropTypes.Requireable<io.flow.v0.models.AdyenV3FingerprintToken>;
|
|
15498
|
+
export const aldoItemDeleted: PropTypes.Requireable<io.flow.v0.models.AldoItemDeleted>;
|
|
15499
|
+
export const aldoItemUpserted: PropTypes.Requireable<io.flow.v0.models.AldoItemUpserted>;
|
|
15413
15500
|
export const allocation: PropTypes.Requireable<io.flow.v0.models.Allocation>;
|
|
15414
15501
|
export const allocationDeletedV2: PropTypes.Requireable<io.flow.v0.models.AllocationDeletedV2>;
|
|
15415
15502
|
export const allocationDetailComponent: PropTypes.Requireable<io.flow.v0.models.AllocationDetailComponent>;
|
|
@@ -15757,9 +15844,7 @@ export const emailAbandonedOrderUrls: PropTypes.Requireable<io.flow.v0.models.Em
|
|
|
15757
15844
|
export const emailNotification: PropTypes.Requireable<io.flow.v0.models.EmailNotification>;
|
|
15758
15845
|
export const emailNotificationAbandonedOrder: PropTypes.Requireable<io.flow.v0.models.EmailNotificationAbandonedOrder>;
|
|
15759
15846
|
export const emailNotificationDataRefund: PropTypes.Requireable<io.flow.v0.models.EmailNotificationDataRefund>;
|
|
15760
|
-
export const emailNotificationDeleted: PropTypes.Requireable<io.flow.v0.models.EmailNotificationDeleted>;
|
|
15761
15847
|
export const emailNotificationForm: PropTypes.Requireable<io.flow.v0.models.EmailNotificationForm>;
|
|
15762
|
-
export const emailNotificationUpserted: PropTypes.Requireable<io.flow.v0.models.EmailNotificationUpserted>;
|
|
15763
15848
|
export const emailPaymentSummary: PropTypes.Requireable<io.flow.v0.models.EmailPaymentSummary>;
|
|
15764
15849
|
export const emailRecipient: PropTypes.Requireable<io.flow.v0.models.EmailRecipient>;
|
|
15765
15850
|
export const emailVerification: PropTypes.Requireable<io.flow.v0.models.EmailVerification>;
|
|
@@ -16385,9 +16470,12 @@ export const pricingSettings: PropTypes.Requireable<io.flow.v0.models.PricingSet
|
|
|
16385
16470
|
export const pricingUpserted: PropTypes.Requireable<io.flow.v0.models.PricingUpserted>;
|
|
16386
16471
|
export const pricingVersion: PropTypes.Requireable<io.flow.v0.models.PricingVersion>;
|
|
16387
16472
|
export const processingEstimate: PropTypes.Requireable<io.flow.v0.models.ProcessingEstimate>;
|
|
16473
|
+
export const product: PropTypes.Requireable<io.flow.v0.models.Product>;
|
|
16388
16474
|
export const productRestrictionResult: PropTypes.Requireable<io.flow.v0.models.ProductRestrictionResult>;
|
|
16389
16475
|
export const productRestrictionResultDeleted: PropTypes.Requireable<io.flow.v0.models.ProductRestrictionResultDeleted>;
|
|
16390
16476
|
export const productRestrictionResultUpserted: PropTypes.Requireable<io.flow.v0.models.ProductRestrictionResultUpserted>;
|
|
16477
|
+
export const productTaxonomyCategory: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyCategory>;
|
|
16478
|
+
export const productTaxonomyData: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyData>;
|
|
16391
16479
|
export const promotionTrigger: PropTypes.Requireable<io.flow.v0.models.PromotionTrigger>;
|
|
16392
16480
|
export const promotionTriggerForm: PropTypes.Requireable<io.flow.v0.models.PromotionTriggerForm>;
|
|
16393
16481
|
export const promotions: PropTypes.Requireable<io.flow.v0.models.Promotions>;
|
|
@@ -16616,7 +16704,6 @@ export const solidusVariantExportType: PropTypes.Requireable<io.flow.v0.models.S
|
|
|
16616
16704
|
export const statement: PropTypes.Requireable<io.flow.v0.models.Statement>;
|
|
16617
16705
|
export const statementDeleted: PropTypes.Requireable<io.flow.v0.models.StatementDeleted>;
|
|
16618
16706
|
export const statementUpserted: PropTypes.Requireable<io.flow.v0.models.StatementUpserted>;
|
|
16619
|
-
export const streetAddress: PropTypes.Requireable<io.flow.v0.models.StreetAddress>;
|
|
16620
16707
|
export const stripeAuthenticationData: PropTypes.Requireable<io.flow.v0.models.StripeAuthenticationData>;
|
|
16621
16708
|
export const stripeAuthenticationDataForm: PropTypes.Requireable<io.flow.v0.models.StripeAuthenticationDataForm>;
|
|
16622
16709
|
export const stripeAuthorizationResultActionDetails: PropTypes.Requireable<io.flow.v0.models.StripeAuthorizationResultActionDetails>;
|
|
@@ -16651,16 +16738,6 @@ export const syncStreamReference: PropTypes.Requireable<io.flow.v0.models.SyncSt
|
|
|
16651
16738
|
export const syncStreamSettings: PropTypes.Requireable<io.flow.v0.models.SyncStreamSettings>;
|
|
16652
16739
|
export const syncStreamSettingsForm: PropTypes.Requireable<io.flow.v0.models.SyncStreamSettingsForm>;
|
|
16653
16740
|
export const tax: PropTypes.Requireable<io.flow.v0.models.Tax>;
|
|
16654
|
-
export const taxDutyCalculatorValidationError: PropTypes.Requireable<io.flow.v0.models.TaxDutyCalculatorValidationError>;
|
|
16655
|
-
export const taxDutyQuote: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuote>;
|
|
16656
|
-
export const taxDutyQuoteFeeValue: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteFeeValue>;
|
|
16657
|
-
export const taxDutyQuoteForm: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteForm>;
|
|
16658
|
-
export const taxDutyQuoteLineItem: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteLineItem>;
|
|
16659
|
-
export const taxDutyQuoteLineItemForm: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteLineItemForm>;
|
|
16660
|
-
export const taxDutyQuoteSimpleLevyValue: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteSimpleLevyValue>;
|
|
16661
|
-
export const taxDutyQuoteSimpleShipping: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteSimpleShipping>;
|
|
16662
|
-
export const taxDutyQuoteSimpleShippingForm: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteSimpleShippingForm>;
|
|
16663
|
-
export const taxDutyQuoteValues: PropTypes.Requireable<io.flow.v0.models.TaxDutyQuoteValues>;
|
|
16664
16741
|
export const taxRegistration: PropTypes.Requireable<io.flow.v0.models.TaxRegistration>;
|
|
16665
16742
|
export const taxRegistrationForm: PropTypes.Requireable<io.flow.v0.models.TaxRegistrationForm>;
|
|
16666
16743
|
export const taxReport: PropTypes.Requireable<io.flow.v0.models.TaxReport>;
|
|
@@ -16870,7 +16947,6 @@ export const shippingLabelForm: PropTypes.Requireable<io.flow.v0.unions.Shipping
|
|
|
16870
16947
|
export const shippingNotificationForm: PropTypes.Requireable<io.flow.v0.unions.ShippingNotificationForm>;
|
|
16871
16948
|
export const shopifyCartAddForm: PropTypes.Requireable<io.flow.v0.unions.ShopifyCartAddForm>;
|
|
16872
16949
|
export const shopifyEventBucket: PropTypes.Requireable<io.flow.v0.unions.ShopifyEventBucket>;
|
|
16873
|
-
export const taxDutyQuoteLevyValue: PropTypes.Requireable<io.flow.v0.unions.TaxDutyQuoteLevyValue>;
|
|
16874
16950
|
export const taxSetting: PropTypes.Requireable<io.flow.v0.unions.TaxSetting>;
|
|
16875
16951
|
export const threedsChallengeAction: PropTypes.Requireable<io.flow.v0.unions.ThreedsChallengeAction>;
|
|
16876
16952
|
export const threedsIdentifyAction: PropTypes.Requireable<io.flow.v0.unions.ThreedsIdentifyAction>;
|