@sequelize/core
Version:
Sequelize is a promise-based Node.js ORM tool for Postgres, MySQL, MariaDB, SQLite, Microsoft SQL Server, Amazon Redshift, Snowflake’s Data Cloud, Db2, and IBM i. It features solid transaction support, relations, eager and lazy loading, read replication a
1,833 lines (1,615 loc) • 107 kB
TypeScript
import type {
AllowArray,
AllowReadonlyArray,
AnyFunction,
Nullish,
StrictRequiredBy,
} from '@sequelize/utils';
import type { SetRequired } from 'type-fest';
import type { AbstractConnection } from './abstract-dialect/connection-manager.js';
import type { DataType, NormalizedDataType } from './abstract-dialect/data-types.js';
import type { IndexField, IndexOptions, TableName } from './abstract-dialect/query-interface';
import type {
Association,
BelongsToAssociation,
BelongsToManyAssociation,
BelongsToManyOptions,
BelongsToOptions,
HasManyAssociation,
HasManyOptions,
HasOneAssociation,
HasOneOptions,
} from './associations/index';
import type { Deferrable } from './deferrable';
import type { DynamicSqlExpression } from './expression-builders/base-sql-expression.js';
import type { Cast } from './expression-builders/cast.js';
import type { Col } from './expression-builders/col.js';
import type { Fn } from './expression-builders/fn.js';
import type { Literal } from './expression-builders/literal.js';
import type { Where } from './expression-builders/where.js';
import type { Lock, Op, TableHints, Transaction, WhereOptions } from './index';
import type { IndexHints } from './index-hints';
import type { ValidationOptions } from './instance-validator';
import type { ModelHooks } from './model-hooks.js';
import { ModelTypeScript } from './model-typescript.js';
import type { QueryOptions, Sequelize, SyncOptions } from './sequelize';
import type { COMPLETES_TRANSACTION } from './transaction';
import type { MakeNullishOptional, OmitConstructors } from './utils/types.js';
export interface Logging {
/**
* A function that gets executed while running the query to log the sql.
*/
logging?: false | ((sql: string, timing?: number) => void) | undefined;
/**
* Pass query execution time in milliseconds as second argument to logging function (options.logging).
*/
benchmark?: boolean | undefined;
}
export interface Poolable {
/**
* Force the query to use the write pool, regardless of the query type.
*
* @default false
*/
useMaster?: boolean;
}
export interface Transactionable {
/**
* The transaction in which this query must be run.
* Mutually exclusive with {@link Transactionable.connection}.
*
* If the Sequelize disableClsTransactions option has not been set to true, and a transaction is running in the current AsyncLocalStorage context,
* that transaction will be used, unless null or another Transaction is manually specified here.
*/
transaction?: Transaction | null | undefined;
/**
* The connection on which this query must be run.
* Mutually exclusive with {@link Transactionable.transaction}.
*
* Can be used to ensure that a query is run on the same connection as a previous query, which is useful when
* configuring session options.
*
* Specifying this option takes precedence over CLS Transactions. If a transaction is running in the current
* AsyncLocalStorage context, it will be ignored in favor of the specified connection.
*/
connection?: AbstractConnection | null | undefined;
/**
* Indicates if the query completes the transaction
* Internal only
*
* @private
* @hidden
*/
[COMPLETES_TRANSACTION]?: boolean | undefined;
}
export interface SearchPathable {
/**
* An optional parameter to specify the schema search_path (Postgres only)
*/
searchPath?: string;
}
export interface Filterable<TAttributes = any> {
/**
* The `WHERE` clause. Can be many things from a hash of attributes to raw SQL.
*
* Visit {@link https://sequelize.org/docs/v7/core-concepts/model-querying-basics/} for more information.
*/
where?: WhereOptions<TAttributes>;
}
export interface Projectable<TAttributes = any> {
/**
* If an array: a list of the attributes that you want to select.
* Attributes can also be raw SQL (`literal`), `fn`, `col`, and `cast`
*
* To rename an attribute, you can pass an array, with two elements:
* - The first is the name of the attribute (or `literal`, `fn`, `col`, `cast`),
* - and the second is the name to give to that attribute in the returned instance.
*
* If `include` is used: selects all the attributes of the model,
* plus some additional ones. Useful for aggregations.
*
* @example
* ```javascript
* { attributes: { include: [[literal('COUNT(id)'), 'total']] }
* ```
*
* If `exclude` is used: selects all the attributes of the model,
* except the one specified in exclude. Useful for security purposes
*
* @example
* ```javascript
* { attributes: { exclude: ['password'] } }
* ```
*/
attributes?: FindAttributeOptions<TAttributes>;
}
export interface Paranoid {
/**
* If true, only non-deleted records will be returned. If false, both deleted and non-deleted records will
* be returned.
*
* Only applies if {@link InitOptions.paranoid} is true for the model.
*
* @default true
*/
paranoid?: boolean;
}
export type GroupOption = AllowArray<string | Fn | Col | Literal>;
/**
* Options to pass to Model on drop
*/
export interface DropOptions extends Logging {
/**
* Also drop all objects depending on this table, such as views. Only works in postgres
*/
cascade?: boolean;
}
/**
* Schema Options provided for applying a schema to a model
*/
export interface SchemaOptions {
schema: string;
/**
* The character(s) that separates the schema name from the table name
*/
schemaDelimiter?: string | undefined;
}
/**
* Scope Options for Model.scope
*/
export interface ScopeOptions {
/**
* The scope(s) to apply. Scopes can either be passed as consecutive arguments, or as an array of arguments.
* To apply simple scopes and scope functions with no arguments, pass them as strings. For scope function,
* pass an object, with a `method` property. The value can either be a string, if the method does not take
* any arguments, or an array, where the first element is the name of the method, and consecutive elements
* are arguments to that method. Pass null to remove all scopes, including the default.
*/
method: string | readonly [string, ...unknown[]];
}
type InvalidInSqlArray = ColumnReference | Fn | Cast | null | Literal;
type AllowAnyAll<T> =
| T
// Op.all: [x, z] results in ALL (ARRAY[x, z])
// Some things cannot go in ARRAY. Op.values must be used to support them.
| {
[Op.all]:
| Array<Exclude<T, InvalidInSqlArray>>
| Literal
| { [Op.values]: Array<T | DynamicValues<T>> };
}
| {
[Op.any]:
| Array<Exclude<T, InvalidInSqlArray>>
| Literal
| { [Op.values]: Array<T | DynamicValues<T>> };
};
// number is always allowed because -Infinity & +Infinity are valid
/**
* This type represents a valid input when describing a {@link DataTypes.RANGE}.
*/
export type Rangable<T> =
| readonly [
lower: T | InputRangePart<T> | number | null,
higher: T | InputRangePart<T> | number | null,
]
| EmptyRange;
/**
* This type represents the output of the {@link DataTypes.RANGE} data type.
*/
// number is always allowed because -Infinity & +Infinity are valid
export type Range<T> =
| readonly [lower: RangePart<T> | number | null, higher: RangePart<T> | number | null]
| EmptyRange;
type EmptyRange = [];
export type RangePart<T> = { value: T | number | null; inclusive: boolean };
export type InputRangePart<T> = { value: T | number | null; inclusive?: boolean };
/**
* Internal type - prone to changes. Do not export.
*
* @private
*/
export type ColumnReference = Col | { [Op.col]: string };
/**
* Internal type - prone to changes. Do not export.
*
* @private
*/
type WhereSerializableValue = boolean | string | number | Buffer | Date;
/**
* Internal type - prone to changes. Do not export.
*
* @private
*/
type OperatorValues<AcceptableValues> =
| StaticValues<AcceptableValues>
| DynamicValues<AcceptableValues>;
/**
* Represents acceptable Dynamic values.
*
* Dynamic values, as opposed to {@link StaticValues}. i.e. column references, functions, etc...
*/
type DynamicValues<AcceptableValues> =
| Literal
| ColumnReference
| Fn
| Cast
// where() can only be used on boolean attributes
| (AcceptableValues extends boolean ? Where : never);
/**
* Represents acceptable Static values.
*
* Static values, as opposed to {@link DynamicValues}. i.e. booleans, strings, etc...
*/
type StaticValues<Type> =
Type extends Range<infer RangeType>
? [lower: RangeType | RangePart<RangeType>, higher: RangeType | RangePart<RangeType>]
: Type extends any[]
? { readonly [Key in keyof Type]: StaticValues<Type[Key]> }
: Type extends null
? Type | WhereSerializableValue | null
: Type | WhereSerializableValue;
/**
* Operators that can be used in {@link WhereOptions}
*
* @typeParam AttributeType - The JS type of the attribute the operator is operating on.
*
* See https://sequelize.org/docs/v7/core-concepts/model-querying-basics/#operators
*/
// TODO: default to something more strict than `any` which lists serializable values
export interface WhereOperators<AttributeType = any> {
/**
* @example `[Op.eq]: 6,` becomes `= 6`
* @example `[Op.eq]: [6, 7]` becomes `= ARRAY[6, 7]`
* @example `[Op.eq]: null` becomes `IS NULL`
* @example `[Op.eq]: true` becomes `= true`
* @example `[Op.eq]: literal('raw sql')` becomes `= raw sql`
* @example `[Op.eq]: col('column')` becomes `= "column"`
* @example `[Op.eq]: fn('NOW')` becomes `= NOW()`
*/
[Op.eq]?: AllowAnyAll<OperatorValues<AttributeType>>;
/**
* @example `[Op.ne]: 20,` becomes `!= 20`
* @example `[Op.ne]: [20, 21]` becomes `!= ARRAY[20, 21]`
* @example `[Op.ne]: null` becomes `IS NOT NULL`
* @example `[Op.ne]: true` becomes `!= true`
* @example `[Op.ne]: literal('raw sql')` becomes `!= raw sql`
* @example `[Op.ne]: col('column')` becomes `!= "column"`
* @example `[Op.ne]: fn('NOW')` becomes `!= NOW()`
*/
[Op.ne]?: WhereOperators<AttributeType>[typeof Op.eq]; // accepts the same types as Op.eq
/**
* @example `[Op.is]: null` becomes `IS NULL`
* @example `[Op.is]: true` becomes `IS TRUE`
* @example `[Op.is]: literal('value')` becomes `IS value`
*/
[Op.is]?: Extract<AttributeType, null | boolean> | Literal;
/** Example: `[Op.isNot]: null,` becomes `IS NOT NULL` */
[Op.isNot]?: WhereOperators<AttributeType>[typeof Op.is]; // accepts the same types as Op.is
/** @example `[Op.gte]: 6` becomes `>= 6` */
[Op.gte]?: AllowAnyAll<OperatorValues<NonNullable<AttributeType>>>;
/** @example `[Op.lte]: 10` becomes `<= 10` */
[Op.lte]?: WhereOperators<AttributeType>[typeof Op.gte]; // accepts the same types as Op.gte
/** @example `[Op.lt]: 10` becomes `< 10` */
[Op.lt]?: WhereOperators<AttributeType>[typeof Op.gte]; // accepts the same types as Op.gte
/** @example `[Op.gt]: 6` becomes `> 6` */
[Op.gt]?: WhereOperators<AttributeType>[typeof Op.gte]; // accepts the same types as Op.gte
/**
* @example `[Op.between]: [6, 10],` becomes `BETWEEN 6 AND 10`
*/
[Op.between]?:
| [
lowerInclusive: OperatorValues<NonNullable<AttributeType>>,
higherInclusive: OperatorValues<NonNullable<AttributeType>>,
]
| Literal;
/** @example `[Op.notBetween]: [11, 15],` becomes `NOT BETWEEN 11 AND 15` */
[Op.notBetween]?: WhereOperators<AttributeType>[typeof Op.between];
/** @example `[Op.in]: [1, 2],` becomes `IN (1, 2)` */
[Op.in]?: ReadonlyArray<OperatorValues<NonNullable<AttributeType>>> | Literal;
/** @example `[Op.notIn]: [1, 2],` becomes `NOT IN (1, 2)` */
[Op.notIn]?: WhereOperators<AttributeType>[typeof Op.in];
/**
* @example `[Op.like]: '%hat',` becomes `LIKE '%hat'`
* @example `[Op.like]: { [Op.any]: ['cat', 'hat'] }` becomes `LIKE ANY (ARRAY['cat', 'hat'])`
*/
[Op.like]?: AllowAnyAll<OperatorValues<Extract<AttributeType, string>>>;
/**
* @example `[Op.notLike]: '%hat'` becomes `NOT LIKE '%hat'`
* @example `[Op.notLike]: { [Op.any]: ['cat', 'hat']}` becomes `NOT LIKE ANY (ARRAY['cat', 'hat'])`
*/
[Op.notLike]?: WhereOperators<AttributeType>[typeof Op.like];
/**
* case insensitive PG only
*
* @example `[Op.iLike]: '%hat'` becomes `ILIKE '%hat'`
* @example `[Op.iLike]: { [Op.any]: ['cat', 'hat']}` becomes `ILIKE ANY (ARRAY['cat', 'hat'])`
*/
[Op.iLike]?: WhereOperators<AttributeType>[typeof Op.like];
/**
* PG only
*
* @example `[Op.notILike]: '%hat'` becomes `NOT ILIKE '%hat'`
* @example `[Op.notILike]: { [Op.any]: ['cat', 'hat']}` becomes `NOT ILIKE ANY (ARRAY['cat', 'hat'])`
*/
[Op.notILike]?: WhereOperators<AttributeType>[typeof Op.like];
/**
* PG array & range 'overlaps' operator
*
* @example `[Op.overlap]: [1, 2]` becomes `&& [1, 2]`
*/
// https://www.postgresql.org/docs/14/functions-range.html range && range
// https://www.postgresql.org/docs/14/functions-array.html array && array
[Op.overlap]?: AllowAnyAll<
| // RANGE && RANGE
(AttributeType extends Range<infer RangeType>
? Rangable<RangeType>
: // ARRAY && ARRAY
AttributeType extends any[]
? StaticValues<NonNullable<AttributeType>>
: never)
| DynamicValues<AttributeType>
>;
/**
* PG array & range 'contains' operator
*
* @example `[Op.contains]: [1, 2]` becomes `@> [1, 2]`
*/
// https://www.postgresql.org/docs/14/functions-json.html jsonb @> jsonb
// https://www.postgresql.org/docs/14/functions-range.html range @> range ; range @> element
// https://www.postgresql.org/docs/14/functions-array.html array @> array
[Op.contains]?: // RANGE @> ELEMENT
AttributeType extends Range<infer RangeType>
? OperatorValues<OperatorValues<NonNullable<RangeType>>>
: // jsonb @> ELEMENT
AttributeType extends object
? OperatorValues<Partial<AttributeType>>
:
| never
// ARRAY @> ARRAY ; RANGE @> RANGE
| WhereOperators<AttributeType>[typeof Op.overlap];
/**
* PG array & range 'contained by' operator
*
* @example `[Op.contained]: [1, 2]` becomes `<@ [1, 2]`
*/
[Op.contained]?: AttributeType extends any[]
? // ARRAY <@ ARRAY ; RANGE <@ RANGE
WhereOperators<AttributeType>[typeof Op.overlap]
: // ELEMENT <@ RANGE
AllowAnyAll<OperatorValues<Rangable<AttributeType>>>;
/**
* Strings starts with value.
*/
[Op.startsWith]?: OperatorValues<Extract<AttributeType, string>>;
/**
* Strings not starts with value.
*/
[Op.notStartsWith]?: WhereOperators<AttributeType>[typeof Op.startsWith];
/**
* String ends with value.
*/
[Op.endsWith]?: WhereOperators<AttributeType>[typeof Op.startsWith];
/**
* String not ends with value.
*/
[Op.notEndsWith]?: WhereOperators<AttributeType>[typeof Op.startsWith];
/**
* String contains value.
*/
[Op.substring]?: WhereOperators<AttributeType>[typeof Op.startsWith];
/**
* String not contains value.
*/
[Op.notSubstring]?: WhereOperators<AttributeType>[typeof Op.startsWith];
/**
* MySQL/PG only
*
* Matches regular expression, case sensitive
*
* @example `[Op.regexp]: '^[h|a|t]'` becomes `REGEXP/~ '^[h|a|t]'`
*/
[Op.regexp]?: AllowAnyAll<OperatorValues<Extract<AttributeType, string>>>;
/**
* MySQL/PG only
*
* Does not match regular expression, case sensitive
*
* @example `[Op.notRegexp]: '^[h|a|t]'` becomes `NOT REGEXP/!~ '^[h|a|t]'`
*/
[Op.notRegexp]?: WhereOperators<AttributeType>[typeof Op.regexp];
/**
* PG only
*
* Matches regular expression, case insensitive
*
* @example `[Op.iRegexp]: '^[h|a|t]'` becomes `~* '^[h|a|t]'`
*/
[Op.iRegexp]?: WhereOperators<AttributeType>[typeof Op.regexp];
/**
* PG only
*
* Does not match regular expression, case insensitive
*
* @example `[Op.notIRegexp]: '^[h|a|t]'` becomes `!~* '^[h|a|t]'`
*/
[Op.notIRegexp]?: WhereOperators<AttributeType>[typeof Op.regexp];
/** @example `[Op.match]: Sequelize.fn('to_tsquery', 'fat & rat')` becomes `@@ to_tsquery('fat & rat')` */
[Op.match]?: AllowAnyAll<DynamicValues<AttributeType>>;
/**
* PG only
*
* Whether the range is strictly left of the other range.
*
* @example
* ```typescript
* { rangeAttribute: { [Op.strictLeft]: [1, 2] } }
* // results in
* // "rangeAttribute" << [1, 2)
* ```
*
* https://www.postgresql.org/docs/14/functions-range.html
*/
[Op.strictLeft]?: AttributeType extends Range<infer RangeType>
? Rangable<RangeType>
: never | DynamicValues<AttributeType>;
/**
* PG only
*
* Whether the range is strictly right of the other range.
*
* @example
* ```typescript
* { rangeAttribute: { [Op.strictRight]: [1, 2] } }
* // results in
* // "rangeAttribute" >> [1, 2)
* ```
*
* https://www.postgresql.org/docs/14/functions-range.html
*/
[Op.strictRight]?: WhereOperators<AttributeType>[typeof Op.strictLeft];
/**
* PG only
*
* Whether the range extends to the left of the other range.
*
* @example
* ```typescript
* { rangeAttribute: { [Op.noExtendLeft]: [1, 2] } }
* // results in
* // "rangeAttribute" &> [1, 2)
* ```
*
* https://www.postgresql.org/docs/14/functions-range.html
*/
[Op.noExtendLeft]?: WhereOperators<AttributeType>[typeof Op.strictLeft];
/**
* PG only
*
* Whether the range extends to the right of the other range.
*
* @example
* ```typescript
* { rangeAttribute: { [Op.noExtendRight]: [1, 2] } }
* // results in
* // "rangeAttribute" &< [1, 2)
* ```
*
* https://www.postgresql.org/docs/14/functions-range.html
*/
[Op.noExtendRight]?: WhereOperators<AttributeType>[typeof Op.strictLeft];
/**
* PG only
*
* Whether the two ranges are adjacent.
*
* @example
* ```typescript
* { rangeAttribute: { [Op.adjacent]: [1, 2] } }
* // results in
* // "rangeAttribute" -|- [1, 2)
* ```
*
* https://www.postgresql.org/docs/14/functions-range.html
*/
[Op.adjacent]?: WhereOperators<AttributeType>[typeof Op.strictLeft];
/**
* PG only
*
* Check if any of these array strings exist as top-level keys.
*
* @example
* ```typescript
* { jsonbAttribute: { [Op.anyKeyExists]: ['a','b'] } }
* // results in
* // "jsonbAttribute" ?| ARRAY['a','b']
* ```
*
* https://www.postgresql.org/docs/current/functions-json.html
*/
[Op.anyKeyExists]?: string[] | DynamicValues<string[]>;
/**
* PG only
*
* Check if all of these array strings exist as top-level keys.
*
* @example
* ```typescript
* { jsonbAttribute: { [Op.allKeysExist]: ['a','b'] } }
* // results in
* // "jsonbAttribute" ?& ARRAY['a','b']
* ```
*
* https://www.postgresql.org/docs/current/functions-json.html
*/
[Op.allKeysExist]?: WhereOperators<AttributeType>[typeof Op.anyKeyExists];
}
/**
* Where Geometry Options
*/
export interface WhereGeometryOptions {
type: string;
coordinates: ReadonlyArray<number[] | number>;
}
/**
* Through options for Include Options
*/
export interface IncludeThroughOptions extends Filterable<any>, Projectable<any> {
/**
* The alias for the join model, in case you want to give it a different name than the default one.
*/
as?: string;
/**
* If true, only non-deleted records will be returned from the join table.
* If false, both deleted and non-deleted records will be returned.
* Only applies if through model is paranoid.
*
* @default true
*/
paranoid?: boolean;
}
/**
* Options for eager-loading associated models.
*
* The association can be specified in different ways:
* - Using the name of the association: `{ include: 'associationName' }` *(recommended)*
* - Using a reference to the association: `{ include: MyModel.associations['associationName'] }`
* - Using the model to eager-load (an association must still be defined!): `{ include: Model1 }`
* - if the association with that model has an alias, you need to specify it too: `{ include: { model: Model1, as: 'Alias' } }`
*
* You can also eagerly load all associations using `{ include: { all: true } }` *(not recommended outside of debugging)*
*/
export type Includeable =
| ModelStatic
| Association
| IncludeOptions
| { all: true; nested?: true }
| string;
/**
* Complex include options
*/
export interface IncludeOptions extends Filterable<any>, Projectable<any>, Paranoid {
/**
* Mark the include as duplicating, will prevent a subquery from being used.
*/
duplicating?: boolean;
/**
* The model you want to eagerly load.
*
* This option only works if this model is only associated once to the parent model of this query.
* We recommend specifying {@link IncludeOptions.association} instead.
*/
model?: ModelStatic;
/**
* The alias of the association. Used along with {@link IncludeOptions.model}.
*
* This must be specified if the association has an alias (i.e. "as" was used when defining the association).
* For `hasOne` / `belongsTo`, this should be the singular name, and for `hasMany` / `belongsToMany`,
* it should be the plural.
*
* @deprecated using "as" is the same as using {@link IncludeOptions.association}
* because "as" is always the name of the association.
*/
as?: string;
/**
* The association you want to eagerly load.
* Either one of the values available in {@link Model.associations}, or the name of the association.
*
* This can be used instead of providing a model/as pair.
*
* This is the recommended method.
*/
association?: Association | string;
/**
* Custom `ON` clause, overrides default.
*/
on?: WhereOptions<any>;
/**
* Whether to bind the ON and WHERE clause together by OR instead of AND.
*
* @default false
*/
or?: boolean;
/**
* Where clauses to apply to the child model
*
* Note that this converts the eager load to an inner join,
* unless you explicitly set {@link IncludeOptions.required} to false
*/
where?: WhereOptions<any>;
/**
* If true, converts to an inner join, which means that the parent model will only be loaded if it has any
* matching children.
*
* True if `include.where` is set, false otherwise.
*/
required?: boolean;
/**
* If true, converts to a right join if dialect support it.
*
* Incompatible with {@link IncludeOptions.required}.
*/
right?: boolean;
/**
* Limit include.
*
* Only available when setting {@link IncludeOptions.separate} to true.
*/
limit?: number | Literal | Nullish;
/**
* If true, runs a separate query to fetch the associated instances.
*
* @default false
*/
separate?: boolean;
/**
* Through Options
*/
through?: IncludeThroughOptions;
/**
* Load further nested related models
*/
include?: AllowArray<Includeable>;
/**
* Order include. Only available when setting `separate` to true.
*/
order?: Order;
/**
* Use sub queries. This should only be used if you know for sure the query does not result in a cartesian product.
*/
subQuery?: boolean;
}
type OrderItemAssociation =
| Association
| ModelStatic<Model>
| { model: ModelStatic<Model>; as: string }
| string;
type OrderItemColumn = string | Col | Fn | Literal;
export type OrderItem =
| string
| Fn
| Col
| Literal
| [OrderItemColumn, string]
| [OrderItemAssociation, OrderItemColumn]
| [...OrderItemAssociation[], OrderItemColumn, string];
export type Order = Fn | Col | Literal | OrderItem[];
/**
* Please note if this is used the aliased property will not be available on the model instance
* as a property but only via `instance.get('alias')`.
*/
export type ProjectionAlias = readonly [
expressionOrAttributeName: string | DynamicSqlExpression,
alias: string,
];
export type FindAttributeOptions<TAttributes = any> =
| Array<Extract<keyof TAttributes, string> | ProjectionAlias | Literal>
| {
exclude: Array<Extract<keyof TAttributes, string>>;
include?: Array<Extract<keyof TAttributes, string> | ProjectionAlias>;
}
| {
exclude?: Array<Extract<keyof TAttributes, string>>;
include: Array<Extract<keyof TAttributes, string> | ProjectionAlias>;
};
export interface IndexHint {
type: IndexHints;
values: string[];
}
export interface IndexHintable {
/**
* MySQL only.
*/
indexHints?: IndexHint[];
}
export interface MaxExecutionTimeHintable {
/**
* This sets the max execution time for MySQL.
*/
maxExecutionTimeHintMs?: number;
}
/**
* Options that are passed to any model creating a SELECT query
*
* A hash of options to describe the scope of the search
*/
export interface FindOptions<TAttributes = any>
extends QueryOptions,
Filterable<TAttributes>,
Projectable<TAttributes>,
Paranoid,
IndexHintable,
SearchPathable,
MaxExecutionTimeHintable {
/**
* A list of associations to eagerly load using a left join (a single association is also supported).
*
* See {@link Includeable} to see how to specify the association, and its eager-loading options.
*/
include?: AllowArray<Includeable>;
/**
* Specifies an ordering. If a string is provided, it will be escaped.
*
* Using an array, you can provide several attributes / functions to order by.
* Each element can be further wrapped in a two-element array:
* - The first element is the column / function to order by,
* - the second is the direction.
*
* @example
* `order: [['name', 'DESC']]`.
*
* The attribute will be escaped, but the direction will not.
*/
order?: Order;
/**
* GROUP BY in sql
*/
group?: GroupOption;
/**
* Limits how many items will be retrieved by the operation.
*
* If `limit` and `include` are used together, Sequelize will turn the `subQuery` option on by default.
* This is done to ensure that `limit` only impacts the Model on the same level as the `limit` option.
*
* You can disable this behavior by explicitly setting `subQuery: false`, however `limit` will then
* affect the total count of returned values, including eager-loaded associations, instead of just one table.
*
* @example
* ```javascript
* // in the following query, `limit` only affects the "User" model.
* // This will return 2 users, each including all of their projects.
* User.findAll({
* limit: 2,
* include: [User.associations.projects],
* });
* ```
*
* @example
* ```javascript
* // in the following query, `limit` affects the total number of returned values, eager-loaded associations included.
* // This may return 2 users, each with one project,
* // or 1 user with 2 projects.
* User.findAll({
* limit: 2,
* include: [User.associations.projects],
* subQuery: false,
* });
* ```
*/
limit?: number | Literal | Nullish;
// TODO: document this - this is an undocumented property but it exists and there are tests for it.
groupedLimit?: unknown;
/**
* Skip the first n items of the results.
*/
offset?: number | Literal | Nullish;
/**
* Lock the selected rows. Possible options are transaction.LOCK.UPDATE and transaction.LOCK.SHARE.
* Postgres also supports transaction.LOCK.KEY_SHARE, transaction.LOCK.NO_KEY_UPDATE and specific model
* locks with joins. See {@link Lock}.
*/
lock?: Lock | { level: Lock; of: ModelStatic<Model> } | boolean;
/**
* Skip locked rows. Only supported in Postgres.
*/
skipLocked?: boolean;
/**
* Return raw result. See {@link Sequelize#query} for more information.
*/
raw?: boolean;
/**
* Controls whether aliases are minified in this query.
* This overrides the global option
*/
minifyAliases?: boolean;
/**
* Select group rows after groups and aggregates are computed.
*/
having?: WhereOptions<any>;
/**
* Use sub queries (internal).
*
* If unspecified, this will `true` by default if `limit` is specified, and `false` otherwise.
* See {@link FindOptions#limit} for more information.
*/
subQuery?: boolean;
/**
* Throws an error if the query would return 0 results.
*/
rejectOnEmpty?: boolean | Error;
/**
* Use a table hint for the query, only supported in MSSQL.
*/
tableHints?: TableHints[];
}
export interface NonNullFindOptions<TAttributes = any> extends FindOptions<TAttributes> {
/**
* Throw if nothing was found.
*/
rejectOnEmpty: true | Error;
}
export interface FindByPkOptions<M extends Model> extends FindOptions<Attributes<M>> {}
export interface NonNullFindByPkOptions<M extends Model>
extends NonNullFindOptions<Attributes<M>> {}
/**
* Options for Model.count method
*/
export interface CountOptions<TAttributes = any>
extends Logging,
Transactionable,
Filterable<TAttributes>,
Projectable<TAttributes>,
Paranoid,
Poolable,
MaxExecutionTimeHintable {
/**
* Include options. See `find` for details
*/
include?: AllowArray<Includeable>;
/**
* Apply COUNT(DISTINCT(col))
*/
distinct?: boolean;
/**
* GROUP BY in sql
* Used in conjunction with `attributes`.
*
* @see Projectable
*/
group?: GroupOption;
/**
* Column on which COUNT() should be applied
*/
col?: string;
/**
* Count number of records returned by group by
* Used in conjunction with `group`.
*/
countGroupedRows?: boolean;
}
/**
* Options for Model.count when GROUP BY is used
*/
export type CountWithOptions<TAttributes = any> = SetRequired<CountOptions<TAttributes>, 'group'>;
export interface FindAndCountOptions<TAttributes = any>
extends CountOptions<TAttributes>,
FindOptions<TAttributes> {}
export interface GroupedCountResultItem {
[key: string]: unknown; // projected attributes
count: number; // the count for each group
}
/**
* Options for Model.build method
*/
export interface BuildOptions {
/**
* If set to true, values will ignore field and virtual setters.
*
* @default false
*/
raw?: boolean;
/**
* Is this record new
*/
isNewRecord?: boolean;
/**
* An array of include options. A single option is also supported - Used to build prefetched/included model instances. See `set`
*/
include?: AllowArray<Includeable>;
}
export interface Silent {
/**
* If true, the updatedAt timestamp will not be updated.
*
* @default false
*/
silent?: boolean;
}
/**
* Options for Model.create method
*/
export interface CreateOptions<TAttributes = any>
extends BuildOptions,
Logging,
Silent,
Transactionable,
Hookable,
SearchPathable {
/**
* If set, only columns matching those in fields will be saved
*/
fields?: Array<keyof TAttributes>;
/**
* dialect specific ON CONFLICT DO NOTHING / INSERT IGNORE
*/
ignoreDuplicates?: boolean;
/**
* Return the affected rows (only for postgres)
*/
returning?: boolean | Array<keyof TAttributes | Literal | Col>;
/**
* If false, validations won't be run.
*
* @default true
*/
validate?: boolean;
}
export interface Hookable {
/**
* If `false` the applicable hooks will not be called.
* The default value depends on the context.
*
* @default true
*/
hooks?: boolean;
}
/**
* Options for Model.findOrCreate method
*/
export interface FindOrCreateOptions<TAttributes = any, TCreationAttributes = TAttributes>
extends FindOptions<TAttributes>,
CreateOptions<TAttributes> {
/**
* Default values to use if building a new instance
*/
defaults?: TCreationAttributes;
}
/**
* Options for Model.findOrBuild method
*/
export interface FindOrBuildOptions<TAttributes = any, TCreationAttributes = TAttributes>
extends FindOptions<TAttributes>,
BuildOptions {
/**
* Default values to use if building a new instance
*/
defaults?: TCreationAttributes;
}
/**
* Options for Model.upsert method
*/
export interface UpsertOptions<TAttributes = any>
extends Logging,
Transactionable,
SearchPathable,
Hookable {
/**
* The fields to insert / update. Defaults to all fields.
*
* If none of the specified fields are present on the provided `values` object,
* an insert will still be attempted, but duplicate key conflicts will be ignored.
*/
fields?: Array<keyof TAttributes>;
/**
* Fetch back the affected rows (only for postgres)
*/
returning?: boolean | Array<keyof TAttributes | Literal | Col>;
/**
* Run validations before the row is inserted
*
* @default true
*/
validate?: boolean;
/**
* An optional parameter that specifies a where clause for the `ON CONFLICT` part of the query
* (in particular: for applying to partial unique indexes).
* Only supported in Postgres >= 9.5 and SQLite >= 3.24.0
*/
conflictWhere?: WhereOptions<TAttributes>;
/**
* Optional override for the conflict fields in the ON CONFLICT part of the query.
* Only supported in Postgres >= 9.5 and SQLite >= 3.24.0
*/
conflictFields?: Array<keyof TAttributes>;
}
/**
* Options for Model.bulkCreate method
*/
export interface BulkCreateOptions<TAttributes = any>
extends Logging,
Transactionable,
Hookable,
SearchPathable {
/**
* Fields to insert (defaults to all fields)
*/
fields?: Array<keyof TAttributes>;
/**
* Should each row be subject to validation before it is inserted.
* The whole insert will fail if one row fails validation
*
* @default false
*/
validate?: boolean;
/**
* Run before / after create hooks for each individual Instance?
* BulkCreate hooks will still be run if {@link BulkCreateOptions.hooks} is true.
*
* @default false
*/
individualHooks?: boolean;
/**
* Ignore duplicate values for primary keys?
*
* @default false
*/
ignoreDuplicates?: boolean;
/**
* Fields to update if row key already exists (on duplicate key update)? (only supported by MySQL,
* MariaDB, SQLite >= 3.24.0 & Postgres >= 9.5).
*/
updateOnDuplicate?: Array<keyof TAttributes>;
/**
* Include options. See `find` for details
*/
include?: AllowArray<Includeable>;
/**
* Return all columns or only the specified columns for the affected rows (only for postgres)
*/
returning?: boolean | Array<keyof TAttributes | Literal | Col>;
/**
* An optional parameter to specify a where clause for partial unique indexes
* (note: `ON CONFLICT WHERE` not `ON CONFLICT DO UPDATE WHERE`).
* Only supported in Postgres >= 9.5 and sqlite >= 9.5
*/
conflictWhere?: WhereOptions<TAttributes>;
/**
* Optional override for the conflict fields in the ON CONFLICT part of the query.
* Only supported in Postgres >= 9.5 and SQLite >= 3.24.0
*/
conflictAttributes?: Array<keyof TAttributes>;
}
/**
* The options accepted by {@link Model.truncate}.
*/
export interface TruncateOptions extends Logging, Transactionable, Hookable {
/**
* Truncates all tables that have foreign-key references to the
* named table, or to any tables added to the group due to CASCADE.
*
* @default false
*/
cascade?: boolean;
/**
* Automatically restart sequences owned by columns of the truncated table
*
* @default false
*/
restartIdentity?: boolean;
}
/**
* Options accepted by {@link Model.destroy}.
*/
export interface DestroyOptions<TAttributes = any>
extends Logging,
Transactionable,
Hookable,
Filterable<TAttributes> {
/**
* If set to true, destroy will SELECT all records matching the where parameter and will execute before /
* after destroy hooks on each row
*
* @default false
*/
individualHooks?: boolean;
/**
* How many rows to delete
*/
limit?: number | Literal | Nullish;
/**
* Delete instead of setting deletedAt to current timestamp (only applicable if `paranoid` is enabled)
*
* @default false
*/
force?: boolean;
}
/**
* Options for Model.restore
*/
export interface RestoreOptions<TAttributes = any>
extends Logging,
Transactionable,
Filterable<TAttributes>,
Hookable {
/**
* If set to true, restore will find all records within the where parameter and will execute before / after
* bulkRestore hooks on each row
*/
individualHooks?: boolean;
/**
* How many rows to undelete
*/
limit?: number | Literal | Nullish;
}
/**
* Options used for Model.update
*/
export interface UpdateOptions<TAttributes = any>
extends Logging,
Transactionable,
Paranoid,
Hookable {
/**
* Options to describe the scope of the search.
*/
where: WhereOptions<TAttributes>;
/**
* Fields to update (defaults to all fields)
*/
fields?: Array<keyof TAttributes>;
/**
* Should each row be subject to validation before it is inserted. The whole insert will fail if one row
* fails validation.
*
* @default true
*/
validate?: boolean;
/**
* Whether to update the side effects of any virtual setters.
*
* @default true
*/
sideEffects?: boolean;
/**
* Run before / after update hooks?. If true, this will execute a SELECT followed by individual UPDATEs.
* A select is needed, because the row data needs to be passed to the hooks
*
* @default false
*/
individualHooks?: boolean;
/**
* Return the affected rows (only for postgres)
*
* @default false
*/
returning?: boolean | Array<keyof TAttributes | Literal | Col>;
/**
* How many rows to update
*
* Only for mysql and mariadb,
* Implemented as TOP(n) for MSSQL; for sqlite it is supported only when rowid is present
*/
limit?: number | Literal | Nullish;
/**
* If true, the updatedAt timestamp will not be updated.
*/
silent?: boolean;
}
/**
* A pojo of values to update.
*
* Used by {@link Model.update}
*/
export type UpdateValues<M extends Model> = {
[key in keyof Attributes<M>]?: Attributes<M>[key] | Fn | Col | Literal;
};
/**
* Options used for Model.aggregate
*/
export interface AggregateOptions<T extends DataType | unknown, TAttributes = any>
extends QueryOptions,
Filterable<TAttributes>,
Paranoid {
/**
* The type of the result. If attribute being aggregated is a defined in the Model,
* the default will be the type of that attribute, otherwise defaults to a plain JavaScript `number`.
*/
dataType?: string | T;
/**
* Applies DISTINCT to the field being aggregated over
*/
distinct?: boolean;
}
// instance
/**
* Options used for Instance.increment method
*/
export interface IncrementDecrementOptions<TAttributes = any>
extends Logging,
Transactionable,
Silent,
SearchPathable,
Filterable<TAttributes> {
/**
* Return the affected rows (only for postgres)
*/
returning?: boolean | Array<keyof TAttributes | Literal | Col>;
}
/**
* Options used for Instance.increment method
*/
export interface IncrementDecrementOptionsWithBy<TAttributes = any>
extends IncrementDecrementOptions<TAttributes> {
/**
* The number to increment by
*
* @default 1
*/
by?: number;
}
/**
* Options used for Instance.restore method
*/
export interface InstanceRestoreOptions extends Logging, Transactionable {}
/**
* Options used for Instance.destroy method
*/
export interface InstanceDestroyOptions extends Logging, Transactionable, Hookable {
/**
* If set to true, paranoid models will actually be deleted
*/
force?: boolean;
}
/**
* Options used for Instance.update method
*/
export interface InstanceUpdateOptions<TAttributes = any>
extends SaveOptions<TAttributes>,
SetOptions,
Filterable<TAttributes> {}
/**
* Options used for Instance.set method
*/
export interface SetOptions {
/**
* If set to true, field and virtual setters will be ignored
*/
raw?: boolean;
/**
* Clear all previously set data values
*/
reset?: boolean;
}
/**
* Options used for Instance.save method
*/
export interface SaveOptions<TAttributes = any>
extends Logging,
Transactionable,
Silent,
Hookable,
SearchPathable {
/**
* An optional array of strings, representing database columns. If fields is provided, only those columns
* will be validated and saved.
*/
fields?: Array<keyof TAttributes>;
/**
* If false, validations won't be run.
*
* @default true
*/
validate?: boolean;
/**
* A flag that defines if null values should be passed as values or not.
*
* @default false
*/
omitNull?: boolean;
association?: boolean;
/**
* Return the affected rows (only for postgres)
*/
returning?: boolean | Array<keyof TAttributes | Literal | Col>;
}
/**
* Model validations, allow you to specify format/content/inheritance validations for each attribute of the
* model.
*
* Validations are automatically run on create, update and save. You can also call validate() to manually
* validate an instance.
*
* The validations are implemented by validator.js.
*/
export interface ColumnValidateOptions {
/**
* - `{ is: ['^[a-z]+$','i'] }` will only allow letters
* - `{ is: /^[a-z]+$/i }` also only allows letters
*/
is?:
| string
| ReadonlyArray<string | RegExp>
| RegExp
| { msg: string; args: string | ReadonlyArray<string | RegExp> | RegExp };
/**
* - `{ not: ['[a-z]','i'] }` will not allow letters
*/
not?:
| string
| ReadonlyArray<string | RegExp>
| RegExp
| { msg: string; args: string | ReadonlyArray<string | RegExp> | RegExp };
/**
* checks for email format (foo@bar.com)
*/
isEmail?: boolean | { msg: string };
/**
* checks for url format (http://foo.com)
*/
isUrl?: boolean | { msg: string };
/**
* checks for IPv4 (129.89.23.1) or IPv6 format
*/
isIP?: boolean | { msg: string };
/**
* checks for IPv4 (129.89.23.1)
*/
isIPv4?: boolean | { msg: string };
/**
* checks for IPv6 format
*/
isIPv6?: boolean | { msg: string };
/**
* will only allow letters
*/
isAlpha?: boolean | { msg: string };
/**
* will only allow alphanumeric characters, so "_abc" will fail
*/
isAlphanumeric?: boolean | { msg: string };
/**
* will only allow numbers
*/
isNumeric?: boolean | { msg: string };
/**
* checks for valid integers
*/
isInt?: boolean | { msg: string };
/**
* checks for valid floating point numbers
*/
isFloat?: boolean | { msg: string };
/**
* checks for any numbers
*/
isDecimal?: boolean | { msg: string };
/**
* checks for lowercase
*/
isLowercase?: boolean | { msg: string };
/**
* checks for uppercase
*/
isUppercase?: boolean | { msg: string };
/**
* won't allow null
*/
// TODO: remove. Already checked by allowNull
notNull?: boolean | { msg: string };
/**
* only allows null
*/
// TODO: remove. Already checked by allowNull
isNull?: boolean | { msg: string };
/**
* don't allow empty strings
*/
notEmpty?: boolean | { msg: string };
/**
* only allow a specific value
*/
equals?: string | { msg: string };
/**
* force specific substrings
*/
contains?: string | { msg: string };
/**
* check the value is not one of these
*/
notIn?: ReadonlyArray<readonly any[]> | { msg: string; args: ReadonlyArray<readonly any[]> };
/**
* check the value is one of these
*/
isIn?: ReadonlyArray<readonly any[]> | { msg: string; args: ReadonlyArray<readonly any[]> };
/**
* don't allow specific substrings
*/
notContains?: readonly string[] | string | { msg: string; args: readonly string[] | string };
/**
* only allow values with length between 2 and 10
*/
len?: readonly [number, number] | { msg: string; args: readonly [number, number] };
/**
* only allow uuids
*/
isUUID?: number | { msg: string; args: number };
/**
* only allow date strings
*/
isDate?: boolean | { msg: string; args: boolean };
/**
* only allow date strings after a specific date
*/
isAfter?: string | { msg: string; args: string };
/**
* only allow date strings before a specific date
*/
isBefore?: string | { msg: string; args: string };
/**
* only allow values
*/
max?: number | { msg: string; args: readonly [number] };
/**
* only allow values >= 23
*/
min?: number | { msg: string; args: readonly [number] };
/**
* only allow arrays
*/
isArray?: boolean | { msg: string; args: boolean };
/**
* check for valid credit card numbers
*/
isCreditCard?: boolean | { msg: string; args: boolean };
// TODO: Enforce 'rest' indexes to have type `(value: unknown) => boolean`
// Blocked by: https://github.com/microsoft/TypeScript/issues/7765
/**
* Custom validations are also possible
*/
[name: string]: unknown;
}
/**
* Interface for name property in InitOptions
*/
export interface ModelNameOptions {
/**
* Singular model name
*/
singular?: string;
/**
* Plural model name
*/
plural?: string;
}
/**
* Interface for Define Scope Options
*/
export interface ModelScopeOptions<TAttributes = any> {
/**
* Name of the scope and it's query
*/
[scopeName: string]:
| FindOptions<TAttributes>
| ((...args: readonly any[]) => FindOptions<TAttributes>);
}
/**
* References options for the column's attributes
*/
export interface AttributeReferencesOptions {
/**
* The Model to reference.
*
* Ignored if {@link table} is specified.
*/
model?: ModelStatic;
/**
* The name of the table to reference (the sql name).
*/
table?: TableName;
/**
* The column on the target model that this foreign key references
*/
key?: string;
/**
* When to check for the foreign key constraint
*
* PostgreSQL only
*/
deferrable?: Deferrable;
}
export interface NormalizedAttributeReferencesOptions
extends Omit<AttributeReferencesOptions, 'model'> {
/**
* The name of the table to reference (the sql name).
*/
readonly table: TableName;
}
// TODO: when merging model.d.ts with model.js, make this an enum.
export type ReferentialAction = 'CASCADE' | 'RESTRICT' | 'SET DEFAULT' | 'SET NULL' | 'NO ACTION';
/**
* Column options for the model schema attributes.
* Used in {@link Model.init} and {@link Sequelize#define}, and the Attribute decorator.
*/
// TODO: Link to Attribute decorator once it's possible to have multiple entry points in the docs: https://github.com/TypeStrong/typedoc/issues/2138
export interface AttributeOptions<M extends Model = Model> {
/**
* A string or a data type.
*
* @see https://sequelize.org/docs/v7/models/data-types/
*/
type: DataType;
/**
* If false, the column will have a NOT NULL constraint, and a not null validation will be run before an
* instance is saved.
*
* @default true
*/
allowNull?: boolean | undefined;
/**
* @deprecated use {@link columnName} instead.
*/
field?: string | undefined;
/**
* The name of the column.
*
* If no value is provided, Sequelize will use the name of the attribute (in snake_case if {@link InitOptions.underscored} is true)
*/
columnName?: string | undefined;
/**
* A literal default value, a JavaScript function, or an SQL function (using {@link sql.fn})
*/
defaultValue?: unknown | undefined;
/**
* If true, the column will get a unique constraint. If a string is provided, the column will be part of a
* composite unique index. If multiple columns have the same string, they will be part of the same unique
* index
*/
unique?: AllowArray<boolean | string | { name: string; msg?: string }> | undefined;
/**
* If true, an index will be created for this column.
* If a string is provided, the column will be part of a composite index together with the other attributes that specify the same index name.
*/
index?: AllowArray<boolean | string | AttributeIndexOptions> | undefined;
/**
* If true, this attribute will be marked as primary key
*/
primaryKey?: boolean | undefined;
/**
* Is this field an auto increment field
*/
autoIncrement?: boolean | undefined;
/**
* If this field is a Postgres auto increment field, use Postgres `GENERATED BY DEFAULT AS IDENTITY` instead of `SERIAL`. Postgres 10+ only.
*/
autoIncrementIdentity?: boolean | undefined;
/**
* Comment to add on the column in the database.
*/
comment?: string | undefined;
/**
* Makes this attribute a foreign key.
* You typically don't need to use this yourself, instead use associations.
*
* Setting this value to a string equivalent to setting it to `{ tableName: 'myString' }`.
*/
references?: string | ModelStatic | AttributeReferencesOptions | undefined;
/**
* What should happen when the referenced key is updated.
* One of CASCADE, RESTRICT, SET DEFAULT, SET NULL or NO ACTION
*/
onUpdate?: ReferentialAction | undefined;
/**
* What should happen when the referenced key is deleted.
* One of CASCADE, RESTRICT, SET DEFAULT, SET NULL or NO ACTION
*/
onDelete?: ReferentialAction | undefined;
/**
* An object of validations to execute for this column every time the model is saved. Can be either the
* name of a validation provided by validator.js, a validation function provided by extending validator.js
* (see the
* `DAOValidator` property for more details), or a custom validation function. Custom validation functions
* are called with the value of the field, and can possibly take a second callback argument, to signal that
* they are asynchronous. If the validator is sync, it should throw in the case of a failed validation,
* it is async, the callback should be called with the error text.
*/
validate?: ColumnValidateOptions | undef