ebay-api-simple
Advanced tools
Comparing version
@@ -45,2 +45,3 @@ "use strict"; | ||
var encode = require('url-encode-decode').encode; | ||
// Temp comment | ||
var EbayAPI = /** @class */ (function () { | ||
@@ -47,0 +48,0 @@ function EbayAPI(clientID, clientSecret) { |
@@ -8,3 +8,3 @@ export declare class Fulfillment { | ||
getOrder(accessToken: string, orderID: string): any; | ||
getOrders(accessToken: string, filter?: string, limit?: string, offset?: string): any; | ||
getOrders(accessToken: string, createdAfter?: string, limit?: string, offset?: string): any; | ||
} |
@@ -36,8 +36,12 @@ "use strict"; | ||
}; | ||
Fulfillment.prototype.getOrders = function (accessToken, filter, limit, offset) { | ||
Fulfillment.prototype.getOrders = function (accessToken, createdAfter, limit, offset) { | ||
if (limit === void 0) { limit = '200'; } | ||
if (offset === void 0) { offset = '0'; } | ||
this.accessToken = accessToken; | ||
var url = "https://api.ebay.com/sell/fulfillment/v1/order?limit=" + limit + "&offset=" + offset; | ||
if (createdAfter != undefined) { | ||
url = url + ("&filter=creationdate:[" + createdAfter + "..]"); | ||
} | ||
return axios_1.default | ||
.get("https://api.ebay.com/sell/fulfillment/v1/order?limit=" + limit + "&offset=" + offset, { | ||
.get(url, { | ||
headers: { | ||
@@ -44,0 +48,0 @@ 'Content-Type': 'application/x-www-form-urlencoded', |
{ | ||
"name": "ebay-api-simple", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "Interface with the eBay API", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
11624
1.59%230
2.22%