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

@mikro-orm/core

Package Overview
Dependencies
Maintainers
0
Versions
3203
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mikro-orm/core - npm Package Compare versions

Comparing version 6.4.1-dev.7 to 6.4.1-dev.8

4

package.json
{
"name": "@mikro-orm/core",
"version": "6.4.1-dev.7",
"version": "6.4.1-dev.8",
"description": "TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.",

@@ -67,5 +67,5 @@ "main": "index.js",

"globby": "11.1.0",
"mikro-orm": "6.4.1-dev.7",
"mikro-orm": "6.4.1-dev.8",
"reflect-metadata": "0.2.2"
}
}

@@ -9,4 +9,4 @@ import { Type } from './Type';

export declare class BigIntType extends Type<string | bigint | number | null | undefined, string | null | undefined> {
mode?: ("bigint" | "number" | "string") | undefined;
constructor(mode?: ("bigint" | "number" | "string") | undefined);
mode?: "bigint" | "number" | "string" | undefined;
constructor(mode?: "bigint" | "number" | "string" | undefined);
convertToDatabaseValue(value: string | bigint | null | undefined): string | null | undefined;

@@ -13,0 +13,0 @@ convertToJSValue(value: string | bigint | null | undefined): bigint | number | string | null | undefined;

@@ -8,4 +8,4 @@ import { Type } from './Type';

export declare class DecimalType extends Type<string | number, string> {
mode?: ("number" | "string") | undefined;
constructor(mode?: ("number" | "string") | undefined);
mode?: "number" | "string" | undefined;
constructor(mode?: "number" | "string" | undefined);
convertToJSValue(value: string): number | string;

@@ -12,0 +12,0 @@ compareValues(a: string, b: string): boolean;

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