@flowio/types 11.24.44 → 11.24.46

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
@@ -2106,7 +2106,7 @@ declare namespace io.flow.v0.enums {
2106
2106
  | 'company'
2107
2107
  | 'vat_registration_number';
2108
2108
  type AddressVerificationResultFieldCode =
2109
- | 'match'
2109
+ | 'matched'
2110
2110
  | 'not_available'
2111
2111
  | 'not_checked'
2112
2112
  | 'not_matched';
@@ -2251,7 +2251,7 @@ declare namespace io.flow.v0.enums {
2251
2251
  type CustomerAddressType = 'billing' | 'invoice' | 'shipping';
2252
2252
  type CvvCode = 'match' | 'suspicious' | 'unsupported' | 'no_match';
2253
2253
  type CvvResultCode =
2254
- | 'match'
2254
+ | 'matched'
2255
2255
  | 'not_available'
2256
2256
  | 'not_checked'
2257
2257
  | 'not_matched';
@@ -2572,6 +2572,16 @@ declare namespace io.flow.v0.enums {
2572
2572
  type InvitationErrorCode = 'expired' | 'invalid_email';
2573
2573
  type ItemAvailabilityStatus = 'available' | 'low' | 'out_of_stock';
2574
2574
  type ItemIdentifier = 'item_number' | 'sku';
2575
+ type LabelRequestMethod =
2576
+ | 'flow_web_sync'
2577
+ | 'channel_web_async'
2578
+ | 'direct_api_sync'
2579
+ | 'direct_api_async'
2580
+ | 'bridge_api_sync'
2581
+ | 'partner_api_sync'
2582
+ | 'notification_requiring_crossdock'
2583
+ | 'autogenerated';
2584
+ type LabelTriggerMethod = 'autogenerated' | 'on_demand';
2575
2585
  type LaneDirection = 'outbound' | 'return';
2576
2586
  type LanePreselectPreference = 'lowest_cost' | 'default_tier';
2577
2587
  type LaneStrategy = 'oldest' | 'fastest' | 'lowest_cost' | 'highest_priority';
@@ -10195,6 +10205,7 @@ declare namespace io.flow.v0.models {
10195
10205
  readonly delivered_duty: io.flow.v0.enums.DeliveredDuty;
10196
10206
  readonly dimensional_weight?: io.flow.v0.models.Measurement;
10197
10207
  readonly gravitational_weight?: io.flow.v0.models.Measurement;
10208
+ readonly ratecard_id?: string;
10198
10209
  readonly line_items?: io.flow.v0.models.LineItemForm[];
10199
10210
  }
10200
10211
 
@@ -10883,12 +10894,18 @@ declare namespace io.flow.v0.models {
10883
10894
  }
10884
10895
 
10885
10896
  interface ServiceSummary {
10897
+ readonly discriminator: 'service_summary';
10886
10898
  readonly id: string;
10887
10899
  readonly carrier: io.flow.v0.models.CarrierReference;
10888
10900
  readonly name: string;
10889
10901
  readonly center_code?: string;
10890
10902
  }
10891
10903
 
10904
+ interface ServiceUnknown {
10905
+ readonly discriminator: 'service_unknown';
10906
+ readonly name: string;
10907
+ }
10908
+
10892
10909
  interface SessionAuthorizationForm {
10893
10910
  readonly session: string;
10894
10911
  }
@@ -11131,6 +11148,8 @@ declare namespace io.flow.v0.models {
11131
11148
  readonly order_identifier?: string;
11132
11149
  readonly fulfillment_key?: string;
11133
11150
  readonly shipment_recipient: io.flow.v0.enums.ShipmentRecipient;
11151
+ readonly label_request_method?: io.flow.v0.enums.LabelRequestMethod;
11152
+ readonly label_trigger_method?: io.flow.v0.enums.LabelTriggerMethod;
11134
11153
  readonly created_at?: string;
11135
11154
  readonly updated_at?: string;
11136
11155
  }
@@ -11243,9 +11262,9 @@ declare namespace io.flow.v0.models {
11243
11262
  readonly destination: io.flow.v0.models.ShippingAddress;
11244
11263
  readonly flow_tracking_number: string;
11245
11264
  readonly origin: io.flow.v0.models.ShippingAddress;
11246
- readonly package: io.flow.v0.models.ShippingLabelPackage;
11247
- readonly service: io.flow.v0.models.ServiceSummary;
11248
- readonly window: io.flow.v0.models.DatetimeRange;
11265
+ readonly package?: io.flow.v0.models.ShippingLabelPackage;
11266
+ readonly service: io.flow.v0.unions.ServiceDescription;
11267
+ readonly window?: io.flow.v0.models.DatetimeRange;
11249
11268
  readonly order?: io.flow.v0.models.LabelOrderSummary;
11250
11269
  readonly order_identifier?: string;
11251
11270
  readonly fulfillment_key?: string;
@@ -13115,6 +13134,9 @@ declare namespace io.flow.v0.unions {
13115
13134
  type SdkAdyenV3AuthenticationToken =
13116
13135
  | io.flow.v0.models.AdyenV3FingerprintToken
13117
13136
  | io.flow.v0.models.AdyenV3ChallengeToken;
13137
+ type ServiceDescription =
13138
+ | io.flow.v0.models.ServiceSummary
13139
+ | io.flow.v0.models.ServiceUnknown;
13118
13140
  type ServiceFee =
13119
13141
  | io.flow.v0.models.FuelSurchargeServiceFee
13120
13142
  | io.flow.v0.models.FuelSurchargeAmountByWeightServiceFee
@@ -14084,11 +14106,13 @@ export type LabelFormatDeleted = io.flow.v0.models.LabelFormatDeleted;
14084
14106
  export type LabelFormatUpserted = io.flow.v0.models.LabelFormatUpserted;
14085
14107
  export type LabelOrderSummary = io.flow.v0.models.LabelOrderSummary;
14086
14108
  export type LabelReference = io.flow.v0.models.LabelReference;
14109
+ export type LabelRequestMethod = io.flow.v0.enums.LabelRequestMethod;
14087
14110
  export type LabelTrackingCarrierService =
14088
14111
  io.flow.v0.models.LabelTrackingCarrierService;
14089
14112
  export type LabelTrackingSummary = io.flow.v0.models.LabelTrackingSummary;
14090
14113
  export type LabelTrackingSummaryUpdate =
14091
14114
  io.flow.v0.models.LabelTrackingSummaryUpdate;
14115
+ export type LabelTriggerMethod = io.flow.v0.enums.LabelTriggerMethod;
14092
14116
  export type LabelUpserted = io.flow.v0.models.LabelUpserted;
14093
14117
  export type LabelUpsertedV2 = io.flow.v0.models.LabelUpsertedV2;
14094
14118
  export type LandedCostItem = io.flow.v0.models.LandedCostItem;
@@ -14861,9 +14885,11 @@ export type SdkAdyenV3AuthenticationToken =
14861
14885
  io.flow.v0.unions.SdkAdyenV3AuthenticationToken;
14862
14886
  export type SelectIssuerOptionActionDetails =
14863
14887
  io.flow.v0.models.SelectIssuerOptionActionDetails;
14888
+ export type ServiceDescription = io.flow.v0.unions.ServiceDescription;
14864
14889
  export type ServiceFee = io.flow.v0.unions.ServiceFee;
14865
14890
  export type ServiceReference = io.flow.v0.models.ServiceReference;
14866
14891
  export type ServiceSummary = io.flow.v0.models.ServiceSummary;
14892
+ export type ServiceUnknown = io.flow.v0.models.ServiceUnknown;
14867
14893
  export type Session = io.flow.v0.unions.Session;
14868
14894
  export type SessionAuthorization = io.flow.v0.unions.SessionAuthorization;
14869
14895
  export type SessionAuthorizationForm =