Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

@mikro-orm/sql

Package Overview
Dependencies
Maintainers
1
Versions
188
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mikro-orm/sql - npm Package Compare versions

Comparing version
7.0.0-dev.220
to
7.0.0-dev.221
+2
-2
package.json
{
"name": "@mikro-orm/sql",
"version": "7.0.0-dev.220",
"version": "7.0.0-dev.221",
"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.",

@@ -59,4 +59,4 @@ "type": "module",

"peerDependencies": {
"@mikro-orm/core": "7.0.0-dev.220"
"@mikro-orm/core": "7.0.0-dev.221"
}
}

@@ -1,2 +0,2 @@

import { type AnyEntity, type AutoPath, type ConnectionType, type Dictionary, type EntityData, type EntityKey, type EntityManager, type EntityMetadata, type EntityName, type EntityProperty, type ExpandProperty, type FilterObject, type FilterOptions, type FilterQuery, type FilterValue, type FlushMode, type GroupOperator, type Loaded, LockMode, type LoggingOptions, type MetadataStorage, type ObjectQuery, PopulateHint, type PopulateOptions, type PopulatePath, QueryFlag, type QueryOrderKeysFlat, type QueryOrderMap, type QueryResult, RawQueryFragment, type Raw, type RequiredEntityData, type Scalar, type Subquery, type Transaction } from '@mikro-orm/core';
import { type AnyEntity, type AutoPath, type ConnectionType, type Dictionary, type EntityData, type EntityKey, type EntityManager, type EntityMetadata, type EntityName, type EntityProperty, type ExpandProperty, type FilterObject, type FilterOptions, type FilterValue, type FlushMode, type GroupOperator, type Loaded, LockMode, type LoggingOptions, type MetadataStorage, type ObjectQuery, PopulateHint, type PopulateOptions, type PopulatePath, QueryFlag, type QueryOrderKeysFlat, type QueryOrderMap, type QueryResult, RawQueryFragment, type Raw, type RequiredEntityData, type Scalar, type Subquery, type Transaction } from '@mikro-orm/core';
import { JoinType, QueryType } from './enums.js';

@@ -443,7 +443,2 @@ import type { AbstractSqlDriver } from '../AbstractSqlDriver.js';

/**
* Adds a WHERE clause using a plain `FilterQuery` (without alias support).
* This overload accepts pre-typed `FilterQuery<Entity>` variables and entity-level operators like `$in`.
*/
where(cond: FilterQuery<Entity>, operator?: keyof typeof GroupOperator): this;
/**
* Adds a WHERE clause to the query using a raw SQL string or fragment.

@@ -472,7 +467,2 @@ *

/**
* Adds an AND WHERE clause using a plain `FilterQuery` (without alias support).
* This overload accepts pre-typed `FilterQuery<Entity>` variables and entity-level operators like `$in`.
*/
andWhere(cond: FilterQuery<Entity>): this;
/**
* Adds an AND WHERE clause to the query using a raw SQL string or fragment.

@@ -497,7 +487,2 @@ *

/**
* Adds an OR WHERE clause using a plain `FilterQuery` (without alias support).
* This overload accepts pre-typed `FilterQuery<Entity>` variables and entity-level operators like `$in`.
*/
orWhere(cond: FilterQuery<Entity>): this;
/**
* Adds an OR WHERE clause to the query using a raw SQL string or fragment.

@@ -588,3 +573,3 @@ *

*/
having(cond?: QBFilterQuery<Entity, RootAlias, Context, RawAliases> | FilterQuery<Entity> | string, params?: any[], operator?: keyof typeof GroupOperator): SelectQueryBuilder<Entity, RootAlias, Hint, Context, RawAliases, Fields>;
having(cond?: QBFilterQuery<Entity, RootAlias, Context, RawAliases> | string, params?: any[], operator?: keyof typeof GroupOperator): SelectQueryBuilder<Entity, RootAlias, Hint, Context, RawAliases, Fields>;
andHaving(cond?: QBFilterQuery<Entity, RootAlias, Context, RawAliases> | string, params?: any[]): SelectQueryBuilder<Entity, RootAlias, Hint, Context, RawAliases, Fields>;

@@ -591,0 +576,0 @@ orHaving(cond?: QBFilterQuery<Entity, RootAlias, Context, RawAliases> | string, params?: any[]): SelectQueryBuilder<Entity, RootAlias, Hint, Context, RawAliases, Fields>;

Sorry, the diff of this file is too big to display