From 5c9cb5da96d1715204ab2b37f02d1816a3a884f3 Mon Sep 17 00:00:00 2001 From: Muhammad Fauzan Date: Fri, 16 Sep 2022 19:17:18 +0700 Subject: [PATCH] feat(types): missing type for oracle dialect in v6 --- 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)[];