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

type-mongodb

Package Overview
Dependencies
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

type-mongodb - npm Package Compare versions

Comparing version 0.0.1-beta4 to 0.0.1-beta5

8

lib/metadata/DocumentMetadataFactory.js

@@ -112,6 +112,6 @@ "use strict";

const RepositoryClass = def.repository ? def.repository() : repository_1.Repository;
const repository = this.opts.dm.container.get(RepositoryClass);
if (isPromise_1.isPromise(repository)) {
yield repository;
}
const repositoryOrPromise = this.opts.dm.container.get(RepositoryClass);
const repository = isPromise_1.isPromise(repositoryOrPromise)
? yield repositoryOrPromise
: repositoryOrPromise;
repository.manager = this.opts.dm;

@@ -118,0 +118,0 @@ const meta = new DocumentMetadata_1.DocumentMetadata({

{
"name": "type-mongodb",
"version": "0.0.1-beta4",
"version": "0.0.1-beta5",
"description": "A simple decorator based MongoDB ODM.",

@@ -5,0 +5,0 @@ "keywords": [],

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