@flowio/types 11.24.136 → 11.24.137

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/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
 
@@ -3259,6 +3264,14 @@ declare namespace io.flow.channel.internal.v0.models {
3259
3264
  readonly cleartext: string;
3260
3265
  }
3261
3266
 
3267
+ interface ChannelShopStatistics {
3268
+ readonly id: string;
3269
+ readonly channel: io.flow.common.v0.models.ChannelReference;
3270
+ readonly initial_catalog_synced_at?: string;
3271
+ readonly catalog_sync_duration?: number;
3272
+ readonly catalog_products_count?: number;
3273
+ }
3274
+
3262
3275
  interface FlowChannelOrganization {
3263
3276
  readonly placeholder?: string;
3264
3277
  }
@@ -4084,6 +4097,7 @@ declare namespace io.flow.product.v0.models {
4084
4097
  readonly organization_id: string;
4085
4098
  readonly number: string;
4086
4099
  readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
4100
+ readonly inferred_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
4087
4101
  readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
4088
4102
  readonly item_numbers: string[];
4089
4103
  readonly highest_value_item_number?: string;
@@ -5073,6 +5087,7 @@ declare namespace io.flow.v0.enums {
5073
5087
  type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
5074
5088
  type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
5075
5089
  type ShippingConfigurationType = 'default' | 'variant';
5090
+ type ShippingCostGuarantee = 'guaranteed' | 'non_guaranteed';
5076
5091
  type ShippingLabelErrorCode =
5077
5092
  | 'generic_error'
5078
5093
  | 'cancelled_order'
@@ -6178,6 +6193,18 @@ declare namespace io.flow.v0.models {
6178
6193
 
6179
6194
  interface BankAccountInfoKor {
6180
6195
  readonly discriminator: 'kor';
6196
+ readonly name?: string;
6197
+ readonly address?: io.flow.v0.models.Address;
6198
+ readonly phone?: string;
6199
+ readonly email?: string;
6200
+ readonly bank_account_number: string;
6201
+ readonly bank_routing_number?: string;
6202
+ readonly bank_name?: string;
6203
+ readonly bank_address?: io.flow.v0.models.Address;
6204
+ }
6205
+
6206
+ interface BankAccountInfoKorV2 {
6207
+ readonly discriminator: 'kor_v2';
6181
6208
  readonly name: string;
6182
6209
  readonly bank_account_number: string;
6183
6210
  readonly bank_routing_number: string;
@@ -10960,6 +10987,12 @@ declare namespace io.flow.v0.models {
10960
10987
  readonly line_items: string[];
10961
10988
  }
10962
10989
 
10990
+ interface OrderStateRejectionReasonOrganizationDeactivated {
10991
+ readonly discriminator: 'order_state_rejection_reason_organization_deactivated';
10992
+ readonly deactivation_requested_at: string;
10993
+ readonly deactivated_at?: string;
10994
+ }
10995
+
10963
10996
  interface OrderStateRejectionReasonRestrictedItem {
10964
10997
  readonly discriminator: 'order_state_rejection_reason_restricted_item';
10965
10998
  readonly item_numbers: string[];
@@ -12568,6 +12601,7 @@ declare namespace io.flow.v0.models {
12568
12601
  readonly organization_id: string;
12569
12602
  readonly number: string;
12570
12603
  readonly taxonomy_category?: io.flow.v0.models.ProductTaxonomyCategory;
12604
+ readonly inferred_taxonomy_category?: io.flow.v0.models.ProductTaxonomyCategory;
12571
12605
  readonly taxonomy_data?: io.flow.v0.models.ProductTaxonomyData[];
12572
12606
  readonly item_numbers: string[];
12573
12607
  readonly highest_value_item_number?: string;
@@ -12891,6 +12925,7 @@ declare namespace io.flow.v0.models {
12891
12925
  readonly rate_level_key?: string;
12892
12926
  readonly direction: io.flow.v0.enums.Direction;
12893
12927
  readonly effective_at: string;
12928
+ readonly effective_until?: string;
12894
12929
  readonly origination_zones: io.flow.v0.models.Zone[];
12895
12930
  readonly service: io.flow.v0.models.RatecardServiceSummary;
12896
12931
  readonly published_at?: string;
@@ -12919,6 +12954,10 @@ declare namespace io.flow.v0.models {
12919
12954
  readonly ratecard: io.flow.v0.models.Ratecard;
12920
12955
  }
12921
12956
 
12957
+ interface RatecardEffectiveUntilForm {
12958
+ readonly effective_until?: string;
12959
+ }
12960
+
12922
12961
  interface RatecardEstimateForm {
12923
12962
  readonly origin_address: io.flow.v0.models.Address;
12924
12963
  readonly destination_address: io.flow.v0.models.Address;
@@ -13955,6 +13994,7 @@ declare namespace io.flow.v0.models {
13955
13994
  readonly created_at?: string;
13956
13995
  readonly updated_at?: string;
13957
13996
  readonly direction?: io.flow.v0.enums.Direction;
13997
+ readonly shipping_cost_guarantee?: io.flow.v0.enums.ShippingCostGuarantee;
13958
13998
  }
13959
13999
 
13960
14000
  interface ShippingLabelDocument {
@@ -15801,7 +15841,8 @@ declare namespace io.flow.v0.unions {
15801
15841
  | io.flow.v0.models.BankAccountInfoGbr
15802
15842
  | io.flow.v0.models.BankAccountInfoFra
15803
15843
  | io.flow.v0.models.BankAccountInfoIta
15804
- | io.flow.v0.models.BankAccountInfoKor;
15844
+ | io.flow.v0.models.BankAccountInfoKor
15845
+ | io.flow.v0.models.BankAccountInfoKorV2;
15805
15846
  type BrowserActionConfiguration =
15806
15847
  io.flow.v0.models.CardBrowserActionConfiguration;
15807
15848
  type CardAuthorizationActionResult =
@@ -16142,7 +16183,8 @@ declare namespace io.flow.v0.unions {
16142
16183
  type OrderStateRejectionReason =
16143
16184
  | io.flow.v0.models.OrderStateRejectionReasonRestrictedItem
16144
16185
  | io.flow.v0.models.OrderStateRejectionReasonDomesticOrder
16145
- | io.flow.v0.models.OrderStateRejectionReasonItemsEmpty;
16186
+ | io.flow.v0.models.OrderStateRejectionReasonItemsEmpty
16187
+ | io.flow.v0.models.OrderStateRejectionReasonOrganizationDeactivated;
16146
16188
  type PartnerCenterFee =
16147
16189
  | io.flow.v0.models.CommercialInvoiceFee
16148
16190
  | io.flow.v0.models.InboundCartonFee
@@ -16557,6 +16599,7 @@ export type BankAccountInfoFra = io.flow.v0.models.BankAccountInfoFra;
16557
16599
  export type BankAccountInfoGbr = io.flow.v0.models.BankAccountInfoGbr;
16558
16600
  export type BankAccountInfoIta = io.flow.v0.models.BankAccountInfoIta;
16559
16601
  export type BankAccountInfoKor = io.flow.v0.models.BankAccountInfoKor;
16602
+ export type BankAccountInfoKorV2 = io.flow.v0.models.BankAccountInfoKorV2;
16560
16603
  export type BankAccountInfoUsa = io.flow.v0.models.BankAccountInfoUsa;
16561
16604
  export type BankAccountReference = io.flow.v0.models.BankAccountReference;
16562
16605
  export type BankAccountSummary = io.flow.v0.models.BankAccountSummary;
@@ -17605,6 +17648,8 @@ export type OrderStateRejectionReasonDomesticOrder =
17605
17648
  io.flow.v0.models.OrderStateRejectionReasonDomesticOrder;
17606
17649
  export type OrderStateRejectionReasonItemsEmpty =
17607
17650
  io.flow.v0.models.OrderStateRejectionReasonItemsEmpty;
17651
+ export type OrderStateRejectionReasonOrganizationDeactivated =
17652
+ io.flow.v0.models.OrderStateRejectionReasonOrganizationDeactivated;
17608
17653
  export type OrderStateRejectionReasonRestrictedItem =
17609
17654
  io.flow.v0.models.OrderStateRejectionReasonRestrictedItem;
17610
17655
  export type OrderStateStatus = io.flow.v0.enums.OrderStateStatus;
@@ -18069,6 +18114,8 @@ export type Ratecard = io.flow.v0.models.Ratecard;
18069
18114
  export type RatecardCarrierSummary = io.flow.v0.models.RatecardCarrierSummary;
18070
18115
  export type RatecardData = io.flow.v0.models.RatecardData;
18071
18116
  export type RatecardDeleted = io.flow.v0.models.RatecardDeleted;
18117
+ export type RatecardEffectiveUntilForm =
18118
+ io.flow.v0.models.RatecardEffectiveUntilForm;
18072
18119
  export type RatecardEstimate = io.flow.v0.unions.RatecardEstimate;
18073
18120
  export type RatecardEstimateForm = io.flow.v0.models.RatecardEstimateForm;
18074
18121
  export type RatecardEstimateV1 = io.flow.v0.models.RatecardEstimateV1;
@@ -18282,6 +18329,7 @@ export type ShippingConfigurationUpserted =
18282
18329
  io.flow.v0.models.ShippingConfigurationUpserted;
18283
18330
  export type ShippingConfigurationVersion =
18284
18331
  io.flow.v0.models.ShippingConfigurationVersion;
18332
+ export type ShippingCostGuarantee = io.flow.v0.enums.ShippingCostGuarantee;
18285
18333
  export type ShippingLabel = io.flow.v0.models.ShippingLabel;
18286
18334
  export type ShippingLabelDocument = io.flow.v0.models.ShippingLabelDocument;
18287
18335
  export type ShippingLabelError = io.flow.v0.models.ShippingLabelError;