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

node-zendesk

Package Overview
Dependencies
Maintainers
3
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-zendesk - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

8

lib/client/client.js

@@ -164,3 +164,3 @@ // client.js - main client file that does most of the processing

if (throttle) {
__request = throttler(this, Client.prototype.request, throttle);
__request = throttler(self, Client.prototype.request, throttle);
}

@@ -180,3 +180,3 @@

return __request.apply(this, args.concat(function (error, status, body, response, result) {
return __request.apply(self, args.concat(function (error, status, body, response, result) {
if (error) {

@@ -187,7 +187,7 @@ return errorCb(error);

async.whilst(
function () {
function (cb) {
if (nextPage === null || (isIncremental && count < 1000)) {
nextPage = '';
}
return nextPage;
cb(null, nextPage);
},

@@ -194,0 +194,0 @@ function (cb) {

{
"name": "node-zendesk",
"version": "2.0.0",
"version": "2.0.1",
"description": "zendesk API client wrapper",

@@ -5,0 +5,0 @@ "keywords": [

@@ -7,3 +7,3 @@ # node-zendesk

## Promise supportdes
## Promise support introduced

@@ -10,0 +10,0 @@ Promise support was introduced in @v`2.0.0`, the Legacy version of node-zendesk without Promises @v`1.5.0`

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