New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@sp-api-sdk/fulfillment-inbound-api-v0

Package Overview
Dependencies
Maintainers
1
Versions
109
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sp-api-sdk/fulfillment-inbound-api-v0 - npm Package Compare versions

Comparing version 2.2.0 to 2.3.0

9

dist/cjs/src/api-model/base.js

@@ -19,3 +19,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.RequiredError = exports.BaseAPI = exports.COLLECTION_FORMATS = exports.BASE_PATH = void 0;
exports.operationServerMap = exports.RequiredError = exports.BaseAPI = exports.COLLECTION_FORMATS = exports.BASE_PATH = void 0;
const axios_1 = __importDefault(require("axios"));

@@ -47,3 +47,3 @@ exports.BASE_PATH = "https://sellingpartnerapi-na.amazon.com".replace(/\/+$/, "");

this.configuration = configuration;
this.basePath = configuration.basePath || this.basePath;
this.basePath = configuration.basePath ?? basePath;
}

@@ -69,1 +69,6 @@ }

exports.RequiredError = RequiredError;
/**
*
* @export
*/
exports.operationServerMap = {};

@@ -141,3 +141,3 @@ "use strict";

return (axios = globalAxios, basePath = BASE_PATH) => {
const axiosRequestArgs = { ...axiosArgs.options, url: (configuration?.basePath || basePath) + axiosArgs.url };
const axiosRequestArgs = { ...axiosArgs.options, url: (axios.defaults.baseURL ? '' : configuration?.basePath ?? basePath) + axiosArgs.url };
return axios.request(axiosRequestArgs);

@@ -144,0 +144,0 @@ };

@@ -53,2 +53,9 @@ "use strict";

/**
* override server index
*
* @type {number}
* @memberof Configuration
*/
serverIndex;
/**
* base options for axios calls

@@ -74,2 +81,3 @@ *

this.basePath = param.basePath;
this.serverIndex = param.serverIndex;
this.baseOptions = param.baseOptions;

@@ -76,0 +84,0 @@ this.formDataCtor = param.formDataCtor;

@@ -40,3 +40,3 @@ /* tslint:disable */

this.configuration = configuration;
this.basePath = configuration.basePath || this.basePath;
this.basePath = configuration.basePath ?? basePath;
}

@@ -60,1 +60,6 @@ }

}
/**
*
* @export
*/
export const operationServerMap = {};

@@ -130,5 +130,5 @@ /* tslint:disable */

return (axios = globalAxios, basePath = BASE_PATH) => {
const axiosRequestArgs = { ...axiosArgs.options, url: (configuration?.basePath || basePath) + axiosArgs.url };
const axiosRequestArgs = { ...axiosArgs.options, url: (axios.defaults.baseURL ? '' : configuration?.basePath ?? basePath) + axiosArgs.url };
return axios.request(axiosRequestArgs);
};
};

@@ -50,2 +50,9 @@ /* tslint:disable */

/**
* override server index
*
* @type {number}
* @memberof Configuration
*/
serverIndex;
/**
* base options for axios calls

@@ -71,2 +78,3 @@ *

this.basePath = param.basePath;
this.serverIndex = param.serverIndex;
this.baseOptions = param.baseOptions;

@@ -73,0 +81,0 @@ this.formDataCtor = param.formDataCtor;

@@ -13,3 +13,3 @@ /**

import type { Configuration } from './configuration';
import type { AxiosInstance, AxiosRequestConfig } from 'axios';
import type { AxiosInstance, RawAxiosRequestConfig } from 'axios';
export declare const BASE_PATH: string;

@@ -33,3 +33,3 @@ /**

url: string;
options: AxiosRequestConfig;
options: RawAxiosRequestConfig;
}

@@ -57,1 +57,13 @@ /**

}
interface ServerMap {
[key: string]: {
url: string;
description: string;
}[];
}
/**
*
* @export
*/
export declare const operationServerMap: ServerMap;
export {};

@@ -18,2 +18,3 @@ /**

basePath?: string;
serverIndex?: number;
baseOptions?: any;

@@ -58,2 +59,9 @@ formDataCtor?: new () => any;

/**
* override server index
*
* @type {number}
* @memberof Configuration
*/
serverIndex?: number;
/**
* base options for axios calls

@@ -60,0 +68,0 @@ *

@@ -12,4 +12,4 @@ /**

*/
import { Amount } from './amount';
import { PrepInstruction } from './prep-instruction';
import type { Amount } from './amount';
import type { PrepInstruction } from './prep-instruction';
/**

@@ -16,0 +16,0 @@ * The fees for Amazon to prep goods for shipment.

@@ -12,3 +12,3 @@ /**

*/
import { CurrencyCode } from './currency-code';
import type { CurrencyCode } from './currency-code';
/**

@@ -15,0 +15,0 @@ * The monetary value.

@@ -12,4 +12,4 @@ /**

*/
import { GuidanceReason } from './guidance-reason';
import { InboundGuidance } from './inbound-guidance';
import type { GuidanceReason } from './guidance-reason';
import type { InboundGuidance } from './inbound-guidance';
/**

@@ -16,0 +16,0 @@ * Reasons why a given ASIN is not recommended for shipment to Amazon\'s fulfillment network.

@@ -12,5 +12,5 @@ /**

*/
import { BarcodeInstruction } from './barcode-instruction';
import { PrepGuidance } from './prep-guidance';
import { PrepInstruction } from './prep-instruction';
import type { BarcodeInstruction } from './barcode-instruction';
import type { PrepGuidance } from './prep-guidance';
import type { PrepInstruction } from './prep-instruction';
/**

@@ -17,0 +17,0 @@ * Item preparation instructions to help with item sourcing decisions.

@@ -12,3 +12,3 @@ /**

*/
import { Amount } from './amount';
import type { Amount } from './amount';
/**

@@ -15,0 +15,0 @@ * The manual processing fee per unit and total fee for a shipment.

@@ -12,3 +12,3 @@ /**

*/
import { TransportResult } from './transport-result';
import type { TransportResult } from './transport-result';
/**

@@ -15,0 +15,0 @@ * Common container for transport result

@@ -12,3 +12,3 @@ /**

*/
import { ConfirmPreorderResult } from './confirm-preorder-result';
import type { ConfirmPreorderResult } from './confirm-preorder-result';
/**

@@ -15,0 +15,0 @@ * The response schema for the confirmPreorder operation.

@@ -12,3 +12,3 @@ /**

*/
import { CommonTransportResult } from './common-transport-result';
import type { CommonTransportResult } from './common-transport-result';
/**

@@ -15,0 +15,0 @@ * The response schema for the confirmTransport operation.

@@ -12,5 +12,5 @@ /**

*/
import { Address } from './address';
import { InboundShipmentPlanRequestItem } from './inbound-shipment-plan-request-item';
import { LabelPrepPreference } from './label-prep-preference';
import type { Address } from './address';
import type { InboundShipmentPlanRequestItem } from './inbound-shipment-plan-request-item';
import type { LabelPrepPreference } from './label-prep-preference';
/**

@@ -17,0 +17,0 @@ * The request schema for the createInboundShipmentPlan operation.

@@ -12,3 +12,3 @@ /**

*/
import { CreateInboundShipmentPlanResult } from './create-inbound-shipment-plan-result';
import type { CreateInboundShipmentPlanResult } from './create-inbound-shipment-plan-result';
/**

@@ -15,0 +15,0 @@ * The response schema for the createInboundShipmentPlan operation.

@@ -12,3 +12,3 @@ /**

*/
import { InboundShipmentPlan } from './inbound-shipment-plan';
import type { InboundShipmentPlan } from './inbound-shipment-plan';
/**

@@ -15,0 +15,0 @@ * Result for the create inbound shipment operation

@@ -12,3 +12,3 @@ /**

*/
import { UnitOfMeasurement } from './unit-of-measurement';
import type { UnitOfMeasurement } from './unit-of-measurement';
/**

@@ -15,0 +15,0 @@ * The dimension values and unit of measurement.

@@ -12,3 +12,3 @@ /**

*/
import { CommonTransportResult } from './common-transport-result';
import type { CommonTransportResult } from './common-transport-result';
/**

@@ -15,0 +15,0 @@ * The response schema for the estimateTransport operation.

@@ -12,3 +12,3 @@ /**

*/
import { BillOfLadingDownloadURL } from './bill-of-lading-download-url';
import type { BillOfLadingDownloadURL } from './bill-of-lading-download-url';
/**

@@ -15,0 +15,0 @@ * The response schema for the getBillOfLading operation.

@@ -12,6 +12,6 @@ /**

*/
import { ASINInboundGuidance } from './asininbound-guidance';
import { InvalidASIN } from './invalid-asin';
import { InvalidSKU } from './invalid-sku';
import { SKUInboundGuidance } from './skuinbound-guidance';
import type { ASINInboundGuidance } from './asininbound-guidance';
import type { InvalidASIN } from './invalid-asin';
import type { InvalidSKU } from './invalid-sku';
import type { SKUInboundGuidance } from './skuinbound-guidance';
/**

@@ -18,0 +18,0 @@ * Result for the get inbound guidance operation

@@ -12,3 +12,3 @@ /**

*/
import { LabelDownloadURL } from './label-download-url';
import type { LabelDownloadURL } from './label-download-url';
/**

@@ -15,0 +15,0 @@ * The response schema for the getLabels operation.

@@ -12,3 +12,3 @@ /**

*/
import { GetPreorderInfoResult } from './get-preorder-info-result';
import type { GetPreorderInfoResult } from './get-preorder-info-result';
/**

@@ -15,0 +15,0 @@ * The response schema for the getPreorderInfo operation.

@@ -12,3 +12,3 @@ /**

*/
import { GetPrepInstructionsResult } from './get-prep-instructions-result';
import type { GetPrepInstructionsResult } from './get-prep-instructions-result';
/**

@@ -15,0 +15,0 @@ * The response schema for the getPrepInstructions operation.

@@ -12,6 +12,6 @@ /**

*/
import { ASINPrepInstructions } from './asinprep-instructions';
import { InvalidASIN } from './invalid-asin';
import { InvalidSKU } from './invalid-sku';
import { SKUPrepInstructions } from './skuprep-instructions';
import type { ASINPrepInstructions } from './asinprep-instructions';
import type { InvalidASIN } from './invalid-asin';
import type { InvalidSKU } from './invalid-sku';
import type { SKUPrepInstructions } from './skuprep-instructions';
/**

@@ -18,0 +18,0 @@ * Result for the get prep instructions operation

@@ -12,3 +12,3 @@ /**

*/
import { GetShipmentItemsResult } from './get-shipment-items-result';
import type { GetShipmentItemsResult } from './get-shipment-items-result';
/**

@@ -15,0 +15,0 @@ * The response schema for the getShipmentItems operation.

@@ -12,3 +12,3 @@ /**

*/
import { InboundShipmentItem } from './inbound-shipment-item';
import type { InboundShipmentItem } from './inbound-shipment-item';
/**

@@ -15,0 +15,0 @@ * Result for the get shipment items operation

@@ -12,3 +12,3 @@ /**

*/
import { GetShipmentsResult } from './get-shipments-result';
import type { GetShipmentsResult } from './get-shipments-result';
/**

@@ -15,0 +15,0 @@ * The response schema for the getShipments operation.

@@ -12,3 +12,3 @@ /**

*/
import { InboundShipmentInfo } from './inbound-shipment-info';
import type { InboundShipmentInfo } from './inbound-shipment-info';
/**

@@ -15,0 +15,0 @@ * Result for the get shipments operation

@@ -12,3 +12,3 @@ /**

*/
import { GetTransportDetailsResult } from './get-transport-details-result';
import type { GetTransportDetailsResult } from './get-transport-details-result';
/**

@@ -15,0 +15,0 @@ * The response schema for the getTransportDetails operation.

@@ -12,3 +12,3 @@ /**

*/
import { TransportContent } from './transport-content';
import type { TransportContent } from './transport-content';
/**

@@ -15,0 +15,0 @@ * Result for the get transport details operation

@@ -12,6 +12,6 @@ /**

*/
import { Address } from './address';
import { IntendedBoxContentsSource } from './intended-box-contents-source';
import { LabelPrepPreference } from './label-prep-preference';
import { ShipmentStatus } from './shipment-status';
import type { Address } from './address';
import type { IntendedBoxContentsSource } from './intended-box-contents-source';
import type { LabelPrepPreference } from './label-prep-preference';
import type { ShipmentStatus } from './shipment-status';
/**

@@ -18,0 +18,0 @@ * Inbound shipment information used to create and update inbound shipments.

@@ -12,7 +12,7 @@ /**

*/
import { Address } from './address';
import { BoxContentsFeeDetails } from './box-contents-fee-details';
import { BoxContentsSource } from './box-contents-source';
import { LabelPrepType } from './label-prep-type';
import { ShipmentStatus } from './shipment-status';
import type { Address } from './address';
import type { BoxContentsFeeDetails } from './box-contents-fee-details';
import type { BoxContentsSource } from './box-contents-source';
import type { LabelPrepType } from './label-prep-type';
import type { ShipmentStatus } from './shipment-status';
/**

@@ -19,0 +19,0 @@ * Information about the seller\'s inbound shipments. Returned by the listInboundShipments operation.

@@ -12,3 +12,3 @@ /**

*/
import { PrepDetails } from './prep-details';
import type { PrepDetails } from './prep-details';
/**

@@ -15,0 +15,0 @@ * Item information for an inbound shipment. Submitted with a call to the createInboundShipment or updateInboundShipment operation.

@@ -12,3 +12,3 @@ /**

*/
import { PrepDetails } from './prep-details';
import type { PrepDetails } from './prep-details';
/**

@@ -15,0 +15,0 @@ * Item information used to create an inbound shipment. Returned by the createInboundShipmentPlan operation.

@@ -12,4 +12,4 @@ /**

*/
import { Condition } from './condition';
import { PrepDetails } from './prep-details';
import type { Condition } from './condition';
import type { PrepDetails } from './prep-details';
/**

@@ -16,0 +16,0 @@ * Item information for creating an inbound shipment plan. Submitted with a call to the createInboundShipmentPlan operation.

@@ -12,6 +12,6 @@ /**

*/
import { Address } from './address';
import { BoxContentsFeeDetails } from './box-contents-fee-details';
import { InboundShipmentPlanItem } from './inbound-shipment-plan-item';
import { LabelPrepType } from './label-prep-type';
import type { Address } from './address';
import type { BoxContentsFeeDetails } from './box-contents-fee-details';
import type { InboundShipmentPlanItem } from './inbound-shipment-plan-item';
import type { LabelPrepType } from './label-prep-type';
/**

@@ -18,0 +18,0 @@ * Inbound shipment information used to create an inbound shipment. Returned by the createInboundShipmentPlan operation.

@@ -12,4 +12,4 @@ /**

*/
import { InboundShipmentHeader } from './inbound-shipment-header';
import { InboundShipmentItem } from './inbound-shipment-item';
import type { InboundShipmentHeader } from './inbound-shipment-header';
import type { InboundShipmentItem } from './inbound-shipment-item';
/**

@@ -16,0 +16,0 @@ * The request schema for an inbound shipment.

@@ -12,3 +12,3 @@ /**

*/
import { InboundShipmentResult } from './inbound-shipment-result';
import type { InboundShipmentResult } from './inbound-shipment-result';
/**

@@ -15,0 +15,0 @@ * The response schema for this operation.

@@ -12,3 +12,3 @@ /**

*/
import { ErrorReason } from './error-reason';
import type { ErrorReason } from './error-reason';
/**

@@ -15,0 +15,0 @@ * Contains details about an invalid ASIN

@@ -12,3 +12,3 @@ /**

*/
import { ErrorReason } from './error-reason';
import type { ErrorReason } from './error-reason';
/**

@@ -15,0 +15,0 @@ * Contains detail about an invalid SKU

@@ -12,3 +12,3 @@ /**

*/
import { NonPartneredSmallParcelPackageInput } from './non-partnered-small-parcel-package-input';
import type { NonPartneredSmallParcelPackageInput } from './non-partnered-small-parcel-package-input';
/**

@@ -15,0 +15,0 @@ * Information that you provide to Amazon about a Small Parcel shipment shipped by a carrier that has not partnered with Amazon.

@@ -12,3 +12,3 @@ /**

*/
import { NonPartneredSmallParcelPackageOutput } from './non-partnered-small-parcel-package-output';
import type { NonPartneredSmallParcelPackageOutput } from './non-partnered-small-parcel-package-output';
/**

@@ -15,0 +15,0 @@ * Information returned by Amazon about a Small Parcel shipment by a carrier that has not partnered with Amazon.

@@ -12,3 +12,3 @@ /**

*/
import { PackageStatus } from './package-status';
import type { PackageStatus } from './package-status';
/**

@@ -15,0 +15,0 @@ * Carrier, tracking number, and status information for the package.

@@ -12,4 +12,4 @@ /**

*/
import { Dimensions } from './dimensions';
import { Weight } from './weight';
import type { Dimensions } from './dimensions';
import type { Weight } from './weight';
/**

@@ -16,0 +16,0 @@ * Pallet information.

@@ -12,3 +12,3 @@ /**

*/
import { Amount } from './amount';
import type { Amount } from './amount';
/**

@@ -15,0 +15,0 @@ * The estimated shipping cost for a shipment using an Amazon-partnered carrier.

@@ -12,7 +12,7 @@ /**

*/
import { Amount } from './amount';
import { Contact } from './contact';
import { Pallet } from './pallet';
import { SellerFreightClass } from './seller-freight-class';
import { Weight } from './weight';
import type { Amount } from './amount';
import type { Contact } from './contact';
import type { Pallet } from './pallet';
import type { SellerFreightClass } from './seller-freight-class';
import type { Weight } from './weight';
/**

@@ -19,0 +19,0 @@ * Information that is required by an Amazon-partnered carrier to ship a Less Than Truckload/Full Truckload (LTL/FTL) inbound shipment.

@@ -12,8 +12,8 @@ /**

*/
import { Amount } from './amount';
import { Contact } from './contact';
import { Pallet } from './pallet';
import { PartneredEstimate } from './partnered-estimate';
import { SellerFreightClass } from './seller-freight-class';
import { Weight } from './weight';
import type { Amount } from './amount';
import type { Contact } from './contact';
import type { Pallet } from './pallet';
import type { PartneredEstimate } from './partnered-estimate';
import type { SellerFreightClass } from './seller-freight-class';
import type { Weight } from './weight';
/**

@@ -20,0 +20,0 @@ * Information returned by Amazon about a Less Than Truckload/Full Truckload (LTL/FTL) shipment by an Amazon-partnered carrier.

@@ -12,3 +12,3 @@ /**

*/
import { PartneredSmallParcelPackageInput } from './partnered-small-parcel-package-input';
import type { PartneredSmallParcelPackageInput } from './partnered-small-parcel-package-input';
/**

@@ -15,0 +15,0 @@ * Information that is required by an Amazon-partnered carrier to ship a Small Parcel inbound shipment.

@@ -12,4 +12,4 @@ /**

*/
import { PartneredEstimate } from './partnered-estimate';
import { PartneredSmallParcelPackageOutput } from './partnered-small-parcel-package-output';
import type { PartneredEstimate } from './partnered-estimate';
import type { PartneredSmallParcelPackageOutput } from './partnered-small-parcel-package-output';
/**

@@ -16,0 +16,0 @@ * Information returned by Amazon about a Small Parcel shipment by an Amazon-partnered carrier.

@@ -12,4 +12,4 @@ /**

*/
import { Dimensions } from './dimensions';
import { Weight } from './weight';
import type { Dimensions } from './dimensions';
import type { Weight } from './weight';
/**

@@ -16,0 +16,0 @@ * Dimension and weight information for the package.

@@ -12,5 +12,5 @@ /**

*/
import { Dimensions } from './dimensions';
import { PackageStatus } from './package-status';
import { Weight } from './weight';
import type { Dimensions } from './dimensions';
import type { PackageStatus } from './package-status';
import type { Weight } from './weight';
/**

@@ -17,0 +17,0 @@ * Dimension, weight, and shipping information for the package.

@@ -12,4 +12,4 @@ /**

*/
import { PrepInstruction } from './prep-instruction';
import { PrepOwner } from './prep-owner';
import type { PrepInstruction } from './prep-instruction';
import type { PrepOwner } from './prep-owner';
/**

@@ -16,0 +16,0 @@ * Preparation instructions and who is responsible for the preparation.

@@ -12,4 +12,4 @@ /**

*/
import { ShipmentType } from './shipment-type';
import { TransportDetailInput } from './transport-detail-input';
import type { ShipmentType } from './shipment-type';
import type { TransportDetailInput } from './transport-detail-input';
/**

@@ -16,0 +16,0 @@ * The request schema for a putTransportDetails operation.

@@ -12,3 +12,3 @@ /**

*/
import { CommonTransportResult } from './common-transport-result';
import type { CommonTransportResult } from './common-transport-result';
/**

@@ -15,0 +15,0 @@ * Workflow status for a shipment with an Amazon-partnered carrier.

@@ -12,4 +12,4 @@ /**

*/
import { GuidanceReason } from './guidance-reason';
import { InboundGuidance } from './inbound-guidance';
import type { GuidanceReason } from './guidance-reason';
import type { InboundGuidance } from './inbound-guidance';
/**

@@ -16,0 +16,0 @@ * Reasons why a given seller SKU is not recommended for shipment to Amazon\'s fulfillment network.

@@ -12,6 +12,6 @@ /**

*/
import { AmazonPrepFeesDetails } from './amazon-prep-fees-details';
import { BarcodeInstruction } from './barcode-instruction';
import { PrepGuidance } from './prep-guidance';
import { PrepInstruction } from './prep-instruction';
import type { AmazonPrepFeesDetails } from './amazon-prep-fees-details';
import type { BarcodeInstruction } from './barcode-instruction';
import type { PrepGuidance } from './prep-guidance';
import type { PrepInstruction } from './prep-instruction';
/**

@@ -18,0 +18,0 @@ * Labeling requirements and item preparation instructions to help you prepare items for shipment to Amazon\'s fulfillment network.

@@ -12,5 +12,5 @@ /**

*/
import { TransportDetailOutput } from './transport-detail-output';
import { TransportHeader } from './transport-header';
import { TransportResult } from './transport-result';
import type { TransportDetailOutput } from './transport-detail-output';
import type { TransportHeader } from './transport-header';
import type { TransportResult } from './transport-result';
/**

@@ -17,0 +17,0 @@ * Inbound shipment information, including carrier details, shipment status, and the workflow status for a request for shipment with an Amazon-partnered carrier.

@@ -12,6 +12,6 @@ /**

*/
import { NonPartneredLtlDataInput } from './non-partnered-ltl-data-input';
import { NonPartneredSmallParcelDataInput } from './non-partnered-small-parcel-data-input';
import { PartneredLtlDataInput } from './partnered-ltl-data-input';
import { PartneredSmallParcelDataInput } from './partnered-small-parcel-data-input';
import type { NonPartneredLtlDataInput } from './non-partnered-ltl-data-input';
import type { NonPartneredSmallParcelDataInput } from './non-partnered-small-parcel-data-input';
import type { PartneredLtlDataInput } from './partnered-ltl-data-input';
import type { PartneredSmallParcelDataInput } from './partnered-small-parcel-data-input';
/**

@@ -18,0 +18,0 @@ * Information required to create an Amazon-partnered carrier shipping estimate, or to alert the Amazon fulfillment center to the arrival of an inbound shipment by a non-Amazon-partnered carrier.

@@ -12,6 +12,6 @@ /**

*/
import { NonPartneredLtlDataOutput } from './non-partnered-ltl-data-output';
import { NonPartneredSmallParcelDataOutput } from './non-partnered-small-parcel-data-output';
import { PartneredLtlDataOutput } from './partnered-ltl-data-output';
import { PartneredSmallParcelDataOutput } from './partnered-small-parcel-data-output';
import type { NonPartneredLtlDataOutput } from './non-partnered-ltl-data-output';
import type { NonPartneredSmallParcelDataOutput } from './non-partnered-small-parcel-data-output';
import type { PartneredLtlDataOutput } from './partnered-ltl-data-output';
import type { PartneredSmallParcelDataOutput } from './partnered-small-parcel-data-output';
/**

@@ -18,0 +18,0 @@ * Inbound shipment information, including carrier details and shipment status.

@@ -12,3 +12,3 @@ /**

*/
import { ShipmentType } from './shipment-type';
import type { ShipmentType } from './shipment-type';
/**

@@ -15,0 +15,0 @@ * The shipping identifier, information about whether the shipment is by an Amazon-partnered carrier, and information about whether the shipment is Small Parcel or Less Than Truckload/Full Truckload (LTL/FTL).

@@ -12,3 +12,3 @@ /**

*/
import { TransportStatus } from './transport-status';
import type { TransportStatus } from './transport-status';
/**

@@ -15,0 +15,0 @@ * The workflow status for a shipment with an Amazon-partnered carrier.

@@ -12,3 +12,3 @@ /**

*/
import { CommonTransportResult } from './common-transport-result';
import type { CommonTransportResult } from './common-transport-result';
/**

@@ -15,0 +15,0 @@ * The response schema for the voidTransport operation.

@@ -12,3 +12,3 @@ /**

*/
import { UnitOfWeight } from './unit-of-weight';
import type { UnitOfWeight } from './unit-of-weight';
/**

@@ -15,0 +15,0 @@ * The weight of the package.

@@ -5,3 +5,3 @@ {

"description": "The Selling Partner API for Fulfillment Inbound lets you create applications that create and update inbound shipments of inventory to Amazon's fulfillment network.",
"version": "2.2.0",
"version": "2.3.0",
"main": "dist/cjs/index.js",

@@ -22,4 +22,4 @@ "module": "dist/es/index.js",

"dependencies": {
"@sp-api-sdk/common": "2.0.7",
"axios": "^1.6.8"
"@sp-api-sdk/common": "2.0.8",
"axios": "^1.7.0"
},

@@ -45,3 +45,3 @@ "repository": {

],
"gitHead": "556cf5234c43b36ddaffa12f795a925b1c7fc63b"
"gitHead": "5a245a25a9f1765c825e2178668d4b0f4e44689b"
}

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc