Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@akylas/kiss-orm

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@akylas/kiss-orm - npm Package Compare versions

Comparing version 2.1.6 to 2.1.7

2

dist/Databases/Common/migrate.d.ts
import SqlQuery from '../../Queries/SqlQuery';
import DatabaseInterface from '../DatabaseInterface';
declare const _default: (database: DatabaseInterface, migrations: {
[key: string]: SqlQuery;
[key: string]: SqlQuery | (() => SqlQuery);
}) => Promise<void>;
export default _default;

@@ -18,3 +18,3 @@ import SqlQuery from '../../Queries/SqlQuery';

try {
await sequenceDb.query(migrationQuery);
await sequenceDb.query(typeof migrationQuery === 'function' ? migrationQuery() : migrationQuery);
await sequenceDb.query(sql `

@@ -21,0 +21,0 @@ INSERT INTO ${new QueryIdentifier('Migrations')}

@@ -8,3 +8,3 @@ {

"author": "Sébastien Caparros",
"version": "2.1.6",
"version": "2.1.7",
"engines": {

@@ -11,0 +11,0 @@ "node": ">= 12.0.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