@ericblade/mws-advanced
Version:
Modern, fully featured, very opinionated node javascript Amazon MWS API based on @ericblade/mws-simple
32 lines (25 loc) • 651 B
JavaScript
const generateEndpoints = require('./endpoints-utils');
const categoryName = 'FulfillmentOutboundShipment';
const apiVersion = '2010-10-01';
const endpointList = [
'GetFulfillmentPreview',
'CreateFulfillmentOrder',
'UpdateFulfillmentOrder',
'GetFulfillmentOrder',
'ListAllFulfillmentOrders',
'ListAllFulfillmentOrdersByNextToken',
'GetPackageTrackingDetails',
'CancelFulfillmentOrder',
'ListReturnReasonCodes',
'CreateFulfillmentReturn',
'GetServiceStatus',
];
/**
* @private
*/
const endpoints = generateEndpoints(
categoryName,
apiVersion,
endpointList,
);
module.exports = endpoints;