From efa9f4246a1bde2f909a9180785de5007729b226 Mon Sep 17 00:00:00 2001 From: Muhammad Fauzan Date: Fri, 16 Sep 2022 20:32:23 +0700 Subject: [PATCH] fix(types): missing type for oracle dialect in v6 Target patch releases of #14991 --- src/sequelize.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sequelize.d.ts b/src/sequelize.d.ts index 1ba1cfd1c8b0..3061d98a9cfb 100644 --- a/src/sequelize.d.ts +++ b/src/sequelize.d.ts @@ -169,7 +169,7 @@ export interface Config { }; } -export type Dialect = 'mysql' | 'postgres' | 'sqlite' | 'mariadb' | 'mssql' | 'db2' | 'snowflake'; +export type Dialect = 'mysql' | 'postgres' | 'sqlite' | 'mariadb' | 'mssql' | 'db2' | 'snowflake' | 'oracle'; export interface RetryOptions { match?: (RegExp | string | Function)[];