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

anydb-sql

Package Overview
Dependencies
Maintainers
3
Versions
84
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

anydb-sql - npm Package Compare versions

Comparing version 0.6.50 to 0.6.51

17

d.ts/anydb-sql.d.ts

@@ -122,3 +122,4 @@

sql: SQL;
alter():AlterQuery<T>
alter():AlterQuery<T>;
indexes(): IndexQuery;
}

@@ -134,2 +135,16 @@ export interface AlterQuery<T> extends Executable<void> {

}
export interface IndexQuery {
create(): IndexCreationQuery;
create(indexName: string): IndexCreationQuery;
drop(indexName: string): Executable<void>;
drop(...columns: Column<any>[]): Executable<void>
}
export interface IndexCreationQuery extends Executable<void> {
unique(): IndexCreationQuery;
using(name: string): IndexCreationQuery;
on(...columns: (Column<any>|OrderByValueNode)[]): IndexCreationQuery;
withParser(parserName: string): IndexCreationQuery;
fulltext(): IndexCreationQuery;
spatial(): IndexCreationQuery;
}

@@ -136,0 +151,0 @@ export interface SQL {

2

package.json
{
"name": "anydb-sql",
"version": "0.6.50",
"version": "0.6.51",
"description": "Minimal ORM for mysql, postgresql and sqlite with complete arbitrary SQL query support (based on brianc's query builder sql)",

@@ -5,0 +5,0 @@ "main": "anydb-sql.js",

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