@shipengine/connect-carrier-api 4.29.0 → 4.29.2

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,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. */
@@ -25,6 +25,7 @@ import { DangerousGoodsDeclaration } from '../models/dangerous-good/dangerous-go
25
25
  export class CreateLabelRequest extends BaseRequest {
26
26
  service_code?: string;
27
27
  ship_datetime!: string;
28
+ ship_datetime_with_offset?: string;
28
29
  confirmation?: ConfirmationTypes;
29
30
  label_format?: DocumentFormat;
30
31
  label_layout?: LabelLayouts;
@@ -20,6 +20,7 @@ import { DangerousGoodsDeclaration } from '../models/dangerous-good/dangerous-go
20
20
  export class GetRatesRequest extends BaseRequest {
21
21
  service_code?: string;
22
22
  ship_datetime!: string;
23
+ ship_datetime_with_offset?: string;
23
24
  confirmation?: ConfirmationTypes;
24
25
  advanced_options?: AdvancedOptions;
25
26
  insurance_provider?: InsuranceProviders;