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

workers-qb

Package Overview
Dependencies
Maintainers
0
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

workers-qb - npm Package Compare versions

Comparing version 1.6.4 to 1.6.5

4

dist/index.d.ts

@@ -136,4 +136,6 @@ declare enum OrderTypes {

where: Where;
returning?: string | Array<string>;
orderBy?: string | Array<string> | Record<string, string | OrderTypes>;
limit?: number;
returning?: string | Array<string>;
offset?: number;
};

@@ -140,0 +142,0 @@ type DeleteReturning = Omit<Delete, 'returning'> & {

@@ -509,3 +509,3 @@ "use strict";

return `DELETE
FROM ${params.tableName}` + this._where(params.where) + this._limit(params.limit) + this._returning(params.returning);
FROM ${params.tableName}` + this._where(params.where) + this._returning(params.returning) + this._orderBy(params.orderBy) + this._limit(params.limit) + this._offset(params.offset);
}

@@ -512,0 +512,0 @@ _select(params) {

{
"name": "workers-qb",
"version": "1.6.4",
"version": "1.6.5",
"description": "Zero dependencies Query Builder for Cloudflare Workers",

@@ -5,0 +5,0 @@ "main": "./dist/index.js",

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