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

ebay-api-simple

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ebay-api-simple - npm Package Compare versions

Comparing version

to
0.2.1

1

lib/index.js

@@ -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) {

2

lib/sell/fulfillment.d.ts

@@ -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",