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

@scaleleap/amazon-mws-api-sdk

Package Overview
Dependencies
Maintainers
2
Versions
91
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@scaleleap/amazon-mws-api-sdk - npm Package Compare versions

Comparing version 1.5.1 to 1.6.0

lib/sections/fulfillment-outbound-shipment/codec.d.ts

19

CHANGELOG.md

@@ -6,2 +6,21 @@ # Changelog

# [1.6.0](https://github.com/ScaleLeap/amazon-mws-api-sdk/compare/v1.5.1...v1.6.0) (2020-07-22)
### Features
* adjust getServiceStatus ([2527b05](https://github.com/ScaleLeap/amazon-mws-api-sdk/commit/2527b05635ca1f3dd44c54ae3c104fe32c7c0ddd))
* init fulfillmentOutboundShipment ([3ca4f53](https://github.com/ScaleLeap/amazon-mws-api-sdk/commit/3ca4f53d6ab3f8e699c023558219fe6a504e4170))
* init fulfillmentOutboundShipment ([e7325fa](https://github.com/ScaleLeap/amazon-mws-api-sdk/commit/e7325fa5e93ef30033359b72807cbd188b28919b))
* made cancelFulfillmentOrder ([fec6424](https://github.com/ScaleLeap/amazon-mws-api-sdk/commit/fec6424118808e5b43865e2465b30065d1ab40bf))
* made createFulfillmenReturn ([712b362](https://github.com/ScaleLeap/amazon-mws-api-sdk/commit/712b36206e9e3ce5aefb06d13c5ba1a0e7426f9a))
* made createFulfillmentOrder ([49c0c02](https://github.com/ScaleLeap/amazon-mws-api-sdk/commit/49c0c02d92c57adfb23fe681f3a7ee2ef34f1e4f))
* made GetFulfillmentPreview ([506074c](https://github.com/ScaleLeap/amazon-mws-api-sdk/commit/506074c98f887270cf891c3349d4f42dcbec9719))
* made getPackageTrackingDetails ([79f2b36](https://github.com/ScaleLeap/amazon-mws-api-sdk/commit/79f2b36f09adf5a12f708c873d13b539344b44e2))
* made listAllFulfillmentOrders NT ([752fbd5](https://github.com/ScaleLeap/amazon-mws-api-sdk/commit/752fbd5440ab12b37d4900f0492e2509d4251c71))
* made listReturnReasonCodes ([56b552f](https://github.com/ScaleLeap/amazon-mws-api-sdk/commit/56b552f7a42ca772d6882bfbd1565357aabbcb08))
* made updateFulfillmentOrder ([c37badc](https://github.com/ScaleLeap/amazon-mws-api-sdk/commit/c37badc4882b591d88468c5a7fb98fb68d5a334d))
* made: listAllFulfillmentOrders ([7af30fb](https://github.com/ScaleLeap/amazon-mws-api-sdk/commit/7af30fb545f31ae73b5885ba57a9b74ec8373ac6))
* make getFulfillmentOrder ([a5a4656](https://github.com/ScaleLeap/amazon-mws-api-sdk/commit/a5a46567dc7024d871101c5142a7319768c302d3))
## [1.5.1](https://github.com/ScaleLeap/amazon-mws-api-sdk/compare/v1.5.0...v1.5.1) (2020-07-21)

@@ -8,0 +27,0 @@

4

lib/http.d.ts

@@ -27,3 +27,4 @@ import { AmazonMarketplace } from '@scaleleap/amazon-marketplaces';

MerchantFulfillment = "MerchantFulfillment",
FulfillmentInboundShipment = "FulfillmentInboundShipment"
FulfillmentInboundShipment = "FulfillmentInboundShipment",
FulfillmentOutboundShipment = "FulfillmentOutboundShipment"
}

@@ -43,2 +44,3 @@ export interface ResourceActions {

[Resource.Recommendations]: 'GetLastUpdatedTimeForRecommendations' | 'ListRecommendations' | 'ListRecommendationsByNextToken' | 'GetServiceStatus';
[Resource.FulfillmentOutboundShipment]: 'GetFulfillmentPreview' | 'CreateFulfillmentOrder' | 'UpdateFulfillmentOrder' | 'ListAllFulfillmentOrders' | 'GetFulfillmentOrder' | 'ListAllFulfillmentOrdersByNextToken' | 'GetPackageTrackingDetails' | 'CancelFulfillmentOrder' | 'ListReturnReasonCodes' | 'CreateFulfillmentReturn' | 'GetServiceStatus';
}

@@ -45,0 +47,0 @@ export interface Request {

@@ -27,2 +27,3 @@ "use strict";

Resource["FulfillmentInboundShipment"] = "FulfillmentInboundShipment";
Resource["FulfillmentOutboundShipment"] = "FulfillmentOutboundShipment";
})(Resource = exports.Resource || (exports.Resource = {}));

@@ -29,0 +30,0 @@ /**

@@ -11,2 +11,5 @@ export * from './error';

export * from './sections/fulfillment-inbound-shipment/type';
export * from './sections/fulfillment-outbound-shipment/fulfillment-outbound-shipment';
export * from './sections/fulfillment-outbound-shipment/type';
export * from './sections/fulfillment-outbound-shipment/codec';
export * from './sections/merchant-fulfillment/merchant-fulfillment';

@@ -13,0 +16,0 @@ export * from './sections/merchant-fulfillment/type';

@@ -23,2 +23,5 @@ "use strict";

__exportStar(require("./sections/fulfillment-inbound-shipment/type"), exports);
__exportStar(require("./sections/fulfillment-outbound-shipment/fulfillment-outbound-shipment"), exports);
__exportStar(require("./sections/fulfillment-outbound-shipment/type"), exports);
__exportStar(require("./sections/fulfillment-outbound-shipment/codec"), exports);
__exportStar(require("./sections/merchant-fulfillment/merchant-fulfillment"), exports);

@@ -25,0 +28,0 @@ __exportStar(require("./sections/merchant-fulfillment/type"), exports);

@@ -6,2 +6,3 @@ import { HttpClient } from './http';

import { FulfillmentInventory } from './sections/fulfillment-inventory';
import { FulfillmentOutboundShipment } from './sections/fulfillment-outbound-shipment/fulfillment-outbound-shipment';
import { MerchantFulfillment } from './sections/merchant-fulfillment/merchant-fulfillment';

@@ -21,2 +22,3 @@ import { Orders } from './sections/orders';

private _fulfillmentInboundShipment;
private _fulfillmentOutboundShipment;
private _merchantFulfillment;

@@ -37,2 +39,3 @@ private _orders;

get fulfillmentInventory(): FulfillmentInventory;
get fulfillmentOutboundShipment(): FulfillmentOutboundShipment;
get merchantFulfillment(): MerchantFulfillment;

@@ -39,0 +42,0 @@ get products(): Products;

@@ -8,2 +8,3 @@ "use strict";

const fulfillment_inventory_1 = require("./sections/fulfillment-inventory");
const fulfillment_outbound_shipment_1 = require("./sections/fulfillment-outbound-shipment/fulfillment-outbound-shipment");
const merchant_fulfillment_1 = require("./sections/merchant-fulfillment/merchant-fulfillment");

@@ -57,2 +58,8 @@ const orders_1 = require("./sections/orders");

}
get fulfillmentOutboundShipment() {
if (!this._fulfillmentOutboundShipment) {
this._fulfillmentOutboundShipment = new fulfillment_outbound_shipment_1.FulfillmentOutboundShipment(this.httpClient);
}
return this._fulfillmentOutboundShipment;
}
get merchantFulfillment() {

@@ -59,0 +66,0 @@ if (!this._merchantFulfillment) {

@@ -22,3 +22,3 @@ {

"homepage": "https://github.com/ScaleLeap/amazon-mws-api-sdk/#readme",
"version": "1.5.1",
"version": "1.6.0",
"main": "lib/index.js",

@@ -25,0 +25,0 @@ "files": [

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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