Bump flow-bin from 0.108.0 to 0.109.0 (#6104)

* Bump flow-bin from 0.108.0 to 0.109.0

Bumps [flow-bin](https://github.com/flowtype/flow-bin) from 0.108.0 to 0.109.0.
- [Release notes](https://github.com/flowtype/flow-bin/releases)
- [Commits](https://github.com/flowtype/flow-bin/compare/v0.108.0...v0.109.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Fix flow type to allow undefined (#6113)
This commit is contained in:
dependabot-preview[bot]
2019-10-08 18:39:32 +00:00
committed by peril-parse-community[bot]
parent ee6993a281
commit 068bcc5c4f
4 changed files with 6 additions and 6 deletions

6
package-lock.json generated
View File

@@ -4908,9 +4908,9 @@
"dev": true
},
"flow-bin": {
"version": "0.108.0",
"resolved": "https://registry.npmjs.org/flow-bin/-/flow-bin-0.108.0.tgz",
"integrity": "sha512-hPEyCP1J8rdhNDfCAA5w7bN6HUNBDcHVg/ABU5JVo0gUFMx+uRewpyEH8LlLBGjVQuIpbaPpaqpoaQhAVyaYww==",
"version": "0.109.0",
"resolved": "https://registry.npmjs.org/flow-bin/-/flow-bin-0.109.0.tgz",
"integrity": "sha512-tpcMTpAGIRivYhFV3KJq+zHI2HzcXo8MoGe9pXS4G/UZuey2Faq/e8/gdph2WF0erRlML5hmwfwiq7v9c25c7w==",
"dev": true
},
"follow-redirects": {

View File

@@ -75,7 +75,7 @@
"deep-diff": "1.0.2",
"eslint": "6.5.1",
"eslint-plugin-flowtype": "4.3.0",
"flow-bin": "0.108.0",
"flow-bin": "0.109.0",
"form-data": "2.5.1",
"gaze": "1.1.3",
"graphql-tag": "^2.10.1",

View File

@@ -131,7 +131,7 @@ export class MongoStorageAdapter implements StorageAdapter {
_collectionPrefix: string;
_mongoOptions: Object;
// Public
connectionPromise: Promise<any>;
connectionPromise: ?Promise<any>;
database: any;
client: MongoClient;
_maxTimeMS: ?number;

View File

@@ -556,7 +556,7 @@ export default class SchemaController {
_dbAdapter: StorageAdapter;
schemaData: { [string]: Schema };
_cache: any;
reloadDataPromise: Promise<any>;
reloadDataPromise: ?Promise<any>;
protectedFields: any;
constructor(databaseAdapter: StorageAdapter, schemaCache: any) {