@mikro-orm/sql
Advanced tools
@@ -12,6 +12,6 @@ import { type SimpleColumnMeta, type Type, type TransformContext, type MikroORM, type IsolationLevel } from '@mikro-orm/core'; | ||
| protected readonly ORDER_BY_NULLS_TRANSLATE: { | ||
| readonly "asc nulls first": "is not null"; | ||
| readonly "asc nulls last": "is null"; | ||
| readonly "desc nulls first": "is not null"; | ||
| readonly "desc nulls last": "is null"; | ||
| readonly "asc nulls first": 'is not null'; | ||
| readonly "asc nulls last": 'is null'; | ||
| readonly "desc nulls first": 'is not null'; | ||
| readonly "desc nulls last": 'is null'; | ||
| }; | ||
@@ -18,0 +18,0 @@ supportsMultiColumnCountDistinct(): boolean; |
+2
-2
| { | ||
| "name": "@mikro-orm/sql", | ||
| "version": "7.1.6-dev.16", | ||
| "version": "7.1.6-dev.17", | ||
| "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.", | ||
@@ -56,3 +56,3 @@ "keywords": [ | ||
| "peerDependencies": { | ||
| "@mikro-orm/core": "7.1.6-dev.16" | ||
| "@mikro-orm/core": "7.1.6-dev.17" | ||
| }, | ||
@@ -59,0 +59,0 @@ "engines": { |
@@ -12,3 +12,3 @@ import { type EntityKey, type EntityProperty, type MetadataStorage, type RawQueryFragmentSymbol, type EntityName } from '@mikro-orm/core'; | ||
| readonly parent?: ICriteriaNode<T> | undefined; | ||
| readonly key?: (EntityKey<T> | RawQueryFragmentSymbol) | undefined; | ||
| readonly key?: EntityKey<T> | RawQueryFragmentSymbol | undefined; | ||
| readonly validate: boolean; | ||
@@ -19,3 +19,3 @@ readonly strict: boolean; | ||
| index?: number; | ||
| constructor(metadata: MetadataStorage, entityName: EntityName<T>, parent?: ICriteriaNode<T> | undefined, key?: (EntityKey<T> | RawQueryFragmentSymbol) | undefined, validate?: boolean, strict?: boolean); | ||
| constructor(metadata: MetadataStorage, entityName: EntityName<T>, parent?: ICriteriaNode<T> | undefined, key?: EntityKey<T> | RawQueryFragmentSymbol | undefined, validate?: boolean, strict?: boolean); | ||
| process(qb: IQueryBuilder<T>, options?: ICriteriaNodeProcessOptions): any; | ||
@@ -22,0 +22,0 @@ unwrap(): any; |
@@ -239,3 +239,3 @@ import { type AbortQueryOptions, type AnyEntity, type AutoPath, type Collection, type ConnectionType, type Dictionary, type EntityData, type EntityDTOFlat, type EntityDTOProp, type EntityKey, type EntityManager, 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 PrimaryProperty, type ObjectQuery, PopulateHint, type PopulateOptions, type PopulatePath, QueryFlag, type QueryOrderKeysFlat, type QueryOrderMap, type QueryResult, RawQueryFragment, type Raw, type RequiredEntityData, type Scalar, type SerializeDTO, type Subquery, type Transaction } from '@mikro-orm/core'; | ||
| protected readonly driver: AbstractSqlDriver; | ||
| protected readonly context?: Transaction | undefined; | ||
| protected readonly context?: Transaction; | ||
| protected connectionType?: ConnectionType | undefined; | ||
@@ -257,3 +257,3 @@ protected em?: SqlEntityManager | undefined; | ||
| */ | ||
| constructor(entityName: EntityName<Entity> | QueryBuilder<Entity, any, any, any>, metadata: MetadataStorage, driver: AbstractSqlDriver, context?: Transaction | undefined, alias?: string, connectionType?: ConnectionType | undefined, em?: SqlEntityManager | undefined, loggerContext?: (LoggingOptions & Dictionary) | undefined); | ||
| constructor(entityName: EntityName<Entity> | QueryBuilder<Entity, any, any, any>, metadata: MetadataStorage, driver: AbstractSqlDriver, context?: Transaction, alias?: string, connectionType?: ConnectionType | undefined, em?: SqlEntityManager | undefined, loggerContext?: (LoggingOptions & Dictionary) | undefined); | ||
| /** | ||
@@ -260,0 +260,0 @@ * Creates a SELECT query, specifying the fields to retrieve. |
1054926
0