@shipengine/connect-carrier-api 4.28.0 → 4.29.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.
@@ -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"}
@@ -1,7 +1,7 @@
1
1
  /** @description The type of a manufacturer product identifier. A product code assigned by a manufacturer, producer, or supplier. Custom denotes a code that is unique to the manufacturer's own system and does not follow an internationally recognised standard. */
2
2
  export declare enum ManufacturerProductIdentifierType {
3
- /** @description CUSTOM */
4
- CUSTOM = "CUSTOM",
3
+ /** @description UNDEFINED */
4
+ UNDEFINED = "UNDEFINED",
5
5
  /** @description GTIN */
6
6
  GTIN = "GTIN",
7
7
  /** @description EAN */
@@ -11,5 +11,7 @@ export declare enum ManufacturerProductIdentifierType {
11
11
  /** @description UPC */
12
12
  UPC = "UPC",
13
13
  /** @description MPN */
14
- MPN = "MPN"
14
+ MPN = "MPN",
15
+ /** @description SKU */
16
+ SKU = "SKU"
15
17
  }
@@ -4,8 +4,8 @@ exports.ManufacturerProductIdentifierType = void 0;
4
4
  /** @description The type of a manufacturer product identifier. A product code assigned by a manufacturer, producer, or supplier. Custom denotes a code that is unique to the manufacturer's own system and does not follow an internationally recognised standard. */
5
5
  var ManufacturerProductIdentifierType;
6
6
  (function (ManufacturerProductIdentifierType) {
7
- /** @description CUSTOM */
8
- ManufacturerProductIdentifierType["CUSTOM"] = "CUSTOM";
7
+ /** @description UNDEFINED */
8
+ ManufacturerProductIdentifierType["UNDEFINED"] = "UNDEFINED";
9
9
  /** @description GTIN */
10
10
  ManufacturerProductIdentifierType["GTIN"] = "GTIN";
11
11
  /** @description EAN */
@@ -16,5 +16,7 @@ var ManufacturerProductIdentifierType;
16
16
  ManufacturerProductIdentifierType["UPC"] = "UPC";
17
17
  /** @description MPN */
18
18
  ManufacturerProductIdentifierType["MPN"] = "MPN";
19
+ /** @description SKU */
20
+ ManufacturerProductIdentifierType["SKU"] = "SKU";
19
21
  })(ManufacturerProductIdentifierType || (exports.ManufacturerProductIdentifierType = ManufacturerProductIdentifierType = {}));
20
22
  //# sourceMappingURL=manufacturer-product-identifier-type.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"manufacturer-product-identifier-type.js","sourceRoot":"","sources":["../../src/models/manufacturer-product-identifier-type.ts"],"names":[],"mappings":";;;AAAA,sQAAsQ;AACtQ,IAAY,iCAaX;AAbD,WAAY,iCAAiC;IAC3C,0BAA0B;IAC1B,sDAAiB,CAAA;IACjB,wBAAwB;IACxB,kDAAa,CAAA;IACb,uBAAuB;IACvB,gDAAW,CAAA;IACX,wBAAwB;IACxB,kDAAa,CAAA;IACb,uBAAuB;IACvB,gDAAW,CAAA;IACX,uBAAuB;IACvB,gDAAW,CAAA;AACb,CAAC,EAbW,iCAAiC,iDAAjC,iCAAiC,QAa5C"}
1
+ {"version":3,"file":"manufacturer-product-identifier-type.js","sourceRoot":"","sources":["../../src/models/manufacturer-product-identifier-type.ts"],"names":[],"mappings":";;;AAAA,sQAAsQ;AACtQ,IAAY,iCAeX;AAfD,WAAY,iCAAiC;IAC3C,6BAA6B;IAC7B,4DAAuB,CAAA;IACvB,wBAAwB;IACxB,kDAAa,CAAA;IACb,uBAAuB;IACvB,gDAAW,CAAA;IACX,wBAAwB;IACxB,kDAAa,CAAA;IACb,uBAAuB;IACvB,gDAAW,CAAA;IACX,uBAAuB;IACvB,gDAAW,CAAA;IACX,uBAAuB;IACvB,gDAAW,CAAA;AACb,CAAC,EAfW,iCAAiC,iDAAjC,iCAAiC,QAe5C"}
@@ -23,6 +23,7 @@ exports.ShippedProductsSchema = joi_1.default.object({
23
23
  .valid(...Object.values(manufacturer_product_identifier_type_1.ManufacturerProductIdentifierType))
24
24
  .optional(),
25
25
  manufacturer_product_id: joi_1.default.string().optional(),
26
+ manufacturer_ns_product_id: joi_1.default.string().optional(),
26
27
  dangerous_goods: joi_1.default.object().optional(),
27
28
  cpsc_certificates: joi_1.default.array().items(cpsc_certificate_schema_1.CpscCertificateSchema).optional(),
28
29
  });
@@ -1 +1 @@
1
- {"version":3,"file":"shipped-products-schema.js","sourceRoot":"","sources":["../../../src/models/pickup/shipped-products-schema.ts"],"names":[],"mappings":";;;;AAAA,sDAAsB;AACtB,yEAAiE;AACjE,0EAAqE;AACrE,kGAA4F;AAC5F,wEAAmE;AAEtD,QAAA,qBAAqB,GAAG,aAAG,CAAC,MAAM,CAAC;IAC9C,WAAW,EAAE,aAAG,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,QAAQ,EAAE,aAAG,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,KAAK,EAAE,oCAAc,CAAC,QAAQ,EAAE;IAChC,iBAAiB,EAAE,aAAG,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC1C,sBAAsB,EAAE,aAAG,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/C,GAAG,EAAE,aAAG,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,eAAe,EAAE,aAAG,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACxC,WAAW,EAAE,2CAAmB,CAAC,QAAQ,EAAE;IAC3C,WAAW,EAAE,aAAG,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,QAAQ,EAAE,aAAG,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,QAAQ,EAAE,aAAG,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,4BAA4B,EAAE,aAAG,CAAC,MAAM,EAAE;SACvC,KAAK,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,wEAAiC,CAAC,CAAC;SAC1D,QAAQ,EAAE;IACb,uBAAuB,EAAE,aAAG,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChD,eAAe,EAAE,aAAG,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACxC,iBAAiB,EAAE,aAAG,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,+CAAqB,CAAC,CAAC,QAAQ,EAAE;CACvE,CAAC,CAAC"}
1
+ {"version":3,"file":"shipped-products-schema.js","sourceRoot":"","sources":["../../../src/models/pickup/shipped-products-schema.ts"],"names":[],"mappings":";;;;AAAA,sDAAsB;AACtB,yEAAiE;AACjE,0EAAqE;AACrE,kGAA4F;AAC5F,wEAAmE;AAEtD,QAAA,qBAAqB,GAAG,aAAG,CAAC,MAAM,CAAC;IAC9C,WAAW,EAAE,aAAG,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,QAAQ,EAAE,aAAG,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,KAAK,EAAE,oCAAc,CAAC,QAAQ,EAAE;IAChC,iBAAiB,EAAE,aAAG,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC1C,sBAAsB,EAAE,aAAG,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/C,GAAG,EAAE,aAAG,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,eAAe,EAAE,aAAG,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACxC,WAAW,EAAE,2CAAmB,CAAC,QAAQ,EAAE;IAC3C,WAAW,EAAE,aAAG,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,QAAQ,EAAE,aAAG,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,QAAQ,EAAE,aAAG,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,4BAA4B,EAAE,aAAG,CAAC,MAAM,EAAE;SACvC,KAAK,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,wEAAiC,CAAC,CAAC;SAC1D,QAAQ,EAAE;IACb,uBAAuB,EAAE,aAAG,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChD,0BAA0B,EAAE,aAAG,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnD,eAAe,EAAE,aAAG,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACxC,iBAAiB,EAAE,aAAG,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,+CAAqB,CAAC,CAAC,QAAQ,EAAE;CACvE,CAAC,CAAC"}
@@ -30,6 +30,8 @@ export declare class ShippedProducts {
30
30
  manufacturer_product_id_type?: ManufacturerProductIdentifierType;
31
31
  /** @description The manufacturer product identifier value. */
32
32
  manufacturer_product_id?: string;
33
+ /** @description Non-standardized refers to a code that is unique to the manufacturer's own system and does not follow an internationally recognized standard. */
34
+ manufacturer_ns_product_id?: string;
33
35
  /** @description List of dangerous goods model associated with this package passed to the carrier. */
34
36
  dangerous_goods?: DangerousGoods[];
35
37
  /** @description CPSC (U.S. Consumer Product Safety Commission) Certificate of Compliance reference data for U.S. CPSC eFiling. Supports the Reference (Abbreviated) PGA Message Set. */
@@ -29,6 +29,8 @@ class ShippedProducts {
29
29
  manufacturer_product_id_type;
30
30
  /** @description The manufacturer product identifier value. */
31
31
  manufacturer_product_id;
32
+ /** @description Non-standardized refers to a code that is unique to the manufacturer's own system and does not follow an internationally recognized standard. */
33
+ manufacturer_ns_product_id;
32
34
  /** @description List of dangerous goods model associated with this package passed to the carrier. */
33
35
  dangerous_goods;
34
36
  /** @description CPSC (U.S. Consumer Product Safety Commission) Certificate of Compliance reference data for U.S. CPSC eFiling. Supports the Reference (Abbreviated) PGA Message Set. */
@@ -1 +1 @@
1
- {"version":3,"file":"shipped-products.js","sourceRoot":"","sources":["../../../src/models/pickup/shipped-products.ts"],"names":[],"mappings":";;;AAKA,wEAAwE;AACxE,MAAa,eAAe;IAC1B,mJAAmJ;IACnJ,WAAW,CAAU;IACrB,4GAA4G;IAC5G,QAAQ,CAAU;IAClB,mKAAmK;IACnK,KAAK,CAAY;IACjB,sFAAsF;IACtF,iBAAiB,CAAU;IAC3B,8GAA8G;IAC9G,sBAAsB,CAAU;IAChC,oGAAoG;IACpG,GAAG,CAAU;IACb,gHAAgH;IAChH,eAAe,CAAU;IACzB,sEAAsE;IACtE,WAAW,CAAiB;IAC5B,0LAA0L;IAC1L,WAAW,CAAU;IACrB,oHAAoH;IACpH,QAAQ,CAAU;IAClB,yNAAyN;IACzN,QAAQ,CAAU;IAClB,wMAAwM;IACxM,4BAA4B,CAAqC;IACjE,8DAA8D;IAC9D,uBAAuB,CAAU;IACjC,qGAAqG;IACrG,eAAe,CAAoB;IACnC,wLAAwL;IACxL,iBAAiB,CAAqB;CAGvC;AAjCD,0CAiCC"}
1
+ {"version":3,"file":"shipped-products.js","sourceRoot":"","sources":["../../../src/models/pickup/shipped-products.ts"],"names":[],"mappings":";;;AAKA,wEAAwE;AACxE,MAAa,eAAe;IAC1B,mJAAmJ;IACnJ,WAAW,CAAU;IACrB,4GAA4G;IAC5G,QAAQ,CAAU;IAClB,mKAAmK;IACnK,KAAK,CAAY;IACjB,sFAAsF;IACtF,iBAAiB,CAAU;IAC3B,8GAA8G;IAC9G,sBAAsB,CAAU;IAChC,oGAAoG;IACpG,GAAG,CAAU;IACb,gHAAgH;IAChH,eAAe,CAAU;IACzB,sEAAsE;IACtE,WAAW,CAAiB;IAC5B,0LAA0L;IAC1L,WAAW,CAAU;IACrB,oHAAoH;IACpH,QAAQ,CAAU;IAClB,yNAAyN;IACzN,QAAQ,CAAU;IAClB,wMAAwM;IACxM,4BAA4B,CAAqC;IACjE,8DAA8D;IAC9D,uBAAuB,CAAU;IACjC,iKAAiK;IACjK,0BAA0B,CAAU;IACpC,qGAAqG;IACrG,eAAe,CAAoB;IACnC,wLAAwL;IACxL,iBAAiB,CAAqB;CAGvC;AAnCD,0CAmCC"}
@@ -36,6 +36,8 @@ export declare class Products {
36
36
  manufacturer_product_id_type?: ManufacturerProductIdentifierType;
37
37
  /** @description The manufacturer product identifier value. */
38
38
  manufacturer_product_id?: string;
39
+ /** @description Non-standardized refers to a code that is unique to the manufacturer's own system and does not follow an internationally recognized standard. */
40
+ manufacturer_ns_product_id?: string;
39
41
  /** @description CPSC (U.S. Consumer Product Safety Commission) Certificate of Compliance reference data for U.S. CPSC eFiling. Supports the Reference (Abbreviated) PGA Message Set. */
40
42
  cpsc_certificates?: CpscCertificate[];
41
43
  /** @description Additional details for product. */
@@ -33,6 +33,8 @@ class Products {
33
33
  manufacturer_product_id_type;
34
34
  /** @description The manufacturer product identifier value. */
35
35
  manufacturer_product_id;
36
+ /** @description Non-standardized refers to a code that is unique to the manufacturer's own system and does not follow an internationally recognized standard. */
37
+ manufacturer_ns_product_id;
36
38
  /** @description CPSC (U.S. Consumer Product Safety Commission) Certificate of Compliance reference data for U.S. CPSC eFiling. Supports the Reference (Abbreviated) PGA Message Set. */
37
39
  cpsc_certificates;
38
40
  }
@@ -1 +1 @@
1
- {"version":3,"file":"products.js","sourceRoot":"","sources":["../../src/models/products.ts"],"names":[],"mappings":";;;AAOA,iDAAiD;AACjD,MAAa,QAAQ;IACnB,mJAAmJ;IACnJ,WAAW,CAAU;IACrB,4GAA4G;IAC5G,QAAQ,CAAU;IAClB,mKAAmK;IACnK,KAAK,CAAY;IACjB,sFAAsF;IACtF,iBAAiB,CAAU;IAC3B,8GAA8G;IAC9G,sBAAsB,CAAU;IAChC,2EAA2E;IAC3E,eAAe,CAAsB;IACrC,oGAAoG;IACpG,GAAG,CAAU;IACb,gHAAgH;IAChH,eAAe,CAAU;IACzB,sEAAsE;IACtE,WAAW,CAAiB;IAC5B,0LAA0L;IAC1L,WAAW,CAAU;IACrB,oHAAoH;IACpH,QAAQ,CAAU;IAClB,yNAAyN;IACzN,QAAQ,CAAU;IAClB,qGAAqG;IACrG,eAAe,CAAoB;IACnC,wMAAwM;IACxM,4BAA4B,CAAqC;IACjE,8DAA8D;IAC9D,uBAAuB,CAAU;IACjC,wLAAwL;IACxL,iBAAiB,CAAqB;CAGvC;AAnCD,4BAmCC"}
1
+ {"version":3,"file":"products.js","sourceRoot":"","sources":["../../src/models/products.ts"],"names":[],"mappings":";;;AAOA,iDAAiD;AACjD,MAAa,QAAQ;IACnB,mJAAmJ;IACnJ,WAAW,CAAU;IACrB,4GAA4G;IAC5G,QAAQ,CAAU;IAClB,mKAAmK;IACnK,KAAK,CAAY;IACjB,sFAAsF;IACtF,iBAAiB,CAAU;IAC3B,8GAA8G;IAC9G,sBAAsB,CAAU;IAChC,2EAA2E;IAC3E,eAAe,CAAsB;IACrC,oGAAoG;IACpG,GAAG,CAAU;IACb,gHAAgH;IAChH,eAAe,CAAU;IACzB,sEAAsE;IACtE,WAAW,CAAiB;IAC5B,0LAA0L;IAC1L,WAAW,CAAU;IACrB,oHAAoH;IACpH,QAAQ,CAAU;IAClB,yNAAyN;IACzN,QAAQ,CAAU;IAClB,qGAAqG;IACrG,eAAe,CAAoB;IACnC,wMAAwM;IACxM,4BAA4B,CAAqC;IACjE,8DAA8D;IAC9D,uBAAuB,CAAU;IACjC,iKAAiK;IACjK,0BAA0B,CAAU;IACpC,wLAAwL;IACxL,iBAAiB,CAAqB;CAGvC;AArCD,4BAqCC"}
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.1",
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",
package/spec.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "info": {
4
4
  "title": "Shipping API",
5
5
  "description": "This API specification describes the canonical ShipEngine Shipping API connector module.",
6
- "version": "1.45.0"
6
+ "version": "1.47.0"
7
7
  },
8
8
  "paths": {
9
9
  "/Register": {
@@ -947,6 +947,9 @@
947
947
  "windsor_framework_details": {
948
948
  "$ref": "#/components/schemas/WindsorFrameworkDetails"
949
949
  },
950
+ "movement_indicator": {
951
+ "$ref": "#/components/schemas/MovementIndicator"
952
+ },
950
953
  "accessibility": {
951
954
  "$ref": "#/components/schemas/AccessibilityTypes"
952
955
  },
@@ -3432,15 +3435,16 @@
3432
3435
  },
3433
3436
  "ManufacturerProductIdentifierType": {
3434
3437
  "enum": [
3435
- "CUSTOM",
3438
+ "UNDEFINED",
3436
3439
  "GTIN",
3437
3440
  "EAN",
3438
3441
  "ISBN",
3439
3442
  "UPC",
3440
- "MPN"
3443
+ "MPN",
3444
+ "SKU"
3441
3445
  ],
3442
3446
  "type": "string",
3443
- "description": "The type of a manufacturer product identifier. A product code assigned by a manufacturer,\r\nproducer, or supplier. Non-standardized denotes a code that is unique to the manufacturer's\r\nown system and does not follow an internationally recognised standard."
3447
+ "description": "The type of a manufacturer product identifier. A product code assigned by a manufacturer, producer, or supplier.\r\nUse UNDEFINED when the specific identifier type is not defined in the list below."
3444
3448
  },
3445
3449
  "MovementIndicator": {
3446
3450
  "enum": [
@@ -3961,6 +3965,11 @@
3961
3965
  "description": "The manufacturer product identifier value.",
3962
3966
  "nullable": true
3963
3967
  },
3968
+ "manufacturer_ns_product_id": {
3969
+ "type": "string",
3970
+ "description": "Non-standardized refers to a code that is unique to the manufacturer's own system and does not follow an internationally recognized standard.",
3971
+ "nullable": true
3972
+ },
3964
3973
  "cpsc_certificates": {
3965
3974
  "type": "array",
3966
3975
  "items": {
@@ -4595,6 +4604,14 @@
4595
4604
  },
4596
4605
  "description": "Tax IDs associated with the exporter.",
4597
4606
  "nullable": true
4607
+ },
4608
+ "geolocation": {
4609
+ "type": "array",
4610
+ "items": {
4611
+ "$ref": "#/components/schemas/Geolocation"
4612
+ },
4613
+ "description": "List of Geolocation objects to help identify the location.",
4614
+ "nullable": true
4598
4615
  }
4599
4616
  },
4600
4617
  "additionalProperties": false,
@@ -4825,6 +4842,11 @@
4825
4842
  "description": "The manufacturer product identifier value.",
4826
4843
  "nullable": true
4827
4844
  },
4845
+ "manufacturer_ns_product_id": {
4846
+ "type": "string",
4847
+ "description": "Non-standardized refers to a code that is unique to the manufacturer's own system and does not follow an internationally recognized standard.",
4848
+ "nullable": true
4849
+ },
4828
4850
  "dangerous_goods": {
4829
4851
  "type": "array",
4830
4852
  "items": {
@@ -6147,4 +6169,4 @@
6147
6169
  "description": ""
6148
6170
  }
6149
6171
  ]
6150
- }
6172
+ }
@@ -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';
@@ -1,8 +1,11 @@
1
1
  import { AddressBase } from './address-base';
2
2
  import { TaxIdentifier } from '../taxes/tax-identifier';
3
+ import { GeolocationItem } from './geolocation-item';
3
4
 
4
5
  /** @description The address for where the shipment will be shipped from */
5
6
  export class ShipFrom extends AddressBase {
6
7
  /** @description Tax IDs associated with the exporter */
7
8
  tax_identifiers?: TaxIdentifier[];
9
+ /** @description List of Geolocation objects to help identify the location. */
10
+ geolocation?: GeolocationItem[];
8
11
  }
@@ -1,7 +1,7 @@
1
1
  /** @description The type of a manufacturer product identifier. A product code assigned by a manufacturer, producer, or supplier. Custom denotes a code that is unique to the manufacturer's own system and does not follow an internationally recognised standard. */
2
2
  export enum ManufacturerProductIdentifierType {
3
- /** @description CUSTOM */
4
- CUSTOM = 'CUSTOM',
3
+ /** @description UNDEFINED */
4
+ UNDEFINED = 'UNDEFINED',
5
5
  /** @description GTIN */
6
6
  GTIN = 'GTIN',
7
7
  /** @description EAN */
@@ -12,4 +12,6 @@ export enum ManufacturerProductIdentifierType {
12
12
  UPC = 'UPC',
13
13
  /** @description MPN */
14
14
  MPN = 'MPN',
15
+ /** @description SKU */
16
+ SKU = 'SKU',
15
17
  }
@@ -20,6 +20,7 @@ export const ShippedProductsSchema = Joi.object({
20
20
  .valid(...Object.values(ManufacturerProductIdentifierType))
21
21
  .optional(),
22
22
  manufacturer_product_id: Joi.string().optional(),
23
+ manufacturer_ns_product_id: Joi.string().optional(),
23
24
  dangerous_goods: Joi.object().optional(),
24
25
  cpsc_certificates: Joi.array().items(CpscCertificateSchema).optional(),
25
26
  });
@@ -31,6 +31,8 @@ export class ShippedProducts {
31
31
  manufacturer_product_id_type?: ManufacturerProductIdentifierType;
32
32
  /** @description The manufacturer product identifier value. */
33
33
  manufacturer_product_id?: string;
34
+ /** @description Non-standardized refers to a code that is unique to the manufacturer's own system and does not follow an internationally recognized standard. */
35
+ manufacturer_ns_product_id?: string;
34
36
  /** @description List of dangerous goods model associated with this package passed to the carrier. */
35
37
  dangerous_goods?: DangerousGoods[];
36
38
  /** @description CPSC (U.S. Consumer Product Safety Commission) Certificate of Compliance reference data for U.S. CPSC eFiling. Supports the Reference (Abbreviated) PGA Message Set. */
@@ -37,6 +37,8 @@ export class Products {
37
37
  manufacturer_product_id_type?: ManufacturerProductIdentifierType;
38
38
  /** @description The manufacturer product identifier value. */
39
39
  manufacturer_product_id?: string;
40
+ /** @description Non-standardized refers to a code that is unique to the manufacturer's own system and does not follow an internationally recognized standard. */
41
+ manufacturer_ns_product_id?: string;
40
42
  /** @description CPSC (U.S. Consumer Product Safety Commission) Certificate of Compliance reference data for U.S. CPSC eFiling. Supports the Reference (Abbreviated) PGA Message Set. */
41
43
  cpsc_certificates?: CpscCertificate[];
42
44
  /** @description Additional details for product. */