@shipengine/connect-carrier-api 4.16.8 → 4.16.11

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.
@@ -6,6 +6,7 @@ export enum ServicePointFeaturesEnum {
6
6
  PrintServices = 'print_services',
7
7
  AfterHoursLocker = 'after_hours_locker',
8
8
  AfterHoursDropbox = 'after_hours_dropbox',
9
+ NoBoxNoLabel = 'no_box_no_label',
9
10
  }
10
11
 
11
12
  export const ServicePointFeaturesEnumSchema = Joi.string().valid(
@@ -1,9 +1,9 @@
1
- import { ShippedShipment } from './shipped-shipment';
1
+ import { PickupShipment } from './shipped-shipment';
2
2
 
3
3
  /** @description Details for a pickup shipment */
4
4
  export class PickupShipmentDetails {
5
5
  /** @description Service category for the carrier (ground, express, next_day) */
6
6
  pickup_service_code?: string;
7
7
  /** @description List of shipments to be picked up */
8
- shipments?: ShippedShipment[];
8
+ shipments?: PickupShipment[];
9
9
  }
@@ -3,7 +3,7 @@ import { ShipTo } from '../addresses/ship-to';
3
3
  import { AdvancedOptions } from '../advanced-options';
4
4
  import { Identifier } from '../identifier';
5
5
  import { ShippedPackage } from './shipped-package';
6
- import { PudoLocation } from '../../models';
6
+ import { DisplayScheme, PudoLocation } from '../../models';
7
7
 
8
8
  /** @description Basic structure for a shipment that has been shipped */
9
9
  export class ShippedShipment extends Label {
@@ -25,4 +25,7 @@ export class ShippedShipment extends Label {
25
25
  reference?: string;
26
26
  }
27
27
 
28
- export class PickupShipment extends ShippedShipment {}
28
+ export class PickupShipment extends ShippedShipment {
29
+ /** @description Display schemes for shipments*/
30
+ display_schemes?: DisplayScheme[];
31
+ }