npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

wmt-marketplace-sdk

v2.2.2

Published

Walmart Marketplace API SDK

Downloads

127

Readme

wmt-marketplace-sdk

npm license github-issues

Walmart Marketplace API SDK

nodei.co

stars forks

Features

  • Orders
    • All Release Orders: Retrieves all the orders with line items that are in the "created" status, that is, these orders have been released from the Walmart Order Management System to the seller for processing. The released orders are the orders that are ready for a seller to fulfill.
    • Acknowledge Orders: You can use this API to acknowledge an entire order, including all of its order lines. Walmart requires a seller to acknowledge orders within four hours of receipt of the order, except in extenuating circumstances.
    • Shipping Updates: Updates the status of order lines to "Shipped" and triggers the charge to the customer.
  • Requests
    • Timeout: All requests are set with a 2-minute timeout to avoid overuse of resources when the API is slow to respond.

Roadmap

  • Orders
    • We are working on completing the Orders methods.

Usage

You only need to set your API credentials once in the process. They don't need to be set for each call within the same process.

import { WMT } from 'wmt-marketplace-sdk';

WMT.Request.Credentials = new WMT.Config.Credentials(
  '38b7eb6c-3672-4022-93a2-f47794f36338', // Client ID
  'MIIBVgIBADANBgkqhkiG9w0BAQEFAASCAUAwggE8AgEAAkEAq7BFUpkGp3...' // Client Secret
);

Get All Released Orders

WMT.Orders.getAllReleased({
  CreatedStartDate: new Date('01 April 2018 00:00 UTC'), // required
  CreatedEndDate: new Date('02 April 2018 00:00 UTC'), // optional, defaults to current time
  Limit: 10 // optional, defaults to 200 (max)
}).then((response: string) => {
  let purchaseOrders: WMT.Orders.PurchaseOrder.PurchaseOrderResponse = JSON.parse(response);

  // do something with the orders
});

Acknowledge Orders

WMT.Orders.ackOrder({
  PurchaseOrderId: 2380639477120
}).then((response: string) => {
  let orderResponse: WMT.Orders.PurchaseOrder.SingleOrderResponse = JSON.parse(response);
  // The response to a successful call contains the acknowledged order. Although the
  // API documentation claims the order will bear an "Acknowledged" status, we have
  // not found this to be true in production. It's simply a copy of the order that
  // was acknowledged, still bearing a "Created" status.
});

Shipping Updates

var shipment = new WMT.Orders.Shipment.OrderShipmentRequest(
  // See sample in /test/lib/orders.spec.ts ('Shipment Update').
);

WMT.Orders.postShippingUpdate({
  PurchaseOrderId: 2380639477120,
  PurchaseOrderShipment: shipment
}).then((response: string) => {
  let orderResponse: WMT.Orders.PurchaseOrder.SingleOrderResponse = JSON.parse(response)
  // The response to a successful call contains the purchase order.
});

Install

npm install --save wmt-marketplace-sdk

Scripts

  • npm run build : rimraf ./lib/ && tsc -p .

Dependencies

Package | Version | Dev --- |:---:|:---: wmt-marketplace-auth | 1.1.0 | ✖ request | 2.85.0 | ✖ request-promise | 4.2.2 | ✖ ts-node | 5.0.1 | ✔ typescript | 2.8.1 | ✔ tslint | 5.9.1 | ✔ mocha | 5.1.0 | ✔ nock | 9.2.5 | ✔ chai | 4.1.2 | ✔ node-readme | 0.1.9 | ✔ nyc | 11.6.0 | ✔ rimraf | 2.6.2 | ✔ @types/mocha | 5.0.0 | ✔ @types/nock | 9.1.3 | ✔ @types/chai | 4.1.2 | ✔ @types/node | 9.6.5 | ✔ @types/request-promise | 4.1.41 | ✔ @types/bluebird | 3.5.20 | ✔

Contributing

We are always excited when we can make our projects open source and allow contributors to build and work on these components. To make this possible, there are a few things we kindly ask all contributors to understand and follow. Please review the Contributing Guide.

Author

Kane McConnell [email protected]

License

  • MIT : http://opensource.org/licenses/MIT