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

lightspeed-sdk

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lightspeed-sdk

Unofficial Lightspeed SDK for Node.js

  • 0.1.0-beta.11
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

Lightspeed SDK

Note: This is not a Lightspeed official package.

npm version

Installation

Use your favorite package manager to install any of the packages and save to your package.json:

npm install lightspeed-sdk

Usage

Import the Retail API and initialize it:

const { LightspeedRetailApi } = import 'lightspeed-sdk';

const retailApi= new LightspeedRetailApi({
  clientId: 'CLIENT_ID',
  clientSecret: 'CLIENT_SECRET',
  refreshToken: 'REFRESH_TOKEN',
});

Import the Ecom API and initialize it:

const { LightspeedEcomApi } = import 'lightspeed-sdk';

const ecomApi = new LightspeedEcomApi({ 
  apiKey: 'my_api_key', 
  apiSecret: 'my_api_key', 
  clusterId: 'US1', 
});

Retail API Examples

Post customer information:

const customer = await retailApi.postCustomer(customer);

Update customer information:

const customer = await retailApi.putCustomer(customer, customerID);

Retrieve account information:

const account = await retailApi.getAccount();

Retrieve items by id:

const item = await retailApi.getItemById('accountNumber', 'id');

Retrieve all items:

const items = await retailApi.getItems('accountNumber');
for await (const item of items) {
  console.log(item); // { itemID: 'X', ... }
}

or

const items = await retailApi.getItems('accountNumber').toArray();
console.log(items); // [{ itemID: 'X', ... }, {...}]

Retail Pagination

Pagination is handled by the SDK by returning a cursor when querying:

  • getItems
  • getCategories
  • getManufacturers
  • getSales
  • getSaleLineBySaleID
  • getSalePaymentBySaleID
  • getItemsByMatrixID
  • getCustomers
  • getCustomerTypes

The object has an async iterable so you can do a for await loop to retrieve all the items, or load all at the same time by doing .toArray() on the object. Doing .toArray() could lead to performance issues if the collection is too big.

Ecom API Examples

Retrieve account information:

const account = await ecomApi.getAccount();

Get orders:

const orders = await ecomApi.getOrders();

Ecom Pagination

Pagination in the ecom api works similarly to the retail api with some minor differences

const orders = await ecomApi.getOrders();
console.log('Number of orders=', orders.getCount());
const iterator = orders.items();
const firstItem = await iterator.next().value;

Requirements

This package supports Node v8 LTS and higher. It's highly recommended to use the latest LTS version of node, and the documentation is written using syntax and features from that version.

Keywords

FAQs

Package last updated on 11 May 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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