@flowio/types 11.24.129 → 11.24.131
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +919 -80
- package/dist/api.d.ts +384 -283
- package/package.json +2 -2
- package/src/api-internal.ts +1127 -93
- package/src/api.ts +471 -345
package/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 {
|
|
@@ -3227,9 +3229,9 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
3227
3229
|
readonly rejection_reason?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
3228
3230
|
}
|
|
3229
3231
|
|
|
3230
|
-
interface
|
|
3232
|
+
interface ChannelOrganizationDomains {
|
|
3231
3233
|
readonly internal: string;
|
|
3232
|
-
readonly
|
|
3234
|
+
readonly external: string;
|
|
3233
3235
|
}
|
|
3234
3236
|
|
|
3235
3237
|
interface ChannelOrganizationInstallation {
|
|
@@ -3243,7 +3245,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
3243
3245
|
}
|
|
3244
3246
|
|
|
3245
3247
|
interface ChannelOrganizationMetadata {
|
|
3246
|
-
readonly domain: io.flow.channel.internal.v0.models.
|
|
3248
|
+
readonly domain: io.flow.channel.internal.v0.models.ChannelOrganizationDomains;
|
|
3247
3249
|
readonly token: string;
|
|
3248
3250
|
}
|
|
3249
3251
|
|
|
@@ -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'
|
|
@@ -4475,7 +4337,6 @@ declare namespace io.flow.v0.enums {
|
|
|
4475
4337
|
| 'item_origin_deleted'
|
|
4476
4338
|
| 'harmonized_landed_cost_upserted'
|
|
4477
4339
|
| 'fully_harmonized_item_upserted'
|
|
4478
|
-
| 'label_upserted'
|
|
4479
4340
|
| 'label_deleted_v2'
|
|
4480
4341
|
| 'label_upserted_v2'
|
|
4481
4342
|
| 'notification_upserted_v2'
|
|
@@ -4498,6 +4359,8 @@ declare namespace io.flow.v0.enums {
|
|
|
4498
4359
|
| 'organization_deleted_v2'
|
|
4499
4360
|
| 'ecommerce_platform_upserted'
|
|
4500
4361
|
| 'ecommerce_platform_deleted'
|
|
4362
|
+
| 'tax_registration_upserted'
|
|
4363
|
+
| 'tax_registration_deleted'
|
|
4501
4364
|
| 'organization_onboarding_state_upserted'
|
|
4502
4365
|
| 'organization_onboarding_state_deleted'
|
|
4503
4366
|
| 'authorization_deleted_v2'
|
|
@@ -4545,9 +4408,12 @@ declare namespace io.flow.v0.enums {
|
|
|
4545
4408
|
| 'ratecard_deleted'
|
|
4546
4409
|
| 'product_restriction_result_upserted'
|
|
4547
4410
|
| 'product_restriction_result_deleted'
|
|
4411
|
+
| 'product_sellability_result_upserted'
|
|
4412
|
+
| 'product_sellability_result_deleted'
|
|
4548
4413
|
| 'shopify_localization_setting_upserted'
|
|
4549
4414
|
| 'shopify_localization_setting_deleted'
|
|
4550
|
-
| 'tracking_label_event_upserted'
|
|
4415
|
+
| 'tracking_label_event_upserted'
|
|
4416
|
+
| 'tracking_label_event_upserted_v2';
|
|
4551
4417
|
type ExceptionType = 'open' | 'closed';
|
|
4552
4418
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
4553
4419
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -5022,6 +4888,7 @@ declare namespace io.flow.v0.enums {
|
|
|
5022
4888
|
type RefundStatus = 'pending' | 'succeeded' | 'failed' | 'canceled';
|
|
5023
4889
|
type RegionType = 'state' | 'province' | 'jurisdiction';
|
|
5024
4890
|
type RestrictedReviewStatus = 'in_review' | 'reviewed';
|
|
4891
|
+
type RestrictionEnvironment = 'sandbox' | 'production' | 'qa';
|
|
5025
4892
|
type ReturnItemStatus = 'returnable' | 'non-returnable';
|
|
5026
4893
|
type ReturnPolicyState = 'current' | 'deleting' | 'updating';
|
|
5027
4894
|
type ReturnStatus = 'open' | 'refunded';
|
|
@@ -5068,6 +4935,9 @@ declare namespace io.flow.v0.enums {
|
|
|
5068
4935
|
| 'wait_for_high_fidelity'
|
|
5069
4936
|
| 'external_service_unavailable';
|
|
5070
4937
|
type SellabilityRequestStatus = 'commit';
|
|
4938
|
+
type SellabilityResultErrorCode = 'insufficient_details' | 'generic_error';
|
|
4939
|
+
type SellabilityResultStatus = 'in_review' | 'succeeded' | 'failed';
|
|
4940
|
+
type SellabilityScreeningMode = 'pre_onboarding' | 'default_on' | 'active';
|
|
5071
4941
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
5072
4942
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
5073
4943
|
type ShippingConfigurationType = 'default' | 'variant';
|
|
@@ -5093,7 +4963,8 @@ declare namespace io.flow.v0.enums {
|
|
|
5093
4963
|
type ShopifyLocalizationMethod = 'api' | 'ssr';
|
|
5094
4964
|
type ShopifySyncCheck = 'localized_variants' | 'flow_variant_metafields';
|
|
5095
4965
|
type SortDirection = 'ascending' | 'descending';
|
|
5096
|
-
type StatementAttachmentType = 'csv';
|
|
4966
|
+
type StatementAttachmentType = 'csv' | 'pdf';
|
|
4967
|
+
type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
5097
4968
|
type StoredMethodUsageStep = 'initial' | 'subsequent';
|
|
5098
4969
|
type Strategy = 'range' | 'from' | 'to';
|
|
5099
4970
|
type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
|
|
@@ -5170,11 +5041,14 @@ declare namespace io.flow.v0.enums {
|
|
|
5170
5041
|
| 'order_edit'
|
|
5171
5042
|
| 'mixed_fulfilment_non_lvg'
|
|
5172
5043
|
| 'lvg_refund'
|
|
5044
|
+
| 'us_inbound_tax_refund'
|
|
5173
5045
|
| 'order_cancellation_above_de_min'
|
|
5174
5046
|
| 'wyol_shipment_above_de_min'
|
|
5175
5047
|
| 'full_refund_without_shipment'
|
|
5176
5048
|
| 'unfulfilled_order_above_de_min';
|
|
5049
|
+
type TaxJurisdictionType = 'country' | 'province';
|
|
5177
5050
|
type TaxReportType = 'consumer' | 'b2b';
|
|
5051
|
+
type TaxType = 'vat' | 'gst' | 'hst' | 'pst' | 'qst' | 'sales_tax';
|
|
5178
5052
|
type TaxVerificationResult = 'valid' | 'invalid' | 'unable_to_validate';
|
|
5179
5053
|
type TaxabilityType = 'tax_rule';
|
|
5180
5054
|
type TaxabilityValue = 'exempt';
|
|
@@ -5238,7 +5112,9 @@ declare namespace io.flow.v0.enums {
|
|
|
5238
5112
|
| 'merchant_payout'
|
|
5239
5113
|
| 'merchant_refund'
|
|
5240
5114
|
| 'ge_revenue_share'
|
|
5241
|
-
| 'merchant_fee'
|
|
5115
|
+
| 'merchant_fee'
|
|
5116
|
+
| 'b2b_tax'
|
|
5117
|
+
| 'b2b_tax_refund';
|
|
5242
5118
|
type TransferStatus = 'succeeded' | 'canceled';
|
|
5243
5119
|
type TransferType =
|
|
5244
5120
|
| 'payout_to_merchant'
|
|
@@ -5247,7 +5123,13 @@ declare namespace io.flow.v0.enums {
|
|
|
5247
5123
|
| 'disputed_amount_from_merchant'
|
|
5248
5124
|
| 'duties_and_taxes_adjustment_from_merchant'
|
|
5249
5125
|
| 'refund_from_merchant';
|
|
5250
|
-
type TrueupSource =
|
|
5126
|
+
type TrueupSource =
|
|
5127
|
+
| 'flow'
|
|
5128
|
+
| 'channel'
|
|
5129
|
+
| 'dhl-parcel'
|
|
5130
|
+
| 'dhl'
|
|
5131
|
+
| 'ups'
|
|
5132
|
+
| 'fedex';
|
|
5251
5133
|
type TrueupSurchargeType =
|
|
5252
5134
|
| 'fuel'
|
|
5253
5135
|
| 'remote_area'
|
|
@@ -5624,20 +5506,6 @@ declare namespace io.flow.v0.models {
|
|
|
5624
5506
|
readonly fingerprint_token: string;
|
|
5625
5507
|
}
|
|
5626
5508
|
|
|
5627
|
-
interface AldoItemDeleted {
|
|
5628
|
-
readonly discriminator: 'aldo_item_deleted';
|
|
5629
|
-
readonly event_id: string;
|
|
5630
|
-
readonly timestamp: string;
|
|
5631
|
-
readonly id: string;
|
|
5632
|
-
}
|
|
5633
|
-
|
|
5634
|
-
interface AldoItemUpserted {
|
|
5635
|
-
readonly discriminator: 'aldo_item_upserted';
|
|
5636
|
-
readonly event_id: string;
|
|
5637
|
-
readonly timestamp: string;
|
|
5638
|
-
readonly item: io.flow.tech.onboarding.playground.v0.models.AldoItem;
|
|
5639
|
-
}
|
|
5640
|
-
|
|
5641
5509
|
interface Allocation {
|
|
5642
5510
|
readonly order: io.flow.v0.models.AllocationOrderSummary;
|
|
5643
5511
|
readonly details: io.flow.v0.unions.AllocationDetail[];
|
|
@@ -5762,34 +5630,6 @@ declare namespace io.flow.v0.models {
|
|
|
5762
5630
|
readonly interval?: io.flow.v0.enums.UnitOfTime;
|
|
5763
5631
|
}
|
|
5764
5632
|
|
|
5765
|
-
interface AnirbanItemDeleted {
|
|
5766
|
-
readonly discriminator: 'anirban_item_deleted';
|
|
5767
|
-
readonly event_id: string;
|
|
5768
|
-
readonly timestamp: string;
|
|
5769
|
-
readonly id: string;
|
|
5770
|
-
}
|
|
5771
|
-
|
|
5772
|
-
interface AnirbanItemUpserted {
|
|
5773
|
-
readonly discriminator: 'anirban_item_upserted';
|
|
5774
|
-
readonly event_id: string;
|
|
5775
|
-
readonly timestamp: string;
|
|
5776
|
-
readonly item: io.flow.tech.onboarding.playground.v0.models.AnirbanItem;
|
|
5777
|
-
}
|
|
5778
|
-
|
|
5779
|
-
interface AnshItemDeleted {
|
|
5780
|
-
readonly discriminator: 'ansh_item_deleted';
|
|
5781
|
-
readonly event_id: string;
|
|
5782
|
-
readonly timestamp: string;
|
|
5783
|
-
readonly id: string;
|
|
5784
|
-
}
|
|
5785
|
-
|
|
5786
|
-
interface AnshItemUpserted {
|
|
5787
|
-
readonly discriminator: 'ansh_item_upserted';
|
|
5788
|
-
readonly event_id: string;
|
|
5789
|
-
readonly timestamp: string;
|
|
5790
|
-
readonly item: io.flow.tech.onboarding.playground.v0.models.AnshItem;
|
|
5791
|
-
}
|
|
5792
|
-
|
|
5793
5633
|
interface ApplePayMerchantValidationPayload {
|
|
5794
5634
|
readonly discriminator: 'apple_pay_merchant_validation_payload';
|
|
5795
5635
|
readonly validation_url: string;
|
|
@@ -6077,9 +5917,13 @@ declare namespace io.flow.v0.models {
|
|
|
6077
5917
|
readonly key: string;
|
|
6078
5918
|
readonly invoice: io.flow.v0.models.B2BInvoiceReference;
|
|
6079
5919
|
readonly lines: io.flow.v0.unions.ConsumerInvoiceLine[];
|
|
5920
|
+
readonly tax_lines?: io.flow.v0.models.InvoiceTaxLine[];
|
|
5921
|
+
readonly tax?: io.flow.v0.models.Money;
|
|
6080
5922
|
readonly documents: io.flow.v0.models.ConsumerInvoiceDocument[];
|
|
6081
5923
|
readonly attributes: Record<string, string>;
|
|
6082
5924
|
readonly b2b_invoice_type: io.flow.v0.enums.B2BInvoiceType;
|
|
5925
|
+
readonly center?: io.flow.v0.models.ConsumerInvoiceCenterReference;
|
|
5926
|
+
readonly order?: io.flow.v0.models.ConsumerInvoiceOrderSummary;
|
|
6083
5927
|
}
|
|
6084
5928
|
|
|
6085
5929
|
interface B2BCreditMemoDeleted {
|
|
@@ -6111,6 +5955,7 @@ declare namespace io.flow.v0.models {
|
|
|
6111
5955
|
readonly center?: io.flow.v0.models.ConsumerInvoiceCenterReference;
|
|
6112
5956
|
readonly destination?: io.flow.v0.models.OrderAddress;
|
|
6113
5957
|
readonly tax: io.flow.v0.models.Money;
|
|
5958
|
+
readonly tax_lines?: io.flow.v0.models.InvoiceTaxLine[];
|
|
6114
5959
|
readonly lines: io.flow.v0.unions.ConsumerInvoiceLine[];
|
|
6115
5960
|
readonly documents: io.flow.v0.models.ConsumerInvoiceDocument[];
|
|
6116
5961
|
readonly attributes: Record<string, string>;
|
|
@@ -6905,6 +6750,7 @@ declare namespace io.flow.v0.models {
|
|
|
6905
6750
|
readonly shopify_order_summary: io.flow.v0.models.ChannelShopifyOrderSummary;
|
|
6906
6751
|
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
6907
6752
|
readonly reasons?: io.flow.v0.models.ChannelShopifyOrderStateReason[];
|
|
6753
|
+
readonly external_order_summary?: io.flow.v0.models.ExternalOrderSummary;
|
|
6908
6754
|
}
|
|
6909
6755
|
|
|
6910
6756
|
interface ChannelShopifyOrderStateDeleted {
|
|
@@ -7134,6 +6980,77 @@ declare namespace io.flow.v0.models {
|
|
|
7134
6980
|
readonly amount: io.flow.v0.models.Money;
|
|
7135
6981
|
}
|
|
7136
6982
|
|
|
6983
|
+
interface CommonMerchantApplication {
|
|
6984
|
+
readonly discriminator: 'common_merchant_application';
|
|
6985
|
+
readonly id: string;
|
|
6986
|
+
readonly organization_id: string;
|
|
6987
|
+
readonly organization_reference: io.flow.v0.models.OnboardingOrganizationReference;
|
|
6988
|
+
readonly status: io.flow.v0.enums.OnboardingApplicationStatus;
|
|
6989
|
+
readonly company?: io.flow.v0.models.MerchantInfo;
|
|
6990
|
+
readonly indirect_tax?: io.flow.v0.models.IndirectTax;
|
|
6991
|
+
readonly ultimate_beneficiary_owner?: io.flow.v0.models.UltimateBeneficiaryOwner;
|
|
6992
|
+
readonly business_url?: string;
|
|
6993
|
+
readonly business_description?: string;
|
|
6994
|
+
readonly business_address?: io.flow.v0.models.Address;
|
|
6995
|
+
readonly refund_percentage?: number;
|
|
6996
|
+
readonly chargeback_percentage?: number;
|
|
6997
|
+
readonly beneficiary_details?: io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
6998
|
+
readonly other_trade_sector?: string;
|
|
6999
|
+
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
7000
|
+
readonly center_address?: io.flow.v0.models.Address;
|
|
7001
|
+
readonly average_order_weight?: number;
|
|
7002
|
+
readonly average_order_weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
7003
|
+
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
7004
|
+
readonly monthly_average?: io.flow.v0.models.MonthlyAverage;
|
|
7005
|
+
readonly default_country_of_origin?: string;
|
|
7006
|
+
readonly rate_card: string;
|
|
7007
|
+
readonly shop?: io.flow.v0.models.Shop;
|
|
7008
|
+
readonly created_at: string;
|
|
7009
|
+
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
7010
|
+
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
7011
|
+
readonly average_order_value?: io.flow.v0.models.Money;
|
|
7012
|
+
readonly mcc_codes?: number[];
|
|
7013
|
+
}
|
|
7014
|
+
|
|
7015
|
+
interface CommonMerchantApplicationForm {
|
|
7016
|
+
readonly discriminator: 'common_merchant_application_form';
|
|
7017
|
+
readonly company?: io.flow.v0.models.MerchantInfo;
|
|
7018
|
+
readonly indirect_tax?: io.flow.v0.models.IndirectTax;
|
|
7019
|
+
readonly ultimate_beneficiary_owner?: io.flow.v0.models.UltimateBeneficiaryOwner;
|
|
7020
|
+
readonly business_url?: string;
|
|
7021
|
+
readonly business_description?: string;
|
|
7022
|
+
readonly business_address?: io.flow.v0.models.Address;
|
|
7023
|
+
readonly refund_percentage?: number;
|
|
7024
|
+
readonly chargeback_percentage?: number;
|
|
7025
|
+
readonly beneficiary_details?: io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
7026
|
+
readonly other_trade_sector?: string;
|
|
7027
|
+
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
7028
|
+
readonly center_address?: io.flow.v0.models.Address;
|
|
7029
|
+
readonly average_order_weight?: number;
|
|
7030
|
+
readonly average_order_weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
7031
|
+
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
7032
|
+
readonly monthly_average_volume_amount?: number;
|
|
7033
|
+
readonly monthly_average_volume_currency?: string;
|
|
7034
|
+
readonly monthly_average_number_transactions?: number;
|
|
7035
|
+
readonly default_country_of_origin?: string;
|
|
7036
|
+
readonly shop?: io.flow.v0.models.Shop;
|
|
7037
|
+
readonly rate_card?: string;
|
|
7038
|
+
readonly last_year_xborder_gmv?: io.flow.v0.models.Money;
|
|
7039
|
+
readonly last_month_xborder_gmv?: io.flow.v0.models.Money;
|
|
7040
|
+
readonly average_order_value?: io.flow.v0.models.Money;
|
|
7041
|
+
readonly mcc_codes?: number[];
|
|
7042
|
+
}
|
|
7043
|
+
|
|
7044
|
+
interface CommonMerchantApplicationPutForm {
|
|
7045
|
+
readonly discriminator: 'common_merchant_application_put_form';
|
|
7046
|
+
readonly status?: io.flow.v0.enums.OnboardingApplicationStatus;
|
|
7047
|
+
}
|
|
7048
|
+
|
|
7049
|
+
interface CommonMerchantApplicationsSummary {
|
|
7050
|
+
readonly discriminator: 'common_merchant_applications_summary';
|
|
7051
|
+
readonly total: number;
|
|
7052
|
+
}
|
|
7053
|
+
|
|
7137
7054
|
interface Company {
|
|
7138
7055
|
readonly discriminator: 'company';
|
|
7139
7056
|
readonly legal_name: string;
|
|
@@ -7204,6 +7121,7 @@ declare namespace io.flow.v0.models {
|
|
|
7204
7121
|
|
|
7205
7122
|
interface ConsumerInvoiceLineDiscount {
|
|
7206
7123
|
readonly discriminator: 'discount';
|
|
7124
|
+
readonly line_id?: string;
|
|
7207
7125
|
readonly price: io.flow.v0.models.Price;
|
|
7208
7126
|
}
|
|
7209
7127
|
|
|
@@ -7214,6 +7132,7 @@ declare namespace io.flow.v0.models {
|
|
|
7214
7132
|
|
|
7215
7133
|
interface ConsumerInvoiceLineItem {
|
|
7216
7134
|
readonly discriminator: 'item';
|
|
7135
|
+
readonly line_id?: string;
|
|
7217
7136
|
readonly item: io.flow.v0.models.ItemReference;
|
|
7218
7137
|
readonly description: string;
|
|
7219
7138
|
readonly quantity: number;
|
|
@@ -7235,6 +7154,7 @@ declare namespace io.flow.v0.models {
|
|
|
7235
7154
|
|
|
7236
7155
|
interface ConsumerInvoiceLineShipping {
|
|
7237
7156
|
readonly discriminator: 'shipping';
|
|
7157
|
+
readonly line_id?: string;
|
|
7238
7158
|
readonly price: io.flow.v0.models.Price;
|
|
7239
7159
|
readonly discount?: io.flow.v0.models.Price;
|
|
7240
7160
|
readonly tax?: io.flow.v0.models.ConsumerInvoiceLevy;
|
|
@@ -7251,6 +7171,7 @@ declare namespace io.flow.v0.models {
|
|
|
7251
7171
|
|
|
7252
7172
|
interface ConsumerInvoiceLineTip {
|
|
7253
7173
|
readonly discriminator: 'tip';
|
|
7174
|
+
readonly line_id?: string;
|
|
7254
7175
|
readonly price: io.flow.v0.models.Price;
|
|
7255
7176
|
readonly tax?: io.flow.v0.models.ConsumerInvoiceLevy;
|
|
7256
7177
|
}
|
|
@@ -7363,6 +7284,8 @@ declare namespace io.flow.v0.models {
|
|
|
7363
7284
|
readonly documents: io.flow.v0.models.ConsumerInvoiceDocument[];
|
|
7364
7285
|
readonly attributes: Record<string, string>;
|
|
7365
7286
|
readonly tax_registration?: io.flow.v0.models.TaxRegistration;
|
|
7287
|
+
readonly center?: io.flow.v0.models.ConsumerInvoiceCenterReference;
|
|
7288
|
+
readonly order?: io.flow.v0.models.ConsumerInvoiceOrderSummary;
|
|
7366
7289
|
}
|
|
7367
7290
|
|
|
7368
7291
|
interface CreditMemoDeleted {
|
|
@@ -8149,6 +8072,7 @@ declare namespace io.flow.v0.models {
|
|
|
8149
8072
|
readonly amount: io.flow.v0.models.Money;
|
|
8150
8073
|
readonly origin_region?: io.flow.v0.models.RatecardRegionReference;
|
|
8151
8074
|
readonly destination_region?: io.flow.v0.models.RatecardRegionReference;
|
|
8075
|
+
readonly destination_regions?: io.flow.v0.models.RatecardRegionReference[];
|
|
8152
8076
|
readonly interval_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
8153
8077
|
}
|
|
8154
8078
|
|
|
@@ -8487,6 +8411,11 @@ declare namespace io.flow.v0.models {
|
|
|
8487
8411
|
readonly type?: io.flow.v0.enums.CardType;
|
|
8488
8412
|
}
|
|
8489
8413
|
|
|
8414
|
+
interface ExternalOrderSummary {
|
|
8415
|
+
readonly id: string;
|
|
8416
|
+
readonly edit_ids: string[];
|
|
8417
|
+
}
|
|
8418
|
+
|
|
8490
8419
|
interface FeeDeduction {
|
|
8491
8420
|
readonly type: io.flow.v0.enums.FeeDeductionType;
|
|
8492
8421
|
readonly amount: number;
|
|
@@ -8789,7 +8718,7 @@ declare namespace io.flow.v0.models {
|
|
|
8789
8718
|
readonly discriminator: 'ge_catalog_item_ingestion_result';
|
|
8790
8719
|
readonly event_id: string;
|
|
8791
8720
|
readonly event_type: io.flow.v0.enums.GeEventType;
|
|
8792
|
-
readonly environment: io.flow.v0.enums.
|
|
8721
|
+
readonly environment: io.flow.v0.enums.RestrictionEnvironment;
|
|
8793
8722
|
readonly timestamp: string;
|
|
8794
8723
|
readonly source: string;
|
|
8795
8724
|
readonly response: io.flow.v0.enums.GeCatalogItemIngestionResponse;
|
|
@@ -8856,7 +8785,7 @@ declare namespace io.flow.v0.models {
|
|
|
8856
8785
|
readonly organization: string;
|
|
8857
8786
|
readonly event_id: string;
|
|
8858
8787
|
readonly event_type: io.flow.v0.enums.GeEventType;
|
|
8859
|
-
readonly environment: io.flow.v0.enums.
|
|
8788
|
+
readonly environment: io.flow.v0.enums.RestrictionEnvironment;
|
|
8860
8789
|
readonly timestamp: string;
|
|
8861
8790
|
readonly id: string;
|
|
8862
8791
|
readonly operation: io.flow.v0.enums.ChangeType;
|
|
@@ -8867,7 +8796,7 @@ declare namespace io.flow.v0.models {
|
|
|
8867
8796
|
readonly organization: string;
|
|
8868
8797
|
readonly event_id: string;
|
|
8869
8798
|
readonly event_type: io.flow.v0.enums.GeEventType;
|
|
8870
|
-
readonly environment: io.flow.v0.enums.
|
|
8799
|
+
readonly environment: io.flow.v0.enums.RestrictionEnvironment;
|
|
8871
8800
|
readonly timestamp: string;
|
|
8872
8801
|
readonly operation: io.flow.v0.enums.ChangeType;
|
|
8873
8802
|
readonly ge_product_restriction_result: io.flow.v0.models.ProductRestrictionResult;
|
|
@@ -9065,20 +8994,6 @@ declare namespace io.flow.v0.models {
|
|
|
9065
8994
|
readonly hop_estimate: io.flow.v0.models.HopEstimateV2;
|
|
9066
8995
|
}
|
|
9067
8996
|
|
|
9068
|
-
interface HoseinItemDeleted {
|
|
9069
|
-
readonly discriminator: 'hosein_item_deleted';
|
|
9070
|
-
readonly event_id: string;
|
|
9071
|
-
readonly timestamp: string;
|
|
9072
|
-
readonly id: string;
|
|
9073
|
-
}
|
|
9074
|
-
|
|
9075
|
-
interface HoseinItemUpserted {
|
|
9076
|
-
readonly discriminator: 'hosein_item_upserted';
|
|
9077
|
-
readonly event_id: string;
|
|
9078
|
-
readonly timestamp: string;
|
|
9079
|
-
readonly item: io.flow.tech.onboarding.playground.v0.models.HoseinItem;
|
|
9080
|
-
}
|
|
9081
|
-
|
|
9082
8997
|
interface Hs10 {
|
|
9083
8998
|
readonly id: string;
|
|
9084
8999
|
readonly item: io.flow.v0.models.HarmonizedItemReference;
|
|
@@ -9323,6 +9238,11 @@ declare namespace io.flow.v0.models {
|
|
|
9323
9238
|
readonly date_to?: string;
|
|
9324
9239
|
}
|
|
9325
9240
|
|
|
9241
|
+
interface InvoiceTaxLine {
|
|
9242
|
+
readonly line_id: string;
|
|
9243
|
+
readonly tax_breakdown: io.flow.v0.models.TaxBreakdown[];
|
|
9244
|
+
}
|
|
9245
|
+
|
|
9326
9246
|
interface IssuerReference {
|
|
9327
9247
|
readonly id: string;
|
|
9328
9248
|
}
|
|
@@ -9692,32 +9612,6 @@ declare namespace io.flow.v0.models {
|
|
|
9692
9612
|
readonly length: io.flow.v0.enums.UnitOfLength;
|
|
9693
9613
|
}
|
|
9694
9614
|
|
|
9695
|
-
interface LabelUpserted {
|
|
9696
|
-
readonly discriminator: 'label_upserted';
|
|
9697
|
-
readonly event_id: string;
|
|
9698
|
-
readonly timestamp: string;
|
|
9699
|
-
readonly organization: string;
|
|
9700
|
-
readonly label_id: string;
|
|
9701
|
-
readonly carrier_tracking_number: string;
|
|
9702
|
-
readonly commercial_invoice: string;
|
|
9703
|
-
readonly flow_tracking_number: string;
|
|
9704
|
-
readonly destination: io.flow.v0.models.ShippingAddress;
|
|
9705
|
-
readonly origin: io.flow.v0.models.ShippingAddress;
|
|
9706
|
-
readonly carrier: string;
|
|
9707
|
-
readonly service: string;
|
|
9708
|
-
readonly zpl?: string;
|
|
9709
|
-
readonly pdf?: string;
|
|
9710
|
-
readonly png?: string;
|
|
9711
|
-
readonly order?: string;
|
|
9712
|
-
readonly carrier_tracking_number_url?: string;
|
|
9713
|
-
readonly flow_tracking_number_url?: string;
|
|
9714
|
-
readonly center_key?: string;
|
|
9715
|
-
readonly recipient?: io.flow.v0.enums.ShipmentRecipient;
|
|
9716
|
-
readonly package?: io.flow.v0.models.ShippingLabelPackage;
|
|
9717
|
-
readonly order_identifier?: string;
|
|
9718
|
-
readonly fulfillment_key?: string;
|
|
9719
|
-
}
|
|
9720
|
-
|
|
9721
9615
|
interface LabelUpsertedV2 {
|
|
9722
9616
|
readonly discriminator: 'label_upserted_v2';
|
|
9723
9617
|
readonly event_id: string;
|
|
@@ -10144,6 +10038,7 @@ declare namespace io.flow.v0.models {
|
|
|
10144
10038
|
readonly region?: io.flow.v0.enums.RegionType;
|
|
10145
10039
|
readonly region_value?: string;
|
|
10146
10040
|
readonly category_code?: string;
|
|
10041
|
+
readonly description?: string;
|
|
10147
10042
|
}
|
|
10148
10043
|
|
|
10149
10044
|
interface MerchantOfRecordAuthorizationForm {
|
|
@@ -10179,6 +10074,8 @@ declare namespace io.flow.v0.models {
|
|
|
10179
10074
|
interface MerchantOfRecordEntityRegistration {
|
|
10180
10075
|
readonly number: string;
|
|
10181
10076
|
readonly country: string;
|
|
10077
|
+
readonly province_number?: string;
|
|
10078
|
+
readonly province?: string;
|
|
10182
10079
|
}
|
|
10183
10080
|
|
|
10184
10081
|
interface MerchantOfRecordPaymentForm {
|
|
@@ -10198,6 +10095,17 @@ declare namespace io.flow.v0.models {
|
|
|
10198
10095
|
readonly country?: string;
|
|
10199
10096
|
}
|
|
10200
10097
|
|
|
10098
|
+
interface MerchantOnboardingBeneficiaryDetails {
|
|
10099
|
+
readonly name?: string;
|
|
10100
|
+
readonly address?: io.flow.v0.models.Address;
|
|
10101
|
+
readonly phone?: string;
|
|
10102
|
+
readonly email?: string;
|
|
10103
|
+
readonly bank_account_number?: string;
|
|
10104
|
+
readonly bank_routing_number?: string;
|
|
10105
|
+
readonly bank_name?: string;
|
|
10106
|
+
readonly bank_address?: io.flow.v0.models.Address;
|
|
10107
|
+
}
|
|
10108
|
+
|
|
10201
10109
|
interface MerchantRejected {
|
|
10202
10110
|
readonly discriminator: 'merchant_rejected';
|
|
10203
10111
|
readonly reason: io.flow.v0.enums.MerchantRejectedReason;
|
|
@@ -10245,20 +10153,7 @@ declare namespace io.flow.v0.models {
|
|
|
10245
10153
|
interface NeedsActionAttributes {
|
|
10246
10154
|
readonly reason_code: string;
|
|
10247
10155
|
readonly category_metafield_handles: string[];
|
|
10248
|
-
|
|
10249
|
-
|
|
10250
|
-
interface NiallItemDeleted {
|
|
10251
|
-
readonly discriminator: 'niall_item_deleted';
|
|
10252
|
-
readonly event_id: string;
|
|
10253
|
-
readonly timestamp: string;
|
|
10254
|
-
readonly id: string;
|
|
10255
|
-
}
|
|
10256
|
-
|
|
10257
|
-
interface NiallItemUpserted {
|
|
10258
|
-
readonly discriminator: 'niall_item_upserted';
|
|
10259
|
-
readonly event_id: string;
|
|
10260
|
-
readonly timestamp: string;
|
|
10261
|
-
readonly item: io.flow.tech.onboarding.playground.v0.models.NiallItem;
|
|
10156
|
+
readonly require_msds?: boolean;
|
|
10262
10157
|
}
|
|
10263
10158
|
|
|
10264
10159
|
interface NotificationDeletedV2 {
|
|
@@ -11123,6 +11018,22 @@ declare namespace io.flow.v0.models {
|
|
|
11123
11018
|
readonly environment: io.flow.v0.enums.Environment;
|
|
11124
11019
|
}
|
|
11125
11020
|
|
|
11021
|
+
interface OrganizationTaxRegistration {
|
|
11022
|
+
readonly id: string;
|
|
11023
|
+
readonly organization: io.flow.v0.models.OrganizationSummary;
|
|
11024
|
+
readonly address: io.flow.v0.models.BillingAddress;
|
|
11025
|
+
readonly registration: io.flow.v0.models.TaxRegistrationDetail;
|
|
11026
|
+
readonly self_billing_agreement: io.flow.v0.models.SelfBillingAgreement;
|
|
11027
|
+
}
|
|
11028
|
+
|
|
11029
|
+
interface OrganizationTaxRegistrationForm {
|
|
11030
|
+
readonly tax_number: string;
|
|
11031
|
+
readonly country: string;
|
|
11032
|
+
readonly province?: string;
|
|
11033
|
+
readonly self_billing_agreement_effective_at: string;
|
|
11034
|
+
readonly self_billing_agreement_expires_at?: string;
|
|
11035
|
+
}
|
|
11036
|
+
|
|
11126
11037
|
interface OrganizationToken {
|
|
11127
11038
|
readonly discriminator: 'organization_token';
|
|
11128
11039
|
readonly id: string;
|
|
@@ -11920,6 +11831,7 @@ declare namespace io.flow.v0.models {
|
|
|
11920
11831
|
readonly supported_actions: io.flow.v0.enums.PaymentActionType[];
|
|
11921
11832
|
readonly payment_capture_option?: io.flow.v0.unions.PaymentCaptureOption;
|
|
11922
11833
|
readonly review?: io.flow.v0.models.PaymentRequestReview;
|
|
11834
|
+
readonly client_secret?: string;
|
|
11923
11835
|
}
|
|
11924
11836
|
|
|
11925
11837
|
interface PaymentRequestBilling {
|
|
@@ -12448,7 +12360,7 @@ declare namespace io.flow.v0.models {
|
|
|
12448
12360
|
readonly updated_by?: string;
|
|
12449
12361
|
readonly product_restriction_id?: string;
|
|
12450
12362
|
readonly hs_code?: string;
|
|
12451
|
-
readonly restricted_regions_by_type?: io.flow.v0.models.
|
|
12363
|
+
readonly restricted_regions_by_type?: io.flow.v0.models.SellabilityRegionResult[];
|
|
12452
12364
|
readonly needs_action_attributes?: io.flow.v0.models.NeedsActionAttributes[];
|
|
12453
12365
|
}
|
|
12454
12366
|
|
|
@@ -12474,10 +12386,11 @@ declare namespace io.flow.v0.models {
|
|
|
12474
12386
|
readonly product_id?: string;
|
|
12475
12387
|
readonly request_id: string;
|
|
12476
12388
|
readonly hs6_code: string;
|
|
12477
|
-
readonly restricted_regions: io.flow.v0.models.
|
|
12389
|
+
readonly restricted_regions: io.flow.v0.models.SellabilityRegionResult[];
|
|
12478
12390
|
}
|
|
12479
12391
|
|
|
12480
12392
|
interface ProductSellabilityForm {
|
|
12393
|
+
readonly discriminator: 'product_sellability_form';
|
|
12481
12394
|
readonly shop_id: string;
|
|
12482
12395
|
readonly product_id?: string;
|
|
12483
12396
|
readonly name: string;
|
|
@@ -12488,6 +12401,31 @@ declare namespace io.flow.v0.models {
|
|
|
12488
12401
|
readonly dry_run?: boolean;
|
|
12489
12402
|
}
|
|
12490
12403
|
|
|
12404
|
+
interface ProductSellabilityResult {
|
|
12405
|
+
readonly merchant_id?: string;
|
|
12406
|
+
readonly product_id: string;
|
|
12407
|
+
readonly restricted_regions: io.flow.v0.models.SellabilityRestrictedRegion[];
|
|
12408
|
+
readonly needs_action_attributes?: io.flow.v0.models.SellabilityNeedsActionAttributes[];
|
|
12409
|
+
readonly request_id?: string;
|
|
12410
|
+
readonly hs6_code?: string;
|
|
12411
|
+
}
|
|
12412
|
+
|
|
12413
|
+
interface ProductSellabilityResultDeleted {
|
|
12414
|
+
readonly discriminator: 'product_sellability_result_deleted';
|
|
12415
|
+
readonly event_id: string;
|
|
12416
|
+
readonly timestamp: string;
|
|
12417
|
+
readonly organization: string;
|
|
12418
|
+
readonly id: string;
|
|
12419
|
+
}
|
|
12420
|
+
|
|
12421
|
+
interface ProductSellabilityResultUpserted {
|
|
12422
|
+
readonly discriminator: 'product_sellability_result_upserted';
|
|
12423
|
+
readonly event_id: string;
|
|
12424
|
+
readonly timestamp: string;
|
|
12425
|
+
readonly organization: string;
|
|
12426
|
+
readonly product_sellability_result: io.flow.v0.models.ProductSellabilityResult;
|
|
12427
|
+
}
|
|
12428
|
+
|
|
12491
12429
|
interface ProductTaxonomyCategory {
|
|
12492
12430
|
readonly name: string;
|
|
12493
12431
|
readonly full_name: string;
|
|
@@ -12737,6 +12675,7 @@ declare namespace io.flow.v0.models {
|
|
|
12737
12675
|
readonly center_id?: string;
|
|
12738
12676
|
readonly taxes_owed?: io.flow.v0.models.Money;
|
|
12739
12677
|
readonly duties_owed?: io.flow.v0.models.Money;
|
|
12678
|
+
readonly commercial_invoice_mode?: io.flow.v0.enums.CommercialInvoiceMode;
|
|
12740
12679
|
}
|
|
12741
12680
|
|
|
12742
12681
|
interface RatecardEstimateSummaryForm {
|
|
@@ -13361,20 +13300,6 @@ declare namespace io.flow.v0.models {
|
|
|
13361
13300
|
readonly reversal: io.flow.v0.models.Reversal;
|
|
13362
13301
|
}
|
|
13363
13302
|
|
|
13364
|
-
interface RohanItemDeleted {
|
|
13365
|
-
readonly discriminator: 'rohan_item_deleted';
|
|
13366
|
-
readonly event_id: string;
|
|
13367
|
-
readonly timestamp: string;
|
|
13368
|
-
readonly id: string;
|
|
13369
|
-
}
|
|
13370
|
-
|
|
13371
|
-
interface RohanItemUpserted {
|
|
13372
|
-
readonly discriminator: 'rohan_item_upserted';
|
|
13373
|
-
readonly event_id: string;
|
|
13374
|
-
readonly timestamp: string;
|
|
13375
|
-
readonly item: io.flow.tech.onboarding.playground.v0.models.RohanItem;
|
|
13376
|
-
}
|
|
13377
|
-
|
|
13378
13303
|
interface Romanization {
|
|
13379
13304
|
readonly address?: io.flow.v0.models.Address;
|
|
13380
13305
|
readonly contact?: io.flow.v0.models.Contact;
|
|
@@ -13398,20 +13323,6 @@ declare namespace io.flow.v0.models {
|
|
|
13398
13323
|
readonly roles: io.flow.v0.enums.FlowRole[];
|
|
13399
13324
|
}
|
|
13400
13325
|
|
|
13401
|
-
interface SarveshItemDeleted {
|
|
13402
|
-
readonly discriminator: 'sarvesh_item_deleted';
|
|
13403
|
-
readonly event_id: string;
|
|
13404
|
-
readonly timestamp: string;
|
|
13405
|
-
readonly id: string;
|
|
13406
|
-
}
|
|
13407
|
-
|
|
13408
|
-
interface SarveshItemUpserted {
|
|
13409
|
-
readonly discriminator: 'sarvesh_item_upserted';
|
|
13410
|
-
readonly event_id: string;
|
|
13411
|
-
readonly timestamp: string;
|
|
13412
|
-
readonly item: io.flow.tech.onboarding.playground.v0.models.SarveshItem;
|
|
13413
|
-
}
|
|
13414
|
-
|
|
13415
13326
|
interface Schedule {
|
|
13416
13327
|
readonly calendar?: io.flow.v0.enums.Calendar;
|
|
13417
13328
|
readonly holiday: io.flow.v0.enums.HolidayCalendar;
|
|
@@ -13463,12 +13374,61 @@ declare namespace io.flow.v0.models {
|
|
|
13463
13374
|
readonly issuer_options: io.flow.v0.models.IssuerReference[];
|
|
13464
13375
|
}
|
|
13465
13376
|
|
|
13377
|
+
interface SelfBillingAgreement {
|
|
13378
|
+
readonly effective_at: string;
|
|
13379
|
+
readonly expires_at: string;
|
|
13380
|
+
}
|
|
13381
|
+
|
|
13466
13382
|
interface SellabilityError {
|
|
13467
13383
|
readonly discriminator: 'sellability_error';
|
|
13468
13384
|
readonly code: io.flow.v0.enums.SellabilityErrorCode;
|
|
13469
13385
|
readonly messages: string[];
|
|
13470
13386
|
}
|
|
13471
13387
|
|
|
13388
|
+
interface SellabilityNeedsActionAttributes {
|
|
13389
|
+
readonly reason_code: string;
|
|
13390
|
+
readonly category_metafield_handles: string[];
|
|
13391
|
+
readonly require_msds?: boolean;
|
|
13392
|
+
}
|
|
13393
|
+
|
|
13394
|
+
interface SellabilityRegionResult {
|
|
13395
|
+
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
13396
|
+
readonly regions: string[];
|
|
13397
|
+
}
|
|
13398
|
+
|
|
13399
|
+
interface SellabilityRegionWithReasons {
|
|
13400
|
+
readonly region: string;
|
|
13401
|
+
readonly reasons: string[];
|
|
13402
|
+
}
|
|
13403
|
+
|
|
13404
|
+
interface SellabilityRestrictedRegion {
|
|
13405
|
+
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
13406
|
+
readonly regions_with_reasons: io.flow.v0.models.SellabilityRegionWithReasons[];
|
|
13407
|
+
}
|
|
13408
|
+
|
|
13409
|
+
interface SellabilityScreening {
|
|
13410
|
+
readonly discriminator: 'sellability_screening';
|
|
13411
|
+
readonly sellability_result?: io.flow.v0.models.ProductSellabilityResult;
|
|
13412
|
+
readonly request_id: string;
|
|
13413
|
+
readonly status: io.flow.v0.enums.SellabilityResultStatus;
|
|
13414
|
+
readonly error_code?: io.flow.v0.enums.SellabilityResultErrorCode;
|
|
13415
|
+
readonly error_message?: string;
|
|
13416
|
+
}
|
|
13417
|
+
|
|
13418
|
+
interface SellabilityScreeningForm {
|
|
13419
|
+
readonly discriminator: 'sellability_screening_form';
|
|
13420
|
+
readonly merchant_id: string;
|
|
13421
|
+
readonly product_id: string;
|
|
13422
|
+
readonly name: string;
|
|
13423
|
+
readonly price: io.flow.v0.models.Money;
|
|
13424
|
+
readonly description: string;
|
|
13425
|
+
readonly taxonomy_category: io.flow.v0.models.ProductTaxonomyCategory;
|
|
13426
|
+
readonly mode: io.flow.v0.enums.SellabilityScreeningMode;
|
|
13427
|
+
readonly catalog_size?: number;
|
|
13428
|
+
readonly relative_ranking?: number;
|
|
13429
|
+
readonly dry_run?: boolean;
|
|
13430
|
+
}
|
|
13431
|
+
|
|
13472
13432
|
interface SellablilityRegionResult {
|
|
13473
13433
|
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
13474
13434
|
readonly regions: string[];
|
|
@@ -13879,6 +13839,43 @@ declare namespace io.flow.v0.models {
|
|
|
13879
13839
|
readonly shipping_notification: io.flow.v0.models.ShippingNotification;
|
|
13880
13840
|
}
|
|
13881
13841
|
|
|
13842
|
+
interface ShippingRateEstimate {
|
|
13843
|
+
readonly origin_address: io.flow.v0.models.Address;
|
|
13844
|
+
readonly destination_address: io.flow.v0.models.Address;
|
|
13845
|
+
readonly shipping_date_time: string;
|
|
13846
|
+
readonly services: string[];
|
|
13847
|
+
readonly available: io.flow.v0.models.ShippingRateEstimateAvailable[];
|
|
13848
|
+
readonly unavailable?: io.flow.v0.models.ShippingRateEstimateUnavailable[];
|
|
13849
|
+
}
|
|
13850
|
+
|
|
13851
|
+
interface ShippingRateEstimateAvailable {
|
|
13852
|
+
readonly service: io.flow.v0.models.RatecardServiceSummary;
|
|
13853
|
+
readonly delivered_duty: io.flow.v0.enums.DeliveredDuty;
|
|
13854
|
+
readonly shipment_window: io.flow.v0.models.ShipmentWindow;
|
|
13855
|
+
readonly total_amount: io.flow.v0.models.Money;
|
|
13856
|
+
readonly base_amount: io.flow.v0.models.Money;
|
|
13857
|
+
readonly fees: io.flow.v0.unions.RatecardFee[];
|
|
13858
|
+
readonly dimensional_weight?: io.flow.v0.models.Measurement;
|
|
13859
|
+
readonly gravitational_weight?: io.flow.v0.models.Measurement;
|
|
13860
|
+
readonly weight_break?: number;
|
|
13861
|
+
}
|
|
13862
|
+
|
|
13863
|
+
interface ShippingRateEstimateRequest {
|
|
13864
|
+
readonly origin_address: io.flow.v0.models.Address;
|
|
13865
|
+
readonly destination_address: io.flow.v0.models.Address;
|
|
13866
|
+
readonly package_dimensions: io.flow.v0.models.Dimension;
|
|
13867
|
+
readonly shipping_date_time: string;
|
|
13868
|
+
readonly delivered_duty?: io.flow.v0.enums.DeliveredDuty;
|
|
13869
|
+
readonly duties_owed?: io.flow.v0.models.Money;
|
|
13870
|
+
readonly taxes_owed?: io.flow.v0.models.Money;
|
|
13871
|
+
readonly line_items?: io.flow.v0.models.LineItemForm[];
|
|
13872
|
+
}
|
|
13873
|
+
|
|
13874
|
+
interface ShippingRateEstimateUnavailable {
|
|
13875
|
+
readonly service: string;
|
|
13876
|
+
readonly reason: string;
|
|
13877
|
+
}
|
|
13878
|
+
|
|
13882
13879
|
interface Shop {
|
|
13883
13880
|
readonly name: string;
|
|
13884
13881
|
readonly id: string;
|
|
@@ -14091,6 +14088,7 @@ declare namespace io.flow.v0.models {
|
|
|
14091
14088
|
readonly third_party_logistics_partners?: io.flow.v0.models.ThirdPartyLogisticsPartner[];
|
|
14092
14089
|
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
14093
14090
|
readonly average_order_weight?: number;
|
|
14091
|
+
readonly average_order_weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
14094
14092
|
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
14095
14093
|
readonly monthly_average?: io.flow.v0.models.MonthlyAverage;
|
|
14096
14094
|
readonly default_country_of_origin?: string;
|
|
@@ -14124,6 +14122,7 @@ declare namespace io.flow.v0.models {
|
|
|
14124
14122
|
readonly third_party_logistics_partners?: io.flow.v0.models.ThirdPartyLogisticsPartner[];
|
|
14125
14123
|
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
14126
14124
|
readonly average_order_weight?: number;
|
|
14125
|
+
readonly average_order_weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
14127
14126
|
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
14128
14127
|
readonly monthly_average_volume_amount?: number;
|
|
14129
14128
|
readonly monthly_average_volume_currency?: string;
|
|
@@ -14267,6 +14266,11 @@ declare namespace io.flow.v0.models {
|
|
|
14267
14266
|
readonly statement: io.flow.v0.models.Statement;
|
|
14268
14267
|
}
|
|
14269
14268
|
|
|
14269
|
+
interface StatementStatusForm {
|
|
14270
|
+
readonly code: io.flow.v0.enums.StatementStatusCode;
|
|
14271
|
+
readonly failure_reason?: io.flow.v0.enums.PayoutStatusFailureCode;
|
|
14272
|
+
}
|
|
14273
|
+
|
|
14270
14274
|
interface StatementUpserted {
|
|
14271
14275
|
readonly discriminator: 'statement_upserted';
|
|
14272
14276
|
readonly event_id: string;
|
|
@@ -14437,6 +14441,14 @@ declare namespace io.flow.v0.models {
|
|
|
14437
14441
|
readonly deminimis?: io.flow.v0.unions.Deminimis;
|
|
14438
14442
|
}
|
|
14439
14443
|
|
|
14444
|
+
interface TaxBreakdown {
|
|
14445
|
+
readonly label: string;
|
|
14446
|
+
readonly calculated_tax: io.flow.v0.models.Money;
|
|
14447
|
+
readonly rate: number;
|
|
14448
|
+
readonly line_total: io.flow.v0.models.Money;
|
|
14449
|
+
readonly jurisdiction_type: io.flow.v0.enums.TaxJurisdictionType;
|
|
14450
|
+
}
|
|
14451
|
+
|
|
14440
14452
|
interface TaxDutyCalculatorValidationError {
|
|
14441
14453
|
readonly code: io.flow.v0.enums.TaxDutyCalculatorValidationErrorCode;
|
|
14442
14454
|
readonly messages: string[];
|
|
@@ -14536,11 +14548,34 @@ declare namespace io.flow.v0.models {
|
|
|
14536
14548
|
readonly company_name?: string;
|
|
14537
14549
|
}
|
|
14538
14550
|
|
|
14551
|
+
interface TaxRegistrationDeleted {
|
|
14552
|
+
readonly discriminator: 'tax_registration_deleted';
|
|
14553
|
+
readonly event_id: string;
|
|
14554
|
+
readonly timestamp: string;
|
|
14555
|
+
readonly organization: string;
|
|
14556
|
+
readonly id: string;
|
|
14557
|
+
}
|
|
14558
|
+
|
|
14559
|
+
interface TaxRegistrationDetail {
|
|
14560
|
+
readonly tax_number: string;
|
|
14561
|
+
readonly country: string;
|
|
14562
|
+
readonly tax_code: string;
|
|
14563
|
+
readonly province?: string;
|
|
14564
|
+
}
|
|
14565
|
+
|
|
14539
14566
|
interface TaxRegistrationForm {
|
|
14540
14567
|
readonly number: string;
|
|
14541
14568
|
readonly company_name?: string;
|
|
14542
14569
|
}
|
|
14543
14570
|
|
|
14571
|
+
interface TaxRegistrationUpserted {
|
|
14572
|
+
readonly discriminator: 'tax_registration_upserted';
|
|
14573
|
+
readonly event_id: string;
|
|
14574
|
+
readonly timestamp: string;
|
|
14575
|
+
readonly organization: string;
|
|
14576
|
+
readonly tax_registration: io.flow.v0.models.OrganizationTaxRegistration;
|
|
14577
|
+
}
|
|
14578
|
+
|
|
14544
14579
|
interface TaxReport {
|
|
14545
14580
|
readonly schedule: io.flow.v0.unions.RepeatSchedule;
|
|
14546
14581
|
readonly timezone: string;
|
|
@@ -14819,6 +14854,29 @@ declare namespace io.flow.v0.models {
|
|
|
14819
14854
|
readonly order_number?: string;
|
|
14820
14855
|
}
|
|
14821
14856
|
|
|
14857
|
+
interface TrackingLabelEventUpsertedV2 {
|
|
14858
|
+
readonly discriminator: 'tracking_label_event_upserted_v2';
|
|
14859
|
+
readonly event_id: string;
|
|
14860
|
+
readonly timestamp: string;
|
|
14861
|
+
readonly organization: string;
|
|
14862
|
+
readonly tracking_label_event: io.flow.v0.models.TrackingLabelEventV2;
|
|
14863
|
+
}
|
|
14864
|
+
|
|
14865
|
+
interface TrackingLabelEventV2 {
|
|
14866
|
+
readonly id: string;
|
|
14867
|
+
readonly carrier_id: string;
|
|
14868
|
+
readonly carrier_tracking_number: string;
|
|
14869
|
+
readonly carrier_tracking_url?: string;
|
|
14870
|
+
readonly label_id: string;
|
|
14871
|
+
readonly order_number?: string;
|
|
14872
|
+
readonly status: io.flow.v0.enums.TrackingStatus;
|
|
14873
|
+
readonly substatus?: io.flow.v0.enums.SubstatusCode;
|
|
14874
|
+
readonly carrier_timestamp: string;
|
|
14875
|
+
readonly description?: string;
|
|
14876
|
+
readonly delivery_estimate?: string;
|
|
14877
|
+
readonly address?: io.flow.v0.models.Address;
|
|
14878
|
+
}
|
|
14879
|
+
|
|
14822
14880
|
interface TrackingLabelForm {
|
|
14823
14881
|
readonly tracking_id: string;
|
|
14824
14882
|
readonly status: io.flow.v0.enums.TrackingStatus;
|
|
@@ -14989,6 +15047,25 @@ declare namespace io.flow.v0.models {
|
|
|
14989
15047
|
interface TransactionMetadataTaxDuty {
|
|
14990
15048
|
readonly discriminator: 'transaction_tax_duty';
|
|
14991
15049
|
readonly reason_code: io.flow.v0.enums.TaxDutyTransactionReasonCode;
|
|
15050
|
+
readonly local_currency?: string;
|
|
15051
|
+
readonly actual?: io.flow.v0.models.TransactionMetadataTaxDutyActual;
|
|
15052
|
+
readonly estimate?: io.flow.v0.models.TransactionMetadataTaxDutyEstimate;
|
|
15053
|
+
readonly delta?: io.flow.v0.models.TransactionMetadataTaxDutyDelta;
|
|
15054
|
+
}
|
|
15055
|
+
|
|
15056
|
+
interface TransactionMetadataTaxDutyActual {
|
|
15057
|
+
readonly base?: number;
|
|
15058
|
+
readonly local?: number;
|
|
15059
|
+
}
|
|
15060
|
+
|
|
15061
|
+
interface TransactionMetadataTaxDutyDelta {
|
|
15062
|
+
readonly base?: number;
|
|
15063
|
+
readonly local?: number;
|
|
15064
|
+
}
|
|
15065
|
+
|
|
15066
|
+
interface TransactionMetadataTaxDutyEstimate {
|
|
15067
|
+
readonly base?: number;
|
|
15068
|
+
readonly local?: number;
|
|
14992
15069
|
}
|
|
14993
15070
|
|
|
14994
15071
|
interface TransactionMetadataTrueup {
|
|
@@ -15463,20 +15540,6 @@ declare namespace io.flow.v0.unions {
|
|
|
15463
15540
|
type Event =
|
|
15464
15541
|
| io.flow.v0.models.TestUpserted
|
|
15465
15542
|
| io.flow.v0.models.GenerateLoad
|
|
15466
|
-
| io.flow.v0.models.SarveshItemUpserted
|
|
15467
|
-
| io.flow.v0.models.SarveshItemDeleted
|
|
15468
|
-
| io.flow.v0.models.HoseinItemUpserted
|
|
15469
|
-
| io.flow.v0.models.HoseinItemDeleted
|
|
15470
|
-
| io.flow.v0.models.NiallItemUpserted
|
|
15471
|
-
| io.flow.v0.models.NiallItemDeleted
|
|
15472
|
-
| io.flow.v0.models.RohanItemUpserted
|
|
15473
|
-
| io.flow.v0.models.RohanItemDeleted
|
|
15474
|
-
| io.flow.v0.models.AldoItemUpserted
|
|
15475
|
-
| io.flow.v0.models.AldoItemDeleted
|
|
15476
|
-
| io.flow.v0.models.AnshItemUpserted
|
|
15477
|
-
| io.flow.v0.models.AnshItemDeleted
|
|
15478
|
-
| io.flow.v0.models.AnirbanItemUpserted
|
|
15479
|
-
| io.flow.v0.models.AnirbanItemDeleted
|
|
15480
15543
|
| io.flow.v0.models.TransactionUpserted
|
|
15481
15544
|
| io.flow.v0.models.OrganizationTransactionUpserted
|
|
15482
15545
|
| io.flow.v0.models.OrganizationTransactionDeleted
|
|
@@ -15561,7 +15624,6 @@ declare namespace io.flow.v0.unions {
|
|
|
15561
15624
|
| io.flow.v0.models.ItemOriginDeleted
|
|
15562
15625
|
| io.flow.v0.models.HarmonizedLandedCostUpserted
|
|
15563
15626
|
| io.flow.v0.models.FullyHarmonizedItemUpserted
|
|
15564
|
-
| io.flow.v0.models.LabelUpserted
|
|
15565
15627
|
| io.flow.v0.models.LabelDeletedV2
|
|
15566
15628
|
| io.flow.v0.models.LabelUpsertedV2
|
|
15567
15629
|
| io.flow.v0.models.NotificationUpsertedV2
|
|
@@ -15584,6 +15646,8 @@ declare namespace io.flow.v0.unions {
|
|
|
15584
15646
|
| io.flow.v0.models.OrganizationDeletedV2
|
|
15585
15647
|
| io.flow.v0.models.EcommercePlatformUpserted
|
|
15586
15648
|
| io.flow.v0.models.EcommercePlatformDeleted
|
|
15649
|
+
| io.flow.v0.models.TaxRegistrationUpserted
|
|
15650
|
+
| io.flow.v0.models.TaxRegistrationDeleted
|
|
15587
15651
|
| io.flow.v0.models.OrganizationOnboardingStateUpserted
|
|
15588
15652
|
| io.flow.v0.models.OrganizationOnboardingStateDeleted
|
|
15589
15653
|
| io.flow.v0.models.AuthorizationDeletedV2
|
|
@@ -15631,9 +15695,12 @@ declare namespace io.flow.v0.unions {
|
|
|
15631
15695
|
| io.flow.v0.models.RatecardDeleted
|
|
15632
15696
|
| io.flow.v0.models.ProductRestrictionResultUpserted
|
|
15633
15697
|
| io.flow.v0.models.ProductRestrictionResultDeleted
|
|
15698
|
+
| io.flow.v0.models.ProductSellabilityResultUpserted
|
|
15699
|
+
| io.flow.v0.models.ProductSellabilityResultDeleted
|
|
15634
15700
|
| io.flow.v0.models.ShopifyLocalizationSettingUpserted
|
|
15635
15701
|
| io.flow.v0.models.ShopifyLocalizationSettingDeleted
|
|
15636
|
-
| io.flow.v0.models.TrackingLabelEventUpserted
|
|
15702
|
+
| io.flow.v0.models.TrackingLabelEventUpserted
|
|
15703
|
+
| io.flow.v0.models.TrackingLabelEventUpsertedV2;
|
|
15637
15704
|
type ExpandableCard =
|
|
15638
15705
|
| io.flow.v0.models.Card
|
|
15639
15706
|
| io.flow.v0.models.CardReference
|
|
@@ -15716,13 +15783,18 @@ declare namespace io.flow.v0.unions {
|
|
|
15716
15783
|
type LogoImage =
|
|
15717
15784
|
| io.flow.v0.models.LogoImageSvg
|
|
15718
15785
|
| io.flow.v0.models.LogoImageSetStatic;
|
|
15719
|
-
type MerchantApplication =
|
|
15786
|
+
type MerchantApplication =
|
|
15787
|
+
| io.flow.v0.models.ShopifyMerchantApplication
|
|
15788
|
+
| io.flow.v0.models.CommonMerchantApplication;
|
|
15720
15789
|
type MerchantApplicationForm =
|
|
15721
|
-
io.flow.v0.models.ShopifyMerchantApplicationForm
|
|
15790
|
+
| io.flow.v0.models.ShopifyMerchantApplicationForm
|
|
15791
|
+
| io.flow.v0.models.CommonMerchantApplicationForm;
|
|
15722
15792
|
type MerchantApplicationPutForm =
|
|
15723
|
-
io.flow.v0.models.ShopifyMerchantApplicationPutForm
|
|
15793
|
+
| io.flow.v0.models.ShopifyMerchantApplicationPutForm
|
|
15794
|
+
| io.flow.v0.models.CommonMerchantApplicationPutForm;
|
|
15724
15795
|
type MerchantApplicationsSummary =
|
|
15725
|
-
io.flow.v0.models.ShopifyMerchantApplicationsSummary
|
|
15796
|
+
| io.flow.v0.models.ShopifyMerchantApplicationsSummary
|
|
15797
|
+
| io.flow.v0.models.CommonMerchantApplicationsSummary;
|
|
15726
15798
|
type OnboardingState =
|
|
15727
15799
|
| io.flow.v0.models.InComplianceReview
|
|
15728
15800
|
| io.flow.v0.models.SetupInProgress
|
|
@@ -15882,9 +15954,13 @@ declare namespace io.flow.v0.unions {
|
|
|
15882
15954
|
type SdkAdyenV3AuthenticationToken =
|
|
15883
15955
|
| io.flow.v0.models.AdyenV3FingerprintToken
|
|
15884
15956
|
| io.flow.v0.models.AdyenV3ChallengeToken;
|
|
15957
|
+
type SellabilityRequest =
|
|
15958
|
+
| io.flow.v0.models.ProductSellabilityForm
|
|
15959
|
+
| io.flow.v0.models.SellabilityScreeningForm;
|
|
15885
15960
|
type SellabilityResponse =
|
|
15886
15961
|
| io.flow.v0.models.ProductSellability
|
|
15887
|
-
| io.flow.v0.models.SellabilityError
|
|
15962
|
+
| io.flow.v0.models.SellabilityError
|
|
15963
|
+
| io.flow.v0.models.SellabilityScreening;
|
|
15888
15964
|
type ServiceDescription =
|
|
15889
15965
|
| io.flow.v0.models.ServiceSummary
|
|
15890
15966
|
| io.flow.v0.models.ServiceUnknown;
|
|
@@ -16041,8 +16117,6 @@ export type AdyenNativeActionDetails =
|
|
|
16041
16117
|
export type AdyenNativeData = io.flow.v0.unions.AdyenNativeData;
|
|
16042
16118
|
export type AdyenV3ChallengeToken = io.flow.v0.models.AdyenV3ChallengeToken;
|
|
16043
16119
|
export type AdyenV3FingerprintToken = io.flow.v0.models.AdyenV3FingerprintToken;
|
|
16044
|
-
export type AldoItemDeleted = io.flow.v0.models.AldoItemDeleted;
|
|
16045
|
-
export type AldoItemUpserted = io.flow.v0.models.AldoItemUpserted;
|
|
16046
16120
|
export type Allocation = io.flow.v0.models.Allocation;
|
|
16047
16121
|
export type AllocationComponent = io.flow.v0.unions.AllocationComponent;
|
|
16048
16122
|
export type AllocationDeletedV2 = io.flow.v0.models.AllocationDeletedV2;
|
|
@@ -16063,10 +16137,6 @@ export type AllocationV2 = io.flow.v0.models.AllocationV2;
|
|
|
16063
16137
|
export type AmountMargin = io.flow.v0.models.AmountMargin;
|
|
16064
16138
|
export type AmountMarginForm = io.flow.v0.models.AmountMarginForm;
|
|
16065
16139
|
export type AnalyticsExportType = io.flow.v0.models.AnalyticsExportType;
|
|
16066
|
-
export type AnirbanItemDeleted = io.flow.v0.models.AnirbanItemDeleted;
|
|
16067
|
-
export type AnirbanItemUpserted = io.flow.v0.models.AnirbanItemUpserted;
|
|
16068
|
-
export type AnshItemDeleted = io.flow.v0.models.AnshItemDeleted;
|
|
16069
|
-
export type AnshItemUpserted = io.flow.v0.models.AnshItemUpserted;
|
|
16070
16140
|
export type ApplePayMerchantValidationPayload =
|
|
16071
16141
|
io.flow.v0.models.ApplePayMerchantValidationPayload;
|
|
16072
16142
|
export type ApplepaySdkCreateResultActionDetails =
|
|
@@ -16348,6 +16418,15 @@ export type CheckoutUrls = io.flow.v0.models.CheckoutUrls;
|
|
|
16348
16418
|
export type CheckoutUrlsForm = io.flow.v0.models.CheckoutUrlsForm;
|
|
16349
16419
|
export type Cleartext = io.flow.v0.models.Cleartext;
|
|
16350
16420
|
export type CommercialInvoiceFee = io.flow.v0.models.CommercialInvoiceFee;
|
|
16421
|
+
export type CommercialInvoiceMode = io.flow.v0.enums.CommercialInvoiceMode;
|
|
16422
|
+
export type CommonMerchantApplication =
|
|
16423
|
+
io.flow.v0.models.CommonMerchantApplication;
|
|
16424
|
+
export type CommonMerchantApplicationForm =
|
|
16425
|
+
io.flow.v0.models.CommonMerchantApplicationForm;
|
|
16426
|
+
export type CommonMerchantApplicationPutForm =
|
|
16427
|
+
io.flow.v0.models.CommonMerchantApplicationPutForm;
|
|
16428
|
+
export type CommonMerchantApplicationsSummary =
|
|
16429
|
+
io.flow.v0.models.CommonMerchantApplicationsSummary;
|
|
16351
16430
|
export type Company = io.flow.v0.models.Company;
|
|
16352
16431
|
export type ConfirmationDetails = io.flow.v0.unions.ConfirmationDetails;
|
|
16353
16432
|
export type ConsumerInvoice = io.flow.v0.models.ConsumerInvoice;
|
|
@@ -16679,6 +16758,7 @@ export type ExportType = io.flow.v0.unions.ExportType;
|
|
|
16679
16758
|
export type ExportVersion = io.flow.v0.models.ExportVersion;
|
|
16680
16759
|
export type ExporterOfRecord = io.flow.v0.enums.ExporterOfRecord;
|
|
16681
16760
|
export type ExternalCard = io.flow.v0.models.ExternalCard;
|
|
16761
|
+
export type ExternalOrderSummary = io.flow.v0.models.ExternalOrderSummary;
|
|
16682
16762
|
export type FeeDeduction = io.flow.v0.models.FeeDeduction;
|
|
16683
16763
|
export type FeeDeductionType = io.flow.v0.enums.FeeDeductionType;
|
|
16684
16764
|
export type FeeWeight = io.flow.v0.models.FeeWeight;
|
|
@@ -16816,8 +16896,6 @@ export type Hop = io.flow.v0.models.Hop;
|
|
|
16816
16896
|
export type HopEstimate = io.flow.v0.models.HopEstimate;
|
|
16817
16897
|
export type HopEstimateV2 = io.flow.v0.models.HopEstimateV2;
|
|
16818
16898
|
export type HopV2 = io.flow.v0.models.HopV2;
|
|
16819
|
-
export type HoseinItemDeleted = io.flow.v0.models.HoseinItemDeleted;
|
|
16820
|
-
export type HoseinItemUpserted = io.flow.v0.models.HoseinItemUpserted;
|
|
16821
16899
|
export type Hs10 = io.flow.v0.models.Hs10;
|
|
16822
16900
|
export type Hs10CodeDeleted = io.flow.v0.models.Hs10CodeDeleted;
|
|
16823
16901
|
export type Hs10CodeUpserted = io.flow.v0.models.Hs10CodeUpserted;
|
|
@@ -16871,6 +16949,7 @@ export type InvitationForm = io.flow.v0.models.InvitationForm;
|
|
|
16871
16949
|
export type InvitationVersion = io.flow.v0.models.InvitationVersion;
|
|
16872
16950
|
export type InvoiceExport = io.flow.v0.models.InvoiceExport;
|
|
16873
16951
|
export type InvoiceExportForm = io.flow.v0.models.InvoiceExportForm;
|
|
16952
|
+
export type InvoiceTaxLine = io.flow.v0.models.InvoiceTaxLine;
|
|
16874
16953
|
export type IssuerReference = io.flow.v0.models.IssuerReference;
|
|
16875
16954
|
export type IssuerSummary = io.flow.v0.models.IssuerSummary;
|
|
16876
16955
|
export type IssuerV1 = io.flow.v0.models.IssuerV1;
|
|
@@ -16937,7 +17016,6 @@ export type LabelTrackingSummaryUpdate =
|
|
|
16937
17016
|
io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
16938
17017
|
export type LabelTriggerMethod = io.flow.v0.enums.LabelTriggerMethod;
|
|
16939
17018
|
export type LabelUnits = io.flow.v0.models.LabelUnits;
|
|
16940
|
-
export type LabelUpserted = io.flow.v0.models.LabelUpserted;
|
|
16941
17019
|
export type LabelUpsertedV2 = io.flow.v0.models.LabelUpsertedV2;
|
|
16942
17020
|
export type LandedCostItem = io.flow.v0.models.LandedCostItem;
|
|
16943
17021
|
export type LaneDirection = io.flow.v0.enums.LaneDirection;
|
|
@@ -17042,6 +17120,8 @@ export type MerchantOfRecordPaymentForm =
|
|
|
17042
17120
|
io.flow.v0.models.MerchantOfRecordPaymentForm;
|
|
17043
17121
|
export type MerchantOnboardingAddress =
|
|
17044
17122
|
io.flow.v0.models.MerchantOnboardingAddress;
|
|
17123
|
+
export type MerchantOnboardingBeneficiaryDetails =
|
|
17124
|
+
io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
17045
17125
|
export type MerchantRejected = io.flow.v0.models.MerchantRejected;
|
|
17046
17126
|
export type MerchantRejectedReason = io.flow.v0.enums.MerchantRejectedReason;
|
|
17047
17127
|
export type Method = io.flow.v0.enums.Method;
|
|
@@ -17053,8 +17133,6 @@ export type MonthlyAverageVolume = io.flow.v0.models.MonthlyAverageVolume;
|
|
|
17053
17133
|
export type Name = io.flow.v0.models.Name;
|
|
17054
17134
|
export type NameForm = io.flow.v0.models.NameForm;
|
|
17055
17135
|
export type NeedsActionAttributes = io.flow.v0.models.NeedsActionAttributes;
|
|
17056
|
-
export type NiallItemDeleted = io.flow.v0.models.NiallItemDeleted;
|
|
17057
|
-
export type NiallItemUpserted = io.flow.v0.models.NiallItemUpserted;
|
|
17058
17136
|
export type NotificationDeletedV2 = io.flow.v0.models.NotificationDeletedV2;
|
|
17059
17137
|
export type NotificationUpsertedV2 = io.flow.v0.models.NotificationUpsertedV2;
|
|
17060
17138
|
export type NumberRange = io.flow.v0.models.NumberRange;
|
|
@@ -17243,6 +17321,10 @@ export type OrganizationSessionAuthorization =
|
|
|
17243
17321
|
io.flow.v0.models.OrganizationSessionAuthorization;
|
|
17244
17322
|
export type OrganizationStatus = io.flow.v0.enums.OrganizationStatus;
|
|
17245
17323
|
export type OrganizationSummary = io.flow.v0.models.OrganizationSummary;
|
|
17324
|
+
export type OrganizationTaxRegistration =
|
|
17325
|
+
io.flow.v0.models.OrganizationTaxRegistration;
|
|
17326
|
+
export type OrganizationTaxRegistrationForm =
|
|
17327
|
+
io.flow.v0.models.OrganizationTaxRegistrationForm;
|
|
17246
17328
|
export type OrganizationToken = io.flow.v0.models.OrganizationToken;
|
|
17247
17329
|
export type OrganizationTokenForm = io.flow.v0.models.OrganizationTokenForm;
|
|
17248
17330
|
export type OrganizationTokenFormV2 = io.flow.v0.models.OrganizationTokenFormV2;
|
|
@@ -17592,6 +17674,12 @@ export type ProductRestrictionResultUpserted =
|
|
|
17592
17674
|
io.flow.v0.models.ProductRestrictionResultUpserted;
|
|
17593
17675
|
export type ProductSellability = io.flow.v0.models.ProductSellability;
|
|
17594
17676
|
export type ProductSellabilityForm = io.flow.v0.models.ProductSellabilityForm;
|
|
17677
|
+
export type ProductSellabilityResult =
|
|
17678
|
+
io.flow.v0.models.ProductSellabilityResult;
|
|
17679
|
+
export type ProductSellabilityResultDeleted =
|
|
17680
|
+
io.flow.v0.models.ProductSellabilityResultDeleted;
|
|
17681
|
+
export type ProductSellabilityResultUpserted =
|
|
17682
|
+
io.flow.v0.models.ProductSellabilityResultUpserted;
|
|
17595
17683
|
export type ProductTaxonomyCategory = io.flow.v0.models.ProductTaxonomyCategory;
|
|
17596
17684
|
export type ProductTaxonomyData = io.flow.v0.models.ProductTaxonomyData;
|
|
17597
17685
|
export type ProductTaxonomyValue = io.flow.v0.models.ProductTaxonomyValue;
|
|
@@ -17708,6 +17796,7 @@ export type RepeatMonthly = io.flow.v0.models.RepeatMonthly;
|
|
|
17708
17796
|
export type RepeatSchedule = io.flow.v0.unions.RepeatSchedule;
|
|
17709
17797
|
export type RepeatWeekly = io.flow.v0.models.RepeatWeekly;
|
|
17710
17798
|
export type RestrictedReviewStatus = io.flow.v0.enums.RestrictedReviewStatus;
|
|
17799
|
+
export type RestrictionEnvironment = io.flow.v0.enums.RestrictionEnvironment;
|
|
17711
17800
|
export type Return = io.flow.v0.models.Return;
|
|
17712
17801
|
export type ReturnForm = io.flow.v0.models.ReturnForm;
|
|
17713
17802
|
export type ReturnItemReference = io.flow.v0.models.ReturnItemReference;
|
|
@@ -17742,8 +17831,6 @@ export type ReversalStatus = io.flow.v0.enums.ReversalStatus;
|
|
|
17742
17831
|
export type ReversalUpserted = io.flow.v0.models.ReversalUpserted;
|
|
17743
17832
|
export type ReversalVersion = io.flow.v0.models.ReversalVersion;
|
|
17744
17833
|
export type ReviewStatus = io.flow.v0.enums.ReviewStatus;
|
|
17745
|
-
export type RohanItemDeleted = io.flow.v0.models.RohanItemDeleted;
|
|
17746
|
-
export type RohanItemUpserted = io.flow.v0.models.RohanItemUpserted;
|
|
17747
17834
|
export type Role = io.flow.v0.enums.Role;
|
|
17748
17835
|
export type Romanization = io.flow.v0.models.Romanization;
|
|
17749
17836
|
export type RomanizationForm = io.flow.v0.models.RomanizationForm;
|
|
@@ -17752,8 +17839,6 @@ export type RoundingMethod = io.flow.v0.enums.RoundingMethod;
|
|
|
17752
17839
|
export type RoundingType = io.flow.v0.enums.RoundingType;
|
|
17753
17840
|
export type RouteAudit = io.flow.v0.models.RouteAudit;
|
|
17754
17841
|
export type RuleEffectType = io.flow.v0.enums.RuleEffectType;
|
|
17755
|
-
export type SarveshItemDeleted = io.flow.v0.models.SarveshItemDeleted;
|
|
17756
|
-
export type SarveshItemUpserted = io.flow.v0.models.SarveshItemUpserted;
|
|
17757
17842
|
export type Schedule = io.flow.v0.models.Schedule;
|
|
17758
17843
|
export type ScheduleExceptionStatus = io.flow.v0.enums.ScheduleExceptionStatus;
|
|
17759
17844
|
export type ScheduledExport = io.flow.v0.models.ScheduledExport;
|
|
@@ -17765,11 +17850,28 @@ export type SecurityRatecardFee = io.flow.v0.models.SecurityRatecardFee;
|
|
|
17765
17850
|
export type SecurityServiceFee = io.flow.v0.models.SecurityServiceFee;
|
|
17766
17851
|
export type SelectIssuerOptionActionDetails =
|
|
17767
17852
|
io.flow.v0.models.SelectIssuerOptionActionDetails;
|
|
17853
|
+
export type SelfBillingAgreement = io.flow.v0.models.SelfBillingAgreement;
|
|
17768
17854
|
export type SellabilityError = io.flow.v0.models.SellabilityError;
|
|
17769
17855
|
export type SellabilityErrorCode = io.flow.v0.enums.SellabilityErrorCode;
|
|
17856
|
+
export type SellabilityNeedsActionAttributes =
|
|
17857
|
+
io.flow.v0.models.SellabilityNeedsActionAttributes;
|
|
17858
|
+
export type SellabilityRegionResult = io.flow.v0.models.SellabilityRegionResult;
|
|
17859
|
+
export type SellabilityRegionWithReasons =
|
|
17860
|
+
io.flow.v0.models.SellabilityRegionWithReasons;
|
|
17861
|
+
export type SellabilityRequest = io.flow.v0.unions.SellabilityRequest;
|
|
17770
17862
|
export type SellabilityRequestStatus =
|
|
17771
17863
|
io.flow.v0.enums.SellabilityRequestStatus;
|
|
17772
17864
|
export type SellabilityResponse = io.flow.v0.unions.SellabilityResponse;
|
|
17865
|
+
export type SellabilityRestrictedRegion =
|
|
17866
|
+
io.flow.v0.models.SellabilityRestrictedRegion;
|
|
17867
|
+
export type SellabilityResultErrorCode =
|
|
17868
|
+
io.flow.v0.enums.SellabilityResultErrorCode;
|
|
17869
|
+
export type SellabilityResultStatus = io.flow.v0.enums.SellabilityResultStatus;
|
|
17870
|
+
export type SellabilityScreening = io.flow.v0.models.SellabilityScreening;
|
|
17871
|
+
export type SellabilityScreeningForm =
|
|
17872
|
+
io.flow.v0.models.SellabilityScreeningForm;
|
|
17873
|
+
export type SellabilityScreeningMode =
|
|
17874
|
+
io.flow.v0.enums.SellabilityScreeningMode;
|
|
17773
17875
|
export type SellablilityRegionResult =
|
|
17774
17876
|
io.flow.v0.models.SellablilityRegionResult;
|
|
17775
17877
|
export type ServiceDescription = io.flow.v0.unions.ServiceDescription;
|
|
@@ -17861,6 +17963,13 @@ export type ShippingNotificationForm =
|
|
|
17861
17963
|
io.flow.v0.unions.ShippingNotificationForm;
|
|
17862
17964
|
export type ShippingNotificationVersion =
|
|
17863
17965
|
io.flow.v0.models.ShippingNotificationVersion;
|
|
17966
|
+
export type ShippingRateEstimate = io.flow.v0.models.ShippingRateEstimate;
|
|
17967
|
+
export type ShippingRateEstimateAvailable =
|
|
17968
|
+
io.flow.v0.models.ShippingRateEstimateAvailable;
|
|
17969
|
+
export type ShippingRateEstimateRequest =
|
|
17970
|
+
io.flow.v0.models.ShippingRateEstimateRequest;
|
|
17971
|
+
export type ShippingRateEstimateUnavailable =
|
|
17972
|
+
io.flow.v0.models.ShippingRateEstimateUnavailable;
|
|
17864
17973
|
export type Shop = io.flow.v0.models.Shop;
|
|
17865
17974
|
export type ShopifyCart = io.flow.v0.models.ShopifyCart;
|
|
17866
17975
|
export type ShopifyCartAddForm = io.flow.v0.unions.ShopifyCartAddForm;
|
|
@@ -17946,6 +18055,8 @@ export type SortDirection = io.flow.v0.enums.SortDirection;
|
|
|
17946
18055
|
export type Statement = io.flow.v0.models.Statement;
|
|
17947
18056
|
export type StatementAttachmentType = io.flow.v0.enums.StatementAttachmentType;
|
|
17948
18057
|
export type StatementDeleted = io.flow.v0.models.StatementDeleted;
|
|
18058
|
+
export type StatementStatusCode = io.flow.v0.enums.StatementStatusCode;
|
|
18059
|
+
export type StatementStatusForm = io.flow.v0.models.StatementStatusForm;
|
|
17949
18060
|
export type StatementUpserted = io.flow.v0.models.StatementUpserted;
|
|
17950
18061
|
export type StoredMethodUsageStep = io.flow.v0.enums.StoredMethodUsageStep;
|
|
17951
18062
|
export type Strategy = io.flow.v0.enums.Strategy;
|
|
@@ -17984,6 +18095,7 @@ export type SurchargeSetting = io.flow.v0.models.SurchargeSetting;
|
|
|
17984
18095
|
export type SurchargeSettingDisplay = io.flow.v0.models.SurchargeSettingDisplay;
|
|
17985
18096
|
export type Tax = io.flow.v0.models.Tax;
|
|
17986
18097
|
export type TaxApplicability = io.flow.v0.enums.TaxApplicability;
|
|
18098
|
+
export type TaxBreakdown = io.flow.v0.models.TaxBreakdown;
|
|
17987
18099
|
export type TaxDutyCalculatorValidationError =
|
|
17988
18100
|
io.flow.v0.models.TaxDutyCalculatorValidationError;
|
|
17989
18101
|
export type TaxDutyCalculatorValidationErrorCode =
|
|
@@ -18004,11 +18116,16 @@ export type TaxDutyQuoteSimpleShippingForm =
|
|
|
18004
18116
|
export type TaxDutyQuoteValues = io.flow.v0.models.TaxDutyQuoteValues;
|
|
18005
18117
|
export type TaxDutyTransactionReasonCode =
|
|
18006
18118
|
io.flow.v0.enums.TaxDutyTransactionReasonCode;
|
|
18119
|
+
export type TaxJurisdictionType = io.flow.v0.enums.TaxJurisdictionType;
|
|
18007
18120
|
export type TaxRegistration = io.flow.v0.models.TaxRegistration;
|
|
18121
|
+
export type TaxRegistrationDeleted = io.flow.v0.models.TaxRegistrationDeleted;
|
|
18122
|
+
export type TaxRegistrationDetail = io.flow.v0.models.TaxRegistrationDetail;
|
|
18008
18123
|
export type TaxRegistrationForm = io.flow.v0.models.TaxRegistrationForm;
|
|
18124
|
+
export type TaxRegistrationUpserted = io.flow.v0.models.TaxRegistrationUpserted;
|
|
18009
18125
|
export type TaxReport = io.flow.v0.models.TaxReport;
|
|
18010
18126
|
export type TaxReportType = io.flow.v0.enums.TaxReportType;
|
|
18011
18127
|
export type TaxSetting = io.flow.v0.unions.TaxSetting;
|
|
18128
|
+
export type TaxType = io.flow.v0.enums.TaxType;
|
|
18012
18129
|
export type TaxVerificationResult = io.flow.v0.enums.TaxVerificationResult;
|
|
18013
18130
|
export type TaxabilityType = io.flow.v0.enums.TaxabilityType;
|
|
18014
18131
|
export type TaxabilityValue = io.flow.v0.enums.TaxabilityValue;
|
|
@@ -18066,6 +18183,9 @@ export type TrackingForm = io.flow.v0.models.TrackingForm;
|
|
|
18066
18183
|
export type TrackingLabel = io.flow.v0.models.TrackingLabel;
|
|
18067
18184
|
export type TrackingLabelEventUpserted =
|
|
18068
18185
|
io.flow.v0.models.TrackingLabelEventUpserted;
|
|
18186
|
+
export type TrackingLabelEventUpsertedV2 =
|
|
18187
|
+
io.flow.v0.models.TrackingLabelEventUpsertedV2;
|
|
18188
|
+
export type TrackingLabelEventV2 = io.flow.v0.models.TrackingLabelEventV2;
|
|
18069
18189
|
export type TrackingLabelForm = io.flow.v0.models.TrackingLabelForm;
|
|
18070
18190
|
export type TrackingLabelSummary = io.flow.v0.models.TrackingLabelSummary;
|
|
18071
18191
|
export type TrackingLabelVersion = io.flow.v0.models.TrackingLabelVersion;
|
|
@@ -18110,6 +18230,12 @@ export type TransactionMetadataShippingLabelCarrier =
|
|
|
18110
18230
|
io.flow.v0.models.TransactionMetadataShippingLabelCarrier;
|
|
18111
18231
|
export type TransactionMetadataTaxDuty =
|
|
18112
18232
|
io.flow.v0.models.TransactionMetadataTaxDuty;
|
|
18233
|
+
export type TransactionMetadataTaxDutyActual =
|
|
18234
|
+
io.flow.v0.models.TransactionMetadataTaxDutyActual;
|
|
18235
|
+
export type TransactionMetadataTaxDutyDelta =
|
|
18236
|
+
io.flow.v0.models.TransactionMetadataTaxDutyDelta;
|
|
18237
|
+
export type TransactionMetadataTaxDutyEstimate =
|
|
18238
|
+
io.flow.v0.models.TransactionMetadataTaxDutyEstimate;
|
|
18113
18239
|
export type TransactionMetadataTrueup =
|
|
18114
18240
|
io.flow.v0.models.TransactionMetadataTrueup;
|
|
18115
18241
|
export type TransactionMetadataTrueupBase =
|