@flowio/types 11.24.130 → 11.24.132
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +952 -73
- package/dist/api.d.ts +366 -256
- package/package.json +2 -2
- package/src/api-internal.ts +1177 -91
- package/src/api.ts +451 -315
package/src/api.ts
CHANGED
|
@@ -3141,6 +3141,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
3141
3141
|
| 'unsupported_virtual_goods'
|
|
3142
3142
|
| 'non_matching_currencies'
|
|
3143
3143
|
| 'unsupported_order_edit'
|
|
3144
|
+
| 'order_allocation_duties_mismatch'
|
|
3144
3145
|
| 'order_missing';
|
|
3145
3146
|
type ChannelOrderAcceptanceStatus =
|
|
3146
3147
|
| 'accepted'
|
|
@@ -3202,6 +3203,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
3202
3203
|
readonly order_updated_at?: string;
|
|
3203
3204
|
readonly order_edit_summary?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
3204
3205
|
readonly payment_source?: io.flow.channel.internal.v0.enums.OrderPaymentSourceType;
|
|
3206
|
+
readonly external_order_summary?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
|
|
3205
3207
|
}
|
|
3206
3208
|
|
|
3207
3209
|
interface ChannelOrderAcceptanceDetails {
|
|
@@ -3577,6 +3579,8 @@ declare namespace io.flow.common.v0.models {
|
|
|
3577
3579
|
interface MerchantOfRecordEntityRegistration {
|
|
3578
3580
|
readonly number: string;
|
|
3579
3581
|
readonly country: string;
|
|
3582
|
+
readonly province_number?: string;
|
|
3583
|
+
readonly province?: string;
|
|
3580
3584
|
}
|
|
3581
3585
|
|
|
3582
3586
|
interface Money {
|
|
@@ -3792,6 +3796,35 @@ declare namespace io.flow.error.v0.models {
|
|
|
3792
3796
|
}
|
|
3793
3797
|
}
|
|
3794
3798
|
|
|
3799
|
+
declare namespace io.flow.channel.shopify.v0.enums {
|
|
3800
|
+
type ChannelShopifyOrderStateReasonCode = 'placeholder_reason_code';
|
|
3801
|
+
}
|
|
3802
|
+
|
|
3803
|
+
declare namespace io.flow.channel.shopify.v0.models {
|
|
3804
|
+
interface ChannelShopifyOrderState {
|
|
3805
|
+
readonly id: string;
|
|
3806
|
+
readonly shopify_order_summary: io.flow.channel.shopify.v0.models.ChannelShopifyOrderSummary;
|
|
3807
|
+
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
3808
|
+
readonly reasons?: io.flow.channel.shopify.v0.models.ChannelShopifyOrderStateReason[];
|
|
3809
|
+
readonly external_order_summary?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
|
|
3810
|
+
}
|
|
3811
|
+
|
|
3812
|
+
interface ChannelShopifyOrderStateReason {
|
|
3813
|
+
readonly code: io.flow.channel.shopify.v0.enums.ChannelShopifyOrderStateReasonCode;
|
|
3814
|
+
readonly message: string;
|
|
3815
|
+
}
|
|
3816
|
+
|
|
3817
|
+
interface ChannelShopifyOrderSummary {
|
|
3818
|
+
readonly order_id: number;
|
|
3819
|
+
readonly shop_id: number;
|
|
3820
|
+
}
|
|
3821
|
+
|
|
3822
|
+
interface ExternalOrderSummary {
|
|
3823
|
+
readonly id: string;
|
|
3824
|
+
readonly edit_ids: string[];
|
|
3825
|
+
}
|
|
3826
|
+
}
|
|
3827
|
+
|
|
3795
3828
|
declare namespace io.flow.channel.v0.enums {
|
|
3796
3829
|
type ChannelCurrencyCapability =
|
|
3797
3830
|
| 'payment_authorizations'
|
|
@@ -3945,164 +3978,6 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
3945
3978
|
}
|
|
3946
3979
|
}
|
|
3947
3980
|
|
|
3948
|
-
declare namespace io.flow.tech.onboarding.playground.v0.enums {
|
|
3949
|
-
type AldoItemType = 'physical' | 'digital';
|
|
3950
|
-
type AnirbanItemType = 'physical' | 'digital';
|
|
3951
|
-
type AnshItemType = 'physical' | 'digital';
|
|
3952
|
-
type HoseinItemType = 'physical' | 'digital';
|
|
3953
|
-
type NiallItemType = 'physical' | 'digital';
|
|
3954
|
-
type PrateekItemType = 'physical' | 'digital';
|
|
3955
|
-
type RohanItemType = 'physical' | 'digital';
|
|
3956
|
-
type SarveshItemType = 'physical' | 'digital';
|
|
3957
|
-
}
|
|
3958
|
-
|
|
3959
|
-
declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
3960
|
-
interface AldoItem {
|
|
3961
|
-
readonly id: string;
|
|
3962
|
-
readonly number: string;
|
|
3963
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
3964
|
-
readonly description?: string;
|
|
3965
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.AldoItemType;
|
|
3966
|
-
readonly added_on: string;
|
|
3967
|
-
}
|
|
3968
|
-
|
|
3969
|
-
interface AldoItemForm {
|
|
3970
|
-
readonly number: string;
|
|
3971
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
3972
|
-
readonly description?: string;
|
|
3973
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.AldoItemType;
|
|
3974
|
-
readonly added_on: string;
|
|
3975
|
-
}
|
|
3976
|
-
|
|
3977
|
-
interface AnirbanItem {
|
|
3978
|
-
readonly id: string;
|
|
3979
|
-
readonly number: string;
|
|
3980
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
3981
|
-
readonly description?: string;
|
|
3982
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.AnirbanItemType;
|
|
3983
|
-
readonly added_on: string;
|
|
3984
|
-
}
|
|
3985
|
-
|
|
3986
|
-
interface AnirbanItemForm {
|
|
3987
|
-
readonly number: string;
|
|
3988
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
3989
|
-
readonly description?: string;
|
|
3990
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.AnirbanItemType;
|
|
3991
|
-
readonly added_on: string;
|
|
3992
|
-
}
|
|
3993
|
-
|
|
3994
|
-
interface AnshItem {
|
|
3995
|
-
readonly id: string;
|
|
3996
|
-
readonly number: string;
|
|
3997
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
3998
|
-
readonly description?: string;
|
|
3999
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
|
|
4000
|
-
readonly added_on: string;
|
|
4001
|
-
}
|
|
4002
|
-
|
|
4003
|
-
interface AnshItemForm {
|
|
4004
|
-
readonly number: string;
|
|
4005
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
4006
|
-
readonly description?: string;
|
|
4007
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
|
|
4008
|
-
readonly added_on: string;
|
|
4009
|
-
}
|
|
4010
|
-
|
|
4011
|
-
interface HoseinItem {
|
|
4012
|
-
readonly id: string;
|
|
4013
|
-
readonly number: string;
|
|
4014
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
4015
|
-
readonly description?: string;
|
|
4016
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.HoseinItemType;
|
|
4017
|
-
readonly added_on: string;
|
|
4018
|
-
}
|
|
4019
|
-
|
|
4020
|
-
interface HoseinItemForm {
|
|
4021
|
-
readonly number: string;
|
|
4022
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
4023
|
-
readonly description?: string;
|
|
4024
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.HoseinItemType;
|
|
4025
|
-
readonly added_on: string;
|
|
4026
|
-
}
|
|
4027
|
-
|
|
4028
|
-
interface JeanDemoItem {
|
|
4029
|
-
readonly id: string;
|
|
4030
|
-
readonly name: string;
|
|
4031
|
-
}
|
|
4032
|
-
|
|
4033
|
-
interface NiallItem {
|
|
4034
|
-
readonly id: string;
|
|
4035
|
-
readonly number: string;
|
|
4036
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
4037
|
-
readonly description?: string;
|
|
4038
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.NiallItemType;
|
|
4039
|
-
readonly added_on: string;
|
|
4040
|
-
}
|
|
4041
|
-
|
|
4042
|
-
interface NiallItemForm {
|
|
4043
|
-
readonly number: string;
|
|
4044
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
4045
|
-
readonly description?: string;
|
|
4046
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.NiallItemType;
|
|
4047
|
-
readonly added_on: string;
|
|
4048
|
-
}
|
|
4049
|
-
|
|
4050
|
-
interface PrateekItem {
|
|
4051
|
-
readonly id: string;
|
|
4052
|
-
readonly number: string;
|
|
4053
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
4054
|
-
readonly description?: string;
|
|
4055
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.PrateekItemType;
|
|
4056
|
-
readonly added_on: string;
|
|
4057
|
-
}
|
|
4058
|
-
|
|
4059
|
-
interface PrateekItemForm {
|
|
4060
|
-
readonly number: string;
|
|
4061
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
4062
|
-
readonly description?: string;
|
|
4063
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.PrateekItemType;
|
|
4064
|
-
readonly added_on: string;
|
|
4065
|
-
}
|
|
4066
|
-
|
|
4067
|
-
interface RohanItem {
|
|
4068
|
-
readonly id: string;
|
|
4069
|
-
readonly number: string;
|
|
4070
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
4071
|
-
readonly description?: string;
|
|
4072
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.RohanItemType;
|
|
4073
|
-
readonly added_on: string;
|
|
4074
|
-
}
|
|
4075
|
-
|
|
4076
|
-
interface RohanItemForm {
|
|
4077
|
-
readonly number: string;
|
|
4078
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
4079
|
-
readonly description?: string;
|
|
4080
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.RohanItemType;
|
|
4081
|
-
readonly added_on: string;
|
|
4082
|
-
}
|
|
4083
|
-
|
|
4084
|
-
interface SarveshItem {
|
|
4085
|
-
readonly id: string;
|
|
4086
|
-
readonly number: string;
|
|
4087
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
4088
|
-
readonly description?: string;
|
|
4089
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.SarveshItemType;
|
|
4090
|
-
readonly added_on: string;
|
|
4091
|
-
}
|
|
4092
|
-
|
|
4093
|
-
interface SarveshItemForm {
|
|
4094
|
-
readonly number: string;
|
|
4095
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
4096
|
-
readonly description?: string;
|
|
4097
|
-
readonly type: io.flow.tech.onboarding.playground.v0.enums.SarveshItemType;
|
|
4098
|
-
readonly added_on: string;
|
|
4099
|
-
}
|
|
4100
|
-
|
|
4101
|
-
interface TechOnboardingDescription {
|
|
4102
|
-
readonly description: string;
|
|
4103
|
-
}
|
|
4104
|
-
}
|
|
4105
|
-
|
|
4106
3981
|
declare namespace io.flow.product.v0.models {
|
|
4107
3982
|
interface Product {
|
|
4108
3983
|
readonly organization_id: string;
|
|
@@ -4297,6 +4172,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4297
4172
|
| 'payment_authorizations'
|
|
4298
4173
|
| 'settlement_currency';
|
|
4299
4174
|
type ChannelShopifyOrderStateReasonCode = 'placeholder_reason_code';
|
|
4175
|
+
type CommercialInvoiceMode = 'direct' | 'indirect';
|
|
4300
4176
|
type ConsumerInvoiceCustomerType =
|
|
4301
4177
|
| 'business_eu_verified'
|
|
4302
4178
|
| 'business_non_verified'
|
|
@@ -4377,20 +4253,6 @@ declare namespace io.flow.v0.enums {
|
|
|
4377
4253
|
type EventType =
|
|
4378
4254
|
| 'test_upserted'
|
|
4379
4255
|
| 'generate_load'
|
|
4380
|
-
| 'sarvesh_item_upserted'
|
|
4381
|
-
| 'sarvesh_item_deleted'
|
|
4382
|
-
| 'hosein_item_upserted'
|
|
4383
|
-
| 'hosein_item_deleted'
|
|
4384
|
-
| 'niall_item_upserted'
|
|
4385
|
-
| 'niall_item_deleted'
|
|
4386
|
-
| 'rohan_item_upserted'
|
|
4387
|
-
| 'rohan_item_deleted'
|
|
4388
|
-
| 'aldo_item_upserted'
|
|
4389
|
-
| 'aldo_item_deleted'
|
|
4390
|
-
| 'ansh_item_upserted'
|
|
4391
|
-
| 'ansh_item_deleted'
|
|
4392
|
-
| 'anirban_item_upserted'
|
|
4393
|
-
| 'anirban_item_deleted'
|
|
4394
4256
|
| 'transaction_upserted'
|
|
4395
4257
|
| 'organization_transaction_upserted'
|
|
4396
4258
|
| 'organization_transaction_deleted'
|
|
@@ -4497,6 +4359,8 @@ declare namespace io.flow.v0.enums {
|
|
|
4497
4359
|
| 'organization_deleted_v2'
|
|
4498
4360
|
| 'ecommerce_platform_upserted'
|
|
4499
4361
|
| 'ecommerce_platform_deleted'
|
|
4362
|
+
| 'tax_registration_upserted'
|
|
4363
|
+
| 'tax_registration_deleted'
|
|
4500
4364
|
| 'organization_onboarding_state_upserted'
|
|
4501
4365
|
| 'organization_onboarding_state_deleted'
|
|
4502
4366
|
| 'authorization_deleted_v2'
|
|
@@ -4544,9 +4408,12 @@ declare namespace io.flow.v0.enums {
|
|
|
4544
4408
|
| 'ratecard_deleted'
|
|
4545
4409
|
| 'product_restriction_result_upserted'
|
|
4546
4410
|
| 'product_restriction_result_deleted'
|
|
4411
|
+
| 'product_sellability_result_upserted'
|
|
4412
|
+
| 'product_sellability_result_deleted'
|
|
4547
4413
|
| 'shopify_localization_setting_upserted'
|
|
4548
4414
|
| 'shopify_localization_setting_deleted'
|
|
4549
|
-
| 'tracking_label_event_upserted'
|
|
4415
|
+
| 'tracking_label_event_upserted'
|
|
4416
|
+
| 'tracking_label_event_upserted_v2';
|
|
4550
4417
|
type ExceptionType = 'open' | 'closed';
|
|
4551
4418
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
4552
4419
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -4868,7 +4735,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4868
4735
|
| 'fraudulent'
|
|
4869
4736
|
| 'error'
|
|
4870
4737
|
| 'payment_checks_declined';
|
|
4871
|
-
type PaymentFeeType = 'fx' | 'mor' | 'sp';
|
|
4738
|
+
type PaymentFeeType = 'fx' | 'mor' | 'sp' | 'mor_tax';
|
|
4872
4739
|
type PaymentMethodCapability = 'credit' | 'debit';
|
|
4873
4740
|
type PaymentMethodDataOptionType = 'ideal_issuer_option';
|
|
4874
4741
|
type PaymentMethodRuleContentKey = 'description';
|
|
@@ -4978,6 +4845,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4978
4845
|
| 'adjustment';
|
|
4979
4846
|
type PriceFacetBoundary = 'min' | 'max';
|
|
4980
4847
|
type PricingLevySetting = 'included' | 'displayed' | 'ignored';
|
|
4848
|
+
type PricingType = 'inclusive_pricing';
|
|
4981
4849
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
4982
4850
|
type ProvinceType =
|
|
4983
4851
|
| 'area'
|
|
@@ -5021,6 +4889,7 @@ declare namespace io.flow.v0.enums {
|
|
|
5021
4889
|
type RefundStatus = 'pending' | 'succeeded' | 'failed' | 'canceled';
|
|
5022
4890
|
type RegionType = 'state' | 'province' | 'jurisdiction';
|
|
5023
4891
|
type RestrictedReviewStatus = 'in_review' | 'reviewed';
|
|
4892
|
+
type RestrictionEnvironment = 'sandbox' | 'production' | 'qa';
|
|
5024
4893
|
type ReturnItemStatus = 'returnable' | 'non-returnable';
|
|
5025
4894
|
type ReturnPolicyState = 'current' | 'deleting' | 'updating';
|
|
5026
4895
|
type ReturnStatus = 'open' | 'refunded';
|
|
@@ -5067,6 +4936,9 @@ declare namespace io.flow.v0.enums {
|
|
|
5067
4936
|
| 'wait_for_high_fidelity'
|
|
5068
4937
|
| 'external_service_unavailable';
|
|
5069
4938
|
type SellabilityRequestStatus = 'commit';
|
|
4939
|
+
type SellabilityResultErrorCode = 'insufficient_details' | 'generic_error';
|
|
4940
|
+
type SellabilityResultStatus = 'in_review' | 'succeeded' | 'failed';
|
|
4941
|
+
type SellabilityScreeningMode = 'pre_onboarding' | 'default_on' | 'active';
|
|
5070
4942
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
5071
4943
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
5072
4944
|
type ShippingConfigurationType = 'default' | 'variant';
|
|
@@ -5092,7 +4964,8 @@ declare namespace io.flow.v0.enums {
|
|
|
5092
4964
|
type ShopifyLocalizationMethod = 'api' | 'ssr';
|
|
5093
4965
|
type ShopifySyncCheck = 'localized_variants' | 'flow_variant_metafields';
|
|
5094
4966
|
type SortDirection = 'ascending' | 'descending';
|
|
5095
|
-
type StatementAttachmentType = 'csv';
|
|
4967
|
+
type StatementAttachmentType = 'csv' | 'pdf';
|
|
4968
|
+
type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
5096
4969
|
type StoredMethodUsageStep = 'initial' | 'subsequent';
|
|
5097
4970
|
type Strategy = 'range' | 'from' | 'to';
|
|
5098
4971
|
type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
|
|
@@ -5169,6 +5042,7 @@ declare namespace io.flow.v0.enums {
|
|
|
5169
5042
|
| 'order_edit'
|
|
5170
5043
|
| 'mixed_fulfilment_non_lvg'
|
|
5171
5044
|
| 'lvg_refund'
|
|
5045
|
+
| 'us_inbound_tax_refund'
|
|
5172
5046
|
| 'order_cancellation_above_de_min'
|
|
5173
5047
|
| 'wyol_shipment_above_de_min'
|
|
5174
5048
|
| 'full_refund_without_shipment'
|
|
@@ -5239,7 +5113,9 @@ declare namespace io.flow.v0.enums {
|
|
|
5239
5113
|
| 'merchant_payout'
|
|
5240
5114
|
| 'merchant_refund'
|
|
5241
5115
|
| 'ge_revenue_share'
|
|
5242
|
-
| 'merchant_fee'
|
|
5116
|
+
| 'merchant_fee'
|
|
5117
|
+
| 'b2b_tax'
|
|
5118
|
+
| 'b2b_tax_refund';
|
|
5243
5119
|
type TransferStatus = 'succeeded' | 'canceled';
|
|
5244
5120
|
type TransferType =
|
|
5245
5121
|
| 'payout_to_merchant'
|
|
@@ -5248,7 +5124,13 @@ declare namespace io.flow.v0.enums {
|
|
|
5248
5124
|
| 'disputed_amount_from_merchant'
|
|
5249
5125
|
| 'duties_and_taxes_adjustment_from_merchant'
|
|
5250
5126
|
| 'refund_from_merchant';
|
|
5251
|
-
type TrueupSource =
|
|
5127
|
+
type TrueupSource =
|
|
5128
|
+
| 'flow'
|
|
5129
|
+
| 'channel'
|
|
5130
|
+
| 'dhl-parcel'
|
|
5131
|
+
| 'dhl'
|
|
5132
|
+
| 'ups'
|
|
5133
|
+
| 'fedex';
|
|
5252
5134
|
type TrueupSurchargeType =
|
|
5253
5135
|
| 'fuel'
|
|
5254
5136
|
| 'remote_area'
|
|
@@ -5625,20 +5507,6 @@ declare namespace io.flow.v0.models {
|
|
|
5625
5507
|
readonly fingerprint_token: string;
|
|
5626
5508
|
}
|
|
5627
5509
|
|
|
5628
|
-
interface AldoItemDeleted {
|
|
5629
|
-
readonly discriminator: 'aldo_item_deleted';
|
|
5630
|
-
readonly event_id: string;
|
|
5631
|
-
readonly timestamp: string;
|
|
5632
|
-
readonly id: string;
|
|
5633
|
-
}
|
|
5634
|
-
|
|
5635
|
-
interface AldoItemUpserted {
|
|
5636
|
-
readonly discriminator: 'aldo_item_upserted';
|
|
5637
|
-
readonly event_id: string;
|
|
5638
|
-
readonly timestamp: string;
|
|
5639
|
-
readonly item: io.flow.tech.onboarding.playground.v0.models.AldoItem;
|
|
5640
|
-
}
|
|
5641
|
-
|
|
5642
5510
|
interface Allocation {
|
|
5643
5511
|
readonly order: io.flow.v0.models.AllocationOrderSummary;
|
|
5644
5512
|
readonly details: io.flow.v0.unions.AllocationDetail[];
|
|
@@ -5763,34 +5631,6 @@ declare namespace io.flow.v0.models {
|
|
|
5763
5631
|
readonly interval?: io.flow.v0.enums.UnitOfTime;
|
|
5764
5632
|
}
|
|
5765
5633
|
|
|
5766
|
-
interface AnirbanItemDeleted {
|
|
5767
|
-
readonly discriminator: 'anirban_item_deleted';
|
|
5768
|
-
readonly event_id: string;
|
|
5769
|
-
readonly timestamp: string;
|
|
5770
|
-
readonly id: string;
|
|
5771
|
-
}
|
|
5772
|
-
|
|
5773
|
-
interface AnirbanItemUpserted {
|
|
5774
|
-
readonly discriminator: 'anirban_item_upserted';
|
|
5775
|
-
readonly event_id: string;
|
|
5776
|
-
readonly timestamp: string;
|
|
5777
|
-
readonly item: io.flow.tech.onboarding.playground.v0.models.AnirbanItem;
|
|
5778
|
-
}
|
|
5779
|
-
|
|
5780
|
-
interface AnshItemDeleted {
|
|
5781
|
-
readonly discriminator: 'ansh_item_deleted';
|
|
5782
|
-
readonly event_id: string;
|
|
5783
|
-
readonly timestamp: string;
|
|
5784
|
-
readonly id: string;
|
|
5785
|
-
}
|
|
5786
|
-
|
|
5787
|
-
interface AnshItemUpserted {
|
|
5788
|
-
readonly discriminator: 'ansh_item_upserted';
|
|
5789
|
-
readonly event_id: string;
|
|
5790
|
-
readonly timestamp: string;
|
|
5791
|
-
readonly item: io.flow.tech.onboarding.playground.v0.models.AnshItem;
|
|
5792
|
-
}
|
|
5793
|
-
|
|
5794
5634
|
interface ApplePayMerchantValidationPayload {
|
|
5795
5635
|
readonly discriminator: 'apple_pay_merchant_validation_payload';
|
|
5796
5636
|
readonly validation_url: string;
|
|
@@ -6079,9 +5919,12 @@ declare namespace io.flow.v0.models {
|
|
|
6079
5919
|
readonly invoice: io.flow.v0.models.B2BInvoiceReference;
|
|
6080
5920
|
readonly lines: io.flow.v0.unions.ConsumerInvoiceLine[];
|
|
6081
5921
|
readonly tax_lines?: io.flow.v0.models.InvoiceTaxLine[];
|
|
5922
|
+
readonly tax?: io.flow.v0.models.Money;
|
|
6082
5923
|
readonly documents: io.flow.v0.models.ConsumerInvoiceDocument[];
|
|
6083
5924
|
readonly attributes: Record<string, string>;
|
|
6084
5925
|
readonly b2b_invoice_type: io.flow.v0.enums.B2BInvoiceType;
|
|
5926
|
+
readonly center?: io.flow.v0.models.ConsumerInvoiceCenterReference;
|
|
5927
|
+
readonly order?: io.flow.v0.models.ConsumerInvoiceOrderSummary;
|
|
6085
5928
|
}
|
|
6086
5929
|
|
|
6087
5930
|
interface B2BCreditMemoDeleted {
|
|
@@ -6178,6 +6021,18 @@ declare namespace io.flow.v0.models {
|
|
|
6178
6021
|
readonly iban: string;
|
|
6179
6022
|
}
|
|
6180
6023
|
|
|
6024
|
+
interface BankAccountInfoKor {
|
|
6025
|
+
readonly discriminator: 'kor';
|
|
6026
|
+
readonly name?: string;
|
|
6027
|
+
readonly address?: io.flow.v0.models.Address;
|
|
6028
|
+
readonly phone?: string;
|
|
6029
|
+
readonly email?: string;
|
|
6030
|
+
readonly bank_account_number: string;
|
|
6031
|
+
readonly bank_routing_number?: string;
|
|
6032
|
+
readonly bank_name?: string;
|
|
6033
|
+
readonly bank_address?: io.flow.v0.models.Address;
|
|
6034
|
+
}
|
|
6035
|
+
|
|
6181
6036
|
interface BankAccountInfoUsa {
|
|
6182
6037
|
readonly discriminator: 'usa';
|
|
6183
6038
|
readonly routing_number: string;
|
|
@@ -6908,6 +6763,7 @@ declare namespace io.flow.v0.models {
|
|
|
6908
6763
|
readonly shopify_order_summary: io.flow.v0.models.ChannelShopifyOrderSummary;
|
|
6909
6764
|
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
6910
6765
|
readonly reasons?: io.flow.v0.models.ChannelShopifyOrderStateReason[];
|
|
6766
|
+
readonly external_order_summary?: io.flow.v0.models.ExternalOrderSummary;
|
|
6911
6767
|
}
|
|
6912
6768
|
|
|
6913
6769
|
interface ChannelShopifyOrderStateDeleted {
|
|
@@ -7137,6 +6993,77 @@ declare namespace io.flow.v0.models {
|
|
|
7137
6993
|
readonly amount: io.flow.v0.models.Money;
|
|
7138
6994
|
}
|
|
7139
6995
|
|
|
6996
|
+
interface CommonMerchantApplication {
|
|
6997
|
+
readonly discriminator: 'common_merchant_application';
|
|
6998
|
+
readonly id: string;
|
|
6999
|
+
readonly organization_id: string;
|
|
7000
|
+
readonly organization_reference: io.flow.v0.models.OnboardingOrganizationReference;
|
|
7001
|
+
readonly status: io.flow.v0.enums.OnboardingApplicationStatus;
|
|
7002
|
+
readonly company?: io.flow.v0.models.MerchantInfo;
|
|
7003
|
+
readonly indirect_tax?: io.flow.v0.models.IndirectTax;
|
|
7004
|
+
readonly ultimate_beneficiary_owner?: io.flow.v0.models.UltimateBeneficiaryOwner;
|
|
7005
|
+
readonly business_url?: string;
|
|
7006
|
+
readonly business_description?: string;
|
|
7007
|
+
readonly business_address?: io.flow.v0.models.Address;
|
|
7008
|
+
readonly refund_percentage?: number;
|
|
7009
|
+
readonly chargeback_percentage?: number;
|
|
7010
|
+
readonly beneficiary_details?: io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
7011
|
+
readonly other_trade_sector?: string;
|
|
7012
|
+
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
7013
|
+
readonly center_address?: io.flow.v0.models.Address;
|
|
7014
|
+
readonly average_order_weight?: number;
|
|
7015
|
+
readonly average_order_weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
7016
|
+
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
7017
|
+
readonly monthly_average?: io.flow.v0.models.MonthlyAverage;
|
|
7018
|
+
readonly default_country_of_origin?: string;
|
|
7019
|
+
readonly rate_card: string;
|
|
7020
|
+
readonly shop?: io.flow.v0.models.Shop;
|
|
7021
|
+
readonly created_at: string;
|
|
7022
|
+
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
7023
|
+
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
7024
|
+
readonly average_order_value?: io.flow.v0.models.Money;
|
|
7025
|
+
readonly mcc_codes?: number[];
|
|
7026
|
+
}
|
|
7027
|
+
|
|
7028
|
+
interface CommonMerchantApplicationForm {
|
|
7029
|
+
readonly discriminator: 'common_merchant_application_form';
|
|
7030
|
+
readonly company?: io.flow.v0.models.MerchantInfo;
|
|
7031
|
+
readonly indirect_tax?: io.flow.v0.models.IndirectTax;
|
|
7032
|
+
readonly ultimate_beneficiary_owner?: io.flow.v0.models.UltimateBeneficiaryOwner;
|
|
7033
|
+
readonly business_url?: string;
|
|
7034
|
+
readonly business_description?: string;
|
|
7035
|
+
readonly business_address?: io.flow.v0.models.Address;
|
|
7036
|
+
readonly refund_percentage?: number;
|
|
7037
|
+
readonly chargeback_percentage?: number;
|
|
7038
|
+
readonly beneficiary_details?: io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
7039
|
+
readonly other_trade_sector?: string;
|
|
7040
|
+
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
7041
|
+
readonly center_address?: io.flow.v0.models.Address;
|
|
7042
|
+
readonly average_order_weight?: number;
|
|
7043
|
+
readonly average_order_weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
7044
|
+
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
7045
|
+
readonly monthly_average_volume_amount?: number;
|
|
7046
|
+
readonly monthly_average_volume_currency?: string;
|
|
7047
|
+
readonly monthly_average_number_transactions?: number;
|
|
7048
|
+
readonly default_country_of_origin?: string;
|
|
7049
|
+
readonly shop?: io.flow.v0.models.Shop;
|
|
7050
|
+
readonly rate_card?: string;
|
|
7051
|
+
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
7052
|
+
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
7053
|
+
readonly average_order_value?: io.flow.v0.models.Money;
|
|
7054
|
+
readonly mcc_codes?: number[];
|
|
7055
|
+
}
|
|
7056
|
+
|
|
7057
|
+
interface CommonMerchantApplicationPutForm {
|
|
7058
|
+
readonly discriminator: 'common_merchant_application_put_form';
|
|
7059
|
+
readonly status?: io.flow.v0.enums.OnboardingApplicationStatus;
|
|
7060
|
+
}
|
|
7061
|
+
|
|
7062
|
+
interface CommonMerchantApplicationsSummary {
|
|
7063
|
+
readonly discriminator: 'common_merchant_applications_summary';
|
|
7064
|
+
readonly total: number;
|
|
7065
|
+
}
|
|
7066
|
+
|
|
7140
7067
|
interface Company {
|
|
7141
7068
|
readonly discriminator: 'company';
|
|
7142
7069
|
readonly legal_name: string;
|
|
@@ -7370,6 +7297,8 @@ declare namespace io.flow.v0.models {
|
|
|
7370
7297
|
readonly documents: io.flow.v0.models.ConsumerInvoiceDocument[];
|
|
7371
7298
|
readonly attributes: Record<string, string>;
|
|
7372
7299
|
readonly tax_registration?: io.flow.v0.models.TaxRegistration;
|
|
7300
|
+
readonly center?: io.flow.v0.models.ConsumerInvoiceCenterReference;
|
|
7301
|
+
readonly order?: io.flow.v0.models.ConsumerInvoiceOrderSummary;
|
|
7373
7302
|
}
|
|
7374
7303
|
|
|
7375
7304
|
interface CreditMemoDeleted {
|
|
@@ -8156,6 +8085,7 @@ declare namespace io.flow.v0.models {
|
|
|
8156
8085
|
readonly amount: io.flow.v0.models.Money;
|
|
8157
8086
|
readonly origin_region?: io.flow.v0.models.RatecardRegionReference;
|
|
8158
8087
|
readonly destination_region?: io.flow.v0.models.RatecardRegionReference;
|
|
8088
|
+
readonly destination_regions?: io.flow.v0.models.RatecardRegionReference[];
|
|
8159
8089
|
readonly interval_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
8160
8090
|
}
|
|
8161
8091
|
|
|
@@ -8494,6 +8424,11 @@ declare namespace io.flow.v0.models {
|
|
|
8494
8424
|
readonly type?: io.flow.v0.enums.CardType;
|
|
8495
8425
|
}
|
|
8496
8426
|
|
|
8427
|
+
interface ExternalOrderSummary {
|
|
8428
|
+
readonly id: string;
|
|
8429
|
+
readonly edit_ids: string[];
|
|
8430
|
+
}
|
|
8431
|
+
|
|
8497
8432
|
interface FeeDeduction {
|
|
8498
8433
|
readonly type: io.flow.v0.enums.FeeDeductionType;
|
|
8499
8434
|
readonly amount: number;
|
|
@@ -8796,7 +8731,7 @@ declare namespace io.flow.v0.models {
|
|
|
8796
8731
|
readonly discriminator: 'ge_catalog_item_ingestion_result';
|
|
8797
8732
|
readonly event_id: string;
|
|
8798
8733
|
readonly event_type: io.flow.v0.enums.GeEventType;
|
|
8799
|
-
readonly environment: io.flow.v0.enums.
|
|
8734
|
+
readonly environment: io.flow.v0.enums.RestrictionEnvironment;
|
|
8800
8735
|
readonly timestamp: string;
|
|
8801
8736
|
readonly source: string;
|
|
8802
8737
|
readonly response: io.flow.v0.enums.GeCatalogItemIngestionResponse;
|
|
@@ -8863,7 +8798,7 @@ declare namespace io.flow.v0.models {
|
|
|
8863
8798
|
readonly organization: string;
|
|
8864
8799
|
readonly event_id: string;
|
|
8865
8800
|
readonly event_type: io.flow.v0.enums.GeEventType;
|
|
8866
|
-
readonly environment: io.flow.v0.enums.
|
|
8801
|
+
readonly environment: io.flow.v0.enums.RestrictionEnvironment;
|
|
8867
8802
|
readonly timestamp: string;
|
|
8868
8803
|
readonly id: string;
|
|
8869
8804
|
readonly operation: io.flow.v0.enums.ChangeType;
|
|
@@ -8874,7 +8809,7 @@ declare namespace io.flow.v0.models {
|
|
|
8874
8809
|
readonly organization: string;
|
|
8875
8810
|
readonly event_id: string;
|
|
8876
8811
|
readonly event_type: io.flow.v0.enums.GeEventType;
|
|
8877
|
-
readonly environment: io.flow.v0.enums.
|
|
8812
|
+
readonly environment: io.flow.v0.enums.RestrictionEnvironment;
|
|
8878
8813
|
readonly timestamp: string;
|
|
8879
8814
|
readonly operation: io.flow.v0.enums.ChangeType;
|
|
8880
8815
|
readonly ge_product_restriction_result: io.flow.v0.models.ProductRestrictionResult;
|
|
@@ -9072,20 +9007,6 @@ declare namespace io.flow.v0.models {
|
|
|
9072
9007
|
readonly hop_estimate: io.flow.v0.models.HopEstimateV2;
|
|
9073
9008
|
}
|
|
9074
9009
|
|
|
9075
|
-
interface HoseinItemDeleted {
|
|
9076
|
-
readonly discriminator: 'hosein_item_deleted';
|
|
9077
|
-
readonly event_id: string;
|
|
9078
|
-
readonly timestamp: string;
|
|
9079
|
-
readonly id: string;
|
|
9080
|
-
}
|
|
9081
|
-
|
|
9082
|
-
interface HoseinItemUpserted {
|
|
9083
|
-
readonly discriminator: 'hosein_item_upserted';
|
|
9084
|
-
readonly event_id: string;
|
|
9085
|
-
readonly timestamp: string;
|
|
9086
|
-
readonly item: io.flow.tech.onboarding.playground.v0.models.HoseinItem;
|
|
9087
|
-
}
|
|
9088
|
-
|
|
9089
9010
|
interface Hs10 {
|
|
9090
9011
|
readonly id: string;
|
|
9091
9012
|
readonly item: io.flow.v0.models.HarmonizedItemReference;
|
|
@@ -10130,6 +10051,7 @@ declare namespace io.flow.v0.models {
|
|
|
10130
10051
|
readonly region?: io.flow.v0.enums.RegionType;
|
|
10131
10052
|
readonly region_value?: string;
|
|
10132
10053
|
readonly category_code?: string;
|
|
10054
|
+
readonly description?: string;
|
|
10133
10055
|
}
|
|
10134
10056
|
|
|
10135
10057
|
interface MerchantOfRecordAuthorizationForm {
|
|
@@ -10165,6 +10087,8 @@ declare namespace io.flow.v0.models {
|
|
|
10165
10087
|
interface MerchantOfRecordEntityRegistration {
|
|
10166
10088
|
readonly number: string;
|
|
10167
10089
|
readonly country: string;
|
|
10090
|
+
readonly province_number?: string;
|
|
10091
|
+
readonly province?: string;
|
|
10168
10092
|
}
|
|
10169
10093
|
|
|
10170
10094
|
interface MerchantOfRecordPaymentForm {
|
|
@@ -10184,6 +10108,17 @@ declare namespace io.flow.v0.models {
|
|
|
10184
10108
|
readonly country?: string;
|
|
10185
10109
|
}
|
|
10186
10110
|
|
|
10111
|
+
interface MerchantOnboardingBeneficiaryDetails {
|
|
10112
|
+
readonly name?: string;
|
|
10113
|
+
readonly address?: io.flow.v0.models.Address;
|
|
10114
|
+
readonly phone?: string;
|
|
10115
|
+
readonly email?: string;
|
|
10116
|
+
readonly bank_account_number?: string;
|
|
10117
|
+
readonly bank_routing_number?: string;
|
|
10118
|
+
readonly bank_name?: string;
|
|
10119
|
+
readonly bank_address?: io.flow.v0.models.Address;
|
|
10120
|
+
}
|
|
10121
|
+
|
|
10187
10122
|
interface MerchantRejected {
|
|
10188
10123
|
readonly discriminator: 'merchant_rejected';
|
|
10189
10124
|
readonly reason: io.flow.v0.enums.MerchantRejectedReason;
|
|
@@ -10234,20 +10169,6 @@ declare namespace io.flow.v0.models {
|
|
|
10234
10169
|
readonly require_msds?: boolean;
|
|
10235
10170
|
}
|
|
10236
10171
|
|
|
10237
|
-
interface NiallItemDeleted {
|
|
10238
|
-
readonly discriminator: 'niall_item_deleted';
|
|
10239
|
-
readonly event_id: string;
|
|
10240
|
-
readonly timestamp: string;
|
|
10241
|
-
readonly id: string;
|
|
10242
|
-
}
|
|
10243
|
-
|
|
10244
|
-
interface NiallItemUpserted {
|
|
10245
|
-
readonly discriminator: 'niall_item_upserted';
|
|
10246
|
-
readonly event_id: string;
|
|
10247
|
-
readonly timestamp: string;
|
|
10248
|
-
readonly item: io.flow.tech.onboarding.playground.v0.models.NiallItem;
|
|
10249
|
-
}
|
|
10250
|
-
|
|
10251
10172
|
interface NotificationDeletedV2 {
|
|
10252
10173
|
readonly discriminator: 'notification_deleted_v2';
|
|
10253
10174
|
readonly event_id: string;
|
|
@@ -10397,6 +10318,7 @@ declare namespace io.flow.v0.models {
|
|
|
10397
10318
|
readonly payment_source?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
10398
10319
|
readonly edits?: io.flow.v0.models.EditSummary[];
|
|
10399
10320
|
readonly rates?: io.flow.v0.models.OrderRate[];
|
|
10321
|
+
readonly pricing_type?: io.flow.v0.enums.PricingType;
|
|
10400
10322
|
}
|
|
10401
10323
|
|
|
10402
10324
|
interface OrderAddress {
|
|
@@ -11110,6 +11032,22 @@ declare namespace io.flow.v0.models {
|
|
|
11110
11032
|
readonly environment: io.flow.v0.enums.Environment;
|
|
11111
11033
|
}
|
|
11112
11034
|
|
|
11035
|
+
interface OrganizationTaxRegistration {
|
|
11036
|
+
readonly id: string;
|
|
11037
|
+
readonly organization: io.flow.v0.models.OrganizationSummary;
|
|
11038
|
+
readonly address: io.flow.v0.models.BillingAddress;
|
|
11039
|
+
readonly registration: io.flow.v0.models.TaxRegistrationDetail;
|
|
11040
|
+
readonly self_billing_agreement: io.flow.v0.models.SelfBillingAgreement;
|
|
11041
|
+
}
|
|
11042
|
+
|
|
11043
|
+
interface OrganizationTaxRegistrationForm {
|
|
11044
|
+
readonly tax_number: string;
|
|
11045
|
+
readonly country: string;
|
|
11046
|
+
readonly province?: string;
|
|
11047
|
+
readonly self_billing_agreement_effective_at: string;
|
|
11048
|
+
readonly self_billing_agreement_expires_at?: string;
|
|
11049
|
+
}
|
|
11050
|
+
|
|
11113
11051
|
interface OrganizationToken {
|
|
11114
11052
|
readonly discriminator: 'organization_token';
|
|
11115
11053
|
readonly id: string;
|
|
@@ -11907,6 +11845,7 @@ declare namespace io.flow.v0.models {
|
|
|
11907
11845
|
readonly supported_actions: io.flow.v0.enums.PaymentActionType[];
|
|
11908
11846
|
readonly payment_capture_option?: io.flow.v0.unions.PaymentCaptureOption;
|
|
11909
11847
|
readonly review?: io.flow.v0.models.PaymentRequestReview;
|
|
11848
|
+
readonly client_secret?: string;
|
|
11910
11849
|
}
|
|
11911
11850
|
|
|
11912
11851
|
interface PaymentRequestBilling {
|
|
@@ -12435,7 +12374,7 @@ declare namespace io.flow.v0.models {
|
|
|
12435
12374
|
readonly updated_by?: string;
|
|
12436
12375
|
readonly product_restriction_id?: string;
|
|
12437
12376
|
readonly hs_code?: string;
|
|
12438
|
-
readonly restricted_regions_by_type?: io.flow.v0.models.
|
|
12377
|
+
readonly restricted_regions_by_type?: io.flow.v0.models.SellabilityRegionResult[];
|
|
12439
12378
|
readonly needs_action_attributes?: io.flow.v0.models.NeedsActionAttributes[];
|
|
12440
12379
|
}
|
|
12441
12380
|
|
|
@@ -12461,10 +12400,11 @@ declare namespace io.flow.v0.models {
|
|
|
12461
12400
|
readonly product_id?: string;
|
|
12462
12401
|
readonly request_id: string;
|
|
12463
12402
|
readonly hs6_code: string;
|
|
12464
|
-
readonly restricted_regions: io.flow.v0.models.
|
|
12403
|
+
readonly restricted_regions: io.flow.v0.models.SellabilityRegionResult[];
|
|
12465
12404
|
}
|
|
12466
12405
|
|
|
12467
12406
|
interface ProductSellabilityForm {
|
|
12407
|
+
readonly discriminator: 'product_sellability_form';
|
|
12468
12408
|
readonly shop_id: string;
|
|
12469
12409
|
readonly product_id?: string;
|
|
12470
12410
|
readonly name: string;
|
|
@@ -12475,6 +12415,32 @@ declare namespace io.flow.v0.models {
|
|
|
12475
12415
|
readonly dry_run?: boolean;
|
|
12476
12416
|
}
|
|
12477
12417
|
|
|
12418
|
+
interface ProductSellabilityResult {
|
|
12419
|
+
readonly merchant_id?: string;
|
|
12420
|
+
readonly product_id: string;
|
|
12421
|
+
readonly restricted_regions: io.flow.v0.models.SellabilityRestrictedRegion[];
|
|
12422
|
+
readonly restricted_reasons: io.flow.v0.models.SellabilityRestrictedReason[];
|
|
12423
|
+
readonly needs_action_attributes?: io.flow.v0.models.SellabilityNeedsActionAttributes[];
|
|
12424
|
+
readonly request_id?: string;
|
|
12425
|
+
readonly hs6_code?: string;
|
|
12426
|
+
}
|
|
12427
|
+
|
|
12428
|
+
interface ProductSellabilityResultDeleted {
|
|
12429
|
+
readonly discriminator: 'product_sellability_result_deleted';
|
|
12430
|
+
readonly event_id: string;
|
|
12431
|
+
readonly timestamp: string;
|
|
12432
|
+
readonly organization: string;
|
|
12433
|
+
readonly id: string;
|
|
12434
|
+
}
|
|
12435
|
+
|
|
12436
|
+
interface ProductSellabilityResultUpserted {
|
|
12437
|
+
readonly discriminator: 'product_sellability_result_upserted';
|
|
12438
|
+
readonly event_id: string;
|
|
12439
|
+
readonly timestamp: string;
|
|
12440
|
+
readonly organization: string;
|
|
12441
|
+
readonly product_sellability_result: io.flow.v0.models.ProductSellabilityResult;
|
|
12442
|
+
}
|
|
12443
|
+
|
|
12478
12444
|
interface ProductTaxonomyCategory {
|
|
12479
12445
|
readonly name: string;
|
|
12480
12446
|
readonly full_name: string;
|
|
@@ -12724,6 +12690,7 @@ declare namespace io.flow.v0.models {
|
|
|
12724
12690
|
readonly center_id?: string;
|
|
12725
12691
|
readonly taxes_owed?: io.flow.v0.models.Money;
|
|
12726
12692
|
readonly duties_owed?: io.flow.v0.models.Money;
|
|
12693
|
+
readonly commercial_invoice_mode?: io.flow.v0.enums.CommercialInvoiceMode;
|
|
12727
12694
|
}
|
|
12728
12695
|
|
|
12729
12696
|
interface RatecardEstimateSummaryForm {
|
|
@@ -13348,20 +13315,6 @@ declare namespace io.flow.v0.models {
|
|
|
13348
13315
|
readonly reversal: io.flow.v0.models.Reversal;
|
|
13349
13316
|
}
|
|
13350
13317
|
|
|
13351
|
-
interface RohanItemDeleted {
|
|
13352
|
-
readonly discriminator: 'rohan_item_deleted';
|
|
13353
|
-
readonly event_id: string;
|
|
13354
|
-
readonly timestamp: string;
|
|
13355
|
-
readonly id: string;
|
|
13356
|
-
}
|
|
13357
|
-
|
|
13358
|
-
interface RohanItemUpserted {
|
|
13359
|
-
readonly discriminator: 'rohan_item_upserted';
|
|
13360
|
-
readonly event_id: string;
|
|
13361
|
-
readonly timestamp: string;
|
|
13362
|
-
readonly item: io.flow.tech.onboarding.playground.v0.models.RohanItem;
|
|
13363
|
-
}
|
|
13364
|
-
|
|
13365
13318
|
interface Romanization {
|
|
13366
13319
|
readonly address?: io.flow.v0.models.Address;
|
|
13367
13320
|
readonly contact?: io.flow.v0.models.Contact;
|
|
@@ -13385,20 +13338,6 @@ declare namespace io.flow.v0.models {
|
|
|
13385
13338
|
readonly roles: io.flow.v0.enums.FlowRole[];
|
|
13386
13339
|
}
|
|
13387
13340
|
|
|
13388
|
-
interface SarveshItemDeleted {
|
|
13389
|
-
readonly discriminator: 'sarvesh_item_deleted';
|
|
13390
|
-
readonly event_id: string;
|
|
13391
|
-
readonly timestamp: string;
|
|
13392
|
-
readonly id: string;
|
|
13393
|
-
}
|
|
13394
|
-
|
|
13395
|
-
interface SarveshItemUpserted {
|
|
13396
|
-
readonly discriminator: 'sarvesh_item_upserted';
|
|
13397
|
-
readonly event_id: string;
|
|
13398
|
-
readonly timestamp: string;
|
|
13399
|
-
readonly item: io.flow.tech.onboarding.playground.v0.models.SarveshItem;
|
|
13400
|
-
}
|
|
13401
|
-
|
|
13402
13341
|
interface Schedule {
|
|
13403
13342
|
readonly calendar?: io.flow.v0.enums.Calendar;
|
|
13404
13343
|
readonly holiday: io.flow.v0.enums.HolidayCalendar;
|
|
@@ -13450,12 +13389,71 @@ declare namespace io.flow.v0.models {
|
|
|
13450
13389
|
readonly issuer_options: io.flow.v0.models.IssuerReference[];
|
|
13451
13390
|
}
|
|
13452
13391
|
|
|
13392
|
+
interface SelfBillingAgreement {
|
|
13393
|
+
readonly effective_at: string;
|
|
13394
|
+
readonly expires_at: string;
|
|
13395
|
+
}
|
|
13396
|
+
|
|
13453
13397
|
interface SellabilityError {
|
|
13454
13398
|
readonly discriminator: 'sellability_error';
|
|
13455
13399
|
readonly code: io.flow.v0.enums.SellabilityErrorCode;
|
|
13456
13400
|
readonly messages: string[];
|
|
13457
13401
|
}
|
|
13458
13402
|
|
|
13403
|
+
interface SellabilityNeedsActionAttributes {
|
|
13404
|
+
readonly reason_code: string;
|
|
13405
|
+
readonly category_metafield_handles: string[];
|
|
13406
|
+
readonly require_msds?: boolean;
|
|
13407
|
+
}
|
|
13408
|
+
|
|
13409
|
+
interface SellabilityReasonWithRegions {
|
|
13410
|
+
readonly reason: string;
|
|
13411
|
+
readonly regions: string[];
|
|
13412
|
+
}
|
|
13413
|
+
|
|
13414
|
+
interface SellabilityRegionResult {
|
|
13415
|
+
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
13416
|
+
readonly regions: string[];
|
|
13417
|
+
}
|
|
13418
|
+
|
|
13419
|
+
interface SellabilityRegionWithReasons {
|
|
13420
|
+
readonly region: string;
|
|
13421
|
+
readonly reasons: string[];
|
|
13422
|
+
}
|
|
13423
|
+
|
|
13424
|
+
interface SellabilityRestrictedReason {
|
|
13425
|
+
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
13426
|
+
readonly reasons_with_regions: io.flow.v0.models.SellabilityReasonWithRegions[];
|
|
13427
|
+
}
|
|
13428
|
+
|
|
13429
|
+
interface SellabilityRestrictedRegion {
|
|
13430
|
+
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
13431
|
+
readonly regions: string[];
|
|
13432
|
+
}
|
|
13433
|
+
|
|
13434
|
+
interface SellabilityScreening {
|
|
13435
|
+
readonly discriminator: 'sellability_screening';
|
|
13436
|
+
readonly product_sellability_result?: io.flow.v0.models.ProductSellabilityResult;
|
|
13437
|
+
readonly request_id: string;
|
|
13438
|
+
readonly status: io.flow.v0.enums.SellabilityResultStatus;
|
|
13439
|
+
readonly error_code?: io.flow.v0.enums.SellabilityResultErrorCode;
|
|
13440
|
+
readonly error_message?: string;
|
|
13441
|
+
}
|
|
13442
|
+
|
|
13443
|
+
interface SellabilityScreeningForm {
|
|
13444
|
+
readonly discriminator: 'sellability_screening_form';
|
|
13445
|
+
readonly merchant_id: string;
|
|
13446
|
+
readonly product_id: string;
|
|
13447
|
+
readonly name: string;
|
|
13448
|
+
readonly price: io.flow.v0.models.Money;
|
|
13449
|
+
readonly description: string;
|
|
13450
|
+
readonly taxonomy_category: io.flow.v0.models.ProductTaxonomyCategory;
|
|
13451
|
+
readonly mode: io.flow.v0.enums.SellabilityScreeningMode;
|
|
13452
|
+
readonly catalog_size?: number;
|
|
13453
|
+
readonly relative_ranking?: number;
|
|
13454
|
+
readonly dry_run?: boolean;
|
|
13455
|
+
}
|
|
13456
|
+
|
|
13459
13457
|
interface SellablilityRegionResult {
|
|
13460
13458
|
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
13461
13459
|
readonly regions: string[];
|
|
@@ -13866,6 +13864,43 @@ declare namespace io.flow.v0.models {
|
|
|
13866
13864
|
readonly shipping_notification: io.flow.v0.models.ShippingNotification;
|
|
13867
13865
|
}
|
|
13868
13866
|
|
|
13867
|
+
interface ShippingRateEstimate {
|
|
13868
|
+
readonly origin_address: io.flow.v0.models.Address;
|
|
13869
|
+
readonly destination_address: io.flow.v0.models.Address;
|
|
13870
|
+
readonly shipping_date_time: string;
|
|
13871
|
+
readonly services: string[];
|
|
13872
|
+
readonly available: io.flow.v0.models.ShippingRateEstimateAvailable[];
|
|
13873
|
+
readonly unavailable?: io.flow.v0.models.ShippingRateEstimateUnavailable[];
|
|
13874
|
+
}
|
|
13875
|
+
|
|
13876
|
+
interface ShippingRateEstimateAvailable {
|
|
13877
|
+
readonly service: io.flow.v0.models.RatecardServiceSummary;
|
|
13878
|
+
readonly delivered_duty: io.flow.v0.enums.DeliveredDuty;
|
|
13879
|
+
readonly shipment_window: io.flow.v0.models.ShipmentWindow;
|
|
13880
|
+
readonly total_amount: io.flow.v0.models.Money;
|
|
13881
|
+
readonly base_amount: io.flow.v0.models.Money;
|
|
13882
|
+
readonly fees: io.flow.v0.unions.RatecardFee[];
|
|
13883
|
+
readonly dimensional_weight?: io.flow.v0.models.Measurement;
|
|
13884
|
+
readonly gravitational_weight?: io.flow.v0.models.Measurement;
|
|
13885
|
+
readonly weight_break?: number;
|
|
13886
|
+
}
|
|
13887
|
+
|
|
13888
|
+
interface ShippingRateEstimateRequest {
|
|
13889
|
+
readonly origin_address: io.flow.v0.models.Address;
|
|
13890
|
+
readonly destination_address: io.flow.v0.models.Address;
|
|
13891
|
+
readonly package_dimensions: io.flow.v0.models.Dimension;
|
|
13892
|
+
readonly shipping_date_time: string;
|
|
13893
|
+
readonly delivered_duty?: io.flow.v0.enums.DeliveredDuty;
|
|
13894
|
+
readonly duties_owed?: io.flow.v0.models.Money;
|
|
13895
|
+
readonly taxes_owed?: io.flow.v0.models.Money;
|
|
13896
|
+
readonly line_items?: io.flow.v0.models.LineItemForm[];
|
|
13897
|
+
}
|
|
13898
|
+
|
|
13899
|
+
interface ShippingRateEstimateUnavailable {
|
|
13900
|
+
readonly service: string;
|
|
13901
|
+
readonly reason: string;
|
|
13902
|
+
}
|
|
13903
|
+
|
|
13869
13904
|
interface Shop {
|
|
13870
13905
|
readonly name: string;
|
|
13871
13906
|
readonly id: string;
|
|
@@ -14078,6 +14113,7 @@ declare namespace io.flow.v0.models {
|
|
|
14078
14113
|
readonly third_party_logistics_partners?: io.flow.v0.models.ThirdPartyLogisticsPartner[];
|
|
14079
14114
|
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
14080
14115
|
readonly average_order_weight?: number;
|
|
14116
|
+
readonly average_order_weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
14081
14117
|
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
14082
14118
|
readonly monthly_average?: io.flow.v0.models.MonthlyAverage;
|
|
14083
14119
|
readonly default_country_of_origin?: string;
|
|
@@ -14111,6 +14147,7 @@ declare namespace io.flow.v0.models {
|
|
|
14111
14147
|
readonly third_party_logistics_partners?: io.flow.v0.models.ThirdPartyLogisticsPartner[];
|
|
14112
14148
|
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
14113
14149
|
readonly average_order_weight?: number;
|
|
14150
|
+
readonly average_order_weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
14114
14151
|
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
14115
14152
|
readonly monthly_average_volume_amount?: number;
|
|
14116
14153
|
readonly monthly_average_volume_currency?: string;
|
|
@@ -14254,6 +14291,11 @@ declare namespace io.flow.v0.models {
|
|
|
14254
14291
|
readonly statement: io.flow.v0.models.Statement;
|
|
14255
14292
|
}
|
|
14256
14293
|
|
|
14294
|
+
interface StatementStatusForm {
|
|
14295
|
+
readonly code: io.flow.v0.enums.StatementStatusCode;
|
|
14296
|
+
readonly failure_reason?: io.flow.v0.enums.PayoutStatusFailureCode;
|
|
14297
|
+
}
|
|
14298
|
+
|
|
14257
14299
|
interface StatementUpserted {
|
|
14258
14300
|
readonly discriminator: 'statement_upserted';
|
|
14259
14301
|
readonly event_id: string;
|
|
@@ -14531,11 +14573,34 @@ declare namespace io.flow.v0.models {
|
|
|
14531
14573
|
readonly company_name?: string;
|
|
14532
14574
|
}
|
|
14533
14575
|
|
|
14576
|
+
interface TaxRegistrationDeleted {
|
|
14577
|
+
readonly discriminator: 'tax_registration_deleted';
|
|
14578
|
+
readonly event_id: string;
|
|
14579
|
+
readonly timestamp: string;
|
|
14580
|
+
readonly organization: string;
|
|
14581
|
+
readonly id: string;
|
|
14582
|
+
}
|
|
14583
|
+
|
|
14584
|
+
interface TaxRegistrationDetail {
|
|
14585
|
+
readonly tax_number: string;
|
|
14586
|
+
readonly country: string;
|
|
14587
|
+
readonly tax_code: string;
|
|
14588
|
+
readonly province?: string;
|
|
14589
|
+
}
|
|
14590
|
+
|
|
14534
14591
|
interface TaxRegistrationForm {
|
|
14535
14592
|
readonly number: string;
|
|
14536
14593
|
readonly company_name?: string;
|
|
14537
14594
|
}
|
|
14538
14595
|
|
|
14596
|
+
interface TaxRegistrationUpserted {
|
|
14597
|
+
readonly discriminator: 'tax_registration_upserted';
|
|
14598
|
+
readonly event_id: string;
|
|
14599
|
+
readonly timestamp: string;
|
|
14600
|
+
readonly organization: string;
|
|
14601
|
+
readonly tax_registration: io.flow.v0.models.OrganizationTaxRegistration;
|
|
14602
|
+
}
|
|
14603
|
+
|
|
14539
14604
|
interface TaxReport {
|
|
14540
14605
|
readonly schedule: io.flow.v0.unions.RepeatSchedule;
|
|
14541
14606
|
readonly timezone: string;
|
|
@@ -14814,6 +14879,29 @@ declare namespace io.flow.v0.models {
|
|
|
14814
14879
|
readonly order_number?: string;
|
|
14815
14880
|
}
|
|
14816
14881
|
|
|
14882
|
+
interface TrackingLabelEventUpsertedV2 {
|
|
14883
|
+
readonly discriminator: 'tracking_label_event_upserted_v2';
|
|
14884
|
+
readonly event_id: string;
|
|
14885
|
+
readonly timestamp: string;
|
|
14886
|
+
readonly organization: string;
|
|
14887
|
+
readonly tracking_label_event: io.flow.v0.models.TrackingLabelEventV2;
|
|
14888
|
+
}
|
|
14889
|
+
|
|
14890
|
+
interface TrackingLabelEventV2 {
|
|
14891
|
+
readonly id: string;
|
|
14892
|
+
readonly carrier_id: string;
|
|
14893
|
+
readonly carrier_tracking_number: string;
|
|
14894
|
+
readonly carrier_tracking_url?: string;
|
|
14895
|
+
readonly label_id: string;
|
|
14896
|
+
readonly order_number?: string;
|
|
14897
|
+
readonly status: io.flow.v0.enums.TrackingStatus;
|
|
14898
|
+
readonly substatus?: io.flow.v0.enums.SubstatusCode;
|
|
14899
|
+
readonly carrier_timestamp: string;
|
|
14900
|
+
readonly description?: string;
|
|
14901
|
+
readonly delivery_estimate?: string;
|
|
14902
|
+
readonly address?: io.flow.v0.models.Address;
|
|
14903
|
+
}
|
|
14904
|
+
|
|
14817
14905
|
interface TrackingLabelForm {
|
|
14818
14906
|
readonly tracking_id: string;
|
|
14819
14907
|
readonly status: io.flow.v0.enums.TrackingStatus;
|
|
@@ -15428,7 +15516,8 @@ declare namespace io.flow.v0.unions {
|
|
|
15428
15516
|
| io.flow.v0.models.BankAccountInfoCan
|
|
15429
15517
|
| io.flow.v0.models.BankAccountInfoGbr
|
|
15430
15518
|
| io.flow.v0.models.BankAccountInfoFra
|
|
15431
|
-
| io.flow.v0.models.BankAccountInfoIta
|
|
15519
|
+
| io.flow.v0.models.BankAccountInfoIta
|
|
15520
|
+
| io.flow.v0.models.BankAccountInfoKor;
|
|
15432
15521
|
type BrowserActionConfiguration =
|
|
15433
15522
|
io.flow.v0.models.CardBrowserActionConfiguration;
|
|
15434
15523
|
type CardAuthorizationActionResult =
|
|
@@ -15477,20 +15566,6 @@ declare namespace io.flow.v0.unions {
|
|
|
15477
15566
|
type Event =
|
|
15478
15567
|
| io.flow.v0.models.TestUpserted
|
|
15479
15568
|
| io.flow.v0.models.GenerateLoad
|
|
15480
|
-
| io.flow.v0.models.SarveshItemUpserted
|
|
15481
|
-
| io.flow.v0.models.SarveshItemDeleted
|
|
15482
|
-
| io.flow.v0.models.HoseinItemUpserted
|
|
15483
|
-
| io.flow.v0.models.HoseinItemDeleted
|
|
15484
|
-
| io.flow.v0.models.NiallItemUpserted
|
|
15485
|
-
| io.flow.v0.models.NiallItemDeleted
|
|
15486
|
-
| io.flow.v0.models.RohanItemUpserted
|
|
15487
|
-
| io.flow.v0.models.RohanItemDeleted
|
|
15488
|
-
| io.flow.v0.models.AldoItemUpserted
|
|
15489
|
-
| io.flow.v0.models.AldoItemDeleted
|
|
15490
|
-
| io.flow.v0.models.AnshItemUpserted
|
|
15491
|
-
| io.flow.v0.models.AnshItemDeleted
|
|
15492
|
-
| io.flow.v0.models.AnirbanItemUpserted
|
|
15493
|
-
| io.flow.v0.models.AnirbanItemDeleted
|
|
15494
15569
|
| io.flow.v0.models.TransactionUpserted
|
|
15495
15570
|
| io.flow.v0.models.OrganizationTransactionUpserted
|
|
15496
15571
|
| io.flow.v0.models.OrganizationTransactionDeleted
|
|
@@ -15597,6 +15672,8 @@ declare namespace io.flow.v0.unions {
|
|
|
15597
15672
|
| io.flow.v0.models.OrganizationDeletedV2
|
|
15598
15673
|
| io.flow.v0.models.EcommercePlatformUpserted
|
|
15599
15674
|
| io.flow.v0.models.EcommercePlatformDeleted
|
|
15675
|
+
| io.flow.v0.models.TaxRegistrationUpserted
|
|
15676
|
+
| io.flow.v0.models.TaxRegistrationDeleted
|
|
15600
15677
|
| io.flow.v0.models.OrganizationOnboardingStateUpserted
|
|
15601
15678
|
| io.flow.v0.models.OrganizationOnboardingStateDeleted
|
|
15602
15679
|
| io.flow.v0.models.AuthorizationDeletedV2
|
|
@@ -15644,9 +15721,12 @@ declare namespace io.flow.v0.unions {
|
|
|
15644
15721
|
| io.flow.v0.models.RatecardDeleted
|
|
15645
15722
|
| io.flow.v0.models.ProductRestrictionResultUpserted
|
|
15646
15723
|
| io.flow.v0.models.ProductRestrictionResultDeleted
|
|
15724
|
+
| io.flow.v0.models.ProductSellabilityResultUpserted
|
|
15725
|
+
| io.flow.v0.models.ProductSellabilityResultDeleted
|
|
15647
15726
|
| io.flow.v0.models.ShopifyLocalizationSettingUpserted
|
|
15648
15727
|
| io.flow.v0.models.ShopifyLocalizationSettingDeleted
|
|
15649
|
-
| io.flow.v0.models.TrackingLabelEventUpserted
|
|
15728
|
+
| io.flow.v0.models.TrackingLabelEventUpserted
|
|
15729
|
+
| io.flow.v0.models.TrackingLabelEventUpsertedV2;
|
|
15650
15730
|
type ExpandableCard =
|
|
15651
15731
|
| io.flow.v0.models.Card
|
|
15652
15732
|
| io.flow.v0.models.CardReference
|
|
@@ -15729,13 +15809,18 @@ declare namespace io.flow.v0.unions {
|
|
|
15729
15809
|
type LogoImage =
|
|
15730
15810
|
| io.flow.v0.models.LogoImageSvg
|
|
15731
15811
|
| io.flow.v0.models.LogoImageSetStatic;
|
|
15732
|
-
type MerchantApplication =
|
|
15812
|
+
type MerchantApplication =
|
|
15813
|
+
| io.flow.v0.models.ShopifyMerchantApplication
|
|
15814
|
+
| io.flow.v0.models.CommonMerchantApplication;
|
|
15733
15815
|
type MerchantApplicationForm =
|
|
15734
|
-
io.flow.v0.models.ShopifyMerchantApplicationForm
|
|
15816
|
+
| io.flow.v0.models.ShopifyMerchantApplicationForm
|
|
15817
|
+
| io.flow.v0.models.CommonMerchantApplicationForm;
|
|
15735
15818
|
type MerchantApplicationPutForm =
|
|
15736
|
-
io.flow.v0.models.ShopifyMerchantApplicationPutForm
|
|
15819
|
+
| io.flow.v0.models.ShopifyMerchantApplicationPutForm
|
|
15820
|
+
| io.flow.v0.models.CommonMerchantApplicationPutForm;
|
|
15737
15821
|
type MerchantApplicationsSummary =
|
|
15738
|
-
io.flow.v0.models.ShopifyMerchantApplicationsSummary
|
|
15822
|
+
| io.flow.v0.models.ShopifyMerchantApplicationsSummary
|
|
15823
|
+
| io.flow.v0.models.CommonMerchantApplicationsSummary;
|
|
15739
15824
|
type OnboardingState =
|
|
15740
15825
|
| io.flow.v0.models.InComplianceReview
|
|
15741
15826
|
| io.flow.v0.models.SetupInProgress
|
|
@@ -15895,9 +15980,13 @@ declare namespace io.flow.v0.unions {
|
|
|
15895
15980
|
type SdkAdyenV3AuthenticationToken =
|
|
15896
15981
|
| io.flow.v0.models.AdyenV3FingerprintToken
|
|
15897
15982
|
| io.flow.v0.models.AdyenV3ChallengeToken;
|
|
15983
|
+
type SellabilityRequest =
|
|
15984
|
+
| io.flow.v0.models.ProductSellabilityForm
|
|
15985
|
+
| io.flow.v0.models.SellabilityScreeningForm;
|
|
15898
15986
|
type SellabilityResponse =
|
|
15899
15987
|
| io.flow.v0.models.ProductSellability
|
|
15900
|
-
| io.flow.v0.models.SellabilityError
|
|
15988
|
+
| io.flow.v0.models.SellabilityError
|
|
15989
|
+
| io.flow.v0.models.SellabilityScreening;
|
|
15901
15990
|
type ServiceDescription =
|
|
15902
15991
|
| io.flow.v0.models.ServiceSummary
|
|
15903
15992
|
| io.flow.v0.models.ServiceUnknown;
|
|
@@ -16054,8 +16143,6 @@ export type AdyenNativeActionDetails =
|
|
|
16054
16143
|
export type AdyenNativeData = io.flow.v0.unions.AdyenNativeData;
|
|
16055
16144
|
export type AdyenV3ChallengeToken = io.flow.v0.models.AdyenV3ChallengeToken;
|
|
16056
16145
|
export type AdyenV3FingerprintToken = io.flow.v0.models.AdyenV3FingerprintToken;
|
|
16057
|
-
export type AldoItemDeleted = io.flow.v0.models.AldoItemDeleted;
|
|
16058
|
-
export type AldoItemUpserted = io.flow.v0.models.AldoItemUpserted;
|
|
16059
16146
|
export type Allocation = io.flow.v0.models.Allocation;
|
|
16060
16147
|
export type AllocationComponent = io.flow.v0.unions.AllocationComponent;
|
|
16061
16148
|
export type AllocationDeletedV2 = io.flow.v0.models.AllocationDeletedV2;
|
|
@@ -16076,10 +16163,6 @@ export type AllocationV2 = io.flow.v0.models.AllocationV2;
|
|
|
16076
16163
|
export type AmountMargin = io.flow.v0.models.AmountMargin;
|
|
16077
16164
|
export type AmountMarginForm = io.flow.v0.models.AmountMarginForm;
|
|
16078
16165
|
export type AnalyticsExportType = io.flow.v0.models.AnalyticsExportType;
|
|
16079
|
-
export type AnirbanItemDeleted = io.flow.v0.models.AnirbanItemDeleted;
|
|
16080
|
-
export type AnirbanItemUpserted = io.flow.v0.models.AnirbanItemUpserted;
|
|
16081
|
-
export type AnshItemDeleted = io.flow.v0.models.AnshItemDeleted;
|
|
16082
|
-
export type AnshItemUpserted = io.flow.v0.models.AnshItemUpserted;
|
|
16083
16166
|
export type ApplePayMerchantValidationPayload =
|
|
16084
16167
|
io.flow.v0.models.ApplePayMerchantValidationPayload;
|
|
16085
16168
|
export type ApplepaySdkCreateResultActionDetails =
|
|
@@ -16173,6 +16256,7 @@ export type BankAccountInfoCan = io.flow.v0.models.BankAccountInfoCan;
|
|
|
16173
16256
|
export type BankAccountInfoFra = io.flow.v0.models.BankAccountInfoFra;
|
|
16174
16257
|
export type BankAccountInfoGbr = io.flow.v0.models.BankAccountInfoGbr;
|
|
16175
16258
|
export type BankAccountInfoIta = io.flow.v0.models.BankAccountInfoIta;
|
|
16259
|
+
export type BankAccountInfoKor = io.flow.v0.models.BankAccountInfoKor;
|
|
16176
16260
|
export type BankAccountInfoUsa = io.flow.v0.models.BankAccountInfoUsa;
|
|
16177
16261
|
export type BankAccountReference = io.flow.v0.models.BankAccountReference;
|
|
16178
16262
|
export type BankAccountSummary = io.flow.v0.models.BankAccountSummary;
|
|
@@ -16361,6 +16445,15 @@ export type CheckoutUrls = io.flow.v0.models.CheckoutUrls;
|
|
|
16361
16445
|
export type CheckoutUrlsForm = io.flow.v0.models.CheckoutUrlsForm;
|
|
16362
16446
|
export type Cleartext = io.flow.v0.models.Cleartext;
|
|
16363
16447
|
export type CommercialInvoiceFee = io.flow.v0.models.CommercialInvoiceFee;
|
|
16448
|
+
export type CommercialInvoiceMode = io.flow.v0.enums.CommercialInvoiceMode;
|
|
16449
|
+
export type CommonMerchantApplication =
|
|
16450
|
+
io.flow.v0.models.CommonMerchantApplication;
|
|
16451
|
+
export type CommonMerchantApplicationForm =
|
|
16452
|
+
io.flow.v0.models.CommonMerchantApplicationForm;
|
|
16453
|
+
export type CommonMerchantApplicationPutForm =
|
|
16454
|
+
io.flow.v0.models.CommonMerchantApplicationPutForm;
|
|
16455
|
+
export type CommonMerchantApplicationsSummary =
|
|
16456
|
+
io.flow.v0.models.CommonMerchantApplicationsSummary;
|
|
16364
16457
|
export type Company = io.flow.v0.models.Company;
|
|
16365
16458
|
export type ConfirmationDetails = io.flow.v0.unions.ConfirmationDetails;
|
|
16366
16459
|
export type ConsumerInvoice = io.flow.v0.models.ConsumerInvoice;
|
|
@@ -16692,6 +16785,7 @@ export type ExportType = io.flow.v0.unions.ExportType;
|
|
|
16692
16785
|
export type ExportVersion = io.flow.v0.models.ExportVersion;
|
|
16693
16786
|
export type ExporterOfRecord = io.flow.v0.enums.ExporterOfRecord;
|
|
16694
16787
|
export type ExternalCard = io.flow.v0.models.ExternalCard;
|
|
16788
|
+
export type ExternalOrderSummary = io.flow.v0.models.ExternalOrderSummary;
|
|
16695
16789
|
export type FeeDeduction = io.flow.v0.models.FeeDeduction;
|
|
16696
16790
|
export type FeeDeductionType = io.flow.v0.enums.FeeDeductionType;
|
|
16697
16791
|
export type FeeWeight = io.flow.v0.models.FeeWeight;
|
|
@@ -16829,8 +16923,6 @@ export type Hop = io.flow.v0.models.Hop;
|
|
|
16829
16923
|
export type HopEstimate = io.flow.v0.models.HopEstimate;
|
|
16830
16924
|
export type HopEstimateV2 = io.flow.v0.models.HopEstimateV2;
|
|
16831
16925
|
export type HopV2 = io.flow.v0.models.HopV2;
|
|
16832
|
-
export type HoseinItemDeleted = io.flow.v0.models.HoseinItemDeleted;
|
|
16833
|
-
export type HoseinItemUpserted = io.flow.v0.models.HoseinItemUpserted;
|
|
16834
16926
|
export type Hs10 = io.flow.v0.models.Hs10;
|
|
16835
16927
|
export type Hs10CodeDeleted = io.flow.v0.models.Hs10CodeDeleted;
|
|
16836
16928
|
export type Hs10CodeUpserted = io.flow.v0.models.Hs10CodeUpserted;
|
|
@@ -17055,6 +17147,8 @@ export type MerchantOfRecordPaymentForm =
|
|
|
17055
17147
|
io.flow.v0.models.MerchantOfRecordPaymentForm;
|
|
17056
17148
|
export type MerchantOnboardingAddress =
|
|
17057
17149
|
io.flow.v0.models.MerchantOnboardingAddress;
|
|
17150
|
+
export type MerchantOnboardingBeneficiaryDetails =
|
|
17151
|
+
io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
17058
17152
|
export type MerchantRejected = io.flow.v0.models.MerchantRejected;
|
|
17059
17153
|
export type MerchantRejectedReason = io.flow.v0.enums.MerchantRejectedReason;
|
|
17060
17154
|
export type Method = io.flow.v0.enums.Method;
|
|
@@ -17066,8 +17160,6 @@ export type MonthlyAverageVolume = io.flow.v0.models.MonthlyAverageVolume;
|
|
|
17066
17160
|
export type Name = io.flow.v0.models.Name;
|
|
17067
17161
|
export type NameForm = io.flow.v0.models.NameForm;
|
|
17068
17162
|
export type NeedsActionAttributes = io.flow.v0.models.NeedsActionAttributes;
|
|
17069
|
-
export type NiallItemDeleted = io.flow.v0.models.NiallItemDeleted;
|
|
17070
|
-
export type NiallItemUpserted = io.flow.v0.models.NiallItemUpserted;
|
|
17071
17163
|
export type NotificationDeletedV2 = io.flow.v0.models.NotificationDeletedV2;
|
|
17072
17164
|
export type NotificationUpsertedV2 = io.flow.v0.models.NotificationUpsertedV2;
|
|
17073
17165
|
export type NumberRange = io.flow.v0.models.NumberRange;
|
|
@@ -17256,6 +17348,10 @@ export type OrganizationSessionAuthorization =
|
|
|
17256
17348
|
io.flow.v0.models.OrganizationSessionAuthorization;
|
|
17257
17349
|
export type OrganizationStatus = io.flow.v0.enums.OrganizationStatus;
|
|
17258
17350
|
export type OrganizationSummary = io.flow.v0.models.OrganizationSummary;
|
|
17351
|
+
export type OrganizationTaxRegistration =
|
|
17352
|
+
io.flow.v0.models.OrganizationTaxRegistration;
|
|
17353
|
+
export type OrganizationTaxRegistrationForm =
|
|
17354
|
+
io.flow.v0.models.OrganizationTaxRegistrationForm;
|
|
17259
17355
|
export type OrganizationToken = io.flow.v0.models.OrganizationToken;
|
|
17260
17356
|
export type OrganizationTokenForm = io.flow.v0.models.OrganizationTokenForm;
|
|
17261
17357
|
export type OrganizationTokenFormV2 = io.flow.v0.models.OrganizationTokenFormV2;
|
|
@@ -17592,6 +17688,7 @@ export type PriceWithBaseAndDetails = io.flow.v0.models.PriceWithBaseAndDetails;
|
|
|
17592
17688
|
export type Pricing = io.flow.v0.models.Pricing;
|
|
17593
17689
|
export type PricingLevySetting = io.flow.v0.enums.PricingLevySetting;
|
|
17594
17690
|
export type PricingSettings = io.flow.v0.models.PricingSettings;
|
|
17691
|
+
export type PricingType = io.flow.v0.enums.PricingType;
|
|
17595
17692
|
export type PricingVersion = io.flow.v0.models.PricingVersion;
|
|
17596
17693
|
export type ProcessingEstimate = io.flow.v0.models.ProcessingEstimate;
|
|
17597
17694
|
export type Product = io.flow.v0.models.Product;
|
|
@@ -17605,6 +17702,12 @@ export type ProductRestrictionResultUpserted =
|
|
|
17605
17702
|
io.flow.v0.models.ProductRestrictionResultUpserted;
|
|
17606
17703
|
export type ProductSellability = io.flow.v0.models.ProductSellability;
|
|
17607
17704
|
export type ProductSellabilityForm = io.flow.v0.models.ProductSellabilityForm;
|
|
17705
|
+
export type ProductSellabilityResult =
|
|
17706
|
+
io.flow.v0.models.ProductSellabilityResult;
|
|
17707
|
+
export type ProductSellabilityResultDeleted =
|
|
17708
|
+
io.flow.v0.models.ProductSellabilityResultDeleted;
|
|
17709
|
+
export type ProductSellabilityResultUpserted =
|
|
17710
|
+
io.flow.v0.models.ProductSellabilityResultUpserted;
|
|
17608
17711
|
export type ProductTaxonomyCategory = io.flow.v0.models.ProductTaxonomyCategory;
|
|
17609
17712
|
export type ProductTaxonomyData = io.flow.v0.models.ProductTaxonomyData;
|
|
17610
17713
|
export type ProductTaxonomyValue = io.flow.v0.models.ProductTaxonomyValue;
|
|
@@ -17721,6 +17824,7 @@ export type RepeatMonthly = io.flow.v0.models.RepeatMonthly;
|
|
|
17721
17824
|
export type RepeatSchedule = io.flow.v0.unions.RepeatSchedule;
|
|
17722
17825
|
export type RepeatWeekly = io.flow.v0.models.RepeatWeekly;
|
|
17723
17826
|
export type RestrictedReviewStatus = io.flow.v0.enums.RestrictedReviewStatus;
|
|
17827
|
+
export type RestrictionEnvironment = io.flow.v0.enums.RestrictionEnvironment;
|
|
17724
17828
|
export type Return = io.flow.v0.models.Return;
|
|
17725
17829
|
export type ReturnForm = io.flow.v0.models.ReturnForm;
|
|
17726
17830
|
export type ReturnItemReference = io.flow.v0.models.ReturnItemReference;
|
|
@@ -17755,8 +17859,6 @@ export type ReversalStatus = io.flow.v0.enums.ReversalStatus;
|
|
|
17755
17859
|
export type ReversalUpserted = io.flow.v0.models.ReversalUpserted;
|
|
17756
17860
|
export type ReversalVersion = io.flow.v0.models.ReversalVersion;
|
|
17757
17861
|
export type ReviewStatus = io.flow.v0.enums.ReviewStatus;
|
|
17758
|
-
export type RohanItemDeleted = io.flow.v0.models.RohanItemDeleted;
|
|
17759
|
-
export type RohanItemUpserted = io.flow.v0.models.RohanItemUpserted;
|
|
17760
17862
|
export type Role = io.flow.v0.enums.Role;
|
|
17761
17863
|
export type Romanization = io.flow.v0.models.Romanization;
|
|
17762
17864
|
export type RomanizationForm = io.flow.v0.models.RomanizationForm;
|
|
@@ -17765,8 +17867,6 @@ export type RoundingMethod = io.flow.v0.enums.RoundingMethod;
|
|
|
17765
17867
|
export type RoundingType = io.flow.v0.enums.RoundingType;
|
|
17766
17868
|
export type RouteAudit = io.flow.v0.models.RouteAudit;
|
|
17767
17869
|
export type RuleEffectType = io.flow.v0.enums.RuleEffectType;
|
|
17768
|
-
export type SarveshItemDeleted = io.flow.v0.models.SarveshItemDeleted;
|
|
17769
|
-
export type SarveshItemUpserted = io.flow.v0.models.SarveshItemUpserted;
|
|
17770
17870
|
export type Schedule = io.flow.v0.models.Schedule;
|
|
17771
17871
|
export type ScheduleExceptionStatus = io.flow.v0.enums.ScheduleExceptionStatus;
|
|
17772
17872
|
export type ScheduledExport = io.flow.v0.models.ScheduledExport;
|
|
@@ -17778,11 +17878,32 @@ export type SecurityRatecardFee = io.flow.v0.models.SecurityRatecardFee;
|
|
|
17778
17878
|
export type SecurityServiceFee = io.flow.v0.models.SecurityServiceFee;
|
|
17779
17879
|
export type SelectIssuerOptionActionDetails =
|
|
17780
17880
|
io.flow.v0.models.SelectIssuerOptionActionDetails;
|
|
17881
|
+
export type SelfBillingAgreement = io.flow.v0.models.SelfBillingAgreement;
|
|
17781
17882
|
export type SellabilityError = io.flow.v0.models.SellabilityError;
|
|
17782
17883
|
export type SellabilityErrorCode = io.flow.v0.enums.SellabilityErrorCode;
|
|
17884
|
+
export type SellabilityNeedsActionAttributes =
|
|
17885
|
+
io.flow.v0.models.SellabilityNeedsActionAttributes;
|
|
17886
|
+
export type SellabilityReasonWithRegions =
|
|
17887
|
+
io.flow.v0.models.SellabilityReasonWithRegions;
|
|
17888
|
+
export type SellabilityRegionResult = io.flow.v0.models.SellabilityRegionResult;
|
|
17889
|
+
export type SellabilityRegionWithReasons =
|
|
17890
|
+
io.flow.v0.models.SellabilityRegionWithReasons;
|
|
17891
|
+
export type SellabilityRequest = io.flow.v0.unions.SellabilityRequest;
|
|
17783
17892
|
export type SellabilityRequestStatus =
|
|
17784
17893
|
io.flow.v0.enums.SellabilityRequestStatus;
|
|
17785
17894
|
export type SellabilityResponse = io.flow.v0.unions.SellabilityResponse;
|
|
17895
|
+
export type SellabilityRestrictedReason =
|
|
17896
|
+
io.flow.v0.models.SellabilityRestrictedReason;
|
|
17897
|
+
export type SellabilityRestrictedRegion =
|
|
17898
|
+
io.flow.v0.models.SellabilityRestrictedRegion;
|
|
17899
|
+
export type SellabilityResultErrorCode =
|
|
17900
|
+
io.flow.v0.enums.SellabilityResultErrorCode;
|
|
17901
|
+
export type SellabilityResultStatus = io.flow.v0.enums.SellabilityResultStatus;
|
|
17902
|
+
export type SellabilityScreening = io.flow.v0.models.SellabilityScreening;
|
|
17903
|
+
export type SellabilityScreeningForm =
|
|
17904
|
+
io.flow.v0.models.SellabilityScreeningForm;
|
|
17905
|
+
export type SellabilityScreeningMode =
|
|
17906
|
+
io.flow.v0.enums.SellabilityScreeningMode;
|
|
17786
17907
|
export type SellablilityRegionResult =
|
|
17787
17908
|
io.flow.v0.models.SellablilityRegionResult;
|
|
17788
17909
|
export type ServiceDescription = io.flow.v0.unions.ServiceDescription;
|
|
@@ -17874,6 +17995,13 @@ export type ShippingNotificationForm =
|
|
|
17874
17995
|
io.flow.v0.unions.ShippingNotificationForm;
|
|
17875
17996
|
export type ShippingNotificationVersion =
|
|
17876
17997
|
io.flow.v0.models.ShippingNotificationVersion;
|
|
17998
|
+
export type ShippingRateEstimate = io.flow.v0.models.ShippingRateEstimate;
|
|
17999
|
+
export type ShippingRateEstimateAvailable =
|
|
18000
|
+
io.flow.v0.models.ShippingRateEstimateAvailable;
|
|
18001
|
+
export type ShippingRateEstimateRequest =
|
|
18002
|
+
io.flow.v0.models.ShippingRateEstimateRequest;
|
|
18003
|
+
export type ShippingRateEstimateUnavailable =
|
|
18004
|
+
io.flow.v0.models.ShippingRateEstimateUnavailable;
|
|
17877
18005
|
export type Shop = io.flow.v0.models.Shop;
|
|
17878
18006
|
export type ShopifyCart = io.flow.v0.models.ShopifyCart;
|
|
17879
18007
|
export type ShopifyCartAddForm = io.flow.v0.unions.ShopifyCartAddForm;
|
|
@@ -17959,6 +18087,8 @@ export type SortDirection = io.flow.v0.enums.SortDirection;
|
|
|
17959
18087
|
export type Statement = io.flow.v0.models.Statement;
|
|
17960
18088
|
export type StatementAttachmentType = io.flow.v0.enums.StatementAttachmentType;
|
|
17961
18089
|
export type StatementDeleted = io.flow.v0.models.StatementDeleted;
|
|
18090
|
+
export type StatementStatusCode = io.flow.v0.enums.StatementStatusCode;
|
|
18091
|
+
export type StatementStatusForm = io.flow.v0.models.StatementStatusForm;
|
|
17962
18092
|
export type StatementUpserted = io.flow.v0.models.StatementUpserted;
|
|
17963
18093
|
export type StoredMethodUsageStep = io.flow.v0.enums.StoredMethodUsageStep;
|
|
17964
18094
|
export type Strategy = io.flow.v0.enums.Strategy;
|
|
@@ -18020,7 +18150,10 @@ export type TaxDutyTransactionReasonCode =
|
|
|
18020
18150
|
io.flow.v0.enums.TaxDutyTransactionReasonCode;
|
|
18021
18151
|
export type TaxJurisdictionType = io.flow.v0.enums.TaxJurisdictionType;
|
|
18022
18152
|
export type TaxRegistration = io.flow.v0.models.TaxRegistration;
|
|
18153
|
+
export type TaxRegistrationDeleted = io.flow.v0.models.TaxRegistrationDeleted;
|
|
18154
|
+
export type TaxRegistrationDetail = io.flow.v0.models.TaxRegistrationDetail;
|
|
18023
18155
|
export type TaxRegistrationForm = io.flow.v0.models.TaxRegistrationForm;
|
|
18156
|
+
export type TaxRegistrationUpserted = io.flow.v0.models.TaxRegistrationUpserted;
|
|
18024
18157
|
export type TaxReport = io.flow.v0.models.TaxReport;
|
|
18025
18158
|
export type TaxReportType = io.flow.v0.enums.TaxReportType;
|
|
18026
18159
|
export type TaxSetting = io.flow.v0.unions.TaxSetting;
|
|
@@ -18082,6 +18215,9 @@ export type TrackingForm = io.flow.v0.models.TrackingForm;
|
|
|
18082
18215
|
export type TrackingLabel = io.flow.v0.models.TrackingLabel;
|
|
18083
18216
|
export type TrackingLabelEventUpserted =
|
|
18084
18217
|
io.flow.v0.models.TrackingLabelEventUpserted;
|
|
18218
|
+
export type TrackingLabelEventUpsertedV2 =
|
|
18219
|
+
io.flow.v0.models.TrackingLabelEventUpsertedV2;
|
|
18220
|
+
export type TrackingLabelEventV2 = io.flow.v0.models.TrackingLabelEventV2;
|
|
18085
18221
|
export type TrackingLabelForm = io.flow.v0.models.TrackingLabelForm;
|
|
18086
18222
|
export type TrackingLabelSummary = io.flow.v0.models.TrackingLabelSummary;
|
|
18087
18223
|
export type TrackingLabelVersion = io.flow.v0.models.TrackingLabelVersion;
|