[Gekidou] update dependencies & use node 16 with npm 7 (#5475)

* [Gekidou] update dependencies & use node 16 with npm 7

* add npm7 circleCI changes

* use react-intl 5.17.7

* fix migration error type
This commit is contained in:
Elias Nahum
2021-06-22 18:52:58 -04:00
committed by GitHub
parent 3b9fd5c03a
commit 10bfc9d604
21 changed files with 51914 additions and 12854 deletions

View File

@@ -16,12 +16,6 @@ import type System from '@typings/database/models/servers/system';
import {DatabaseType} from './enums';
export type MigrationEvents = {
onSuccess: () => void;
onStarted: () => void;
onFailure: (error: string) => void;
};
export type CreateServerDatabaseConfig = {
dbName: string;
dbType?: DatabaseType.DEFAULT | DatabaseType.SERVER;