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

@berish/orm

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@berish/orm - npm Package Compare versions

Comparing version 0.7.2 to 0.8.0

4

build/manager/manager.d.ts

@@ -48,3 +48,3 @@ import { CacheEmitter } from '@berish/emitter';

*/
initDbAdapter<T extends new () => BaseDBAdapter<any>>(dbAdapter: T, params: InstanceType<T>['params']): Promise<void>;
initDbAdapter<T extends BaseDBAdapter<any>>(dbAdapter: T, params: T['params']): Promise<void>;
/**

@@ -55,3 +55,3 @@ * Инициализация File Adapter для работы с базой данных

*/
initFileAdapter<T extends new () => BaseFileAdapter<any>>(fileAdapter: T, params: InstanceType<T>['params']): Promise<void>;
initFileAdapter<T extends BaseFileAdapter<any>>(fileAdapter: T, params: T['params']): Promise<void>;
closeDbAdapter(): Promise<void>;

@@ -58,0 +58,0 @@ closeFileAdapter(): Promise<void>;

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

throw new Error(`dbAdapter is undefined`);
this._dbAdapter = new dbAdapter();
this._dbAdapter = dbAdapter;
yield this._dbAdapter.initialize(params);

@@ -154,3 +154,3 @@ });

throw new Error(`fileAdapter is undefined`);
this._fileAdapter = new fileAdapter();
this._fileAdapter = fileAdapter;
yield this._fileAdapter.initialize(params);

@@ -157,0 +157,0 @@ });

{
"name": "@berish/orm",
"version": "0.7.2",
"version": "0.8.0",
"description": "ORM",

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

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