@flowio/types 11.24.136 → 11.24.138
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 +377 -18
- package/dist/api.d.ts +58 -3
- package/package.json +1 -1
- package/src/api-internal.ts +493 -16
- package/src/api.ts +69 -2
package/src/api.ts
CHANGED
|
@@ -2136,6 +2136,10 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
2136
2136
|
readonly count: number;
|
|
2137
2137
|
}
|
|
2138
2138
|
|
|
2139
|
+
interface GraphqlInferredProductCategory {
|
|
2140
|
+
readonly category?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
|
|
2141
|
+
}
|
|
2142
|
+
|
|
2139
2143
|
interface GraphqlInventoryItem {
|
|
2140
2144
|
readonly id: string;
|
|
2141
2145
|
readonly tracked: boolean;
|
|
@@ -2192,6 +2196,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
2192
2196
|
readonly updatedAt: string;
|
|
2193
2197
|
readonly hasVariantsThatRequiresComponents?: boolean;
|
|
2194
2198
|
readonly category?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
|
|
2199
|
+
readonly inferredProductCategory?: io.flow.shopify.external.v0.models.GraphqlInferredProductCategory;
|
|
2195
2200
|
readonly metafields?: io.flow.shopify.external.v0.models.GraphqlMetafield[];
|
|
2196
2201
|
}
|
|
2197
2202
|
|
|
@@ -3143,6 +3148,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
3143
3148
|
| 'unsupported_order_edit'
|
|
3144
3149
|
| 'order_allocation_duties_mismatch'
|
|
3145
3150
|
| 'order_missing'
|
|
3151
|
+
| 'order_cancelled'
|
|
3146
3152
|
| 'organization_deactivated';
|
|
3147
3153
|
type ChannelOrderAcceptanceStatus =
|
|
3148
3154
|
| 'accepted'
|
|
@@ -3259,6 +3265,14 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
3259
3265
|
readonly cleartext: string;
|
|
3260
3266
|
}
|
|
3261
3267
|
|
|
3268
|
+
interface ChannelShopStatistics {
|
|
3269
|
+
readonly id: string;
|
|
3270
|
+
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
3271
|
+
readonly initial_catalog_synced_at?: string;
|
|
3272
|
+
readonly catalog_sync_duration?: number;
|
|
3273
|
+
readonly catalog_products_count?: number;
|
|
3274
|
+
}
|
|
3275
|
+
|
|
3262
3276
|
interface FlowChannelOrganization {
|
|
3263
3277
|
readonly placeholder?: string;
|
|
3264
3278
|
}
|
|
@@ -3985,6 +3999,7 @@ declare namespace io.flow.tech.onboarding.playground.v0.enums {
|
|
|
3985
3999
|
type BojanaItemType = 'physical' | 'digital';
|
|
3986
4000
|
type ChenglinItemType = 'physical' | 'digital';
|
|
3987
4001
|
type GabrielItemType = 'physical' | 'digital';
|
|
4002
|
+
type MaheshItemType = 'physical' | 'digital';
|
|
3988
4003
|
type RaveenaItemType = 'physical' | 'digital';
|
|
3989
4004
|
}
|
|
3990
4005
|
|
|
@@ -4057,6 +4072,23 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
|
4057
4072
|
readonly added_on: string;
|
|
4058
4073
|
}
|
|
4059
4074
|
|
|
4075
|
+
interface MaheshItem {
|
|
4076
|
+
readonly id: string;
|
|
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.MaheshItemType;
|
|
4081
|
+
readonly added_on: string;
|
|
4082
|
+
}
|
|
4083
|
+
|
|
4084
|
+
interface MaheshItemForm {
|
|
4085
|
+
readonly number: string;
|
|
4086
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
4087
|
+
readonly description?: string;
|
|
4088
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.MaheshItemType;
|
|
4089
|
+
readonly added_on: string;
|
|
4090
|
+
}
|
|
4091
|
+
|
|
4060
4092
|
interface RaveenaItem {
|
|
4061
4093
|
readonly id: string;
|
|
4062
4094
|
readonly number: string;
|
|
@@ -4084,6 +4116,7 @@ declare namespace io.flow.product.v0.models {
|
|
|
4084
4116
|
readonly organization_id: string;
|
|
4085
4117
|
readonly number: string;
|
|
4086
4118
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
4119
|
+
readonly inferred_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
4087
4120
|
readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
4088
4121
|
readonly item_numbers: string[];
|
|
4089
4122
|
readonly highest_value_item_number?: string;
|
|
@@ -5073,6 +5106,7 @@ declare namespace io.flow.v0.enums {
|
|
|
5073
5106
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
5074
5107
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
5075
5108
|
type ShippingConfigurationType = 'default' | 'variant';
|
|
5109
|
+
type ShippingCostGuarantee = 'guaranteed' | 'non_guaranteed';
|
|
5076
5110
|
type ShippingLabelErrorCode =
|
|
5077
5111
|
| 'generic_error'
|
|
5078
5112
|
| 'cancelled_order'
|
|
@@ -6178,6 +6212,18 @@ declare namespace io.flow.v0.models {
|
|
|
6178
6212
|
|
|
6179
6213
|
interface BankAccountInfoKor {
|
|
6180
6214
|
readonly discriminator: 'kor';
|
|
6215
|
+
readonly name?: string;
|
|
6216
|
+
readonly address?: io.flow.v0.models.Address;
|
|
6217
|
+
readonly phone?: string;
|
|
6218
|
+
readonly email?: string;
|
|
6219
|
+
readonly bank_account_number: string;
|
|
6220
|
+
readonly bank_routing_number?: string;
|
|
6221
|
+
readonly bank_name?: string;
|
|
6222
|
+
readonly bank_address?: io.flow.v0.models.Address;
|
|
6223
|
+
}
|
|
6224
|
+
|
|
6225
|
+
interface BankAccountInfoKorV2 {
|
|
6226
|
+
readonly discriminator: 'kor_v2';
|
|
6181
6227
|
readonly name: string;
|
|
6182
6228
|
readonly bank_account_number: string;
|
|
6183
6229
|
readonly bank_routing_number: string;
|
|
@@ -10960,6 +11006,12 @@ declare namespace io.flow.v0.models {
|
|
|
10960
11006
|
readonly line_items: string[];
|
|
10961
11007
|
}
|
|
10962
11008
|
|
|
11009
|
+
interface OrderStateRejectionReasonOrganizationDeactivated {
|
|
11010
|
+
readonly discriminator: 'order_state_rejection_reason_organization_deactivated';
|
|
11011
|
+
readonly deactivation_requested_at: string;
|
|
11012
|
+
readonly deactivated_at?: string;
|
|
11013
|
+
}
|
|
11014
|
+
|
|
10963
11015
|
interface OrderStateRejectionReasonRestrictedItem {
|
|
10964
11016
|
readonly discriminator: 'order_state_rejection_reason_restricted_item';
|
|
10965
11017
|
readonly item_numbers: string[];
|
|
@@ -12568,6 +12620,7 @@ declare namespace io.flow.v0.models {
|
|
|
12568
12620
|
readonly organization_id: string;
|
|
12569
12621
|
readonly number: string;
|
|
12570
12622
|
readonly taxonomy_category?: io.flow.v0.models.ProductTaxonomyCategory;
|
|
12623
|
+
readonly inferred_taxonomy_category?: io.flow.v0.models.ProductTaxonomyCategory;
|
|
12571
12624
|
readonly taxonomy_data?: io.flow.v0.models.ProductTaxonomyData[];
|
|
12572
12625
|
readonly item_numbers: string[];
|
|
12573
12626
|
readonly highest_value_item_number?: string;
|
|
@@ -12891,6 +12944,7 @@ declare namespace io.flow.v0.models {
|
|
|
12891
12944
|
readonly rate_level_key?: string;
|
|
12892
12945
|
readonly direction: io.flow.v0.enums.Direction;
|
|
12893
12946
|
readonly effective_at: string;
|
|
12947
|
+
readonly effective_until?: string;
|
|
12894
12948
|
readonly origination_zones: io.flow.v0.models.Zone[];
|
|
12895
12949
|
readonly service: io.flow.v0.models.RatecardServiceSummary;
|
|
12896
12950
|
readonly published_at?: string;
|
|
@@ -12919,6 +12973,10 @@ declare namespace io.flow.v0.models {
|
|
|
12919
12973
|
readonly ratecard: io.flow.v0.models.Ratecard;
|
|
12920
12974
|
}
|
|
12921
12975
|
|
|
12976
|
+
interface RatecardEffectiveUntilForm {
|
|
12977
|
+
readonly effective_until?: string;
|
|
12978
|
+
}
|
|
12979
|
+
|
|
12922
12980
|
interface RatecardEstimateForm {
|
|
12923
12981
|
readonly origin_address: io.flow.v0.models.Address;
|
|
12924
12982
|
readonly destination_address: io.flow.v0.models.Address;
|
|
@@ -13955,6 +14013,7 @@ declare namespace io.flow.v0.models {
|
|
|
13955
14013
|
readonly created_at?: string;
|
|
13956
14014
|
readonly updated_at?: string;
|
|
13957
14015
|
readonly direction?: io.flow.v0.enums.Direction;
|
|
14016
|
+
readonly shipping_cost_guarantee?: io.flow.v0.enums.ShippingCostGuarantee;
|
|
13958
14017
|
}
|
|
13959
14018
|
|
|
13960
14019
|
interface ShippingLabelDocument {
|
|
@@ -15801,7 +15860,8 @@ declare namespace io.flow.v0.unions {
|
|
|
15801
15860
|
| io.flow.v0.models.BankAccountInfoGbr
|
|
15802
15861
|
| io.flow.v0.models.BankAccountInfoFra
|
|
15803
15862
|
| io.flow.v0.models.BankAccountInfoIta
|
|
15804
|
-
| io.flow.v0.models.BankAccountInfoKor
|
|
15863
|
+
| io.flow.v0.models.BankAccountInfoKor
|
|
15864
|
+
| io.flow.v0.models.BankAccountInfoKorV2;
|
|
15805
15865
|
type BrowserActionConfiguration =
|
|
15806
15866
|
io.flow.v0.models.CardBrowserActionConfiguration;
|
|
15807
15867
|
type CardAuthorizationActionResult =
|
|
@@ -16142,7 +16202,8 @@ declare namespace io.flow.v0.unions {
|
|
|
16142
16202
|
type OrderStateRejectionReason =
|
|
16143
16203
|
| io.flow.v0.models.OrderStateRejectionReasonRestrictedItem
|
|
16144
16204
|
| io.flow.v0.models.OrderStateRejectionReasonDomesticOrder
|
|
16145
|
-
| io.flow.v0.models.OrderStateRejectionReasonItemsEmpty
|
|
16205
|
+
| io.flow.v0.models.OrderStateRejectionReasonItemsEmpty
|
|
16206
|
+
| io.flow.v0.models.OrderStateRejectionReasonOrganizationDeactivated;
|
|
16146
16207
|
type PartnerCenterFee =
|
|
16147
16208
|
| io.flow.v0.models.CommercialInvoiceFee
|
|
16148
16209
|
| io.flow.v0.models.InboundCartonFee
|
|
@@ -16557,6 +16618,7 @@ export type BankAccountInfoFra = io.flow.v0.models.BankAccountInfoFra;
|
|
|
16557
16618
|
export type BankAccountInfoGbr = io.flow.v0.models.BankAccountInfoGbr;
|
|
16558
16619
|
export type BankAccountInfoIta = io.flow.v0.models.BankAccountInfoIta;
|
|
16559
16620
|
export type BankAccountInfoKor = io.flow.v0.models.BankAccountInfoKor;
|
|
16621
|
+
export type BankAccountInfoKorV2 = io.flow.v0.models.BankAccountInfoKorV2;
|
|
16560
16622
|
export type BankAccountInfoUsa = io.flow.v0.models.BankAccountInfoUsa;
|
|
16561
16623
|
export type BankAccountReference = io.flow.v0.models.BankAccountReference;
|
|
16562
16624
|
export type BankAccountSummary = io.flow.v0.models.BankAccountSummary;
|
|
@@ -17605,6 +17667,8 @@ export type OrderStateRejectionReasonDomesticOrder =
|
|
|
17605
17667
|
io.flow.v0.models.OrderStateRejectionReasonDomesticOrder;
|
|
17606
17668
|
export type OrderStateRejectionReasonItemsEmpty =
|
|
17607
17669
|
io.flow.v0.models.OrderStateRejectionReasonItemsEmpty;
|
|
17670
|
+
export type OrderStateRejectionReasonOrganizationDeactivated =
|
|
17671
|
+
io.flow.v0.models.OrderStateRejectionReasonOrganizationDeactivated;
|
|
17608
17672
|
export type OrderStateRejectionReasonRestrictedItem =
|
|
17609
17673
|
io.flow.v0.models.OrderStateRejectionReasonRestrictedItem;
|
|
17610
17674
|
export type OrderStateStatus = io.flow.v0.enums.OrderStateStatus;
|
|
@@ -18069,6 +18133,8 @@ export type Ratecard = io.flow.v0.models.Ratecard;
|
|
|
18069
18133
|
export type RatecardCarrierSummary = io.flow.v0.models.RatecardCarrierSummary;
|
|
18070
18134
|
export type RatecardData = io.flow.v0.models.RatecardData;
|
|
18071
18135
|
export type RatecardDeleted = io.flow.v0.models.RatecardDeleted;
|
|
18136
|
+
export type RatecardEffectiveUntilForm =
|
|
18137
|
+
io.flow.v0.models.RatecardEffectiveUntilForm;
|
|
18072
18138
|
export type RatecardEstimate = io.flow.v0.unions.RatecardEstimate;
|
|
18073
18139
|
export type RatecardEstimateForm = io.flow.v0.models.RatecardEstimateForm;
|
|
18074
18140
|
export type RatecardEstimateV1 = io.flow.v0.models.RatecardEstimateV1;
|
|
@@ -18282,6 +18348,7 @@ export type ShippingConfigurationUpserted =
|
|
|
18282
18348
|
io.flow.v0.models.ShippingConfigurationUpserted;
|
|
18283
18349
|
export type ShippingConfigurationVersion =
|
|
18284
18350
|
io.flow.v0.models.ShippingConfigurationVersion;
|
|
18351
|
+
export type ShippingCostGuarantee = io.flow.v0.enums.ShippingCostGuarantee;
|
|
18285
18352
|
export type ShippingLabel = io.flow.v0.models.ShippingLabel;
|
|
18286
18353
|
export type ShippingLabelDocument = io.flow.v0.models.ShippingLabelDocument;
|
|
18287
18354
|
export type ShippingLabelError = io.flow.v0.models.ShippingLabelError;
|