@shipengine/js-api 0.5.0 → 0.6.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipengine/js-api",
3
- "version": "0.5.0",
3
+ "version": "0.6.1",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "exports": {
@@ -100,6 +100,7 @@ export interface ShipmentItem {
100
100
  * @category Entities
101
101
  */
102
102
  export type ShipmentPackage = Omit<CarrierPackage, "name"> & {
103
+ contentDescription?: string;
103
104
  externalPackageId?: string;
104
105
  formDownload?: LinkedResource;
105
106
  insuredValue?: Money;
@@ -144,7 +145,7 @@ export type Customs = {
144
145
  export interface Shipment {
145
146
  addressValidation?: AddressValidation;
146
147
  advancedOptions?: {
147
- additionalHandling?: string;
148
+ additionalHandling?: boolean;
148
149
  billToAccount?: string;
149
150
  billToCountryCode?: string;
150
151
  billToParty?: BillToParties;