forked from MONEI/Shopify-api-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocation.js
38 lines (31 loc) · 909 Bytes
/
location.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
'use strict';
const assign = require('lodash/assign');
const omit = require('lodash/omit');
const base = require('../mixins/base');
/**
* Creates a Location instance.
*
* @param {Shopify} shopify Reference to the Shopify instance
* @constructor
* @public
*/
function Location(shopify) {
this.shopify = shopify;
this.name = 'locations';
this.key = 'location';
}
assign(Location.prototype, omit(base, ['create', 'delete', 'update']));
/**
* Retrieves a list of inventory levels for a location.
*
* @param {Number} id Location ID
* @param {Object} [params] Query parameters
* @return {Promise} Promise that resolves with the result
* @public
*/
Location.prototype.inventoryLevels = function inventoryLevels(id, params) {
const key = 'inventory_levels';
const url = this.buildUrl(`${id}/${key}`, params);
return this.shopify.request(url, 'GET', key);
};
module.exports = Location;