@flowio/types 11.24.130 → 11.24.131
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +868 -70
- package/dist/api.d.ts +338 -254
- package/package.json +2 -2
- package/src/api-internal.ts +1066 -81
- package/src/api.ts +417 -313
package/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';
|
|
@@ -5021,6 +4888,7 @@ declare namespace io.flow.v0.enums {
|
|
|
5021
4888
|
type RefundStatus = 'pending' | 'succeeded' | 'failed' | 'canceled';
|
|
5022
4889
|
type RegionType = 'state' | 'province' | 'jurisdiction';
|
|
5023
4890
|
type RestrictedReviewStatus = 'in_review' | 'reviewed';
|
|
4891
|
+
type RestrictionEnvironment = 'sandbox' | 'production' | 'qa';
|
|
5024
4892
|
type ReturnItemStatus = 'returnable' | 'non-returnable';
|
|
5025
4893
|
type ReturnPolicyState = 'current' | 'deleting' | 'updating';
|
|
5026
4894
|
type ReturnStatus = 'open' | 'refunded';
|
|
@@ -5067,6 +4935,9 @@ declare namespace io.flow.v0.enums {
|
|
|
5067
4935
|
| 'wait_for_high_fidelity'
|
|
5068
4936
|
| 'external_service_unavailable';
|
|
5069
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';
|
|
5070
4941
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
5071
4942
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
5072
4943
|
type ShippingConfigurationType = 'default' | 'variant';
|
|
@@ -5092,7 +4963,8 @@ declare namespace io.flow.v0.enums {
|
|
|
5092
4963
|
type ShopifyLocalizationMethod = 'api' | 'ssr';
|
|
5093
4964
|
type ShopifySyncCheck = 'localized_variants' | 'flow_variant_metafields';
|
|
5094
4965
|
type SortDirection = 'ascending' | 'descending';
|
|
5095
|
-
type StatementAttachmentType = 'csv';
|
|
4966
|
+
type StatementAttachmentType = 'csv' | 'pdf';
|
|
4967
|
+
type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
5096
4968
|
type StoredMethodUsageStep = 'initial' | 'subsequent';
|
|
5097
4969
|
type Strategy = 'range' | 'from' | 'to';
|
|
5098
4970
|
type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
|
|
@@ -5169,6 +5041,7 @@ declare namespace io.flow.v0.enums {
|
|
|
5169
5041
|
| 'order_edit'
|
|
5170
5042
|
| 'mixed_fulfilment_non_lvg'
|
|
5171
5043
|
| 'lvg_refund'
|
|
5044
|
+
| 'us_inbound_tax_refund'
|
|
5172
5045
|
| 'order_cancellation_above_de_min'
|
|
5173
5046
|
| 'wyol_shipment_above_de_min'
|
|
5174
5047
|
| 'full_refund_without_shipment'
|
|
@@ -5239,7 +5112,9 @@ declare namespace io.flow.v0.enums {
|
|
|
5239
5112
|
| 'merchant_payout'
|
|
5240
5113
|
| 'merchant_refund'
|
|
5241
5114
|
| 'ge_revenue_share'
|
|
5242
|
-
| 'merchant_fee'
|
|
5115
|
+
| 'merchant_fee'
|
|
5116
|
+
| 'b2b_tax'
|
|
5117
|
+
| 'b2b_tax_refund';
|
|
5243
5118
|
type TransferStatus = 'succeeded' | 'canceled';
|
|
5244
5119
|
type TransferType =
|
|
5245
5120
|
| 'payout_to_merchant'
|
|
@@ -5248,7 +5123,13 @@ declare namespace io.flow.v0.enums {
|
|
|
5248
5123
|
| 'disputed_amount_from_merchant'
|
|
5249
5124
|
| 'duties_and_taxes_adjustment_from_merchant'
|
|
5250
5125
|
| 'refund_from_merchant';
|
|
5251
|
-
type TrueupSource =
|
|
5126
|
+
type TrueupSource =
|
|
5127
|
+
| 'flow'
|
|
5128
|
+
| 'channel'
|
|
5129
|
+
| 'dhl-parcel'
|
|
5130
|
+
| 'dhl'
|
|
5131
|
+
| 'ups'
|
|
5132
|
+
| 'fedex';
|
|
5252
5133
|
type TrueupSurchargeType =
|
|
5253
5134
|
| 'fuel'
|
|
5254
5135
|
| 'remote_area'
|
|
@@ -5625,20 +5506,6 @@ declare namespace io.flow.v0.models {
|
|
|
5625
5506
|
readonly fingerprint_token: string;
|
|
5626
5507
|
}
|
|
5627
5508
|
|
|
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
5509
|
interface Allocation {
|
|
5643
5510
|
readonly order: io.flow.v0.models.AllocationOrderSummary;
|
|
5644
5511
|
readonly details: io.flow.v0.unions.AllocationDetail[];
|
|
@@ -5763,34 +5630,6 @@ declare namespace io.flow.v0.models {
|
|
|
5763
5630
|
readonly interval?: io.flow.v0.enums.UnitOfTime;
|
|
5764
5631
|
}
|
|
5765
5632
|
|
|
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
5633
|
interface ApplePayMerchantValidationPayload {
|
|
5795
5634
|
readonly discriminator: 'apple_pay_merchant_validation_payload';
|
|
5796
5635
|
readonly validation_url: string;
|
|
@@ -6079,9 +5918,12 @@ declare namespace io.flow.v0.models {
|
|
|
6079
5918
|
readonly invoice: io.flow.v0.models.B2BInvoiceReference;
|
|
6080
5919
|
readonly lines: io.flow.v0.unions.ConsumerInvoiceLine[];
|
|
6081
5920
|
readonly tax_lines?: io.flow.v0.models.InvoiceTaxLine[];
|
|
5921
|
+
readonly tax?: io.flow.v0.models.Money;
|
|
6082
5922
|
readonly documents: io.flow.v0.models.ConsumerInvoiceDocument[];
|
|
6083
5923
|
readonly attributes: Record<string, string>;
|
|
6084
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;
|
|
6085
5927
|
}
|
|
6086
5928
|
|
|
6087
5929
|
interface B2BCreditMemoDeleted {
|
|
@@ -6908,6 +6750,7 @@ declare namespace io.flow.v0.models {
|
|
|
6908
6750
|
readonly shopify_order_summary: io.flow.v0.models.ChannelShopifyOrderSummary;
|
|
6909
6751
|
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
6910
6752
|
readonly reasons?: io.flow.v0.models.ChannelShopifyOrderStateReason[];
|
|
6753
|
+
readonly external_order_summary?: io.flow.v0.models.ExternalOrderSummary;
|
|
6911
6754
|
}
|
|
6912
6755
|
|
|
6913
6756
|
interface ChannelShopifyOrderStateDeleted {
|
|
@@ -7137,6 +6980,77 @@ declare namespace io.flow.v0.models {
|
|
|
7137
6980
|
readonly amount: io.flow.v0.models.Money;
|
|
7138
6981
|
}
|
|
7139
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
|
+
|
|
7140
7054
|
interface Company {
|
|
7141
7055
|
readonly discriminator: 'company';
|
|
7142
7056
|
readonly legal_name: string;
|
|
@@ -7370,6 +7284,8 @@ declare namespace io.flow.v0.models {
|
|
|
7370
7284
|
readonly documents: io.flow.v0.models.ConsumerInvoiceDocument[];
|
|
7371
7285
|
readonly attributes: Record<string, string>;
|
|
7372
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;
|
|
7373
7289
|
}
|
|
7374
7290
|
|
|
7375
7291
|
interface CreditMemoDeleted {
|
|
@@ -8156,6 +8072,7 @@ declare namespace io.flow.v0.models {
|
|
|
8156
8072
|
readonly amount: io.flow.v0.models.Money;
|
|
8157
8073
|
readonly origin_region?: io.flow.v0.models.RatecardRegionReference;
|
|
8158
8074
|
readonly destination_region?: io.flow.v0.models.RatecardRegionReference;
|
|
8075
|
+
readonly destination_regions?: io.flow.v0.models.RatecardRegionReference[];
|
|
8159
8076
|
readonly interval_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
8160
8077
|
}
|
|
8161
8078
|
|
|
@@ -8494,6 +8411,11 @@ declare namespace io.flow.v0.models {
|
|
|
8494
8411
|
readonly type?: io.flow.v0.enums.CardType;
|
|
8495
8412
|
}
|
|
8496
8413
|
|
|
8414
|
+
interface ExternalOrderSummary {
|
|
8415
|
+
readonly id: string;
|
|
8416
|
+
readonly edit_ids: string[];
|
|
8417
|
+
}
|
|
8418
|
+
|
|
8497
8419
|
interface FeeDeduction {
|
|
8498
8420
|
readonly type: io.flow.v0.enums.FeeDeductionType;
|
|
8499
8421
|
readonly amount: number;
|
|
@@ -8796,7 +8718,7 @@ declare namespace io.flow.v0.models {
|
|
|
8796
8718
|
readonly discriminator: 'ge_catalog_item_ingestion_result';
|
|
8797
8719
|
readonly event_id: string;
|
|
8798
8720
|
readonly event_type: io.flow.v0.enums.GeEventType;
|
|
8799
|
-
readonly environment: io.flow.v0.enums.
|
|
8721
|
+
readonly environment: io.flow.v0.enums.RestrictionEnvironment;
|
|
8800
8722
|
readonly timestamp: string;
|
|
8801
8723
|
readonly source: string;
|
|
8802
8724
|
readonly response: io.flow.v0.enums.GeCatalogItemIngestionResponse;
|
|
@@ -8863,7 +8785,7 @@ declare namespace io.flow.v0.models {
|
|
|
8863
8785
|
readonly organization: string;
|
|
8864
8786
|
readonly event_id: string;
|
|
8865
8787
|
readonly event_type: io.flow.v0.enums.GeEventType;
|
|
8866
|
-
readonly environment: io.flow.v0.enums.
|
|
8788
|
+
readonly environment: io.flow.v0.enums.RestrictionEnvironment;
|
|
8867
8789
|
readonly timestamp: string;
|
|
8868
8790
|
readonly id: string;
|
|
8869
8791
|
readonly operation: io.flow.v0.enums.ChangeType;
|
|
@@ -8874,7 +8796,7 @@ declare namespace io.flow.v0.models {
|
|
|
8874
8796
|
readonly organization: string;
|
|
8875
8797
|
readonly event_id: string;
|
|
8876
8798
|
readonly event_type: io.flow.v0.enums.GeEventType;
|
|
8877
|
-
readonly environment: io.flow.v0.enums.
|
|
8799
|
+
readonly environment: io.flow.v0.enums.RestrictionEnvironment;
|
|
8878
8800
|
readonly timestamp: string;
|
|
8879
8801
|
readonly operation: io.flow.v0.enums.ChangeType;
|
|
8880
8802
|
readonly ge_product_restriction_result: io.flow.v0.models.ProductRestrictionResult;
|
|
@@ -9072,20 +8994,6 @@ declare namespace io.flow.v0.models {
|
|
|
9072
8994
|
readonly hop_estimate: io.flow.v0.models.HopEstimateV2;
|
|
9073
8995
|
}
|
|
9074
8996
|
|
|
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
8997
|
interface Hs10 {
|
|
9090
8998
|
readonly id: string;
|
|
9091
8999
|
readonly item: io.flow.v0.models.HarmonizedItemReference;
|
|
@@ -10130,6 +10038,7 @@ declare namespace io.flow.v0.models {
|
|
|
10130
10038
|
readonly region?: io.flow.v0.enums.RegionType;
|
|
10131
10039
|
readonly region_value?: string;
|
|
10132
10040
|
readonly category_code?: string;
|
|
10041
|
+
readonly description?: string;
|
|
10133
10042
|
}
|
|
10134
10043
|
|
|
10135
10044
|
interface MerchantOfRecordAuthorizationForm {
|
|
@@ -10165,6 +10074,8 @@ declare namespace io.flow.v0.models {
|
|
|
10165
10074
|
interface MerchantOfRecordEntityRegistration {
|
|
10166
10075
|
readonly number: string;
|
|
10167
10076
|
readonly country: string;
|
|
10077
|
+
readonly province_number?: string;
|
|
10078
|
+
readonly province?: string;
|
|
10168
10079
|
}
|
|
10169
10080
|
|
|
10170
10081
|
interface MerchantOfRecordPaymentForm {
|
|
@@ -10184,6 +10095,17 @@ declare namespace io.flow.v0.models {
|
|
|
10184
10095
|
readonly country?: string;
|
|
10185
10096
|
}
|
|
10186
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
|
+
|
|
10187
10109
|
interface MerchantRejected {
|
|
10188
10110
|
readonly discriminator: 'merchant_rejected';
|
|
10189
10111
|
readonly reason: io.flow.v0.enums.MerchantRejectedReason;
|
|
@@ -10234,20 +10156,6 @@ declare namespace io.flow.v0.models {
|
|
|
10234
10156
|
readonly require_msds?: boolean;
|
|
10235
10157
|
}
|
|
10236
10158
|
|
|
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
10159
|
interface NotificationDeletedV2 {
|
|
10252
10160
|
readonly discriminator: 'notification_deleted_v2';
|
|
10253
10161
|
readonly event_id: string;
|
|
@@ -11110,6 +11018,22 @@ declare namespace io.flow.v0.models {
|
|
|
11110
11018
|
readonly environment: io.flow.v0.enums.Environment;
|
|
11111
11019
|
}
|
|
11112
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
|
+
|
|
11113
11037
|
interface OrganizationToken {
|
|
11114
11038
|
readonly discriminator: 'organization_token';
|
|
11115
11039
|
readonly id: string;
|
|
@@ -11907,6 +11831,7 @@ declare namespace io.flow.v0.models {
|
|
|
11907
11831
|
readonly supported_actions: io.flow.v0.enums.PaymentActionType[];
|
|
11908
11832
|
readonly payment_capture_option?: io.flow.v0.unions.PaymentCaptureOption;
|
|
11909
11833
|
readonly review?: io.flow.v0.models.PaymentRequestReview;
|
|
11834
|
+
readonly client_secret?: string;
|
|
11910
11835
|
}
|
|
11911
11836
|
|
|
11912
11837
|
interface PaymentRequestBilling {
|
|
@@ -12435,7 +12360,7 @@ declare namespace io.flow.v0.models {
|
|
|
12435
12360
|
readonly updated_by?: string;
|
|
12436
12361
|
readonly product_restriction_id?: string;
|
|
12437
12362
|
readonly hs_code?: string;
|
|
12438
|
-
readonly restricted_regions_by_type?: io.flow.v0.models.
|
|
12363
|
+
readonly restricted_regions_by_type?: io.flow.v0.models.SellabilityRegionResult[];
|
|
12439
12364
|
readonly needs_action_attributes?: io.flow.v0.models.NeedsActionAttributes[];
|
|
12440
12365
|
}
|
|
12441
12366
|
|
|
@@ -12461,10 +12386,11 @@ declare namespace io.flow.v0.models {
|
|
|
12461
12386
|
readonly product_id?: string;
|
|
12462
12387
|
readonly request_id: string;
|
|
12463
12388
|
readonly hs6_code: string;
|
|
12464
|
-
readonly restricted_regions: io.flow.v0.models.
|
|
12389
|
+
readonly restricted_regions: io.flow.v0.models.SellabilityRegionResult[];
|
|
12465
12390
|
}
|
|
12466
12391
|
|
|
12467
12392
|
interface ProductSellabilityForm {
|
|
12393
|
+
readonly discriminator: 'product_sellability_form';
|
|
12468
12394
|
readonly shop_id: string;
|
|
12469
12395
|
readonly product_id?: string;
|
|
12470
12396
|
readonly name: string;
|
|
@@ -12475,6 +12401,31 @@ declare namespace io.flow.v0.models {
|
|
|
12475
12401
|
readonly dry_run?: boolean;
|
|
12476
12402
|
}
|
|
12477
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
|
+
|
|
12478
12429
|
interface ProductTaxonomyCategory {
|
|
12479
12430
|
readonly name: string;
|
|
12480
12431
|
readonly full_name: string;
|
|
@@ -12724,6 +12675,7 @@ declare namespace io.flow.v0.models {
|
|
|
12724
12675
|
readonly center_id?: string;
|
|
12725
12676
|
readonly taxes_owed?: io.flow.v0.models.Money;
|
|
12726
12677
|
readonly duties_owed?: io.flow.v0.models.Money;
|
|
12678
|
+
readonly commercial_invoice_mode?: io.flow.v0.enums.CommercialInvoiceMode;
|
|
12727
12679
|
}
|
|
12728
12680
|
|
|
12729
12681
|
interface RatecardEstimateSummaryForm {
|
|
@@ -13348,20 +13300,6 @@ declare namespace io.flow.v0.models {
|
|
|
13348
13300
|
readonly reversal: io.flow.v0.models.Reversal;
|
|
13349
13301
|
}
|
|
13350
13302
|
|
|
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
13303
|
interface Romanization {
|
|
13366
13304
|
readonly address?: io.flow.v0.models.Address;
|
|
13367
13305
|
readonly contact?: io.flow.v0.models.Contact;
|
|
@@ -13385,20 +13323,6 @@ declare namespace io.flow.v0.models {
|
|
|
13385
13323
|
readonly roles: io.flow.v0.enums.FlowRole[];
|
|
13386
13324
|
}
|
|
13387
13325
|
|
|
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
13326
|
interface Schedule {
|
|
13403
13327
|
readonly calendar?: io.flow.v0.enums.Calendar;
|
|
13404
13328
|
readonly holiday: io.flow.v0.enums.HolidayCalendar;
|
|
@@ -13450,12 +13374,61 @@ declare namespace io.flow.v0.models {
|
|
|
13450
13374
|
readonly issuer_options: io.flow.v0.models.IssuerReference[];
|
|
13451
13375
|
}
|
|
13452
13376
|
|
|
13377
|
+
interface SelfBillingAgreement {
|
|
13378
|
+
readonly effective_at: string;
|
|
13379
|
+
readonly expires_at: string;
|
|
13380
|
+
}
|
|
13381
|
+
|
|
13453
13382
|
interface SellabilityError {
|
|
13454
13383
|
readonly discriminator: 'sellability_error';
|
|
13455
13384
|
readonly code: io.flow.v0.enums.SellabilityErrorCode;
|
|
13456
13385
|
readonly messages: string[];
|
|
13457
13386
|
}
|
|
13458
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
|
+
|
|
13459
13432
|
interface SellablilityRegionResult {
|
|
13460
13433
|
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
13461
13434
|
readonly regions: string[];
|
|
@@ -13866,6 +13839,43 @@ declare namespace io.flow.v0.models {
|
|
|
13866
13839
|
readonly shipping_notification: io.flow.v0.models.ShippingNotification;
|
|
13867
13840
|
}
|
|
13868
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
|
+
|
|
13869
13879
|
interface Shop {
|
|
13870
13880
|
readonly name: string;
|
|
13871
13881
|
readonly id: string;
|
|
@@ -14078,6 +14088,7 @@ declare namespace io.flow.v0.models {
|
|
|
14078
14088
|
readonly third_party_logistics_partners?: io.flow.v0.models.ThirdPartyLogisticsPartner[];
|
|
14079
14089
|
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
14080
14090
|
readonly average_order_weight?: number;
|
|
14091
|
+
readonly average_order_weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
14081
14092
|
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
14082
14093
|
readonly monthly_average?: io.flow.v0.models.MonthlyAverage;
|
|
14083
14094
|
readonly default_country_of_origin?: string;
|
|
@@ -14111,6 +14122,7 @@ declare namespace io.flow.v0.models {
|
|
|
14111
14122
|
readonly third_party_logistics_partners?: io.flow.v0.models.ThirdPartyLogisticsPartner[];
|
|
14112
14123
|
readonly center_contact?: io.flow.v0.models.OperationsContact;
|
|
14113
14124
|
readonly average_order_weight?: number;
|
|
14125
|
+
readonly average_order_weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
14114
14126
|
readonly package_dimensions?: io.flow.v0.models.Dimension[];
|
|
14115
14127
|
readonly monthly_average_volume_amount?: number;
|
|
14116
14128
|
readonly monthly_average_volume_currency?: string;
|
|
@@ -14254,6 +14266,11 @@ declare namespace io.flow.v0.models {
|
|
|
14254
14266
|
readonly statement: io.flow.v0.models.Statement;
|
|
14255
14267
|
}
|
|
14256
14268
|
|
|
14269
|
+
interface StatementStatusForm {
|
|
14270
|
+
readonly code: io.flow.v0.enums.StatementStatusCode;
|
|
14271
|
+
readonly failure_reason?: io.flow.v0.enums.PayoutStatusFailureCode;
|
|
14272
|
+
}
|
|
14273
|
+
|
|
14257
14274
|
interface StatementUpserted {
|
|
14258
14275
|
readonly discriminator: 'statement_upserted';
|
|
14259
14276
|
readonly event_id: string;
|
|
@@ -14531,11 +14548,34 @@ declare namespace io.flow.v0.models {
|
|
|
14531
14548
|
readonly company_name?: string;
|
|
14532
14549
|
}
|
|
14533
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
|
+
|
|
14534
14566
|
interface TaxRegistrationForm {
|
|
14535
14567
|
readonly number: string;
|
|
14536
14568
|
readonly company_name?: string;
|
|
14537
14569
|
}
|
|
14538
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
|
+
|
|
14539
14579
|
interface TaxReport {
|
|
14540
14580
|
readonly schedule: io.flow.v0.unions.RepeatSchedule;
|
|
14541
14581
|
readonly timezone: string;
|
|
@@ -14814,6 +14854,29 @@ declare namespace io.flow.v0.models {
|
|
|
14814
14854
|
readonly order_number?: string;
|
|
14815
14855
|
}
|
|
14816
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
|
+
|
|
14817
14880
|
interface TrackingLabelForm {
|
|
14818
14881
|
readonly tracking_id: string;
|
|
14819
14882
|
readonly status: io.flow.v0.enums.TrackingStatus;
|
|
@@ -15477,20 +15540,6 @@ declare namespace io.flow.v0.unions {
|
|
|
15477
15540
|
type Event =
|
|
15478
15541
|
| io.flow.v0.models.TestUpserted
|
|
15479
15542
|
| 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
15543
|
| io.flow.v0.models.TransactionUpserted
|
|
15495
15544
|
| io.flow.v0.models.OrganizationTransactionUpserted
|
|
15496
15545
|
| io.flow.v0.models.OrganizationTransactionDeleted
|
|
@@ -15597,6 +15646,8 @@ declare namespace io.flow.v0.unions {
|
|
|
15597
15646
|
| io.flow.v0.models.OrganizationDeletedV2
|
|
15598
15647
|
| io.flow.v0.models.EcommercePlatformUpserted
|
|
15599
15648
|
| io.flow.v0.models.EcommercePlatformDeleted
|
|
15649
|
+
| io.flow.v0.models.TaxRegistrationUpserted
|
|
15650
|
+
| io.flow.v0.models.TaxRegistrationDeleted
|
|
15600
15651
|
| io.flow.v0.models.OrganizationOnboardingStateUpserted
|
|
15601
15652
|
| io.flow.v0.models.OrganizationOnboardingStateDeleted
|
|
15602
15653
|
| io.flow.v0.models.AuthorizationDeletedV2
|
|
@@ -15644,9 +15695,12 @@ declare namespace io.flow.v0.unions {
|
|
|
15644
15695
|
| io.flow.v0.models.RatecardDeleted
|
|
15645
15696
|
| io.flow.v0.models.ProductRestrictionResultUpserted
|
|
15646
15697
|
| io.flow.v0.models.ProductRestrictionResultDeleted
|
|
15698
|
+
| io.flow.v0.models.ProductSellabilityResultUpserted
|
|
15699
|
+
| io.flow.v0.models.ProductSellabilityResultDeleted
|
|
15647
15700
|
| io.flow.v0.models.ShopifyLocalizationSettingUpserted
|
|
15648
15701
|
| io.flow.v0.models.ShopifyLocalizationSettingDeleted
|
|
15649
|
-
| io.flow.v0.models.TrackingLabelEventUpserted
|
|
15702
|
+
| io.flow.v0.models.TrackingLabelEventUpserted
|
|
15703
|
+
| io.flow.v0.models.TrackingLabelEventUpsertedV2;
|
|
15650
15704
|
type ExpandableCard =
|
|
15651
15705
|
| io.flow.v0.models.Card
|
|
15652
15706
|
| io.flow.v0.models.CardReference
|
|
@@ -15729,13 +15783,18 @@ declare namespace io.flow.v0.unions {
|
|
|
15729
15783
|
type LogoImage =
|
|
15730
15784
|
| io.flow.v0.models.LogoImageSvg
|
|
15731
15785
|
| io.flow.v0.models.LogoImageSetStatic;
|
|
15732
|
-
type MerchantApplication =
|
|
15786
|
+
type MerchantApplication =
|
|
15787
|
+
| io.flow.v0.models.ShopifyMerchantApplication
|
|
15788
|
+
| io.flow.v0.models.CommonMerchantApplication;
|
|
15733
15789
|
type MerchantApplicationForm =
|
|
15734
|
-
io.flow.v0.models.ShopifyMerchantApplicationForm
|
|
15790
|
+
| io.flow.v0.models.ShopifyMerchantApplicationForm
|
|
15791
|
+
| io.flow.v0.models.CommonMerchantApplicationForm;
|
|
15735
15792
|
type MerchantApplicationPutForm =
|
|
15736
|
-
io.flow.v0.models.ShopifyMerchantApplicationPutForm
|
|
15793
|
+
| io.flow.v0.models.ShopifyMerchantApplicationPutForm
|
|
15794
|
+
| io.flow.v0.models.CommonMerchantApplicationPutForm;
|
|
15737
15795
|
type MerchantApplicationsSummary =
|
|
15738
|
-
io.flow.v0.models.ShopifyMerchantApplicationsSummary
|
|
15796
|
+
| io.flow.v0.models.ShopifyMerchantApplicationsSummary
|
|
15797
|
+
| io.flow.v0.models.CommonMerchantApplicationsSummary;
|
|
15739
15798
|
type OnboardingState =
|
|
15740
15799
|
| io.flow.v0.models.InComplianceReview
|
|
15741
15800
|
| io.flow.v0.models.SetupInProgress
|
|
@@ -15895,9 +15954,13 @@ declare namespace io.flow.v0.unions {
|
|
|
15895
15954
|
type SdkAdyenV3AuthenticationToken =
|
|
15896
15955
|
| io.flow.v0.models.AdyenV3FingerprintToken
|
|
15897
15956
|
| io.flow.v0.models.AdyenV3ChallengeToken;
|
|
15957
|
+
type SellabilityRequest =
|
|
15958
|
+
| io.flow.v0.models.ProductSellabilityForm
|
|
15959
|
+
| io.flow.v0.models.SellabilityScreeningForm;
|
|
15898
15960
|
type SellabilityResponse =
|
|
15899
15961
|
| io.flow.v0.models.ProductSellability
|
|
15900
|
-
| io.flow.v0.models.SellabilityError
|
|
15962
|
+
| io.flow.v0.models.SellabilityError
|
|
15963
|
+
| io.flow.v0.models.SellabilityScreening;
|
|
15901
15964
|
type ServiceDescription =
|
|
15902
15965
|
| io.flow.v0.models.ServiceSummary
|
|
15903
15966
|
| io.flow.v0.models.ServiceUnknown;
|
|
@@ -16054,8 +16117,6 @@ export type AdyenNativeActionDetails =
|
|
|
16054
16117
|
export type AdyenNativeData = io.flow.v0.unions.AdyenNativeData;
|
|
16055
16118
|
export type AdyenV3ChallengeToken = io.flow.v0.models.AdyenV3ChallengeToken;
|
|
16056
16119
|
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
16120
|
export type Allocation = io.flow.v0.models.Allocation;
|
|
16060
16121
|
export type AllocationComponent = io.flow.v0.unions.AllocationComponent;
|
|
16061
16122
|
export type AllocationDeletedV2 = io.flow.v0.models.AllocationDeletedV2;
|
|
@@ -16076,10 +16137,6 @@ export type AllocationV2 = io.flow.v0.models.AllocationV2;
|
|
|
16076
16137
|
export type AmountMargin = io.flow.v0.models.AmountMargin;
|
|
16077
16138
|
export type AmountMarginForm = io.flow.v0.models.AmountMarginForm;
|
|
16078
16139
|
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
16140
|
export type ApplePayMerchantValidationPayload =
|
|
16084
16141
|
io.flow.v0.models.ApplePayMerchantValidationPayload;
|
|
16085
16142
|
export type ApplepaySdkCreateResultActionDetails =
|
|
@@ -16361,6 +16418,15 @@ export type CheckoutUrls = io.flow.v0.models.CheckoutUrls;
|
|
|
16361
16418
|
export type CheckoutUrlsForm = io.flow.v0.models.CheckoutUrlsForm;
|
|
16362
16419
|
export type Cleartext = io.flow.v0.models.Cleartext;
|
|
16363
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;
|
|
16364
16430
|
export type Company = io.flow.v0.models.Company;
|
|
16365
16431
|
export type ConfirmationDetails = io.flow.v0.unions.ConfirmationDetails;
|
|
16366
16432
|
export type ConsumerInvoice = io.flow.v0.models.ConsumerInvoice;
|
|
@@ -16692,6 +16758,7 @@ export type ExportType = io.flow.v0.unions.ExportType;
|
|
|
16692
16758
|
export type ExportVersion = io.flow.v0.models.ExportVersion;
|
|
16693
16759
|
export type ExporterOfRecord = io.flow.v0.enums.ExporterOfRecord;
|
|
16694
16760
|
export type ExternalCard = io.flow.v0.models.ExternalCard;
|
|
16761
|
+
export type ExternalOrderSummary = io.flow.v0.models.ExternalOrderSummary;
|
|
16695
16762
|
export type FeeDeduction = io.flow.v0.models.FeeDeduction;
|
|
16696
16763
|
export type FeeDeductionType = io.flow.v0.enums.FeeDeductionType;
|
|
16697
16764
|
export type FeeWeight = io.flow.v0.models.FeeWeight;
|
|
@@ -16829,8 +16896,6 @@ export type Hop = io.flow.v0.models.Hop;
|
|
|
16829
16896
|
export type HopEstimate = io.flow.v0.models.HopEstimate;
|
|
16830
16897
|
export type HopEstimateV2 = io.flow.v0.models.HopEstimateV2;
|
|
16831
16898
|
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
16899
|
export type Hs10 = io.flow.v0.models.Hs10;
|
|
16835
16900
|
export type Hs10CodeDeleted = io.flow.v0.models.Hs10CodeDeleted;
|
|
16836
16901
|
export type Hs10CodeUpserted = io.flow.v0.models.Hs10CodeUpserted;
|
|
@@ -17055,6 +17120,8 @@ export type MerchantOfRecordPaymentForm =
|
|
|
17055
17120
|
io.flow.v0.models.MerchantOfRecordPaymentForm;
|
|
17056
17121
|
export type MerchantOnboardingAddress =
|
|
17057
17122
|
io.flow.v0.models.MerchantOnboardingAddress;
|
|
17123
|
+
export type MerchantOnboardingBeneficiaryDetails =
|
|
17124
|
+
io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
17058
17125
|
export type MerchantRejected = io.flow.v0.models.MerchantRejected;
|
|
17059
17126
|
export type MerchantRejectedReason = io.flow.v0.enums.MerchantRejectedReason;
|
|
17060
17127
|
export type Method = io.flow.v0.enums.Method;
|
|
@@ -17066,8 +17133,6 @@ export type MonthlyAverageVolume = io.flow.v0.models.MonthlyAverageVolume;
|
|
|
17066
17133
|
export type Name = io.flow.v0.models.Name;
|
|
17067
17134
|
export type NameForm = io.flow.v0.models.NameForm;
|
|
17068
17135
|
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
17136
|
export type NotificationDeletedV2 = io.flow.v0.models.NotificationDeletedV2;
|
|
17072
17137
|
export type NotificationUpsertedV2 = io.flow.v0.models.NotificationUpsertedV2;
|
|
17073
17138
|
export type NumberRange = io.flow.v0.models.NumberRange;
|
|
@@ -17256,6 +17321,10 @@ export type OrganizationSessionAuthorization =
|
|
|
17256
17321
|
io.flow.v0.models.OrganizationSessionAuthorization;
|
|
17257
17322
|
export type OrganizationStatus = io.flow.v0.enums.OrganizationStatus;
|
|
17258
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;
|
|
17259
17328
|
export type OrganizationToken = io.flow.v0.models.OrganizationToken;
|
|
17260
17329
|
export type OrganizationTokenForm = io.flow.v0.models.OrganizationTokenForm;
|
|
17261
17330
|
export type OrganizationTokenFormV2 = io.flow.v0.models.OrganizationTokenFormV2;
|
|
@@ -17605,6 +17674,12 @@ export type ProductRestrictionResultUpserted =
|
|
|
17605
17674
|
io.flow.v0.models.ProductRestrictionResultUpserted;
|
|
17606
17675
|
export type ProductSellability = io.flow.v0.models.ProductSellability;
|
|
17607
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;
|
|
17608
17683
|
export type ProductTaxonomyCategory = io.flow.v0.models.ProductTaxonomyCategory;
|
|
17609
17684
|
export type ProductTaxonomyData = io.flow.v0.models.ProductTaxonomyData;
|
|
17610
17685
|
export type ProductTaxonomyValue = io.flow.v0.models.ProductTaxonomyValue;
|
|
@@ -17721,6 +17796,7 @@ export type RepeatMonthly = io.flow.v0.models.RepeatMonthly;
|
|
|
17721
17796
|
export type RepeatSchedule = io.flow.v0.unions.RepeatSchedule;
|
|
17722
17797
|
export type RepeatWeekly = io.flow.v0.models.RepeatWeekly;
|
|
17723
17798
|
export type RestrictedReviewStatus = io.flow.v0.enums.RestrictedReviewStatus;
|
|
17799
|
+
export type RestrictionEnvironment = io.flow.v0.enums.RestrictionEnvironment;
|
|
17724
17800
|
export type Return = io.flow.v0.models.Return;
|
|
17725
17801
|
export type ReturnForm = io.flow.v0.models.ReturnForm;
|
|
17726
17802
|
export type ReturnItemReference = io.flow.v0.models.ReturnItemReference;
|
|
@@ -17755,8 +17831,6 @@ export type ReversalStatus = io.flow.v0.enums.ReversalStatus;
|
|
|
17755
17831
|
export type ReversalUpserted = io.flow.v0.models.ReversalUpserted;
|
|
17756
17832
|
export type ReversalVersion = io.flow.v0.models.ReversalVersion;
|
|
17757
17833
|
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
17834
|
export type Role = io.flow.v0.enums.Role;
|
|
17761
17835
|
export type Romanization = io.flow.v0.models.Romanization;
|
|
17762
17836
|
export type RomanizationForm = io.flow.v0.models.RomanizationForm;
|
|
@@ -17765,8 +17839,6 @@ export type RoundingMethod = io.flow.v0.enums.RoundingMethod;
|
|
|
17765
17839
|
export type RoundingType = io.flow.v0.enums.RoundingType;
|
|
17766
17840
|
export type RouteAudit = io.flow.v0.models.RouteAudit;
|
|
17767
17841
|
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
17842
|
export type Schedule = io.flow.v0.models.Schedule;
|
|
17771
17843
|
export type ScheduleExceptionStatus = io.flow.v0.enums.ScheduleExceptionStatus;
|
|
17772
17844
|
export type ScheduledExport = io.flow.v0.models.ScheduledExport;
|
|
@@ -17778,11 +17850,28 @@ export type SecurityRatecardFee = io.flow.v0.models.SecurityRatecardFee;
|
|
|
17778
17850
|
export type SecurityServiceFee = io.flow.v0.models.SecurityServiceFee;
|
|
17779
17851
|
export type SelectIssuerOptionActionDetails =
|
|
17780
17852
|
io.flow.v0.models.SelectIssuerOptionActionDetails;
|
|
17853
|
+
export type SelfBillingAgreement = io.flow.v0.models.SelfBillingAgreement;
|
|
17781
17854
|
export type SellabilityError = io.flow.v0.models.SellabilityError;
|
|
17782
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;
|
|
17783
17862
|
export type SellabilityRequestStatus =
|
|
17784
17863
|
io.flow.v0.enums.SellabilityRequestStatus;
|
|
17785
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;
|
|
17786
17875
|
export type SellablilityRegionResult =
|
|
17787
17876
|
io.flow.v0.models.SellablilityRegionResult;
|
|
17788
17877
|
export type ServiceDescription = io.flow.v0.unions.ServiceDescription;
|
|
@@ -17874,6 +17963,13 @@ export type ShippingNotificationForm =
|
|
|
17874
17963
|
io.flow.v0.unions.ShippingNotificationForm;
|
|
17875
17964
|
export type ShippingNotificationVersion =
|
|
17876
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;
|
|
17877
17973
|
export type Shop = io.flow.v0.models.Shop;
|
|
17878
17974
|
export type ShopifyCart = io.flow.v0.models.ShopifyCart;
|
|
17879
17975
|
export type ShopifyCartAddForm = io.flow.v0.unions.ShopifyCartAddForm;
|
|
@@ -17959,6 +18055,8 @@ export type SortDirection = io.flow.v0.enums.SortDirection;
|
|
|
17959
18055
|
export type Statement = io.flow.v0.models.Statement;
|
|
17960
18056
|
export type StatementAttachmentType = io.flow.v0.enums.StatementAttachmentType;
|
|
17961
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;
|
|
17962
18060
|
export type StatementUpserted = io.flow.v0.models.StatementUpserted;
|
|
17963
18061
|
export type StoredMethodUsageStep = io.flow.v0.enums.StoredMethodUsageStep;
|
|
17964
18062
|
export type Strategy = io.flow.v0.enums.Strategy;
|
|
@@ -18020,7 +18118,10 @@ export type TaxDutyTransactionReasonCode =
|
|
|
18020
18118
|
io.flow.v0.enums.TaxDutyTransactionReasonCode;
|
|
18021
18119
|
export type TaxJurisdictionType = io.flow.v0.enums.TaxJurisdictionType;
|
|
18022
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;
|
|
18023
18123
|
export type TaxRegistrationForm = io.flow.v0.models.TaxRegistrationForm;
|
|
18124
|
+
export type TaxRegistrationUpserted = io.flow.v0.models.TaxRegistrationUpserted;
|
|
18024
18125
|
export type TaxReport = io.flow.v0.models.TaxReport;
|
|
18025
18126
|
export type TaxReportType = io.flow.v0.enums.TaxReportType;
|
|
18026
18127
|
export type TaxSetting = io.flow.v0.unions.TaxSetting;
|
|
@@ -18082,6 +18183,9 @@ export type TrackingForm = io.flow.v0.models.TrackingForm;
|
|
|
18082
18183
|
export type TrackingLabel = io.flow.v0.models.TrackingLabel;
|
|
18083
18184
|
export type TrackingLabelEventUpserted =
|
|
18084
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;
|
|
18085
18189
|
export type TrackingLabelForm = io.flow.v0.models.TrackingLabelForm;
|
|
18086
18190
|
export type TrackingLabelSummary = io.flow.v0.models.TrackingLabelSummary;
|
|
18087
18191
|
export type TrackingLabelVersion = io.flow.v0.models.TrackingLabelVersion;
|