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

@minatojs/sql-utils

Package Overview
Dependencies
Maintainers
2
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@minatojs/sql-utils - npm Package Compare versions

Comparing version 4.0.3 to 4.0.4

6

lib/index.d.ts

@@ -19,3 +19,3 @@ import { Dict } from 'cosmokit';

export declare class Builder {
tables?: Dict<Model<any>, string> | undefined;
tables?: Dict<Model>;
protected escapeMap: {};

@@ -27,3 +27,3 @@ protected escapeRegExp?: RegExp;

protected evalOperators: EvalOperators;
constructor(tables?: Dict<Model<any>, string> | undefined);
constructor(tables?: Dict<Model>);
protected createNullQuery(key: string, value: boolean): string;

@@ -46,3 +46,3 @@ protected createMemberQuery(key: string, value: any[], notStr?: string): string;

suffix(modifier: Modifier): string;
get(sel: Selection.Immutable, inline?: boolean): any;
get(sel: Selection.Immutable, inline?: boolean): string;
define<S, T>(converter: Transformer<S, T>): void;

@@ -49,0 +49,0 @@ dump(model: Model, obj: any): any;

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

conditions.push(this.createRegExpQuery(key, query));
} else if (typeof query === "string" || typeof query === "number" || query instanceof Date) {
} else if ((0, import_core.isComparable)(query)) {
conditions.push(this.createEqualQuery(key, query));

@@ -162,0 +162,0 @@ } else if ((0, import_cosmokit.isNullable)(query)) {

{
"name": "@minatojs/sql-utils",
"version": "4.0.3",
"version": "4.0.4",
"description": "SQL Utilities for Minato",

@@ -32,7 +32,7 @@ "main": "lib/index.js",

"peerDependencies": {
"@minatojs/core": "^2.3.1"
"@minatojs/core": "^2.3.2"
},
"dependencies": {
"cosmokit": "^1.4.1"
"cosmokit": "^1.4.2"
}
}

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