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

@upstash/qstash

Package Overview
Dependencies
Maintainers
6
Versions
217
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@upstash/qstash - npm Package Compare versions

Comparing version 2.3.1 to 2.4.0

8

dist/index.d.ts

@@ -194,2 +194,10 @@ /**

delete(dlqMessageId: string): Promise<void>;
/**
* Remove multiple messages from the dlq using their `dlqId`s
*/
deleteMany(req: {
dlqIds: string[];
}): Promise<{
deleted: number;
}>;
}

@@ -196,0 +204,0 @@

@@ -39,2 +39,15 @@ "use strict";Object.defineProperty(exports, "__esModule", {value: true});

}
/**
* Remove multiple messages from the dlq using their `dlqId`s
*/
deleteMany(req) {
return _chunkEROSIHWEjs.__async.call(void 0, this, null, function* () {
return yield this.http.request({
method: "DELETE",
path: ["v2", "dlq"],
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ dlqIds: req.dlqIds })
});
});
}
};

@@ -41,0 +54,0 @@

2

package.json
{
"name": "@upstash/qstash",
"version": "v2.3.1",
"version": "v2.4.0",
"description": "Official Typescript client for QStash",

@@ -5,0 +5,0 @@ "repository": {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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