@shipengine/js-api 1.9.0 → 1.11.0

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.
@@ -5,6 +5,7 @@ import { WeightUnit } from "../weight";
5
5
  export interface AccountSettings {
6
6
  defaultLabelLayout: LabelLayout;
7
7
  dimensionsUnit: DimensionUnit;
8
+ taxIdentifier?: string;
8
9
  weightUnit: WeightUnit;
9
10
  }
10
11
  export type AccountImage = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipengine/js-api",
3
- "version": "1.9.0",
3
+ "version": "1.11.0",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "exports": {
@@ -135,7 +135,7 @@ export type TaxableIdentifierType = "vat" | "eori" | "ssn" | "ein" | "tin" | "io
135
135
  export interface Product {
136
136
  countryOfOrigin?: string;
137
137
  dangerousGoods?: DangerousGoods;
138
- description?: string;
138
+ description: string;
139
139
  harmonizedTariffCode?: string;
140
140
  midCode?: string;
141
141
  productUrl?: string;
@@ -208,6 +208,7 @@ export interface CustomsItem {
208
208
  skuDescription?: string;
209
209
  unitOfMeasure?: string;
210
210
  value: Money | number;
211
+ valueCurrency?: string;
211
212
  }
212
213
  /**
213
214
  * @category Entities