@shipengine/connect-carrier-api 4.28.0 → 4.29.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.
@@ -1,5 +1,6 @@
1
1
  export * from './address-base';
2
2
  export * from './address-residential-indicator';
3
+ export * from './geolocation-item';
3
4
  export * from './ship-from';
4
5
  export * from './ship-from-display';
5
6
  export * from './ship-to';
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  tslib_1.__exportStar(require("./address-base"), exports);
5
5
  tslib_1.__exportStar(require("./address-residential-indicator"), exports);
6
+ tslib_1.__exportStar(require("./geolocation-item"), exports);
6
7
  tslib_1.__exportStar(require("./ship-from"), exports);
7
8
  tslib_1.__exportStar(require("./ship-from-display"), exports);
8
9
  tslib_1.__exportStar(require("./ship-to"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/models/addresses/index.ts"],"names":[],"mappings":";;;AAAA,yDAA+B;AAC/B,0EAAgD;AAChD,sDAA4B;AAC5B,8DAAoC;AACpC,oDAA0B;AAC1B,0DAAgC;AAChC,iEAAuC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/models/addresses/index.ts"],"names":[],"mappings":";;;AAAA,yDAA+B;AAC/B,0EAAgD;AAChD,6DAAmC;AACnC,sDAA4B;AAC5B,8DAAoC;AACpC,oDAA0B;AAC1B,0DAAgC;AAChC,iEAAuC"}
@@ -1,7 +1,10 @@
1
1
  import { AddressBase } from './address-base';
2
2
  import { TaxIdentifier } from '../taxes/tax-identifier';
3
+ import { GeolocationItem } from './geolocation-item';
3
4
  /** @description The address for where the shipment will be shipped from */
4
5
  export declare class ShipFrom extends AddressBase {
5
6
  /** @description Tax IDs associated with the exporter */
6
7
  tax_identifiers?: TaxIdentifier[];
8
+ /** @description List of Geolocation objects to help identify the location. */
9
+ geolocation?: GeolocationItem[];
7
10
  }
@@ -6,6 +6,8 @@ const address_base_1 = require("./address-base");
6
6
  class ShipFrom extends address_base_1.AddressBase {
7
7
  /** @description Tax IDs associated with the exporter */
8
8
  tax_identifiers;
9
+ /** @description List of Geolocation objects to help identify the location. */
10
+ geolocation;
9
11
  }
10
12
  exports.ShipFrom = ShipFrom;
11
13
  //# sourceMappingURL=ship-from.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ship-from.js","sourceRoot":"","sources":["../../../src/models/addresses/ship-from.ts"],"names":[],"mappings":";;;AAAA,iDAA6C;AAG7C,2EAA2E;AAC3E,MAAa,QAAS,SAAQ,0BAAW;IACvC,wDAAwD;IACxD,eAAe,CAAmB;CACnC;AAHD,4BAGC"}
1
+ {"version":3,"file":"ship-from.js","sourceRoot":"","sources":["../../../src/models/addresses/ship-from.ts"],"names":[],"mappings":";;;AAAA,iDAA6C;AAI7C,2EAA2E;AAC3E,MAAa,QAAS,SAAQ,0BAAW;IACvC,wDAAwD;IACxD,eAAe,CAAmB;IAClC,8EAA8E;IAC9E,WAAW,CAAqB;CACjC;AALD,4BAKC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipengine/connect-carrier-api",
3
- "version": "4.28.0",
3
+ "version": "4.29.0",
4
4
  "description": "This is the typescript/javascript definitions for carrier api",
5
5
  "homepage": "https://connect.shipengine.com",
6
6
  "main": "./lib/index.js",