From 524daec365f962a6eded43a626d0950f71bbab3e Mon Sep 17 00:00:00 2001 From: Jack Guy Date: Wed, 11 Jun 2025 15:27:49 -0700 Subject: [PATCH 1/3] [Breaking] Drop Flow type support in favor of TypeScript --- .babelrc | 2 +- .gitignore | 1 + API_DOCS.md | 6 +- Makefile | 4 +- README.md | 4 +- __tests__/genType.test.js | 26 + __tests__/genTypeFlow.test.js | 47 - __tests__/implementation.test.js | 52 +- examples/swapi/.babelrc | 4 +- examples/swapi/.flowconfig | 12 - examples/swapi/.gitignore | 1 + examples/swapi/Makefile | 11 +- examples/swapi/README.md | 2 +- .../flow-typed/npm/@babel/node_vx.x.x.js | 46 - .../npm/@babel/preset-flow_vx.x.x.js | 35 - .../swapi/flow-typed/npm/flow-bin_v0.x.x.js | 6 - .../swapi/flow-typed/npm/flow-typed_vx.x.x.js | 186 - .../swapi/flow-typed/npm/lodash_v4.x.x.js | 4934 ---------------- .../swapi/flow-typed/npm/node-fetch_v2.x.x.js | 128 - examples/swapi/package.json | 8 +- .../{swapi-loaders.js => swapi-loaders.ts} | 483 +- .../{swapi-server.js => swapi-server.ts} | 36 +- examples/swapi/swapi.dataloader-config.yaml | 2 +- examples/swapi/swapi.js | 132 - examples/swapi/swapi.ts | 135 + examples/swapi/tsconfig.json | 7 + examples/swapi/yarn.lock | 2345 -------- jest.config.js | 8 +- package.json | 42 +- src/assert.ts | 16 - src/codegen.ts | 29 +- src/config.ts | 4 +- src/{genTypeFlow.ts => genType.ts} | 64 +- src/implementation.ts | 42 +- src/index.ts | 4 +- tsconfig.json | 3 +- yarn.lock | 4975 ----------------- 37 files changed, 450 insertions(+), 13392 deletions(-) create mode 100644 __tests__/genType.test.js delete mode 100644 __tests__/genTypeFlow.test.js delete mode 100644 examples/swapi/.flowconfig delete mode 100644 examples/swapi/flow-typed/npm/@babel/node_vx.x.x.js delete mode 100644 examples/swapi/flow-typed/npm/@babel/preset-flow_vx.x.x.js delete mode 100644 examples/swapi/flow-typed/npm/flow-bin_v0.x.x.js delete mode 100644 examples/swapi/flow-typed/npm/flow-typed_vx.x.x.js delete mode 100644 examples/swapi/flow-typed/npm/lodash_v4.x.x.js delete mode 100644 examples/swapi/flow-typed/npm/node-fetch_v2.x.x.js rename examples/swapi/{swapi-loaders.js => swapi-loaders.ts} (82%) rename examples/swapi/{swapi-server.js => swapi-server.ts} (81%) delete mode 100644 examples/swapi/swapi.js create mode 100644 examples/swapi/swapi.ts create mode 100644 examples/swapi/tsconfig.json delete mode 100644 examples/swapi/yarn.lock delete mode 100644 src/assert.ts rename src/{genTypeFlow.ts => genType.ts} (64%) delete mode 100644 yarn.lock diff --git a/.babelrc b/.babelrc index 787bb20..d3ab827 100644 --- a/.babelrc +++ b/.babelrc @@ -4,7 +4,7 @@ "@babel/preset-env", { "targets": { - "node": "10" + "node": "22" } } ], diff --git a/.gitignore b/.gitignore index 002176e..8b93c16 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ npm-debug.log* venv yarn-debug.log* yarn-error.log* +.yarnrc diff --git a/API_DOCS.md b/API_DOCS.md index bbff520..8b7d4c0 100644 --- a/API_DOCS.md +++ b/API_DOCS.md @@ -132,7 +132,7 @@ To use this feature, there are several restrictions. (Please open an issue if yo ``` 2. In the response, `properties` are spread at the same level as the `responseKey`. (Check out `getFilmsV2` in [swapi example](./examples/swapi/swapi.js).) -3. All `properties` must be optional in the response object. The flow types currently don't handle the nullability of these properties correctly, so to enforce this, we recommend a build step to ensure that the underlying types are always set as maybe types. +3. All `properties` must be optional in the response object. The TypeScript types currently don't handle the nullability of these properties correctly, so to enforce this, we recommend a build step to ensure that the underlying types are always set as maybe types. 4. The resource must have a one-to-one correspondence between the input "properties" and the output "properties". - e.g. if we request property "name", the response must have "name" in it, and no extra data associated with it. @@ -158,7 +158,7 @@ resources: responseKey: ?string (non-optional when propertyBatchKey is used) typings: - language: flow + language: typescript embedResourcesType: imports: string ResourcesType: string @@ -199,7 +199,7 @@ Use this to generate type definitions for the generated DataLoaders. At this tim | Key | Value Description | | ---------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | -| `language` | Must be 'flow' until we support other options. | +| `language` | Must be 'typescript' until we support other options. | | `embedResourcesType.imports` | Lets you inject an arbitrary import statement into the generated file, to help you write the type statement below. | | `embedResourcesType.ResourcesType` | Inject code to describe the shape of the resources object you're going to pass into `getLoaders`. Should start with `type ResourcesType = ...` | | | diff --git a/Makefile b/Makefile index f86f502..a7ada6e 100644 --- a/Makefile +++ b/Makefile @@ -8,15 +8,13 @@ venv: Makefile requirements-dev.txt virtualenv venv --python=$(PYTHON3) venv/bin/pip install -r requirements-dev.txt -node_modules: package.json yarn.lock +node_modules: package.json yarn build: node_modules yarn build # Generate the .d.ts files node_modules/.bin/tsc --project tsconfig.json --checkJs false --emitDeclarationOnly || true - # TODO: Loop through everything in the lib folder to create the flow types - yarn flowgen --add-flow-header lib/runtimeHelpers.d.ts --output-file lib/runtimeHelpers.js.flow .PHONY: test test: build venv node_modules diff --git a/README.md b/README.md index 9496a31..89ba4fd 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # 🤖 dataloader-codegen +## Now with TypeScript! + [![npm](https://img.shields.io/npm/v/dataloader-codegen.svg)](https://yarn.pm/dataloader-codegen) [![Build Status](https://api.travis-ci.com/Yelp/dataloader-codegen.svg?branch=master)](https://travis-ci.com/github/Yelp/dataloader-codegen) @@ -14,7 +16,7 @@ Read more about the motivation behind this library in our recent blog post: http - 🚚 Supports Batched + Non Batched Resources - ✨ Predictable DataLoader Interfaces - 🐛 Error Handling -- 🔒 Type Safety (Flow) +- 🔒 Type Safety (TypeScript) - 🔧 Resource Middleware ## Install diff --git a/__tests__/genType.test.js b/__tests__/genType.test.js new file mode 100644 index 0000000..573378d --- /dev/null +++ b/__tests__/genType.test.js @@ -0,0 +1,26 @@ +import { getResourceTypeReference, getNewKeyTypeFromBatchKeySetType, getLoaderTypeKey } from '../src/genType'; + +it('getResourceTypeReference converts a resource path to a valid reference', () => { + expect(getResourceTypeReference(null, ['foo', 'bar', 'baz'])).toBe("ResourcesType['foo']['bar']['baz']"); +}); + +it('getNewKeyTypeFromBatchKeySetType returns a newKey type with a valid value', () => { + expect(getNewKeyTypeFromBatchKeySetType('bKey', "ResourcesType['foo']['bar']['baz']")).toBe( + `Parameters[0]`, + ); +}); + +it('getLoaderTypeKey forces a nullable batchKey to be strictly non-nullable', () => { + expect( + getLoaderTypeKey( + { + isBatchResource: true, + newKey: 'test_id', + batchKey: 'test_ids', + }, + ['a', 'b'], + ), + ).toBe( + `Omit[0], 'test_ids'> & { test_id: NonNullable[0]['test_ids']>[0] }`, + ); +}); diff --git a/__tests__/genTypeFlow.test.js b/__tests__/genTypeFlow.test.js deleted file mode 100644 index 6ebac10..0000000 --- a/__tests__/genTypeFlow.test.js +++ /dev/null @@ -1,47 +0,0 @@ -import { getResourceTypeReference, getNewKeyTypeFromBatchKeySetType, getLoaderTypeKey } from '../src/genTypeFlow'; - -it('getResourceTypeReference converts a resource path to a valid reference', () => { - expect(getResourceTypeReference(null, ['foo', 'bar', 'baz'])).toBe( - "$PropertyType<$PropertyType<$PropertyType, 'bar'>, 'baz'>", - ); -}); - -it('getNewKeyTypeFromBatchKeySetType returns a newKey type with a valid value', () => { - expect( - getNewKeyTypeFromBatchKeySetType( - 'bKey', - "$PropertyType<$PropertyType<$PropertyType, 'bar'>, 'baz'>", - ), - ).toBe(`\ - $Call< - ExtractArg, - [$PropertyType<$PropertyType<$PropertyType<$PropertyType<$PropertyType, 'bar'>, 'baz'>, 'bKey'>, 'has'>] - >`); -}); - -it('getLoaderTypeKey forces a nullable batchKey to be strictly non-nullable', () => { - expect( - getLoaderTypeKey( - { - isBatchResource: true, - newKey: 'test_id', - batchKey: 'test_ids', - }, - ['a', 'b'], - ), - ).toBe(`\{| - ...$Diff< $Call< - ExtractArg, - [$PropertyType<$PropertyType, 'b'>] - >, { - test_ids: $PropertyType< $Call< - ExtractArg, - [$PropertyType<$PropertyType, 'b'>] - >, 'test_ids'> - }>, - ...{| test_id: $ElementType<$NonMaybeType<$PropertyType< $Call< - ExtractArg, - [$PropertyType<$PropertyType, 'b'>] - >, 'test_ids'>>, 0> |} - |}`); -}); diff --git a/__tests__/implementation.test.js b/__tests__/implementation.test.js index fe07d33..4651ddd 100644 --- a/__tests__/implementation.test.js +++ b/__tests__/implementation.test.js @@ -9,7 +9,7 @@ import { getConfig } from '../src/config'; const BABEL_CONFIG = { presets: [ - '@babel/preset-flow', + '@babel/preset-typescript', [ '@babel/preset-env', { @@ -17,6 +17,8 @@ const BABEL_CONFIG = { }, ], ], + // Babel needs this dummy file name to determine it's a TypeScript file + filename: 'file.ts', }; const RUNTIME_HELPERS = path.resolve(__dirname, '..', 'src', 'runtimeHelpers.ts'); @@ -45,7 +47,7 @@ expect.extend({ async function createDataLoaders(config, cb) { await tmp.withFile( async ({ path }) => { - const loadersCode = await babel.transformAsync(codegen(config, RUNTIME_HELPERS), BABEL_CONFIG); + const loadersCode = await babel.transformAsync(await codegen(config, RUNTIME_HELPERS), BABEL_CONFIG); fs.writeFileSync(path, 'const regeneratorRuntime = require("regenerator-runtime");'); fs.appendFileSync(path, loadersCode.code); // Import the generated code into memory :scream: @@ -1608,3 +1610,49 @@ test('batch endpoint with propertyBatchKey with reorderResultsByKey handles resp ]); }); }); + +test('embeds resource types', async () => { + // For the sake of coverage we pass in these test comments which will get interpolated in the generated code + // but otherwise we don't need to test them. + const config = { + resources: { + foo: { + isBatchResource: false, + docsLink: 'example.com/docs/foo', + }, + }, + typings: { + embedResourcesType: { + imports: '// test foo', + ResourcesType: '// test bar', + }, + }, + }; + + const resources = { + foo: jest + .fn() + .mockReturnValueOnce( + Promise.resolve({ + message: 'knock knock', + message_suffix: '!', + }), + ) + .mockReturnValueOnce( + Promise.resolve({ + message: "who's there", + message_suffix: '?', + }), + ), + }; + + await createDataLoaders(config, async (getLoaders) => { + const loaders = getLoaders(resources); + + const results = await loaders.foo.loadMany([{ bar_id: 1 }, { bar_id: 2 }]); + expect(results).toEqual([ + { message: 'knock knock', message_suffix: '!' }, + { message: "who's there", message_suffix: '?' }, + ]); + }); +}); diff --git a/examples/swapi/.babelrc b/examples/swapi/.babelrc index 7dffa6d..098d989 100644 --- a/examples/swapi/.babelrc +++ b/examples/swapi/.babelrc @@ -4,10 +4,10 @@ "@babel/preset-env", { "targets": { - "node": "8" + "node": "22" } } ], - "@babel/preset-flow" + "@babel/preset-typescript" ] } diff --git a/examples/swapi/.flowconfig b/examples/swapi/.flowconfig deleted file mode 100644 index d43fb0c..0000000 --- a/examples/swapi/.flowconfig +++ /dev/null @@ -1,12 +0,0 @@ -[strict] -nonstrict-import -unclear-type -unsafe-getters-setters -untyped-import -untyped-type-import - -[lints] -uninitialized-instance-property=error - -[options] -esproposal.optional_chaining=enable diff --git a/examples/swapi/.gitignore b/examples/swapi/.gitignore index 378eac2..9addb2e 100644 --- a/examples/swapi/.gitignore +++ b/examples/swapi/.gitignore @@ -1 +1,2 @@ build +.yarnrc diff --git a/examples/swapi/Makefile b/examples/swapi/Makefile index 6a0d020..4427cfc 100644 --- a/examples/swapi/Makefile +++ b/examples/swapi/Makefile @@ -1,13 +1,10 @@ node_modules: package.json yarn -.PHONY: swapi-loaders.js -swapi-loaders.js: - node ../../lib/index.js --config swapi.dataloader-config.yaml --output swapi-loaders.js - -flow-typed: node_modules - yarn flow-typed install +.PHONY: swapi-loaders.ts +swapi-loaders.ts: + node ../../lib/index.js --config swapi.dataloader-config.yaml --output swapi-loaders.ts .PHONY: build build: node_modules - yarn babel *.js -d build + yarn babel *.ts -d build -x .ts diff --git a/examples/swapi/README.md b/examples/swapi/README.md index 84edab2..8ca7938 100644 --- a/examples/swapi/README.md +++ b/examples/swapi/README.md @@ -19,7 +19,7 @@ Build the example: $ cd examples/swapi $ yarn $ yarn link dataloader-codegen -$ make swapi-loaders.js +$ make swapi-loaders.ts $ make build # Prints out a GraphQL query result: $ node build/swapi-server.js diff --git a/examples/swapi/flow-typed/npm/@babel/node_vx.x.x.js b/examples/swapi/flow-typed/npm/@babel/node_vx.x.x.js deleted file mode 100644 index 24cf456..0000000 --- a/examples/swapi/flow-typed/npm/@babel/node_vx.x.x.js +++ /dev/null @@ -1,46 +0,0 @@ -// flow-typed signature: 3e1436c3aa67a089f973d860bbf2ac25 -// flow-typed version: <>/@babel/node_v^7.7.0/flow_v0.111.3 - -/** - * This is an autogenerated libdef stub for: - * - * '@babel/node' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module '@babel/node' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module '@babel/node/bin/babel-node' { - declare module.exports: any; -} - -declare module '@babel/node/lib/_babel-node' { - declare module.exports: any; -} - -declare module '@babel/node/lib/babel-node' { - declare module.exports: any; -} - -// Filename aliases -declare module '@babel/node/bin/babel-node.js' { - declare module.exports: $Exports<'@babel/node/bin/babel-node'>; -} -declare module '@babel/node/lib/_babel-node.js' { - declare module.exports: $Exports<'@babel/node/lib/_babel-node'>; -} -declare module '@babel/node/lib/babel-node.js' { - declare module.exports: $Exports<'@babel/node/lib/babel-node'>; -} diff --git a/examples/swapi/flow-typed/npm/@babel/preset-flow_vx.x.x.js b/examples/swapi/flow-typed/npm/@babel/preset-flow_vx.x.x.js deleted file mode 100644 index 6e28975..0000000 --- a/examples/swapi/flow-typed/npm/@babel/preset-flow_vx.x.x.js +++ /dev/null @@ -1,35 +0,0 @@ -// flow-typed signature: 15e4c6a52d877d381da070d199cd778d -// flow-typed version: <>/@babel/preset-flow_v^7.0.0/flow_v0.111.3 - -/** - * This is an autogenerated libdef stub for: - * - * '@babel/preset-flow' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module '@babel/preset-flow' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module '@babel/preset-flow/lib' { - declare module.exports: any; -} - -// Filename aliases -declare module '@babel/preset-flow/lib/index' { - declare module.exports: $Exports<'@babel/preset-flow/lib'>; -} -declare module '@babel/preset-flow/lib/index.js' { - declare module.exports: $Exports<'@babel/preset-flow/lib'>; -} diff --git a/examples/swapi/flow-typed/npm/flow-bin_v0.x.x.js b/examples/swapi/flow-typed/npm/flow-bin_v0.x.x.js deleted file mode 100644 index e881c9f..0000000 --- a/examples/swapi/flow-typed/npm/flow-bin_v0.x.x.js +++ /dev/null @@ -1,6 +0,0 @@ -// flow-typed signature: 28fdff7f110e1c75efab63ff205dda30 -// flow-typed version: c6154227d1/flow-bin_v0.x.x/flow_>=v0.104.x - -declare module 'flow-bin' { - declare module.exports: string; -} diff --git a/examples/swapi/flow-typed/npm/flow-typed_vx.x.x.js b/examples/swapi/flow-typed/npm/flow-typed_vx.x.x.js deleted file mode 100644 index e850d52..0000000 --- a/examples/swapi/flow-typed/npm/flow-typed_vx.x.x.js +++ /dev/null @@ -1,186 +0,0 @@ -// flow-typed signature: 0e29d073ce8dcb14bc3db60f80e7050a -// flow-typed version: <>/flow-typed_v^2.6.2/flow_v0.111.3 - -/** - * This is an autogenerated libdef stub for: - * - * 'flow-typed' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module 'flow-typed' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module 'flow-typed/dist/cli' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/commands/create-stub' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/commands/install' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/commands/runTests' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/commands/search' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/commands/update-cache' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/commands/update' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/commands/validateDefs' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/cacheRepoUtils' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/codeSign' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/fileUtils' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/flowProjectUtils' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/flowVersion' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/git' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/github' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/isInFlowTypedRepo' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/libDefs' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/node' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/npm/npmLibDefs' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/npm/npmProjectUtils' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/semver' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/stubUtils' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/ValidationError' { - declare module.exports: any; -} - -// Filename aliases -declare module 'flow-typed/dist/cli.js' { - declare module.exports: $Exports<'flow-typed/dist/cli'>; -} -declare module 'flow-typed/dist/commands/create-stub.js' { - declare module.exports: $Exports<'flow-typed/dist/commands/create-stub'>; -} -declare module 'flow-typed/dist/commands/install.js' { - declare module.exports: $Exports<'flow-typed/dist/commands/install'>; -} -declare module 'flow-typed/dist/commands/runTests.js' { - declare module.exports: $Exports<'flow-typed/dist/commands/runTests'>; -} -declare module 'flow-typed/dist/commands/search.js' { - declare module.exports: $Exports<'flow-typed/dist/commands/search'>; -} -declare module 'flow-typed/dist/commands/update-cache.js' { - declare module.exports: $Exports<'flow-typed/dist/commands/update-cache'>; -} -declare module 'flow-typed/dist/commands/update.js' { - declare module.exports: $Exports<'flow-typed/dist/commands/update'>; -} -declare module 'flow-typed/dist/commands/validateDefs.js' { - declare module.exports: $Exports<'flow-typed/dist/commands/validateDefs'>; -} -declare module 'flow-typed/dist/lib/cacheRepoUtils.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/cacheRepoUtils'>; -} -declare module 'flow-typed/dist/lib/codeSign.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/codeSign'>; -} -declare module 'flow-typed/dist/lib/fileUtils.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/fileUtils'>; -} -declare module 'flow-typed/dist/lib/flowProjectUtils.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/flowProjectUtils'>; -} -declare module 'flow-typed/dist/lib/flowVersion.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/flowVersion'>; -} -declare module 'flow-typed/dist/lib/git.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/git'>; -} -declare module 'flow-typed/dist/lib/github.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/github'>; -} -declare module 'flow-typed/dist/lib/isInFlowTypedRepo.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/isInFlowTypedRepo'>; -} -declare module 'flow-typed/dist/lib/libDefs.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/libDefs'>; -} -declare module 'flow-typed/dist/lib/node.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/node'>; -} -declare module 'flow-typed/dist/lib/npm/npmLibDefs.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/npm/npmLibDefs'>; -} -declare module 'flow-typed/dist/lib/npm/npmProjectUtils.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/npm/npmProjectUtils'>; -} -declare module 'flow-typed/dist/lib/semver.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/semver'>; -} -declare module 'flow-typed/dist/lib/stubUtils.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/stubUtils'>; -} -declare module 'flow-typed/dist/lib/ValidationError.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/ValidationError'>; -} diff --git a/examples/swapi/flow-typed/npm/lodash_v4.x.x.js b/examples/swapi/flow-typed/npm/lodash_v4.x.x.js deleted file mode 100644 index 20031e2..0000000 --- a/examples/swapi/flow-typed/npm/lodash_v4.x.x.js +++ /dev/null @@ -1,4934 +0,0 @@ -// flow-typed signature: 6fed7dcfbd30f640e4525bc2106b257c -// flow-typed version: 48347c4ce3/lodash_v4.x.x/flow_>=v0.104.x - -declare module 'lodash' { - declare type Path = $ReadOnlyArray | string | number; - declare type __CurriedFunction1 = (...r: [AA]) => R; - declare type CurriedFunction1 = __CurriedFunction1; - - declare type __CurriedFunction2 = ((...r: [AA]) => CurriedFunction1) & - ((...r: [AA, BB]) => R); - declare type CurriedFunction2 = __CurriedFunction2; - - declare type __CurriedFunction3 = ((...r: [AA]) => CurriedFunction2) & - ((...r: [AA, BB]) => CurriedFunction1) & - ((...r: [AA, BB, CC]) => R); - declare type CurriedFunction3 = __CurriedFunction3; - - declare type __CurriedFunction4 = (( - ...r: [AA] - ) => CurriedFunction3) & - ((...r: [AA, BB]) => CurriedFunction2) & - ((...r: [AA, BB, CC]) => CurriedFunction1) & - ((...r: [AA, BB, CC, DD]) => R); - declare type CurriedFunction4 = __CurriedFunction4; - - declare type __CurriedFunction5 = (( - ...r: [AA] - ) => CurriedFunction4) & - ((...r: [AA, BB]) => CurriedFunction3) & - ((...r: [AA, BB, CC]) => CurriedFunction2) & - ((...r: [AA, BB, CC, DD]) => CurriedFunction1) & - ((...r: [AA, BB, CC, DD, EE]) => R); - declare type CurriedFunction5 = __CurriedFunction5; - - declare type __CurriedFunction6 = (( - ...r: [AA] - ) => CurriedFunction5) & - ((...r: [AA, BB]) => CurriedFunction4) & - ((...r: [AA, BB, CC]) => CurriedFunction3) & - ((...r: [AA, BB, CC, DD]) => CurriedFunction2) & - ((...r: [AA, BB, CC, DD, EE]) => CurriedFunction1) & - ((...r: [AA, BB, CC, DD, EE, FF]) => R); - declare type CurriedFunction6 = __CurriedFunction6; - - declare type Curry = (((...r: [A]) => R) => CurriedFunction1) & - (((...r: [A, B]) => R) => CurriedFunction2) & - (((...r: [A, B, C]) => R) => CurriedFunction3) & - (((...r: [A, B, C, D]) => R) => CurriedFunction4) & - (((...r: [A, B, C, D, E]) => R) => CurriedFunction5) & - (((...r: [A, B, C, D, E, F]) => R) => CurriedFunction6); - - declare type UnaryFn = (a: A) => R; - - declare type TemplateSettings = { - escape?: RegExp, - evaluate?: RegExp, - imports?: Object, - interpolate?: RegExp, - variable?: string, - ... - }; - - declare type TruncateOptions = { - length?: number, - omission?: string, - separator?: RegExp | string, - ... - }; - - declare type Cancelable = { - cancel: () => void, - flush: () => mixed, - ... - }; - - declare type DebounceOptions = { - leading?: boolean, - maxWait?: number, - trailing?: boolean, - ... - }; - - declare type ThrottleOptions = { - leading?: boolean, - trailing?: boolean, - ... - }; - - declare type NestedArray = Array>; - - declare type matchesIterateeShorthand = { [key: any]: any, ... }; - declare type matchesPropertyIterateeShorthand = [string, any]; - declare type propertyIterateeShorthand = string; - - declare type OPredicate = - | ((value: A, key: string, object: O) => any) - | matchesIterateeShorthand - | matchesPropertyIterateeShorthand - | propertyIterateeShorthand; - - declare type OIterateeWithResult = Object | string | ((value: V, key: string, object: O) => R); - declare type OIteratee = OIterateeWithResult; - declare type OFlatMapIteratee = OIterateeWithResult>; - - declare type Predicate = - | ((value: T, index: number, array: Array) => any) - | matchesIterateeShorthand - | matchesPropertyIterateeShorthand - | propertyIterateeShorthand; - - declare type _ValueOnlyIteratee = (value: T) => mixed; - declare type ValueOnlyIteratee = _ValueOnlyIteratee | string; - declare type _Iteratee = (item: T, index: number, array: ?Array) => mixed; - declare type Iteratee = _Iteratee | Object | string; - declare type FlatMapIteratee = - | ((item: T, index: number, array: ?$ReadOnlyArray) => Array) - | Object - | string; - declare type Comparator = (item: T, item2: T) => boolean; - - declare type MapIterator = ((item: T, index: number, array: Array) => U) | propertyIterateeShorthand; - - declare type ReadOnlyMapIterator = - | ((item: T, index: number, array: $ReadOnlyArray) => U) - | propertyIterateeShorthand; - - declare type OMapIterator = ((item: T, key: string, object: O) => U) | propertyIterateeShorthand; - - declare class Lodash { - // Array - chunk(array?: ?$ReadOnlyArray, size?: ?number): Array>; - compact(array?: ?Array): Array; - concat(base?: ?$ReadOnlyArray, ...elements: Array): Array; - difference(array?: ?$ReadOnlyArray, ...values: Array>): Array; - differenceBy(array?: ?$ReadOnlyArray, values?: ?$ReadOnlyArray, iteratee?: ?ValueOnlyIteratee): T[]; - differenceWith(array?: ?$ReadOnlyArray, values?: ?$ReadOnlyArray, comparator?: ?Comparator): T[]; - drop(array?: ?Array, n?: ?number): Array; - dropRight(array?: ?Array, n?: ?number): Array; - dropRightWhile(array?: ?Array, predicate?: ?Predicate): Array; - dropWhile(array?: ?Array, predicate?: ?Predicate): Array; - fill(array?: ?Array, value?: ?U, start?: ?number, end?: ?number): Array; - findIndex(array: $ReadOnlyArray, predicate?: ?Predicate, fromIndex?: ?number): number; - findIndex(array: void | null, predicate?: ?Predicate, fromIndex?: ?number): -1; - findLastIndex(array: $ReadOnlyArray, predicate?: ?Predicate, fromIndex?: ?number): number; - findLastIndex(array: void | null, predicate?: ?Predicate, fromIndex?: ?number): -1; - // alias of _.head - first(array: ?$ReadOnlyArray): T; - flatten(array?: ?$ReadOnlyArray<$ReadOnlyArray | X>): Array; - flattenDeep(array?: ?(any[])): Array; - flattenDepth(array?: ?(any[]), depth?: ?number): any[]; - fromPairs(pairs?: ?$ReadOnlyArray<[A, B]>): {| [key: A]: B |}; - head(array: ?$ReadOnlyArray): T; - indexOf(array: Array, value: T, fromIndex?: number): number; - indexOf(array: void | null, value?: ?T, fromIndex?: ?number): -1; - initial(array: ?Array): Array; - intersection(...arrays?: Array<$ReadOnlyArray>): Array; - //Workaround until (...parameter: T, parameter2: U) works - intersectionBy(a1?: ?$ReadOnlyArray, iteratee?: ?ValueOnlyIteratee): Array; - intersectionBy(a1?: ?$ReadOnlyArray, a2?: ?$ReadOnlyArray, iteratee?: ?ValueOnlyIteratee): Array; - intersectionBy( - a1?: ?$ReadOnlyArray, - a2?: ?$ReadOnlyArray, - a3?: ?$ReadOnlyArray, - iteratee?: ?ValueOnlyIteratee, - ): Array; - intersectionBy( - a1?: ?$ReadOnlyArray, - a2?: ?$ReadOnlyArray, - a3?: ?$ReadOnlyArray, - a4?: ?$ReadOnlyArray, - iteratee?: ?ValueOnlyIteratee, - ): Array; - //Workaround until (...parameter: T, parameter2: U) works - intersectionWith(a1?: ?$ReadOnlyArray, comparator?: ?Comparator): Array; - intersectionWith(a1?: ?$ReadOnlyArray, a2?: ?$ReadOnlyArray, comparator?: ?Comparator): Array; - intersectionWith( - a1?: ?$ReadOnlyArray, - a2?: ?$ReadOnlyArray, - a3?: ?$ReadOnlyArray, - comparator?: ?Comparator, - ): Array; - intersectionWith( - a1?: ?$ReadOnlyArray, - a2?: ?$ReadOnlyArray, - a3?: ?$ReadOnlyArray, - a4?: ?$ReadOnlyArray, - comparator?: ?Comparator, - ): Array; - join(array: Array, separator?: ?string): string; - join(array: void | null, separator?: ?string): ''; - last(array: ?$ReadOnlyArray): T; - lastIndexOf(array: Array, value?: ?T, fromIndex?: ?number): number; - lastIndexOf(array: void | null, value?: ?T, fromIndex?: ?number): -1; - nth(array: T[], n?: ?number): T; - nth(array: void | null, n?: ?number): void; - pull(array: Array, ...values?: Array): Array; - pull(array: T, ...values?: Array): T; - pullAll(array: Array, values?: ?Array): Array; - pullAll(array: T, values?: ?Array): T; - pullAllBy(array: Array, values?: ?Array, iteratee?: ?ValueOnlyIteratee): Array; - pullAllBy(array: T, values?: ?Array, iteratee?: ?ValueOnlyIteratee): T; - pullAllWith(array: T[], values?: ?(T[]), comparator?: ?Function): T[]; - pullAllWith(array: T, values?: ?Array, comparator?: ?Function): T; - pullAt(array?: ?Array, ...indexed?: Array): Array; - pullAt(array?: ?Array, indexed?: ?Array): Array; - remove(array?: ?Array, predicate?: ?Predicate): Array; - reverse(array: Array): Array; - reverse(array: T): T; - slice(array?: ?$ReadOnlyArray, start?: ?number, end?: ?number): Array; - sortedIndex(array: Array, value: T): number; - sortedIndex(array: void | null, value: ?T): 0; - sortedIndexBy(array: Array, value?: ?T, iteratee?: ?ValueOnlyIteratee): number; - sortedIndexBy(array: void | null, value?: ?T, iteratee?: ?ValueOnlyIteratee): 0; - sortedIndexOf(array: Array, value: T): number; - sortedIndexOf(array: void | null, value?: ?T): -1; - sortedLastIndex(array: Array, value: T): number; - sortedLastIndex(array: void | null, value?: ?T): 0; - sortedLastIndexBy(array: Array, value: T, iteratee?: ValueOnlyIteratee): number; - sortedLastIndexBy(array: void | null, value?: ?T, iteratee?: ?ValueOnlyIteratee): 0; - sortedLastIndexOf(array: Array, value: T): number; - sortedLastIndexOf(array: void | null, value?: ?T): -1; - sortedUniq(array?: ?Array): Array; - sortedUniqBy(array?: ?Array, iteratee?: ?ValueOnlyIteratee): Array; - tail(array?: ?Array): Array; - take(array?: ?$ReadOnlyArray, n?: ?number): Array; - takeRight(array?: ?$ReadOnlyArray, n?: ?number): Array; - takeRightWhile(array?: ?Array, predicate?: ?Predicate): Array; - takeWhile(array?: ?Array, predicate?: ?Predicate): Array; - union(...arrays?: Array<$ReadOnlyArray>): Array; - //Workaround until (...parameter: T, parameter2: U) works - unionBy(a1?: ?$ReadOnlyArray, iteratee?: ?ValueOnlyIteratee): Array; - unionBy(a1?: ?$ReadOnlyArray, a2: $ReadOnlyArray, iteratee?: ValueOnlyIteratee): Array; - unionBy( - a1: $ReadOnlyArray, - a2: $ReadOnlyArray, - a3: $ReadOnlyArray, - iteratee?: ValueOnlyIteratee, - ): Array; - unionBy( - a1: $ReadOnlyArray, - a2: $ReadOnlyArray, - a3: $ReadOnlyArray, - a4: $ReadOnlyArray, - iteratee?: ValueOnlyIteratee, - ): Array; - //Workaround until (...parameter: T, parameter2: U) works - unionWith(a1?: ?Array, comparator?: ?Comparator): Array; - unionWith(a1: $ReadOnlyArray, a2: $ReadOnlyArray, comparator?: Comparator): Array; - unionWith( - a1: $ReadOnlyArray, - a2: $ReadOnlyArray, - a3: $ReadOnlyArray, - comparator?: Comparator, - ): Array; - unionWith( - a1: $ReadOnlyArray, - a2: $ReadOnlyArray, - a3: $ReadOnlyArray, - a4: $ReadOnlyArray, - comparator?: Comparator, - ): Array; - uniq(array?: ?$ReadOnlyArray): Array; - uniqBy(array?: ?$ReadOnlyArray, iteratee?: ?ValueOnlyIteratee): Array; - uniqWith(array?: ?$ReadOnlyArray, comparator?: ?Comparator): Array; - unzip(array?: ?Array): Array; - unzipWith(array: ?Array, iteratee?: ?Iteratee): Array; - without(array?: ?$ReadOnlyArray, ...values?: Array): Array; - xor(...array: Array>): Array; - //Workaround until (...parameter: T, parameter2: U) works - xorBy(a1?: ?Array, iteratee?: ?ValueOnlyIteratee): Array; - xorBy(a1: Array, a2: Array, iteratee?: ValueOnlyIteratee): Array; - xorBy(a1: Array, a2: Array, a3: Array, iteratee?: ValueOnlyIteratee): Array; - xorBy(a1: Array, a2: Array, a3: Array, a4: Array, iteratee?: ValueOnlyIteratee): Array; - //Workaround until (...parameter: T, parameter2: U) works - xorWith(a1?: ?Array, comparator?: ?Comparator): Array; - xorWith(a1: Array, a2: Array, comparator?: Comparator): Array; - xorWith(a1: Array, a2: Array, a3: Array, comparator?: Comparator): Array; - xorWith(a1: Array, a2: Array, a3: Array, a4: Array, comparator?: Comparator): Array; - zip(a1?: ?$ReadOnlyArray, a2?: ?$ReadOnlyArray): Array<[A, B]>; - zip(a1: $ReadOnlyArray, a2: $ReadOnlyArray, a3: $ReadOnlyArray): Array<[A, B, C]>; - zip( - a1: $ReadOnlyArray, - a2: $ReadOnlyArray, - a3: $ReadOnlyArray, - a4: $ReadOnlyArray, - ): Array<[A, B, C, D]>; - zip( - a1: $ReadOnlyArray, - a2: $ReadOnlyArray, - a3: $ReadOnlyArray, - a4: $ReadOnlyArray, - a5: $ReadOnlyArray, - ): Array<[A, B, C, D, E]>; - - zipObject(props: Array, values?: ?Array): { [key: K]: V, ... }; - zipObject(props: void | null, values?: ?Array): { ... }; - zipObjectDeep(props: any[], values?: ?any): Object; - zipObjectDeep(props: void | null, values?: ?any): { ... }; - - zipWith(a1?: ?Array): Array<[A]>; - zipWith(a1: Array, iteratee: (A) => T): Array; - - zipWith(a1: Array, a2: Array): Array<[A, B]>; - zipWith(a1: Array, a2: Array, iteratee: (A, B) => T): Array; - - zipWith(a1: Array, a2: Array, a3: Array): Array<[A, B, C]>; - zipWith(a1: Array, a2: Array, a3: Array, iteratee: (A, B, C) => T): Array; - - zipWith(a1: Array, a2: Array, a3: Array, a4: Array): Array<[A, B, C, D]>; - zipWith( - a1: Array, - a2: Array, - a3: Array, - a4: Array, - iteratee: (A, B, C, D) => T, - ): Array; - - // Collection - countBy(array: Array, iteratee?: ?ValueOnlyIteratee): Object; - countBy(array: void | null, iteratee?: ?ValueOnlyIteratee): { ... }; - countBy(object: T, iteratee?: ?ValueOnlyIteratee): Object; - // alias of _.forEach - each(array: $ReadOnlyArray, iteratee?: ?Iteratee): Array; - each(array: T, iteratee?: ?Iteratee): T; - each(object: T, iteratee?: ?OIteratee): T; - // alias of _.forEachRight - eachRight(array: $ReadOnlyArray, iteratee?: ?Iteratee): Array; - eachRight(array: T, iteratee?: ?Iteratee): T; - eachRight(object: T, iteratee?: OIteratee): T; - every(array?: ?$ReadOnlyArray, iteratee?: ?Iteratee): boolean; - every(object: T, iteratee?: OIteratee): boolean; - filter(array?: ?$ReadOnlyArray, predicate?: ?Predicate): Array; - filter(object: T, predicate?: OPredicate): Array; - find(array: $ReadOnlyArray, predicate?: ?Predicate, fromIndex?: ?number): T | void; - find(array: void | null, predicate?: ?Predicate, fromIndex?: ?number): void; - find(object: T, predicate?: OPredicate, fromIndex?: number): V; - findLast(array: ?$ReadOnlyArray, predicate?: ?Predicate, fromIndex?: ?number): T | void; - findLast(object: T, predicate?: ?OPredicate): V; - flatMap(array?: ?$ReadOnlyArray, iteratee?: ?FlatMapIteratee): Array; - flatMap(object: T, iteratee?: OFlatMapIteratee): Array; - flatMapDeep(array?: ?$ReadOnlyArray, iteratee?: ?FlatMapIteratee): Array; - flatMapDeep(object: T, iteratee?: ?OFlatMapIteratee): Array; - flatMapDepth(array?: ?Array, iteratee?: ?FlatMapIteratee, depth?: ?number): Array; - flatMapDepth(object: T, iteratee?: OFlatMapIteratee, depth?: number): Array; - forEach(array: $ReadOnlyArray, iteratee?: ?Iteratee): Array; - forEach(array: T, iteratee?: ?Iteratee): T; - forEach(object: T, iteratee?: ?OIteratee): T; - forEachRight(array: $ReadOnlyArray, iteratee?: ?Iteratee): Array; - forEachRight(array: T, iteratee?: ?Iteratee): T; - forEachRight(object: T, iteratee?: ?OIteratee): T; - groupBy(array: $ReadOnlyArray, iteratee?: ?ValueOnlyIteratee): { [key: V]: Array, ... }; - groupBy(array: void | null, iteratee?: ?ValueOnlyIteratee): { ... }; - groupBy( - object: T, - iteratee?: ValueOnlyIteratee, - ): { [key: V]: Array, ... }; - includes(array: $ReadOnlyArray, value: T, fromIndex?: ?number): boolean; - includes(array: void | null, value?: ?T, fromIndex?: ?number): false; - includes(object: T, value: any, fromIndex?: number): boolean; - includes(str: string, value: string, fromIndex?: number): boolean; - invokeMap(array?: ?$ReadOnlyArray, path?: ?((value: T) => Path) | Path, ...args?: Array): Array; - invokeMap(object: T, path: ((value: any) => Path) | Path, ...args?: Array): Array; - keyBy(array: $ReadOnlyArray, iteratee?: ?ValueOnlyIteratee): { [key: V]: T, ... }; - keyBy(array: void | null, iteratee?: ?ValueOnlyIteratee<*>): { ... }; - keyBy(object: T, iteratee?: ?ValueOnlyIteratee): { [key: V]: A, ... }; - map(array?: ?Array, iteratee?: ?MapIterator): Array; - map(array: ?$ReadOnlyArray, iteratee?: ReadOnlyMapIterator): Array; - map(object: ?T, iteratee?: OMapIterator): Array; - map(str: ?string, iteratee?: (char: string, index: number, str: string) => any): string; - orderBy( - array: $ReadOnlyArray, - iteratees?: ?$ReadOnlyArray> | ?string, - orders?: ?$ReadOnlyArray<'asc' | 'desc'> | ?string, - ): Array; - orderBy( - array: null | void, - iteratees?: ?$ReadOnlyArray> | ?string, - orders?: ?$ReadOnlyArray<'asc' | 'desc'> | ?string, - ): Array; - orderBy( - object: T, - iteratees?: $ReadOnlyArray> | string, - orders?: $ReadOnlyArray<'asc' | 'desc'> | string, - ): Array; - partition(array?: ?$ReadOnlyArray, predicate?: ?Predicate): [Array, Array]; - partition(object: T, predicate?: OPredicate): [Array, Array]; - reduce( - array: $ReadOnlyArray, - iteratee?: (accumulator: U, value: T, index: number, array: ?Array) => U, - accumulator?: U, - ): U; - reduce( - array: void | null, - iteratee?: ?(accumulator: U, value: T, index: number, array: ?Array) => U, - accumulator?: ?U, - ): void | null; - reduce( - object: T, - iteratee?: (accumulator: U, value: any, key: string, object: T) => U, - accumulator?: U, - ): U; - reduceRight( - array: void | null, - iteratee?: ?(accumulator: U, value: T, index: number, array: ?Array) => U, - accumulator?: ?U, - ): void | null; - reduceRight( - array: $ReadOnlyArray, - iteratee?: ?(accumulator: U, value: T, index: number, array: ?Array) => U, - accumulator?: ?U, - ): U; - reduceRight( - object: T, - iteratee?: ?(accumulator: U, value: any, key: string, object: T) => U, - accumulator?: ?U, - ): U; - reject(array: ?$ReadOnlyArray, predicate?: Predicate): Array; - reject(object?: ?T, predicate?: ?OPredicate): Array; - sample(array: ?Array): T; - sample(object: T): V; - sampleSize(array?: ?Array, n?: ?number): Array; - sampleSize(object: T, n?: number): Array; - shuffle(array: ?Array): Array; - shuffle(object: T): Array; - size(collection: $ReadOnlyArray | Object | string): number; - some(array: void | null, predicate?: ?Predicate): false; - some(array: ?$ReadOnlyArray, predicate?: Predicate): boolean; - some(object?: ?T, predicate?: OPredicate): boolean; - sortBy(array: ?$ReadOnlyArray, ...iteratees?: $ReadOnlyArray>): Array; - sortBy(array: ?$ReadOnlyArray, iteratees?: $ReadOnlyArray>): Array; - sortBy(object: T, ...iteratees?: Array>): Array; - sortBy(object: T, iteratees?: $ReadOnlyArray>): Array; - - // Date - now(): number; - - // Function - after(n: number, fn: Function): Function; - ary(func: Function, n?: number): Function; - before(n: number, fn: Function): Function; - bind any>(func: F, thisArg: any, ...partials: Array): F; - bindKey(obj?: ?Object, key?: ?string, ...partials?: Array): Function; - curry: Curry; - curry(func: Function, arity?: number): Function; - curryRight(func: Function, arity?: number): Function; - debounce any>(func: F, wait?: number, options?: DebounceOptions): F & Cancelable; - defer(func: (...any[]) => any, ...args?: Array): TimeoutID; - delay(func: Function, wait: number, ...args?: Array): TimeoutID; - flip(func: (...any[]) => R): (...any[]) => R; - memoize(func: (...A) => R, resolver?: (...A) => any): (...A) => R; - negate(predicate: (...A) => R): (...A) => boolean; - once any>(func: F): F; - overArgs(func?: ?Function, ...transforms?: Array): Function; - overArgs(func?: ?Function, transforms?: ?Array): Function; - partial(func: (...any[]) => R, ...partials: any[]): (...any[]) => R; - partialRight(func: (...any[]) => R, ...partials: Array): (...any[]) => R; - partialRight(func: (...any[]) => R, partials: Array): (...any[]) => R; - rearg(func: Function, ...indexes: Array): Function; - rearg(func: Function, indexes: Array): Function; - rest(func: Function, start?: number): Function; - spread(func: Function): Function; - throttle any>(func: F, wait?: number, options?: ThrottleOptions): F & Cancelable; - unary any>(func: F): F; - wrap(value?: any, wrapper?: ?Function): Function; - - // Lang - castArray(value: *): any[]; - clone(value: T): T; - cloneDeep(value: T): T; - cloneDeepWith(value: T, customizer?: ?(value: T, key: number | string, object: T, stack: any) => U): U; - cloneWith(value: T, customizer?: ?(value: T, key: number | string, object: T, stack: any) => U): U; - conformsTo( - source: T, - predicates: T & { [key: string]: (x: any) => boolean, ... }, - ): boolean; - eq(value: any, other: any): boolean; - gt(value: any, other: any): boolean; - gte(value: any, other: any): boolean; - isArguments(value: void | null): false; - isArguments(value: any): boolean; - isArray(value: Array): true; - isArray(value: any): false; - isArrayBuffer(value: ArrayBuffer): true; - isArrayBuffer(value: any): false; - isArrayLike(value: Array | string | { length: number, ... }): true; - isArrayLike(value: any): false; - isArrayLikeObject(value: { length: number, ... } | Array): true; - isArrayLikeObject(value: any): false; - isBoolean(value: boolean): true; - isBoolean(value: any): false; - isBuffer(value: void | null): false; - isBuffer(value: any): boolean; - isDate(value: Date): true; - isDate(value: any): false; - isElement(value: Element): true; - isElement(value: any): false; - isEmpty(value: void | null | '' | { ... } | [] | number | boolean): true; - isEmpty(value: any): boolean; - isEqual(value: any, other: any): boolean; - isEqualWith( - value?: ?T, - other?: ?U, - customizer?: ?( - objValue: any, - otherValue: any, - key: number | string, - object: T, - other: U, - stack: any, - ) => boolean | void, - ): boolean; - isError(value: Error): true; - isError(value: any): false; - isFinite(value: number): boolean; - isFinite(value: any): false; - isFunction(value: Function): true; - isFunction(value: any): false; - isInteger(value: number): boolean; - isInteger(value: any): false; - isLength(value: void | null): false; - isLength(value: any): boolean; - isMap(value: Map): true; - isMap(value: any): false; - isMatch(object?: ?Object, source?: ?Object): boolean; - isMatchWith( - object?: ?T, - source?: ?U, - customizer?: ?(objValue: any, srcValue: any, key: number | string, object: T, source: U) => boolean | void, - ): boolean; - isNaN(value: number): boolean; - isNaN(value: any): false; - isNative(value: number | string | void | null | Object): false; - isNative(value: any): boolean; - isNil(value: void | null): true; - isNil(value: any): false; - isNull(value: null): true; - isNull(value: any): false; - isNumber(value: number): true; - isNumber(value: any): false; - isObject(value: any): boolean; - isObjectLike(value: void | null): false; - isObjectLike(value: any): boolean; - isPlainObject(value: any): boolean; - isRegExp(value: RegExp): true; - isRegExp(value: any): false; - isSafeInteger(value: number): boolean; - isSafeInteger(value: any): false; - isSet(value: Set): true; - isSet(value: any): false; - isString(value: string): true; - isString(value: any): false; - isSymbol(value: Symbol): true; - isSymbol(value: any): false; - isTypedArray(value: $TypedArray): true; - isTypedArray(value: any): false; - isUndefined(value: void): true; - isUndefined(value: any): false; - isWeakMap(value: WeakMap): true; - isWeakMap(value: any): false; - isWeakSet(value: WeakSet): true; - isWeakSet(value: any): false; - lt(value: any, other: any): boolean; - lte(value: any, other: any): boolean; - toArray(value: any): Array; - toFinite(value: void | null): 0; - toFinite(value: any): number; - toInteger(value: void | null): 0; - toInteger(value: any): number; - toLength(value: void | null): 0; - toLength(value: any): number; - toNumber(value: void | null): 0; - toNumber(value: any): number; - toPlainObject(value: any): Object; - toSafeInteger(value: void | null): 0; - toSafeInteger(value: any): number; - toString(value: void | null): ''; - toString(value: any): string; - - // Math - add(augend: number, addend: number): number; - ceil(number: number, precision?: number): number; - divide(dividend: number, divisor: number): number; - floor(number: number, precision?: number): number; - max(array: ?Array): T; - maxBy(array: ?$ReadOnlyArray, iteratee?: Iteratee): T; - mean(array: Array<*>): number; - meanBy(array: Array, iteratee?: Iteratee): number; - min(array: ?Array): T; - minBy(array: ?$ReadOnlyArray, iteratee?: Iteratee): T; - multiply(multiplier: number, multiplicand: number): number; - round(number: number, precision?: number): number; - subtract(minuend: number, subtrahend: number): number; - sum(array: Array<*>): number; - sumBy(array: $ReadOnlyArray, iteratee?: Iteratee): number; - - // number - clamp(number?: number, lower?: ?number, upper?: ?number): number; - clamp(number: ?number, lower?: ?number, upper?: ?number): 0; - inRange(number: number, start?: number, end: number): boolean; - random(lower?: number, upper?: number, floating?: boolean): number; - - // Object - assign(object?: ?Object, ...sources?: Array): Object; - assignIn(): { ... }; - assignIn(a: A, b: B): A & B; - assignIn(a: A, b: B, c: C): A & B & C; - assignIn(a: A, b: B, c: C, d: D): A & B & C & D; - assignIn(a: A, b: B, c: C, d: D, e: E): A & B & C & D & E; - assignInWith(): { ... }; - assignInWith( - object: T, - s1: A, - customizer?: (objValue: any, srcValue: any, key: string, object: T, source: A) => any | void, - ): Object; - assignInWith( - object: T, - s1: A, - s2: B, - customizer?: (objValue: any, srcValue: any, key: string, object: T, source: A | B) => any | void, - ): Object; - assignInWith( - object: T, - s1: A, - s2: B, - s3: C, - customizer?: (objValue: any, srcValue: any, key: string, object: T, source: A | B | C) => any | void, - ): Object; - assignInWith( - object: T, - s1: A, - s2: B, - s3: C, - s4: D, - customizer?: (objValue: any, srcValue: any, key: string, object: T, source: A | B | C | D) => any | void, - ): Object; - assignWith(): { ... }; - assignWith( - object: T, - s1: A, - customizer?: (objValue: any, srcValue: any, key: string, object: T, source: A) => any | void, - ): Object; - assignWith( - object: T, - s1: A, - s2: B, - customizer?: (objValue: any, srcValue: any, key: string, object: T, source: A | B) => any | void, - ): Object; - assignWith( - object: T, - s1: A, - s2: B, - s3: C, - customizer?: (objValue: any, srcValue: any, key: string, object: T, source: A | B | C) => any | void, - ): Object; - assignWith( - object: T, - s1: A, - s2: B, - s3: C, - s4: D, - customizer?: (objValue: any, srcValue: any, key: string, object: T, source: A | B | C | D) => any | void, - ): Object; - at(object?: ?Object, ...paths: Array): Array; - at(object?: ?Object, paths: Array): Array; - create(prototype: void | null, properties: void | null): { ... }; - create(prototype: T, properties: Object): T; - create(prototype: any, properties: void | null): { ... }; - defaults(object?: ?Object, ...sources?: Array): Object; - defaultsDeep(object?: ?Object, ...sources?: Array): Object; - // alias for _.toPairs - entries(object?: ?Object): Array<[string, any]>; - // alias for _.toPairsIn - entriesIn(object?: ?Object): Array<[string, any]>; - // alias for _.assignIn - extend(a?: ?A, b?: ?B): A & B; - extend(a: A, b: B, c: C): A & B & C; - extend(a: A, b: B, c: C, d: D): A & B & C & D; - extend(a: A, b: B, c: C, d: D, e: E): A & B & C & D & E; - // alias for _.assignInWith - extendWith( - object?: ?T, - s1?: ?A, - customizer?: ?(objValue: any, srcValue: any, key: string, object: T, source: A) => any | void, - ): Object; - extendWith( - object: T, - s1: A, - s2: B, - customizer?: (objValue: any, srcValue: any, key: string, object: T, source: A | B) => any | void, - ): Object; - extendWith( - object: T, - s1: A, - s2: B, - s3: C, - customizer?: (objValue: any, srcValue: any, key: string, object: T, source: A | B | C) => any | void, - ): Object; - extendWith( - object: T, - s1: A, - s2: B, - s3: C, - s4: D, - customizer?: (objValue: any, srcValue: any, key: string, object: T, source: A | B | C | D) => any | void, - ): Object; - findKey(object: T, predicate?: ?OPredicate): string | void; - findKey(object: void | null, predicate?: ?OPredicate): void; - findLastKey(object: T, predicate?: ?OPredicate): string | void; - findLastKey(object: void | null, predicate?: ?OPredicate): void; - forIn(object: Object, iteratee?: ?OIteratee<*>): Object; - forIn(object: void | null, iteratee?: ?OIteratee<*>): null; - forInRight(object: Object, iteratee?: ?OIteratee<*>): Object; - forInRight(object: void | null, iteratee?: ?OIteratee<*>): null; - forOwn(object: Object, iteratee?: ?OIteratee<*>): Object; - forOwn(object: void | null, iteratee?: ?OIteratee<*>): null; - forOwnRight(object: Object, iteratee?: ?OIteratee<*>): Object; - forOwnRight(object: void | null, iteratee?: ?OIteratee<*>): null; - functions(object?: ?Object): Array; - functionsIn(object?: ?Object): Array; - get(object?: ?Object | ?$ReadOnlyArray | void | null, path?: ?Path, defaultValue?: any): any; - has(object: Object, path: Path): boolean; - has(object: Object, path: void | null): false; - has(object: void | null, path?: ?Path): false; - hasIn(object: Object, path: Path): boolean; - hasIn(object: Object, path: void | null): false; - hasIn(object: void | null, path?: ?Path): false; - invert(object: Object, multiVal?: ?boolean): Object; - invert(object: void | null, multiVal?: ?boolean): { ... }; - invertBy(object: Object, iteratee?: ?Function): Object; - invertBy(object: void | null, iteratee?: ?Function): { ... }; - invoke(object?: ?Object, path?: ?Path, ...args?: Array): any; - keys(object?: ?{ [key: K]: any, ... }): Array; - keys(object?: ?Object): Array; - keysIn(object?: ?Object): Array; - mapKeys(object: Object, iteratee?: ?OIteratee<*>): Object; - mapKeys(object: void | null, iteratee?: ?OIteratee<*>): { ... }; - mapValues(object: Object, iteratee?: ?OIteratee<*>): Object; - mapValues(object: void | null, iteratee?: ?OIteratee<*>): { ... }; - merge(object?: ?Object, ...sources?: Array): Object; - mergeWith(): { ... }; - mergeWith( - object: T, - customizer?: (objValue: any, srcValue: any, key: string, object: T, source: A) => any | void, - ): Object; - mergeWith( - object: T, - s1: A, - s2: B, - customizer?: (objValue: any, srcValue: any, key: string, object: T, source: A | B) => any | void, - ): Object; - mergeWith( - object: T, - s1: A, - s2: B, - s3: C, - customizer?: (objValue: any, srcValue: any, key: string, object: T, source: A | B | C) => any | void, - ): Object; - mergeWith( - object: T, - s1: A, - s2: B, - s3: C, - s4: D, - customizer?: (objValue: any, srcValue: any, key: string, object: T, source: A | B | C | D) => any | void, - ): Object; - omit(object?: ?Object, ...props: $ReadOnlyArray): Object; - omit(object?: ?Object, props: $ReadOnlyArray): Object; - omitBy( - object: T, - predicate?: ?OPredicate, - ): Object; - omitBy(object: void | null, predicate?: ?OPredicate): { ... }; - pick(object?: ?Object, ...props: $ReadOnlyArray): Object; - pick(object?: ?Object, props: $ReadOnlyArray): Object; - pickBy( - object: T, - predicate?: ?OPredicate, - ): Object; - pickBy(object: void | null, predicate?: ?OPredicate): { ... }; - result(object?: ?Object, path?: ?Path, defaultValue?: any): any; - set(object: Object, path?: ?Path, value: any): Object; - set(object: T, path?: ?Path, value?: ?any): T; - setWith( - object: T, - path?: ?Path, - value: any, - customizer?: (nsValue: any, key: string, nsObject: T) => any, - ): Object; - setWith( - object: T, - path?: ?Path, - value?: ?any, - customizer?: ?(nsValue: any, key: string, nsObject: T) => any, - ): T; - toPairs(object?: ?Object | Array<*>): Array<[string, any]>; - toPairsIn(object?: ?Object): Array<[string, any]>; - transform(collection: Object | $ReadOnlyArray, iteratee?: ?OIteratee<*>, accumulator?: any): any; - transform(collection: void | null, iteratee?: ?OIteratee<*>, accumulator?: ?any): { ... }; - unset(object: void | null, path?: ?Path): true; - unset(object: Object, path?: ?Path): boolean; - update(object: Object, path: Path, updater: Function): Object; - update(object: T, path?: ?Path, updater?: ?Function): T; - updateWith(object: Object, path?: ?Path, updater?: ?Function, customizer?: ?Function): Object; - updateWith(object: T, path?: ?Path, updater?: ?Function, customizer?: ?Function): T; - values(object?: ?Object): Array; - valuesIn(object?: ?Object): Array; - - // Seq - // harder to read, but this is _() - (value: any): any; - chain(value: T): any; - tap(value: T, interceptor: (value: T) => any): T; - thru(value: T1, interceptor: (value: T1) => T2): T2; - // TODO: _.prototype.* - - // String - camelCase(string: string): string; - camelCase(string: void | null): ''; - capitalize(string: string): string; - capitalize(string: void | null): ''; - deburr(string: string): string; - deburr(string: void | null): ''; - endsWith(string: string, target?: string, position?: ?number): boolean; - endsWith(string: void | null, target?: ?string, position?: ?number): false; - escape(string: string): string; - escape(string: void | null): ''; - escapeRegExp(string: string): string; - escapeRegExp(string: void | null): ''; - kebabCase(string: string): string; - kebabCase(string: void | null): ''; - lowerCase(string: string): string; - lowerCase(string: void | null): ''; - lowerFirst(string: string): string; - lowerFirst(string: void | null): ''; - pad(string?: ?string, length?: ?number, chars?: ?string): string; - padEnd(string?: ?string, length?: ?number, chars?: ?string): string; - padStart(string?: ?string, length?: ?number, chars?: ?string): string; - parseInt(string: string, radix?: ?number): number; - repeat(string: string, n?: ?number): string; - repeat(string: void | null, n?: ?number): ''; - replace(string: string, pattern: RegExp | string, replacement: ((string: string) => string) | string): string; - replace( - string: void | null, - pattern?: ?RegExp | ?string, - replacement: ?((string: string) => string) | ?string, - ): ''; - snakeCase(string: string): string; - snakeCase(string: void | null): ''; - split(string?: ?string, separator?: ?RegExp | ?string, limit?: ?number): Array; - startCase(string: string): string; - startCase(string: void | null): ''; - startsWith(string: string, target?: string, position?: number): boolean; - startsWith(string: void | null, target?: ?string, position?: ?number): false; - template(string?: ?string, options?: ?TemplateSettings): Function; - toLower(string: string): string; - toLower(string: void | null): ''; - toUpper(string: string): string; - toUpper(string: void | null): ''; - trim(string: string, chars?: string): string; - trim(string: void | null, chars?: ?string): ''; - trimEnd(string: string, chars?: ?string): string; - trimEnd(string: void | null, chars?: ?string): ''; - trimStart(string: string, chars?: ?string): string; - trimStart(string: void | null, chars?: ?string): ''; - truncate(string: string, options?: TruncateOptions): string; - truncate(string: void | null, options?: ?TruncateOptions): ''; - unescape(string: string): string; - unescape(string: void | null): ''; - upperCase(string: string): string; - upperCase(string: void | null): ''; - upperFirst(string: string): string; - upperFirst(string: void | null): ''; - words(string?: ?string, pattern?: ?RegExp | ?string): Array; - - // Util - attempt(func: Function, ...args: Array): any; - bindAll(object: Object, methodNames?: ?Array): Object; - bindAll(object: T, methodNames?: ?Array): T; - bindAll(object: Object, ...methodNames: Array): Object; - cond(pairs?: ?NestedArray): Function; - conforms(source?: ?Object): Function; - constant(value: T): () => T; - defaultTo(value: T1, defaultValue: T2): T2; - defaultTo(value: T1, defaultValue: T2): T1; - // NaN is a number instead of its own type, otherwise it would behave like null/void - defaultTo(value: T1, defaultValue: T2): T1 | T2; - flow: $ComposeReverse & ((funcs: Array) => Function); - flowRight: $Compose & ((funcs: Array) => Function); - identity(value: T): T; - iteratee(func?: any): Function; - matches(source?: ?Object): Function; - matchesProperty(path?: ?Path, srcValue: any): Function; - method(path?: ?Path, ...args?: Array): Function; - methodOf(object?: ?Object, ...args?: Array): Function; - mixin(object?: T, source: Object, options?: { chain: boolean, ... }): T; - noConflict(): Lodash; - noop(...args: Array): void; - nthArg(n?: ?number): Function; - over(...iteratees: Array): Function; - over(iteratees: Array): Function; - overEvery(...predicates: Array): Function; - overEvery(predicates: Array): Function; - overSome(...predicates: Array): Function; - overSome(predicates: Array): Function; - property(path?: ?Path): Function; - propertyOf(object?: ?Object): Function; - range(start: number, end: number, step?: number): Array; - range(end: number, step?: number): Array; - rangeRight(start?: ?number, end?: ?number, step?: ?number): Array; - rangeRight(end?: ?number, step?: ?number): Array; - runInContext(context?: ?Object): Function; - - stubArray(): Array<*>; - stubFalse(): false; - stubObject(): { ... }; - stubString(): ''; - stubTrue(): true; - times(n?: ?number, ...rest?: Array): Array; - times(n: number, iteratee: (i: number) => T): Array; - toPath(value: any): Array; - uniqueId(prefix?: ?string): string; - - // Properties - VERSION: string; - templateSettings: TemplateSettings; - } - - declare module.exports: Lodash; -} - -declare module 'lodash/fp' { - declare type Path = $ReadOnlyArray | string | number; - declare type __CurriedFunction1 = (...r: [AA]) => R; - declare type CurriedFunction1 = __CurriedFunction1; - - declare type __CurriedFunction2 = ((...r: [AA]) => CurriedFunction1) & - ((...r: [AA, BB]) => R); - declare type CurriedFunction2 = __CurriedFunction2; - - declare type __CurriedFunction3 = ((...r: [AA]) => CurriedFunction2) & - ((...r: [AA, BB]) => CurriedFunction1) & - ((...r: [AA, BB, CC]) => R); - declare type CurriedFunction3 = __CurriedFunction3; - - declare type __CurriedFunction4 = (( - ...r: [AA] - ) => CurriedFunction3) & - ((...r: [AA, BB]) => CurriedFunction2) & - ((...r: [AA, BB, CC]) => CurriedFunction1) & - ((...r: [AA, BB, CC, DD]) => R); - declare type CurriedFunction4 = __CurriedFunction4; - - declare type __CurriedFunction5 = (( - ...r: [AA] - ) => CurriedFunction4) & - ((...r: [AA, BB]) => CurriedFunction3) & - ((...r: [AA, BB, CC]) => CurriedFunction2) & - ((...r: [AA, BB, CC, DD]) => CurriedFunction1) & - ((...r: [AA, BB, CC, DD, EE]) => R); - declare type CurriedFunction5 = __CurriedFunction5; - - declare type __CurriedFunction6 = (( - ...r: [AA] - ) => CurriedFunction5) & - ((...r: [AA, BB]) => CurriedFunction4) & - ((...r: [AA, BB, CC]) => CurriedFunction3) & - ((...r: [AA, BB, CC, DD]) => CurriedFunction2) & - ((...r: [AA, BB, CC, DD, EE]) => CurriedFunction1) & - ((...r: [AA, BB, CC, DD, EE, FF]) => R); - declare type CurriedFunction6 = __CurriedFunction6; - - declare type Curry = (((...r: [A]) => R) => CurriedFunction1) & - (((...r: [A, B]) => R) => CurriedFunction2) & - (((...r: [A, B, C]) => R) => CurriedFunction3) & - (((...r: [A, B, C, D]) => R) => CurriedFunction4) & - (((...r: [A, B, C, D, E]) => R) => CurriedFunction5) & - (((...r: [A, B, C, D, E, F]) => R) => CurriedFunction6); - - declare type UnaryFn = (a: A) => R; - - declare type TemplateSettings = { - escape?: RegExp, - evaluate?: RegExp, - imports?: Object, - interpolate?: RegExp, - variable?: string, - ... - }; - - declare type TruncateOptions = { - length?: number, - omission?: string, - separator?: RegExp | string, - ... - }; - - declare type DebounceOptions = { - leading?: boolean, - maxWait?: number, - trailing?: boolean, - ... - }; - - declare type ThrottleOptions = { - leading?: boolean, - trailing?: boolean, - ... - }; - - declare type NestedArray = Array>; - - declare type matchesIterateeShorthand = { [string | number]: any, ... }; - declare type matchesPropertyIterateeShorthand = [string, any]; - declare type propertyIterateeShorthand = string; - - declare type OPredicate = - | ((value: A) => any) - | matchesIterateeShorthand - | matchesPropertyIterateeShorthand - | propertyIterateeShorthand; - - declare type OIterateeWithResult = Object | string | ((value: V) => R); - declare type OIteratee = OIterateeWithResult; - declare type OFlatMapIteratee = OIterateeWithResult>; - - declare type Predicate = - | ((value: T) => any) - | matchesIterateeShorthand - | matchesPropertyIterateeShorthand - | propertyIterateeShorthand; - - declare type _ValueOnlyIteratee = (value: T) => mixed; - declare type ValueOnlyIteratee = _ValueOnlyIteratee | string; - declare type _Iteratee = (item: T) => mixed; - declare type Iteratee = _Iteratee | Object | string; - declare type FlatMapIteratee = ((item: T) => Array) | Object | string; - declare type Comparator = (item: T, item2: T) => boolean; - - declare type MapIterator = ((item: T) => U) | propertyIterateeShorthand; - - declare type OMapIterator = ((item: T) => U) | propertyIterateeShorthand; - - declare class Lodash { - // Array - chunk(size: number): (array: Array) => Array>; - chunk(size: number, array: Array): Array>; - compact(array?: ?$ReadOnlyArray): Array; - concat | T, B: Array | U>(base: A): (elements: B) => Array; - concat | T, B: Array | U>(base: A, elements: B): Array; - difference(values: $ReadOnlyArray): (array: $ReadOnlyArray) => T[]; - difference(values: $ReadOnlyArray, array: $ReadOnlyArray): T[]; - differenceBy( - iteratee: ValueOnlyIteratee, - ): ((values: $ReadOnlyArray) => (array: $ReadOnlyArray) => T[]) & - ((values: $ReadOnlyArray, array: $ReadOnlyArray) => T[]); - differenceBy(iteratee: ValueOnlyIteratee, values: $ReadOnlyArray): (array: $ReadOnlyArray) => T[]; - differenceBy(iteratee: ValueOnlyIteratee, values: $ReadOnlyArray, array: $ReadOnlyArray): T[]; - differenceWith( - comparator: Comparator, - ): ((first: $ReadOnly) => (second: $ReadOnly) => T[]) & - ((first: $ReadOnly, second: $ReadOnly) => T[]); - differenceWith(comparator: Comparator, first: $ReadOnly): (second: $ReadOnly) => T[]; - differenceWith(comparator: Comparator, first: $ReadOnly, second: $ReadOnly): T[]; - drop(n: number): (array: Array) => Array; - drop(n: number, array: Array): Array; - dropLast(n: number): (array: Array) => Array; - dropLast(n: number, array: Array): Array; - dropRight(n: number): (array: Array) => Array; - dropRight(n: number, array: Array): Array; - dropRightWhile(predicate: Predicate): (array: Array) => Array; - dropRightWhile(predicate: Predicate, array: Array): Array; - dropWhile(predicate: Predicate): (array: Array) => Array; - dropWhile(predicate: Predicate, array: Array): Array; - dropLastWhile(predicate: Predicate): (array: Array) => Array; - dropLastWhile(predicate: Predicate, array: Array): Array; - fill( - start: number, - ): (( - end: number, - ) => ((value: U) => (array: Array) => Array) & ((value: U, array: Array) => Array)) & - ((end: number, value: U) => (array: Array) => Array) & - ((end: number, value: U, array: Array) => Array); - fill( - start: number, - end: number, - ): ((value: U) => (array: Array) => Array) & ((value: U, array: Array) => Array); - fill(start: number, end: number, value: U): (array: Array) => Array; - fill(start: number, end: number, value: U, array: Array): Array; - findIndex(predicate: Predicate): (array: $ReadOnlyArray) => number; - findIndex(predicate: Predicate, array: $ReadOnlyArray): number; - findIndexFrom( - predicate: Predicate, - ): ((fromIndex: number) => (array: $ReadOnlyArray) => number) & - ((fromIndex: number, array: $ReadOnlyArray) => number); - findIndexFrom(predicate: Predicate, fromIndex: number): (array: $ReadOnlyArray) => number; - findIndexFrom(predicate: Predicate, fromIndex: number, array: $ReadOnlyArray): number; - findLastIndex(predicate: Predicate): (array: $ReadOnlyArray) => number; - findLastIndex(predicate: Predicate, array: $ReadOnlyArray): number; - findLastIndexFrom( - predicate: Predicate, - ): ((fromIndex: number) => (array: $ReadOnlyArray) => number) & - ((fromIndex: number, array: $ReadOnlyArray) => number); - findLastIndexFrom(predicate: Predicate, fromIndex: number): (array: $ReadOnlyArray) => number; - findLastIndexFrom(predicate: Predicate, fromIndex: number, array: $ReadOnlyArray): number; - // alias of _.head - first(array: $ReadOnlyArray): T; - flatten(array: Array | X>): Array; - unnest(array: Array | X>): Array; - flattenDeep(array: any[]): Array; - flattenDepth(depth: number): (array: any[]) => any[]; - flattenDepth(depth: number, array: any[]): any[]; - fromPairs(pairs: $ReadOnlyArray<[A, B]>): {| [key: A]: B |}; - head(array: $ReadOnlyArray): T; - indexOf(value: T): (array: Array) => number; - indexOf(value: T, array: Array): number; - indexOfFrom( - value: T, - ): ((fromIndex: number) => (array: Array) => number) & ((fromIndex: number, array: Array) => number); - indexOfFrom(value: T, fromIndex: number): (array: Array) => number; - indexOfFrom(value: T, fromIndex: number, array: Array): number; - initial(array: Array): Array; - init(array: Array): Array; - intersection(a1: Array): (a2: Array) => Array; - intersection(a1: Array, a2: Array): Array; - intersectionBy( - iteratee: ValueOnlyIteratee, - ): ((a1: Array) => (a2: Array) => Array) & ((a1: Array, a2: Array) => Array); - intersectionBy(iteratee: ValueOnlyIteratee, a1: Array): (a2: Array) => Array; - intersectionBy(iteratee: ValueOnlyIteratee, a1: Array, a2: Array): Array; - intersectionWith( - comparator: Comparator, - ): ((a1: Array) => (a2: Array) => Array) & ((a1: Array, a2: Array) => Array); - intersectionWith(comparator: Comparator, a1: Array): (a2: Array) => Array; - intersectionWith(comparator: Comparator, a1: Array, a2: Array): Array; - join(separator: string): (array: Array) => string; - join(separator: string, array: Array): string; - last(array: Array): T; - lastIndexOf(value: T): (array: Array) => number; - lastIndexOf(value: T, array: Array): number; - lastIndexOfFrom( - value: T, - ): ((fromIndex: number) => (array: Array) => number) & ((fromIndex: number, array: Array) => number); - lastIndexOfFrom(value: T, fromIndex: number): (array: Array) => number; - lastIndexOfFrom(value: T, fromIndex: number, array: Array): number; - nth(n: number): (array: T[]) => T; - nth(n: number, array: T[]): T; - pull(value: T): (array: Array) => Array; - pull(value: T, array: Array): Array; - pullAll(values: Array): (array: Array) => Array; - pullAll(values: Array, array: Array): Array; - pullAllBy( - iteratee: ValueOnlyIteratee, - ): ((values: Array) => (array: Array) => Array) & ((values: Array, array: Array) => Array); - pullAllBy(iteratee: ValueOnlyIteratee, values: Array): (array: Array) => Array; - pullAllBy(iteratee: ValueOnlyIteratee, values: Array, array: Array): Array; - pullAllWith( - comparator: Function, - ): ((values: T[]) => (array: T[]) => T[]) & ((values: T[], array: T[]) => T[]); - pullAllWith(comparator: Function, values: T[]): (array: T[]) => T[]; - pullAllWith(comparator: Function, values: T[], array: T[]): T[]; - pullAt(indexed: Array): (array: Array) => Array; - pullAt(indexed: Array, array: Array): Array; - remove(predicate: Predicate): (array: Array) => Array; - remove(predicate: Predicate, array: Array): Array; - reverse(array: Array): Array; - slice( - start: number, - ): ((end: number) => (array: Array) => Array) & ((end: number, array: Array) => Array); - slice(start: number, end: number): (array: Array) => Array; - slice(start: number, end: number, array: Array): Array; - sortedIndex(value: T): (array: Array) => number; - sortedIndex(value: T, array: Array): number; - sortedIndexBy( - iteratee: ValueOnlyIteratee, - ): ((value: T) => (array: Array) => number) & ((value: T, array: Array) => number); - sortedIndexBy(iteratee: ValueOnlyIteratee, value: T): (array: Array) => number; - sortedIndexBy(iteratee: ValueOnlyIteratee, value: T, array: Array): number; - sortedIndexOf(value: T): (array: Array) => number; - sortedIndexOf(value: T, array: Array): number; - sortedLastIndex(value: T): (array: Array) => number; - sortedLastIndex(value: T, array: Array): number; - sortedLastIndexBy( - iteratee: ValueOnlyIteratee, - ): ((value: T) => (array: Array) => number) & ((value: T, array: Array) => number); - sortedLastIndexBy(iteratee: ValueOnlyIteratee, value: T): (array: Array) => number; - sortedLastIndexBy(iteratee: ValueOnlyIteratee, value: T, array: Array): number; - sortedLastIndexOf(value: T): (array: Array) => number; - sortedLastIndexOf(value: T, array: Array): number; - sortedUniq(array: Array): Array; - sortedUniqBy(iteratee: ValueOnlyIteratee, array: Array): Array; - tail(array: Array): Array; - take(n: number): (array: $ReadOnlyArray) => Array; - take(n: number, array: $ReadOnlyArray): Array; - takeRight(n: number): (array: $ReadOnlyArray) => Array; - takeRight(n: number, array: $ReadOnlyArray): Array; - takeLast(n: number): (array: Array) => Array; - takeLast(n: number, array: Array): Array; - takeRightWhile(predicate: Predicate): (array: Array) => Array; - takeRightWhile(predicate: Predicate, array: Array): Array; - takeLastWhile(predicate: Predicate): (array: Array) => Array; - takeLastWhile(predicate: Predicate, array: Array): Array; - takeWhile(predicate: Predicate): (array: Array) => Array; - takeWhile(predicate: Predicate, array: Array): Array; - union(a1: Array): (a2: Array) => Array; - union(a1: Array, a2: Array): Array; - unionBy( - iteratee: ValueOnlyIteratee, - ): ((a1: Array) => (a2: Array) => Array) & ((a1: Array, a2: Array) => Array); - unionBy(iteratee: ValueOnlyIteratee, a1: Array): (a2: Array) => Array; - unionBy(iteratee: ValueOnlyIteratee, a1: Array, a2: Array): Array; - unionWith( - comparator: Comparator, - ): ((a1: Array) => (a2: Array) => Array) & ((a1: Array, a2: Array) => Array); - unionWith(comparator: Comparator, a1: Array): (a2: Array) => Array; - unionWith(comparator: Comparator, a1: Array, a2: Array): Array; - uniq(array: Array): Array; - uniqBy(iteratee: ValueOnlyIteratee): (array: Array) => Array; - uniqBy(iteratee: ValueOnlyIteratee, array: Array): Array; - uniqWith(comparator: Comparator): (array: Array) => Array; - uniqWith(comparator: Comparator, array: Array): Array; - unzip(array: Array): Array; - unzipWith(iteratee: Iteratee): (array: Array) => Array; - unzipWith(iteratee: Iteratee, array: Array): Array; - without(values: Array): (array: Array) => Array; - without(values: Array, array: Array): Array; - xor(a1: Array): (a2: Array) => Array; - xor(a1: Array, a2: Array): Array; - symmetricDifference(a1: Array): (a2: Array) => Array; - symmetricDifference(a1: Array, a2: Array): Array; - xorBy( - iteratee: ValueOnlyIteratee, - ): ((a1: Array) => (a2: Array) => Array) & ((a1: Array, a2: Array) => Array); - xorBy(iteratee: ValueOnlyIteratee, a1: Array): (a2: Array) => Array; - xorBy(iteratee: ValueOnlyIteratee, a1: Array, a2: Array): Array; - symmetricDifferenceBy( - iteratee: ValueOnlyIteratee, - ): ((a1: Array) => (a2: Array) => Array) & ((a1: Array, a2: Array) => Array); - symmetricDifferenceBy(iteratee: ValueOnlyIteratee, a1: Array): (a2: Array) => Array; - symmetricDifferenceBy(iteratee: ValueOnlyIteratee, a1: Array, a2: Array): Array; - xorWith( - comparator: Comparator, - ): ((a1: Array) => (a2: Array) => Array) & ((a1: Array, a2: Array) => Array); - xorWith(comparator: Comparator, a1: Array): (a2: Array) => Array; - xorWith(comparator: Comparator, a1: Array, a2: Array): Array; - symmetricDifferenceWith( - comparator: Comparator, - ): ((a1: Array) => (a2: Array) => Array) & ((a1: Array, a2: Array) => Array); - symmetricDifferenceWith(comparator: Comparator, a1: Array): (a2: Array) => Array; - symmetricDifferenceWith(comparator: Comparator, a1: Array, a2: Array): Array; - zip(a1: A[]): (a2: B[]) => Array<[A, B]>; - zip(a1: A[], a2: B[]): Array<[A, B]>; - zipAll(arrays: Array>): Array; - zipObject(props?: Array): (values?: Array) => { [key: K]: V, ... }; - zipObject(props?: Array, values?: Array): { [key: K]: V, ... }; - zipObj(props: Array): (values: Array) => Object; - zipObj(props: Array, values: Array): Object; - zipObjectDeep(props: any[]): (values: any) => Object; - zipObjectDeep(props: any[], values: any): Object; - zipWith( - iteratee: Iteratee, - ): ((a1: NestedArray) => (a2: NestedArray) => Array) & - ((a1: NestedArray, a2: NestedArray) => Array); - zipWith(iteratee: Iteratee, a1: NestedArray): (a2: NestedArray) => Array; - zipWith(iteratee: Iteratee, a1: NestedArray, a2: NestedArray): Array; - // Collection - countBy( - iteratee: ValueOnlyIteratee, - ): (collection: Array | { [id: any]: T, ... }) => { [string]: number, ... }; - countBy( - iteratee: ValueOnlyIteratee, - collection: Array | { [id: any]: T, ... }, - ): { [string]: number, ... }; - // alias of _.forEach - each( - iteratee: Iteratee | OIteratee, - ): (collection: $ReadOnlyArray | { [id: any]: T, ... }) => Array; - each(iteratee: Iteratee | OIteratee, collection: $ReadOnlyArray | { [id: any]: T, ... }): Array; - // alias of _.forEachRight - eachRight( - iteratee: Iteratee | OIteratee, - ): (collection: $ReadOnlyArray | { [id: any]: T, ... }) => Array; - eachRight( - iteratee: Iteratee | OIteratee, - collection: $ReadOnlyArray | { [id: any]: T, ... }, - ): Array; - every( - iteratee: Iteratee | OIteratee, - ): (collection: $ReadOnlyArray | { [id: any]: T, ... }) => boolean; - every(iteratee: Iteratee | OIteratee, collection: $ReadOnlyArray | { [id: any]: T, ... }): boolean; - all(iteratee: Iteratee | OIteratee): (collection: Array | { [id: any]: T, ... }) => boolean; - all(iteratee: Iteratee | OIteratee, collection: Array | { [id: any]: T, ... }): boolean; - filter( - predicate: Predicate | OPredicate, - ): (collection: $ReadOnlyArray | { [id: any]: T, ... }) => Array; - filter( - predicate: Predicate | OPredicate, - collection: $ReadOnlyArray | { [id: any]: T, ... }, - ): Array; - find( - predicate: Predicate | OPredicate, - ): (collection: $ReadOnlyArray | { [id: any]: T, ... }) => T | void; - find( - predicate: Predicate | OPredicate, - collection: $ReadOnlyArray | { [id: any]: T, ... }, - ): T | void; - findFrom( - predicate: Predicate | OPredicate, - ): ((fromIndex: number) => (collection: $ReadOnlyArray | { [id: any]: T, ... }) => T | void) & - ((fromIndex: number, collection: $ReadOnlyArray | { [id: any]: T, ... }) => T | void); - findFrom( - predicate: Predicate | OPredicate, - fromIndex: number, - ): (collection: Array | { [id: any]: T, ... }) => T | void; - findFrom( - predicate: Predicate | OPredicate, - fromIndex: number, - collection: $ReadOnlyArray | { [id: any]: T, ... }, - ): T | void; - findLast( - predicate: Predicate | OPredicate, - ): (collection: $ReadOnlyArray | { [id: any]: T, ... }) => T | void; - findLast( - predicate: Predicate | OPredicate, - collection: $ReadOnlyArray | { [id: any]: T, ... }, - ): T | void; - findLastFrom( - predicate: Predicate | OPredicate, - ): ((fromIndex: number) => (collection: $ReadOnlyArray | { [id: any]: T, ... }) => T | void) & - ((fromIndex: number, collection: $ReadOnlyArray | { [id: any]: T, ... }) => T | void); - findLastFrom( - predicate: Predicate | OPredicate, - fromIndex: number, - ): (collection: $ReadOnlyArray | { [id: any]: T, ... }) => T | void; - findLastFrom( - predicate: Predicate | OPredicate, - fromIndex: number, - collection: $ReadOnlyArray | { [id: any]: T, ... }, - ): T | void; - flatMap( - iteratee: FlatMapIteratee | OFlatMapIteratee, - ): (collection: Array | { [id: any]: T, ... }) => Array; - flatMap( - iteratee: FlatMapIteratee | OFlatMapIteratee, - collection: Array | { [id: any]: T, ... }, - ): Array; - flatMapDeep( - iteratee: FlatMapIteratee | OFlatMapIteratee, - ): (collection: Array | { [id: any]: T, ... }) => Array; - flatMapDeep( - iteratee: FlatMapIteratee | OFlatMapIteratee, - collection: Array | { [id: any]: T, ... }, - ): Array; - flatMapDepth( - iteratee: FlatMapIteratee | OFlatMapIteratee, - ): ((depth: number) => (collection: Array | { [id: any]: T, ... }) => Array) & - ((depth: number, collection: Array | { [id: any]: T, ... }) => Array); - flatMapDepth( - iteratee: FlatMapIteratee | OFlatMapIteratee, - depth: number, - ): (collection: Array | { [id: any]: T, ... }) => Array; - flatMapDepth( - iteratee: FlatMapIteratee | OFlatMapIteratee, - depth: number, - collection: Array | { [id: any]: T, ... }, - ): Array; - forEach( - iteratee: Iteratee | OIteratee, - ): (collection: $ReadOnlyArray | { [id: any]: T, ... }) => Array; - forEach( - iteratee: Iteratee | OIteratee, - collection: $ReadOnlyArray | { [id: any]: T, ... }, - ): Array; - forEachRight( - iteratee: Iteratee | OIteratee, - ): (collection: $ReadOnlyArray | { [id: any]: T, ... }) => Array; - forEachRight( - iteratee: Iteratee | OIteratee, - collection: $ReadOnlyArray | { [id: any]: T, ... }, - ): Array; - groupBy( - iteratee: ValueOnlyIteratee, - ): (collection: $ReadOnlyArray | { [id: any]: T, ... }) => { [key: V]: Array, ... }; - groupBy( - iteratee: ValueOnlyIteratee, - collection: $ReadOnlyArray | { [id: any]: T, ... }, - ): { [key: V]: Array, ... }; - includes(value: T): (collection: Array | { [id: any]: T, ... }) => boolean; - includes(value: T, collection: Array | { [id: any]: T, ... }): boolean; - includes(value: string): (str: string) => boolean; - includes(value: string, str: string): boolean; - contains(value: string): (str: string) => boolean; - contains(value: string, str: string): boolean; - contains(value: T): (collection: Array | { [id: any]: T, ... }) => boolean; - contains(value: T, collection: Array | { [id: any]: T, ... }): boolean; - includesFrom( - value: string, - ): ((fromIndex: number) => (str: string) => boolean) & ((fromIndex: number, str: string) => boolean); - includesFrom(value: string, fromIndex: number): (str: string) => boolean; - includesFrom(value: string, fromIndex: number, str: string): boolean; - includesFrom( - value: T, - ): ((fromIndex: number) => (collection: Array) => boolean) & - ((fromIndex: number, collection: Array) => boolean); - includesFrom(value: T, fromIndex: number): (collection: Array) => boolean; - includesFrom(value: T, fromIndex: number, collection: Array): boolean; - invokeMap(path: ((value: T) => Path) | Path): (collection: Array | { [id: any]: T, ... }) => Array; - invokeMap(path: ((value: T) => Path) | Path, collection: Array | { [id: any]: T, ... }): Array; - invokeArgsMap( - path: ((value: T) => Path) | Path, - ): ((collection: Array | { [id: any]: T, ... }) => (args: Array) => Array) & - ((collection: Array | { [id: any]: T, ... }, args: Array) => Array); - invokeArgsMap( - path: ((value: T) => Path) | Path, - collection: Array | { [id: any]: T, ... }, - ): (args: Array) => Array; - invokeArgsMap( - path: ((value: T) => Path) | Path, - collection: Array | { [id: any]: T, ... }, - args: Array, - ): Array; - keyBy( - iteratee: ValueOnlyIteratee, - ): (collection: $ReadOnlyArray | { [id: any]: T, ... }) => { [key: V]: T, ... }; - keyBy( - iteratee: ValueOnlyIteratee, - collection: $ReadOnlyArray | { [id: any]: T, ... }, - ): { [key: V]: T, ... }; - indexBy( - iteratee: ValueOnlyIteratee, - ): (collection: $ReadOnlyArray | { [id: any]: T, ... }) => { [key: V]: T, ... }; - indexBy( - iteratee: ValueOnlyIteratee, - collection: $ReadOnlyArray | { [id: any]: T, ... }, - ): { [key: V]: T, ... }; - map( - iteratee: MapIterator | OMapIterator, - ): (collection: $ReadOnlyArray | { [id: any]: T, ... }) => Array; - map( - iteratee: MapIterator | OMapIterator, - collection: $ReadOnlyArray | { [id: any]: T, ... }, - ): Array; - map(iteratee: (char: string) => any): (str: string) => string; - map(iteratee: (char: string) => any, str: string): string; - pluck( - iteratee: MapIterator | OMapIterator, - ): (collection: Array | { [id: any]: T, ... }) => Array; - pluck( - iteratee: MapIterator | OMapIterator, - collection: Array | { [id: any]: T, ... }, - ): Array; - pluck(iteratee: (char: string) => any): (str: string) => string; - pluck(iteratee: (char: string) => any, str: string): string; - orderBy( - iteratees: $ReadOnlyArray | OIteratee<*>> | string, - ): (( - orders: $ReadOnlyArray<'asc' | 'desc'> | string, - ) => (collection: $ReadOnlyArray | { [id: any]: T, ... }) => Array) & - (( - orders: $ReadOnlyArray<'asc' | 'desc'> | string, - collection: $ReadOnlyArray | { [id: any]: T, ... }, - ) => Array); - orderBy( - iteratees: $ReadOnlyArray | OIteratee<*>> | string, - orders: $ReadOnlyArray<'asc' | 'desc'> | string, - ): (collection: $ReadOnlyArray | { [id: any]: T, ... }) => Array; - orderBy( - iteratees: $ReadOnlyArray | OIteratee<*>> | string, - orders: $ReadOnlyArray<'asc' | 'desc'> | string, - collection: $ReadOnlyArray | { [id: any]: T, ... }, - ): Array; - partition( - predicate: Predicate | OPredicate, - ): (collection: Array | { [id: any]: T, ... }) => [Array, Array]; - partition( - predicate: Predicate | OPredicate, - collection: Array | { [id: any]: T, ... }, - ): [Array, Array]; - reduce( - iteratee: (accumulator: U, value: T) => U, - ): ((accumulator: U) => (collection: Array | { [id: any]: T, ... }) => U) & - ((accumulator: U, collection: Array | { [id: any]: T, ... }) => U); - reduce( - iteratee: (accumulator: U, value: T) => U, - accumulator: U, - ): (collection: Array | { [id: any]: T, ... }) => U; - reduce( - iteratee: (accumulator: U, value: T) => U, - accumulator: U, - collection: Array | { [id: any]: T, ... }, - ): U; - reduceRight( - iteratee: (value: T, accumulator: U) => U, - ): ((accumulator: U) => (collection: Array | { [id: any]: T, ... }) => U) & - ((accumulator: U, collection: Array | { [id: any]: T, ... }) => U); - reduceRight( - iteratee: (value: T, accumulator: U) => U, - accumulator: U, - ): (collection: Array | { [id: any]: T, ... }) => U; - reduceRight( - iteratee: (value: T, accumulator: U) => U, - accumulator: U, - collection: Array | { [id: any]: T, ... }, - ): U; - reject(predicate: Predicate | OPredicate): (collection: Array | { [id: any]: T, ... }) => Array; - reject(predicate: Predicate | OPredicate, collection: Array | { [id: any]: T, ... }): Array; - sample(collection: Array | { [id: any]: T, ... }): T; - sampleSize(n: number): (collection: Array | { [id: any]: T, ... }) => Array; - sampleSize(n: number, collection: Array | { [id: any]: T, ... }): Array; - shuffle(collection: Array | { [id: any]: T, ... }): Array; - size(collection: $ReadOnlyArray | Object | string): number; - some( - predicate: Predicate | OPredicate, - ): (collection: $ReadOnlyArray | { [id: any]: T, ... }) => boolean; - some( - predicate: Predicate | OPredicate, - collection: $ReadOnlyArray | { [id: any]: T, ... }, - ): boolean; - any( - predicate: Predicate | OPredicate, - ): (collection: $ReadOnlyArray | { [id: any]: T, ... }) => boolean; - any(predicate: Predicate | OPredicate, collection: $ReadOnlyArray | { [id: any]: T, ... }): boolean; - sortBy( - iteratees: $ReadOnlyArray | OIteratee> | Iteratee | OIteratee, - ): (collection: $ReadOnlyArray | { [id: any]: T, ... }) => Array; - sortBy( - iteratees: $ReadOnlyArray | OIteratee> | Iteratee | OIteratee, - collection: $ReadOnlyArray | { [id: any]: T, ... }, - ): Array; - - // Date - now(): number; - - // Function - after(fn: Function): (n: number) => Function; - after(fn: Function, n: number): Function; - ary(func: Function): Function; - nAry(n: number): (func: Function) => Function; - nAry(n: number, func: Function): Function; - before(fn: Function): (n: number) => Function; - before(fn: Function, n: number): Function; - bind(func: Function): (thisArg: any) => Function; - bind(func: Function, thisArg: any): Function; - bindKey(obj: Object): (key: string) => Function; - bindKey(obj: Object, key: string): Function; - curry: Curry; - curryN(arity: number): (func: Function) => Function; - curryN(arity: number, func: Function): Function; - curryRight(func: Function): Function; - curryRightN(arity: number): (func: Function) => Function; - curryRightN(arity: number, func: Function): Function; - debounce(wait: number): (func: (...A) => R) => (...A) => R; - debounce(wait: number, func: (...A) => R): (...A) => R; - defer(func: (...any[]) => any): TimeoutID; - delay(wait: number): (func: Function) => TimeoutID; - delay(wait: number, func: Function): TimeoutID; - flip(func: Function): Function; - memoize(func: F): F; - negate(predicate: (...A) => R): (...A) => boolean; - complement(predicate: Function): Function; - once(func: Function): Function; - overArgs(func: Function): (transforms: Array) => Function; - overArgs(func: Function, transforms: Array): Function; - useWith(func: Function): (transforms: Array) => Function; - useWith(func: Function, transforms: Array): Function; - partial(func: Function): (partials: any[]) => Function; - partial(func: Function, partials: any[]): Function; - partialRight(func: Function): (partials: Array) => Function; - partialRight(func: Function, partials: Array): Function; - rearg(indexes: Array): (func: Function) => Function; - rearg(indexes: Array, func: Function): Function; - rest(func: Function): Function; - unapply(func: Function): Function; - restFrom(start: number): (func: Function) => Function; - restFrom(start: number, func: Function): Function; - spread(func: Function): Function; - apply(func: Function): Function; - spreadFrom(start: number): (func: Function) => Function; - spreadFrom(start: number, func: Function): Function; - throttle(wait: number): (func: (...A) => R) => (...A) => R; - throttle(wait: number, func: (...A) => R): (...A) => R; - unary(func: (T, ...any[]) => R): T => R; - wrap(wrapper: Function): (value: any) => Function; - wrap(wrapper: Function, value: any): Function; - - // Lang - castArray(value: *): any[]; - clone(value: T): T; - cloneDeep(value: T): T; - cloneDeepWith(customizer: (value: T, key: number | string, object: T, stack: any) => U): (value: T) => U; - cloneDeepWith(customizer: (value: T, key: number | string, object: T, stack: any) => U, value: T): U; - cloneWith(customizer: (value: T, key: number | string, object: T, stack: any) => U): (value: T) => U; - cloneWith(customizer: (value: T, key: number | string, object: T, stack: any) => U, value: T): U; - conformsTo( - predicates: T & { [key: string]: (x: any) => boolean, ... }, - ): (source: T) => boolean; - conformsTo( - predicates: T & { [key: string]: (x: any) => boolean, ... }, - source: T, - ): boolean; - where( - predicates: T & { [key: string]: (x: any) => boolean, ... }, - ): (source: T) => boolean; - where( - predicates: T & { [key: string]: (x: any) => boolean, ... }, - source: T, - ): boolean; - conforms( - predicates: T & { [key: string]: (x: any) => boolean, ... }, - ): (source: T) => boolean; - conforms( - predicates: T & { [key: string]: (x: any) => boolean, ... }, - source: T, - ): boolean; - eq(value: any): (other: any) => boolean; - eq(value: any, other: any): boolean; - identical(value: any): (other: any) => boolean; - identical(value: any, other: any): boolean; - gt(value: any): (other: any) => boolean; - gt(value: any, other: any): boolean; - gte(value: any): (other: any) => boolean; - gte(value: any, other: any): boolean; - isArguments(value: any): boolean; - isArray(value: any): boolean; - isArrayBuffer(value: any): boolean; - isArrayLike(value: any): boolean; - isArrayLikeObject(value: any): boolean; - isBoolean(value: any): boolean; - isBuffer(value: any): boolean; - isDate(value: any): boolean; - isElement(value: any): boolean; - isEmpty(value: any): boolean; - isEqual(value: any): (other: any) => boolean; - isEqual(value: any, other: any): boolean; - equals(value: any): (other: any) => boolean; - equals(value: any, other: any): boolean; - isEqualWith( - customizer: ( - objValue: any, - otherValue: any, - key: number | string, - object: T, - other: U, - stack: any, - ) => boolean | void, - ): ((value: T) => (other: U) => boolean) & ((value: T, other: U) => boolean); - isEqualWith( - customizer: ( - objValue: any, - otherValue: any, - key: number | string, - object: T, - other: U, - stack: any, - ) => boolean | void, - value: T, - ): (other: U) => boolean; - isEqualWith( - customizer: ( - objValue: any, - otherValue: any, - key: number | string, - object: T, - other: U, - stack: any, - ) => boolean | void, - value: T, - other: U, - ): boolean; - isError(value: any): boolean; - isFinite(value: any): boolean; - isFunction(value: any): boolean; - isInteger(value: any): boolean; - isLength(value: any): boolean; - isMap(value: any): boolean; - isMatch(source: Object): (object: Object) => boolean; - isMatch(source: Object, object: Object): boolean; - whereEq(source: Object): (object: Object) => boolean; - whereEq(source: Object, object: Object): boolean; - isMatchWith( - customizer: (objValue: any, srcValue: any, key: number | string, object: T, source: U) => boolean | void, - ): ((source: U) => (object: T) => boolean) & ((source: U, object: T) => boolean); - isMatchWith( - customizer: (objValue: any, srcValue: any, key: number | string, object: T, source: U) => boolean | void, - source: U, - ): (object: T) => boolean; - isMatchWith( - customizer: (objValue: any, srcValue: any, key: number | string, object: T, source: U) => boolean | void, - source: U, - object: T, - ): boolean; - isNaN(value: any): boolean; - isNative(value: any): boolean; - isNil(value: any): boolean; - isNull(value: any): boolean; - isNumber(value: any): boolean; - isObject(value: any): boolean; - isObjectLike(value: any): boolean; - isPlainObject(value: any): boolean; - isRegExp(value: any): boolean; - isSafeInteger(value: any): boolean; - isSet(value: any): boolean; - isString(value: string): true; - isString(value: any): false; - isSymbol(value: any): boolean; - isTypedArray(value: any): boolean; - isUndefined(value: any): boolean; - isWeakMap(value: any): boolean; - isWeakSet(value: any): boolean; - lt(value: any): (other: any) => boolean; - lt(value: any, other: any): boolean; - lte(value: any): (other: any) => boolean; - lte(value: any, other: any): boolean; - toArray(value: any): Array; - toFinite(value: any): number; - toInteger(value: any): number; - toLength(value: any): number; - toNumber(value: any): number; - toPlainObject(value: any): Object; - toSafeInteger(value: any): number; - toString(value: any): string; - - // Math - add(augend: number): (addend: number) => number; - add(augend: number, addend: number): number; - ceil(number: number): number; - divide(dividend: number): (divisor: number) => number; - divide(dividend: number, divisor: number): number; - floor(number: number): number; - max(array: Array): T; - maxBy(iteratee: Iteratee): (array: Array) => T; - maxBy(iteratee: Iteratee, array: Array): T; - mean(array: Array<*>): number; - meanBy(iteratee: Iteratee): (array: Array) => number; - meanBy(iteratee: Iteratee, array: Array): number; - min(array: Array): T; - minBy(iteratee: Iteratee): (array: Array) => T; - minBy(iteratee: Iteratee, array: Array): T; - multiply(multiplier: number): (multiplicand: number) => number; - multiply(multiplier: number, multiplicand: number): number; - round(number: number): number; - subtract(minuend: number): (subtrahend: number) => number; - subtract(minuend: number, subtrahend: number): number; - sum(array: Array<*>): number; - sumBy(iteratee: Iteratee): (array: Array) => number; - sumBy(iteratee: Iteratee, array: Array): number; - - // number - clamp( - lower: number, - ): ((upper: number) => (number: number) => number) & ((upper: number, number: number) => number); - clamp(lower: number, upper: number): (number: number) => number; - clamp(lower: number, upper: number, number: number): number; - inRange( - start: number, - ): ((end: number) => (number: number) => boolean) & ((end: number, number: number) => boolean); - inRange(start: number, end: number): (number: number) => boolean; - inRange(start: number, end: number, number: number): boolean; - random(lower: number): (upper: number) => number; - random(lower: number, upper: number): number; - - // Object - assign(object: Object): (source: Object) => Object; - assign(object: Object, source: Object): Object; - assignAll(objects: Array): Object; - assignInAll(objects: Array): Object; - extendAll(objects: Array): Object; - assignIn(a: A): (b: B) => A & B; - assignIn(a: A, b: B): A & B; - assignInWith( - customizer: (objValue: any, srcValue: any, key: string, object: T, source: A) => any | void, - ): ((object: T) => (s1: A) => Object) & ((object: T, s1: A) => Object); - assignInWith( - customizer: (objValue: any, srcValue: any, key: string, object: T, source: A) => any | void, - object: T, - ): (s1: A) => Object; - assignInWith( - customizer: (objValue: any, srcValue: any, key: string, object: T, source: A) => any | void, - object: T, - s1: A, - ): Object; - assignWith( - customizer: (objValue: any, srcValue: any, key: string, object: T, source: A) => any | void, - ): ((object: T) => (s1: A) => Object) & ((object: T, s1: A) => Object); - assignWith( - customizer: (objValue: any, srcValue: any, key: string, object: T, source: A) => any | void, - object: T, - ): (s1: A) => Object; - assignWith( - customizer: (objValue: any, srcValue: any, key: string, object: T, source: A) => any | void, - object: T, - s1: A, - ): Object; - assignInAllWith( - customizer: (objValue: any, srcValue: any, key: string, object: Object, source: Object) => any | void, - ): (objects: Array) => Object; - assignInAllWith( - customizer: (objValue: any, srcValue: any, key: string, object: Object, source: Object) => any | void, - objects: Array, - ): Object; - extendAllWith( - customizer: (objValue: any, srcValue: any, key: string, object: Object, source: Object) => any | void, - ): (objects: Array) => Object; - extendAllWith( - customizer: (objValue: any, srcValue: any, key: string, object: Object, source: Object) => any | void, - objects: Array, - ): Object; - assignAllWith( - customizer: (objValue: any, srcValue: any, key: string, object: Object, source: Object) => any | void, - ): (objects: Array) => Object; - assignAllWith( - customizer: (objValue: any, srcValue: any, key: string, object: Object, source: Object) => any | void, - objects: Array, - ): Object; - at(paths: Array): (object: Object) => Array; - at(paths: Array, object: Object): Array; - props(paths: Array): (object: Object) => Array; - props(paths: Array, object: Object): Array; - paths(paths: Array): (object: Object) => Array; - paths(paths: Array, object: Object): Array; - create(prototype: T): T; - defaults(source: Object): (object: Object) => Object; - defaults(source: Object, object: Object): Object; - defaultsAll(objects: Array): Object; - defaultsDeep(source: Object): (object: Object) => Object; - defaultsDeep(source: Object, object: Object): Object; - defaultsDeepAll(objects: Array): Object; - // alias for _.toPairs - entries(object: Object): Array<[string, any]>; - // alias for _.toPairsIn - entriesIn(object: Object): Array<[string, any]>; - // alias for _.assignIn - extend(a: A): (b: B) => A & B; - extend(a: A, b: B): A & B; - // alias for _.assignInWith - extendWith( - customizer: (objValue: any, srcValue: any, key: string, object: T, source: A) => any | void, - ): ((object: T) => (s1: A) => Object) & ((object: T, s1: A) => Object); - extendWith( - customizer: (objValue: any, srcValue: any, key: string, object: T, source: A) => any | void, - object: T, - ): (s1: A) => Object; - extendWith( - customizer: (objValue: any, srcValue: any, key: string, object: T, source: A) => any | void, - object: T, - s1: A, - ): Object; - findKey(predicate: OPredicate): (object: T) => string | void; - findKey(predicate: OPredicate, object: T): string | void; - findLastKey(predicate: OPredicate): (object: T) => string | void; - findLastKey(predicate: OPredicate, object: T): string | void; - forIn(iteratee: OIteratee<*>): (object: Object) => Object; - forIn(iteratee: OIteratee<*>, object: Object): Object; - forInRight(iteratee: OIteratee<*>): (object: Object) => Object; - forInRight(iteratee: OIteratee<*>, object: Object): Object; - forOwn(iteratee: OIteratee<*>): (object: Object) => Object; - forOwn(iteratee: OIteratee<*>, object: Object): Object; - forOwnRight(iteratee: OIteratee<*>): (object: Object) => Object; - forOwnRight(iteratee: OIteratee<*>, object: Object): Object; - functions(object: Object): Array; - functionsIn(object: Object): Array; - get(path: Path): (object: Object | $ReadOnlyArray | void | null) => any; - get(path: Path, object: Object | $ReadOnlyArray | void | null): any; - prop(path: Path): (object: Object | Array) => any; - prop(path: Path, object: Object | Array): any; - path(path: Path): (object: Object | Array) => any; - path(path: Path, object: Object | Array): any; - getOr( - defaultValue: any, - ): ((path: Path) => (object: Object | Array) => any) & - ((path: Path, object: Object | $ReadOnlyArray | void | null) => any); - getOr(defaultValue: any, path: Path): (object: Object | $ReadOnlyArray | void | null) => any; - getOr(defaultValue: any, path: Path, object: Object | $ReadOnlyArray | void | null): any; - propOr( - defaultValue: any, - ): ((path: Path) => (object: Object | Array) => any) & ((path: Path, object: Object | Array) => any); - propOr(defaultValue: any, path: Path): (object: Object | Array) => any; - propOr(defaultValue: any, path: Path, object: Object | Array): any; - pathOr( - defaultValue: any, - ): ((path: Path) => (object: Object | Array) => any) & ((path: Path, object: Object | Array) => any); - pathOr(defaultValue: any, path: Path): (object: Object | Array) => any; - pathOr(defaultValue: any, path: Path, object: Object | Array): any; - has(path: Path): (object: Object) => boolean; - has(path: Path, object: Object): boolean; - hasIn(path: Path): (object: Object) => boolean; - hasIn(path: Path, object: Object): boolean; - invert(object: Object): Object; - invertObj(object: Object): Object; - invertBy(iteratee: Function): (object: Object) => Object; - invertBy(iteratee: Function, object: Object): Object; - invoke(path: Path): (object: Object) => any; - invoke(path: Path, object: Object): any; - invokeArgs( - path: Path, - ): ((object: Object) => (args: Array) => any) & ((object: Object, args: Array) => any); - invokeArgs(path: Path, object: Object): (args: Array) => any; - invokeArgs(path: Path, object: Object, args: Array): any; - keys(object: { [key: K]: any, ... }): Array; - keys(object: Object): Array; - keysIn(object: Object): Array; - mapKeys(iteratee: OIteratee<*>): (object: Object) => Object; - mapKeys(iteratee: OIteratee<*>, object: Object): Object; - mapValues(iteratee: OIteratee<*>): (object: Object) => Object; - mapValues(iteratee: OIteratee<*>, object: Object): Object; - merge(object: Object): (source: Object) => Object; - merge(object: Object, source: Object): Object; - mergeAll(objects: Array): Object; - mergeWith( - customizer: (objValue: any, srcValue: any, key: string, object: T, source: A | B) => any | void, - ): ((object: T) => (s1: A) => Object) & ((object: T, s1: A) => Object); - mergeWith( - customizer: (objValue: any, srcValue: any, key: string, object: T, source: A | B) => any | void, - object: T, - ): (s1: A) => Object; - mergeWith( - customizer: (objValue: any, srcValue: any, key: string, object: T, source: A | B) => any | void, - object: T, - s1: A, - ): Object; - mergeAllWith( - customizer: (objValue: any, srcValue: any, key: string, object: Object, source: Object) => any | void, - ): (objects: Array) => Object; - mergeAllWith( - customizer: (objValue: any, srcValue: any, key: string, object: Object, source: Object) => any | void, - objects: Array, - ): Object; - omit(props: Array): (object: Object) => Object; - omit(props: Array, object: Object): Object; - omitAll(props: Array): (object: Object) => Object; - omitAll(props: Array, object: Object): Object; - omitBy(predicate: OPredicate): (object: T) => Object; - omitBy(predicate: OPredicate, object: T): Object; - pick(...props: Array): Object; - pick(props: $ReadOnlyArray, object: Object): Object; - pick(...props: Array): (object: Object) => Object; - pick(props: $ReadOnlyArray): (object: Object) => Object; - pickAll(props: Array): (object: Object) => Object; - pickAll(props: Array, object: Object): Object; - pickBy(predicate: OPredicate): (object: T) => Object; - pickBy(predicate: OPredicate, object: T): Object; - result(path: Path): (object: Object) => any; - result(path: Path, object: Object): any; - set(path: Path): ((value: any) => (object: Object) => Object) & ((value: any, object: Object) => Object); - set(path: Path, value: any): (object: Object) => Object; - set(path: Path, value: any, object: Object): Object; - assoc(path: Path): ((value: any) => (object: Object) => Object) & ((value: any, object: Object) => Object); - assoc(path: Path, value: any): (object: Object) => Object; - assoc(path: Path, value: any, object: Object): Object; - assocPath(path: Path): ((value: any) => (object: Object) => Object) & ((value: any, object: Object) => Object); - assocPath(path: Path, value: any): (object: Object) => Object; - assocPath(path: Path, value: any, object: Object): Object; - setWith( - customizer: (nsValue: any, key: string, nsObject: T) => any, - ): ((path: Path) => ((value: any) => (object: T) => Object) & ((value: any, object: T) => Object)) & - ((path: Path, value: any) => (object: T) => Object) & - ((path: Path, value: any, object: T) => Object); - setWith( - customizer: (nsValue: any, key: string, nsObject: T) => any, - path: Path, - ): ((value: any) => (object: T) => Object) & ((value: any, object: T) => Object); - setWith( - customizer: (nsValue: any, key: string, nsObject: T) => any, - path: Path, - value: any, - ): (object: T) => Object; - setWith( - customizer: (nsValue: any, key: string, nsObject: T) => any, - path: Path, - value: any, - object: T, - ): Object; - toPairs(object: Object | Array<*>): Array<[string, any]>; - toPairsIn(object: Object): Array<[string, any]>; - transform( - iteratee: OIteratee<*>, - ): ((accumulator: any) => (collection: Object | $ReadOnlyArray) => any) & - ((accumulator: any, collection: Object | $ReadOnlyArray) => any); - transform(iteratee: OIteratee<*>, accumulator: any): (collection: Object | $ReadOnlyArray) => any; - transform(iteratee: OIteratee<*>, accumulator: any, collection: Object | $ReadOnlyArray): any; - unset(path: Path): (object: Object) => Object; - unset(path: Path, object: Object): Object; - dissoc(path: Path): (object: Object) => Object; - dissoc(path: Path, object: Object): Object; - dissocPath(path: Path): (object: Object) => Object; - dissocPath(path: Path, object: Object): Object; - update( - path: Path, - ): ((updater: Function) => (object: Object) => Object) & ((updater: Function, object: Object) => Object); - update(path: Path, updater: Function): (object: Object) => Object; - update(path: Path, updater: Function, object: Object): Object; - updateWith( - customizer: Function, - ): (( - path: Path, - ) => ((updater: Function) => (object: Object) => Object) & ((updater: Function, object: Object) => Object)) & - ((path: Path, updater: Function) => (object: Object) => Object) & - ((path: Path, updater: Function, object: Object) => Object); - updateWith( - customizer: Function, - path: Path, - ): ((updater: Function) => (object: Object) => Object) & ((updater: Function, object: Object) => Object); - updateWith(customizer: Function, path: Path, updater: Function): (object: Object) => Object; - updateWith(customizer: Function, path: Path, updater: Function, object: Object): Object; - values(object: Object): Array; - valuesIn(object: Object): Array; - - tap(interceptor: (value: T) => any): (value: T) => T; - tap(interceptor: (value: T) => any, value: T): T; - thru(interceptor: (value: T1) => T2): (value: T1) => T2; - thru(interceptor: (value: T1) => T2, value: T1): T2; - - // String - camelCase(string: string): string; - capitalize(string: string): string; - deburr(string: string): string; - endsWith(target: string): (string: string) => boolean; - endsWith(target: string, string: string): boolean; - escape(string: string): string; - escapeRegExp(string: string): string; - kebabCase(string: string): string; - lowerCase(string: string): string; - lowerFirst(string: string): string; - pad(length: number): (string: string) => string; - pad(length: number, string: string): string; - padChars( - chars: string, - ): ((length: number) => (string: string) => string) & ((length: number, string: string) => string); - padChars(chars: string, length: number): (string: string) => string; - padChars(chars: string, length: number, string: string): string; - padEnd(length: number): (string: string) => string; - padEnd(length: number, string: string): string; - padCharsEnd( - chars: string, - ): ((length: number) => (string: string) => string) & ((length: number, string: string) => string); - padCharsEnd(chars: string, length: number): (string: string) => string; - padCharsEnd(chars: string, length: number, string: string): string; - padStart(length: number): (string: string) => string; - padStart(length: number, string: string): string; - padCharsStart( - chars: string, - ): ((length: number) => (string: string) => string) & ((length: number, string: string) => string); - padCharsStart(chars: string, length: number): (string: string) => string; - padCharsStart(chars: string, length: number, string: string): string; - parseInt(radix: number): (string: string) => number; - parseInt(radix: number, string: string): number; - repeat(n: number): (string: string) => string; - repeat(n: number, string: string): string; - replace( - pattern: RegExp | string, - ): ((replacement: ((string: string) => string) | string) => (string: string) => string) & - ((replacement: ((string: string) => string) | string, string: string) => string); - replace( - pattern: RegExp | string, - replacement: ((string: string) => string) | string, - ): (string: string) => string; - replace(pattern: RegExp | string, replacement: ((string: string) => string) | string, string: string): string; - snakeCase(string: string): string; - split(separator: RegExp | string): (string: string) => Array; - split(separator: RegExp | string, string: string): Array; - startCase(string: string): string; - startsWith(target: string): (string: string) => boolean; - startsWith(target: string, string: string): boolean; - template(string: string): Function; - toLower(string: string): string; - toUpper(string: string): string; - trim(string: string): string; - trimChars(chars: string): (string: string) => string; - trimChars(chars: string, string: string): string; - trimEnd(string: string): string; - trimCharsEnd(chars: string): (string: string) => string; - trimCharsEnd(chars: string, string: string): string; - trimStart(string: string): string; - trimCharsStart(chars: string): (string: string) => string; - trimCharsStart(chars: string, string: string): string; - truncate(options: TruncateOptions): (string: string) => string; - truncate(options: TruncateOptions, string: string): string; - unescape(string: string): string; - upperCase(string: string): string; - upperFirst(string: string): string; - words(string: string): Array; - - // Util - attempt(func: Function): any; - bindAll(methodNames: Array): (object: Object) => Object; - bindAll(methodNames: Array, object: Object): Object; - cond(pairs: NestedArray): Function; - constant(value: T): () => T; - always(value: T): () => T; - defaultTo(defaultValue: T2): (value: T1) => T2; - defaultTo(defaultValue: T2, value: T1): T2; - defaultTo(defaultValue: T2): (value: T1) => T1; - defaultTo(defaultValue: T2, value: T1): T1; - // NaN is a number instead of its own type, otherwise it would behave like null/void - defaultTo(defaultValue: T2): (value: T1) => T1 | T2; - defaultTo(defaultValue: T2, value: T1): T1 | T2; - flow: $ComposeReverse & ((funcs: Array) => Function); - pipe: $ComposeReverse & ((funcs: Array) => Function); - flowRight: $Compose & ((funcs: Array) => Function); - compose: $Compose & ((funcs: Array) => Function); - compose(funcs: Array): Function; - identity(value: T): T; - iteratee(func: any): Function; - matches(source: Object): (object: Object) => boolean; - matches(source: Object, object: Object): boolean; - matchesProperty(path: Path): (srcValue: any) => Function; - matchesProperty(path: Path, srcValue: any): Function; - propEq(path: Path): (srcValue: any) => Function; - propEq(path: Path, srcValue: any): Function; - pathEq(path: Path): (srcValue: any) => Function; - pathEq(path: Path, srcValue: any): Function; - method(path: Path): Function; - methodOf(object: Object): Function; - mixin( - object: T, - ): ((source: Object) => (options: { chain: boolean, ... }) => T) & - ((source: Object, options: { chain: boolean, ... }) => T); - mixin(object: T, source: Object): (options: { chain: boolean, ... }) => T; - mixin(object: T, source: Object, options: { chain: boolean, ... }): T; - noConflict(): Lodash; - noop(...args: Array): void; - nthArg(n: number): Function; - over(iteratees: Array): Function; - juxt(iteratees: Array): Function; - overEvery(predicates: Array): Function; - allPass(predicates: Array): Function; - overSome(predicates: Array): Function; - anyPass(predicates: Array): Function; - property(path: Path): (object: Object | Array) => any; - property(path: Path, object: Object | Array): any; - propertyOf(object: Object): (path: Path) => Function; - propertyOf(object: Object, path: Path): Function; - range(start: number): (end: number) => Array; - range(start: number, end: number): Array; - rangeStep( - step: number, - ): ((start: number) => (end: number) => Array) & ((start: number, end: number) => Array); - rangeStep(step: number, start: number): (end: number) => Array; - rangeStep(step: number, start: number, end: number): Array; - rangeRight(start: number): (end: number) => Array; - rangeRight(start: number, end: number): Array; - rangeStepRight( - step: number, - ): ((start: number) => (end: number) => Array) & ((start: number, end: number) => Array); - rangeStepRight(step: number, start: number): (end: number) => Array; - rangeStepRight(step: number, start: number, end: number): Array; - runInContext(context: Object): Function; - - stubArray(): Array<*>; - stubFalse(): false; - F(): false; - stubObject(): { ... }; - stubString(): ''; - stubTrue(): true; - T(): true; - times(iteratee: (i: number) => T): (n: number) => Array; - times(iteratee: (i: number) => T, n: number): Array; - toPath(value: any): Array; - uniqueId(prefix: string): string; - - __: any; - placeholder: any; - - convert(options: { - cap?: boolean, - curry?: boolean, - fixed?: boolean, - immutable?: boolean, - rearg?: boolean, - ... - }): void; - - // Properties - VERSION: string; - templateSettings: TemplateSettings; - } - - declare module.exports: Lodash; -} - -declare module 'lodash/chunk' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'chunk'>; -} - -declare module 'lodash/compact' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'compact'>; -} - -declare module 'lodash/concat' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'concat'>; -} - -declare module 'lodash/difference' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'difference'>; -} - -declare module 'lodash/differenceBy' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'differenceBy'>; -} - -declare module 'lodash/differenceWith' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'differenceWith'>; -} - -declare module 'lodash/drop' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'drop'>; -} - -declare module 'lodash/dropRight' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'dropRight'>; -} - -declare module 'lodash/dropRightWhile' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'dropRightWhile'>; -} - -declare module 'lodash/dropWhile' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'dropWhile'>; -} - -declare module 'lodash/fill' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'fill'>; -} - -declare module 'lodash/findIndex' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'findIndex'>; -} - -declare module 'lodash/findLastIndex' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'findLastIndex'>; -} - -declare module 'lodash/first' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'first'>; -} - -declare module 'lodash/flatten' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'flatten'>; -} - -declare module 'lodash/flattenDeep' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'flattenDeep'>; -} - -declare module 'lodash/flattenDepth' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'flattenDepth'>; -} - -declare module 'lodash/fromPairs' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'fromPairs'>; -} - -declare module 'lodash/head' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'head'>; -} - -declare module 'lodash/indexOf' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'indexOf'>; -} - -declare module 'lodash/initial' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'initial'>; -} - -declare module 'lodash/intersection' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'intersection'>; -} - -declare module 'lodash/intersectionBy' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'intersectionBy'>; -} - -declare module 'lodash/intersectionWith' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'intersectionWith'>; -} - -declare module 'lodash/join' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'join'>; -} - -declare module 'lodash/last' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'last'>; -} - -declare module 'lodash/lastIndexOf' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'lastIndexOf'>; -} - -declare module 'lodash/nth' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'nth'>; -} - -declare module 'lodash/pull' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'pull'>; -} - -declare module 'lodash/pullAll' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'pullAll'>; -} - -declare module 'lodash/pullAllBy' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'pullAllBy'>; -} - -declare module 'lodash/pullAllWith' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'pullAllWith'>; -} - -declare module 'lodash/pullAt' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'pullAt'>; -} - -declare module 'lodash/remove' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'remove'>; -} - -declare module 'lodash/reverse' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'reverse'>; -} - -declare module 'lodash/slice' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'slice'>; -} - -declare module 'lodash/sortedIndex' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'sortedIndex'>; -} - -declare module 'lodash/sortedIndexBy' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'sortedIndexBy'>; -} - -declare module 'lodash/sortedIndexOf' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'sortedIndexOf'>; -} - -declare module 'lodash/sortedLastIndex' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'sortedLastIndex'>; -} - -declare module 'lodash/sortedLastIndexBy' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'sortedLastIndexBy'>; -} - -declare module 'lodash/sortedLastIndexOf' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'sortedLastIndexOf'>; -} - -declare module 'lodash/sortedUniq' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'sortedUniq'>; -} - -declare module 'lodash/sortedUniqBy' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'sortedUniqBy'>; -} - -declare module 'lodash/tail' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'tail'>; -} - -declare module 'lodash/take' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'take'>; -} - -declare module 'lodash/takeRight' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'takeRight'>; -} - -declare module 'lodash/takeRightWhile' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'takeRightWhile'>; -} - -declare module 'lodash/takeWhile' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'takeWhile'>; -} - -declare module 'lodash/union' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'union'>; -} - -declare module 'lodash/unionBy' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'unionBy'>; -} - -declare module 'lodash/unionWith' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'unionWith'>; -} - -declare module 'lodash/uniq' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'uniq'>; -} - -declare module 'lodash/uniqBy' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'uniqBy'>; -} - -declare module 'lodash/uniqWith' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'uniqWith'>; -} - -declare module 'lodash/unzip' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'unzip'>; -} - -declare module 'lodash/unzipWith' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'unzipWith'>; -} - -declare module 'lodash/without' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'without'>; -} - -declare module 'lodash/xor' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'xor'>; -} - -declare module 'lodash/xorBy' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'xorBy'>; -} - -declare module 'lodash/xorWith' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'xorWith'>; -} - -declare module 'lodash/zip' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'zip'>; -} - -declare module 'lodash/zipObject' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'zipObject'>; -} - -declare module 'lodash/zipObjectDeep' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'zipObjectDeep'>; -} - -declare module 'lodash/zipWith' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'zipWith'>; -} - -declare module 'lodash/countBy' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'countBy'>; -} - -declare module 'lodash/each' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'each'>; -} - -declare module 'lodash/eachRight' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'eachRight'>; -} - -declare module 'lodash/every' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'every'>; -} - -declare module 'lodash/filter' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'filter'>; -} - -declare module 'lodash/find' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'find'>; -} - -declare module 'lodash/findLast' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'findLast'>; -} - -declare module 'lodash/flatMap' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'flatMap'>; -} - -declare module 'lodash/flatMapDeep' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'flatMapDeep'>; -} - -declare module 'lodash/flatMapDepth' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'flatMapDepth'>; -} - -declare module 'lodash/forEach' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'forEach'>; -} - -declare module 'lodash/forEachRight' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'forEachRight'>; -} - -declare module 'lodash/groupBy' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'groupBy'>; -} - -declare module 'lodash/includes' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'includes'>; -} - -declare module 'lodash/invokeMap' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'invokeMap'>; -} - -declare module 'lodash/keyBy' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'keyBy'>; -} - -declare module 'lodash/map' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'map'>; -} - -declare module 'lodash/orderBy' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'orderBy'>; -} - -declare module 'lodash/partition' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'partition'>; -} - -declare module 'lodash/reduce' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'reduce'>; -} - -declare module 'lodash/reduceRight' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'reduceRight'>; -} - -declare module 'lodash/reject' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'reject'>; -} - -declare module 'lodash/sample' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'sample'>; -} - -declare module 'lodash/sampleSize' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'sampleSize'>; -} - -declare module 'lodash/shuffle' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'shuffle'>; -} - -declare module 'lodash/size' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'size'>; -} - -declare module 'lodash/some' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'some'>; -} - -declare module 'lodash/sortBy' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'sortBy'>; -} - -declare module 'lodash/now' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'now'>; -} - -declare module 'lodash/after' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'after'>; -} - -declare module 'lodash/ary' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'ary'>; -} - -declare module 'lodash/before' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'before'>; -} - -declare module 'lodash/bind' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'bind'>; -} - -declare module 'lodash/bindKey' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'bindKey'>; -} - -declare module 'lodash/curry' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'curry'>; -} - -declare module 'lodash/curryRight' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'curryRight'>; -} - -declare module 'lodash/debounce' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'debounce'>; -} - -declare module 'lodash/defer' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'defer'>; -} - -declare module 'lodash/delay' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'delay'>; -} - -declare module 'lodash/flip' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'flip'>; -} - -declare module 'lodash/memoize' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'memoize'>; -} - -declare module 'lodash/negate' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'negate'>; -} - -declare module 'lodash/once' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'once'>; -} - -declare module 'lodash/overArgs' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'overArgs'>; -} - -declare module 'lodash/partial' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'partial'>; -} - -declare module 'lodash/partialRight' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'partialRight'>; -} - -declare module 'lodash/rearg' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'rearg'>; -} - -declare module 'lodash/rest' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'rest'>; -} - -declare module 'lodash/spread' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'spread'>; -} - -declare module 'lodash/throttle' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'throttle'>; -} - -declare module 'lodash/unary' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'unary'>; -} - -declare module 'lodash/wrap' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'wrap'>; -} - -declare module 'lodash/castArray' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'castArray'>; -} - -declare module 'lodash/clone' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'clone'>; -} - -declare module 'lodash/cloneDeep' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'cloneDeep'>; -} - -declare module 'lodash/cloneDeepWith' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'cloneDeepWith'>; -} - -declare module 'lodash/cloneWith' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'cloneWith'>; -} - -declare module 'lodash/conformsTo' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'conformsTo'>; -} - -declare module 'lodash/eq' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'eq'>; -} - -declare module 'lodash/gt' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'gt'>; -} - -declare module 'lodash/gte' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'gte'>; -} - -declare module 'lodash/isArguments' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isArguments'>; -} - -declare module 'lodash/isArray' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isArray'>; -} - -declare module 'lodash/isArrayBuffer' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isArrayBuffer'>; -} - -declare module 'lodash/isArrayLike' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isArrayLike'>; -} - -declare module 'lodash/isArrayLikeObject' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isArrayLikeObject'>; -} - -declare module 'lodash/isBoolean' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isBoolean'>; -} - -declare module 'lodash/isBuffer' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isBuffer'>; -} - -declare module 'lodash/isDate' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isDate'>; -} - -declare module 'lodash/isElement' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isElement'>; -} - -declare module 'lodash/isEmpty' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isEmpty'>; -} - -declare module 'lodash/isEqual' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isEqual'>; -} - -declare module 'lodash/isEqualWith' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isEqualWith'>; -} - -declare module 'lodash/isError' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isError'>; -} - -declare module 'lodash/isFinite' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isFinite'>; -} - -declare module 'lodash/isFunction' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isFunction'>; -} - -declare module 'lodash/isInteger' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isInteger'>; -} - -declare module 'lodash/isLength' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isLength'>; -} - -declare module 'lodash/isMap' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isMap'>; -} - -declare module 'lodash/isMatch' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isMatch'>; -} - -declare module 'lodash/isMatchWith' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isMatchWith'>; -} - -declare module 'lodash/isNaN' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isNaN'>; -} - -declare module 'lodash/isNative' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isNative'>; -} - -declare module 'lodash/isNil' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isNil'>; -} - -declare module 'lodash/isNull' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isNull'>; -} - -declare module 'lodash/isNumber' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isNumber'>; -} - -declare module 'lodash/isObject' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isObject'>; -} - -declare module 'lodash/isObjectLike' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isObjectLike'>; -} - -declare module 'lodash/isPlainObject' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isPlainObject'>; -} - -declare module 'lodash/isRegExp' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isRegExp'>; -} - -declare module 'lodash/isSafeInteger' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isSafeInteger'>; -} - -declare module 'lodash/isSet' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isSet'>; -} - -declare module 'lodash/isString' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isString'>; -} - -declare module 'lodash/isSymbol' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isSymbol'>; -} - -declare module 'lodash/isTypedArray' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isTypedArray'>; -} - -declare module 'lodash/isUndefined' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isUndefined'>; -} - -declare module 'lodash/isWeakMap' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isWeakMap'>; -} - -declare module 'lodash/isWeakSet' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'isWeakSet'>; -} - -declare module 'lodash/lt' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'lt'>; -} - -declare module 'lodash/lte' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'lte'>; -} - -declare module 'lodash/toArray' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'toArray'>; -} - -declare module 'lodash/toFinite' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'toFinite'>; -} - -declare module 'lodash/toInteger' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'toInteger'>; -} - -declare module 'lodash/toLength' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'toLength'>; -} - -declare module 'lodash/toNumber' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'toNumber'>; -} - -declare module 'lodash/toPlainObject' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'toPlainObject'>; -} - -declare module 'lodash/toSafeInteger' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'toSafeInteger'>; -} - -declare module 'lodash/toString' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'toString'>; -} - -declare module 'lodash/add' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'add'>; -} - -declare module 'lodash/ceil' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'ceil'>; -} - -declare module 'lodash/divide' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'divide'>; -} - -declare module 'lodash/floor' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'floor'>; -} - -declare module 'lodash/max' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'max'>; -} - -declare module 'lodash/maxBy' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'maxBy'>; -} - -declare module 'lodash/mean' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'mean'>; -} - -declare module 'lodash/meanBy' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'meanBy'>; -} - -declare module 'lodash/min' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'min'>; -} - -declare module 'lodash/minBy' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'minBy'>; -} - -declare module 'lodash/multiply' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'multiply'>; -} - -declare module 'lodash/round' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'round'>; -} - -declare module 'lodash/subtract' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'subtract'>; -} - -declare module 'lodash/sum' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'sum'>; -} - -declare module 'lodash/sumBy' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'sumBy'>; -} - -declare module 'lodash/clamp' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'clamp'>; -} - -declare module 'lodash/inRange' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'inRange'>; -} - -declare module 'lodash/random' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'random'>; -} - -declare module 'lodash/assign' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'assign'>; -} - -declare module 'lodash/assignIn' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'assignIn'>; -} - -declare module 'lodash/assignInWith' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'assignInWith'>; -} - -declare module 'lodash/assignWith' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'assignWith'>; -} - -declare module 'lodash/at' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'at'>; -} - -declare module 'lodash/create' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'create'>; -} - -declare module 'lodash/defaults' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'defaults'>; -} - -declare module 'lodash/defaultsDeep' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'defaultsDeep'>; -} - -declare module 'lodash/entries' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'entries'>; -} - -declare module 'lodash/entriesIn' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'entriesIn'>; -} - -declare module 'lodash/extend' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'extend'>; -} - -declare module 'lodash/extendWith' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'extendWith'>; -} - -declare module 'lodash/findKey' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'findKey'>; -} - -declare module 'lodash/findLastKey' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'findLastKey'>; -} - -declare module 'lodash/forIn' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'forIn'>; -} - -declare module 'lodash/forInRight' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'forInRight'>; -} - -declare module 'lodash/forOwn' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'forOwn'>; -} - -declare module 'lodash/forOwnRight' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'forOwnRight'>; -} - -declare module 'lodash/functions' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'functions'>; -} - -declare module 'lodash/functionsIn' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'functionsIn'>; -} - -declare module 'lodash/get' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'get'>; -} - -declare module 'lodash/has' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'has'>; -} - -declare module 'lodash/hasIn' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'hasIn'>; -} - -declare module 'lodash/invert' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'invert'>; -} - -declare module 'lodash/invertBy' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'invertBy'>; -} - -declare module 'lodash/invoke' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'invoke'>; -} - -declare module 'lodash/keys' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'keys'>; -} - -declare module 'lodash/keysIn' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'keysIn'>; -} - -declare module 'lodash/mapKeys' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'mapKeys'>; -} - -declare module 'lodash/mapValues' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'mapValues'>; -} - -declare module 'lodash/merge' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'merge'>; -} - -declare module 'lodash/mergeWith' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'mergeWith'>; -} - -declare module 'lodash/omit' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'omit'>; -} - -declare module 'lodash/omitBy' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'omitBy'>; -} - -declare module 'lodash/pick' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'pick'>; -} - -declare module 'lodash/pickBy' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'pickBy'>; -} - -declare module 'lodash/result' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'result'>; -} - -declare module 'lodash/set' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'set'>; -} - -declare module 'lodash/setWith' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'setWith'>; -} - -declare module 'lodash/toPairs' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'toPairs'>; -} - -declare module 'lodash/toPairsIn' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'toPairsIn'>; -} - -declare module 'lodash/transform' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'transform'>; -} - -declare module 'lodash/unset' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'unset'>; -} - -declare module 'lodash/update' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'update'>; -} - -declare module 'lodash/updateWith' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'updateWith'>; -} - -declare module 'lodash/values' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'values'>; -} - -declare module 'lodash/valuesIn' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'valuesIn'>; -} - -declare module 'lodash/chain' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'chain'>; -} - -declare module 'lodash/tap' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'tap'>; -} - -declare module 'lodash/thru' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'thru'>; -} - -declare module 'lodash/camelCase' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'camelCase'>; -} - -declare module 'lodash/capitalize' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'capitalize'>; -} - -declare module 'lodash/deburr' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'deburr'>; -} - -declare module 'lodash/endsWith' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'endsWith'>; -} - -declare module 'lodash/escape' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'escape'>; -} - -declare module 'lodash/escapeRegExp' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'escapeRegExp'>; -} - -declare module 'lodash/kebabCase' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'kebabCase'>; -} - -declare module 'lodash/lowerCase' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'lowerCase'>; -} - -declare module 'lodash/lowerFirst' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'lowerFirst'>; -} - -declare module 'lodash/pad' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'pad'>; -} - -declare module 'lodash/padEnd' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'padEnd'>; -} - -declare module 'lodash/padStart' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'padStart'>; -} - -declare module 'lodash/parseInt' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'parseInt'>; -} - -declare module 'lodash/repeat' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'repeat'>; -} - -declare module 'lodash/replace' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'replace'>; -} - -declare module 'lodash/snakeCase' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'snakeCase'>; -} - -declare module 'lodash/split' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'split'>; -} - -declare module 'lodash/startCase' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'startCase'>; -} - -declare module 'lodash/startsWith' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'startsWith'>; -} - -declare module 'lodash/template' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'template'>; -} - -declare module 'lodash/toLower' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'toLower'>; -} - -declare module 'lodash/toUpper' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'toUpper'>; -} - -declare module 'lodash/trim' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'trim'>; -} - -declare module 'lodash/trimEnd' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'trimEnd'>; -} - -declare module 'lodash/trimStart' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'trimStart'>; -} - -declare module 'lodash/truncate' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'truncate'>; -} - -declare module 'lodash/unescape' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'unescape'>; -} - -declare module 'lodash/upperCase' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'upperCase'>; -} - -declare module 'lodash/upperFirst' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'upperFirst'>; -} - -declare module 'lodash/words' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'words'>; -} - -declare module 'lodash/attempt' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'attempt'>; -} - -declare module 'lodash/bindAll' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'bindAll'>; -} - -declare module 'lodash/cond' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'cond'>; -} - -declare module 'lodash/conforms' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'conforms'>; -} - -declare module 'lodash/constant' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'constant'>; -} - -declare module 'lodash/defaultTo' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'defaultTo'>; -} - -declare module 'lodash/flow' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'flow'>; -} - -declare module 'lodash/flowRight' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'flowRight'>; -} - -declare module 'lodash/identity' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'identity'>; -} - -declare module 'lodash/iteratee' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'iteratee'>; -} - -declare module 'lodash/matches' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'matches'>; -} - -declare module 'lodash/matchesProperty' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'matchesProperty'>; -} - -declare module 'lodash/method' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'method'>; -} - -declare module 'lodash/methodOf' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'methodOf'>; -} - -declare module 'lodash/mixin' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'mixin'>; -} - -declare module 'lodash/noConflict' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'noConflict'>; -} - -declare module 'lodash/noop' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'noop'>; -} - -declare module 'lodash/nthArg' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'nthArg'>; -} - -declare module 'lodash/over' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'over'>; -} - -declare module 'lodash/overEvery' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'overEvery'>; -} - -declare module 'lodash/overSome' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'overSome'>; -} - -declare module 'lodash/property' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'property'>; -} - -declare module 'lodash/propertyOf' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'propertyOf'>; -} - -declare module 'lodash/range' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'range'>; -} - -declare module 'lodash/rangeRight' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'rangeRight'>; -} - -declare module 'lodash/runInContext' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'runInContext'>; -} - -declare module 'lodash/stubArray' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'stubArray'>; -} - -declare module 'lodash/stubFalse' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'stubFalse'>; -} - -declare module 'lodash/stubObject' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'stubObject'>; -} - -declare module 'lodash/stubString' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'stubString'>; -} - -declare module 'lodash/stubTrue' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'stubTrue'>; -} - -declare module 'lodash/times' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'times'>; -} - -declare module 'lodash/toPath' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'toPath'>; -} - -declare module 'lodash/uniqueId' { - declare module.exports: $PropertyType<$Exports<'lodash'>, 'uniqueId'>; -} - -declare module 'lodash/fp/chunk' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'chunk'>; -} - -declare module 'lodash/fp/compact' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'compact'>; -} - -declare module 'lodash/fp/concat' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'concat'>; -} - -declare module 'lodash/fp/difference' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'difference'>; -} - -declare module 'lodash/fp/differenceBy' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'differenceBy'>; -} - -declare module 'lodash/fp/differenceWith' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'differenceWith'>; -} - -declare module 'lodash/fp/drop' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'drop'>; -} - -declare module 'lodash/fp/dropLast' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'dropLast'>; -} - -declare module 'lodash/fp/dropRight' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'dropRight'>; -} - -declare module 'lodash/fp/dropRightWhile' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'dropRightWhile'>; -} - -declare module 'lodash/fp/dropWhile' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'dropWhile'>; -} - -declare module 'lodash/fp/dropLastWhile' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'dropLastWhile'>; -} - -declare module 'lodash/fp/fill' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'fill'>; -} - -declare module 'lodash/fp/findIndex' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'findIndex'>; -} - -declare module 'lodash/fp/findIndexFrom' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'findIndexFrom'>; -} - -declare module 'lodash/fp/findLastIndex' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'findLastIndex'>; -} - -declare module 'lodash/fp/findLastIndexFrom' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'findLastIndexFrom'>; -} - -declare module 'lodash/fp/first' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'first'>; -} - -declare module 'lodash/fp/flatten' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'flatten'>; -} - -declare module 'lodash/fp/unnest' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'unnest'>; -} - -declare module 'lodash/fp/flattenDeep' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'flattenDeep'>; -} - -declare module 'lodash/fp/flattenDepth' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'flattenDepth'>; -} - -declare module 'lodash/fp/fromPairs' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'fromPairs'>; -} - -declare module 'lodash/fp/head' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'head'>; -} - -declare module 'lodash/fp/indexOf' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'indexOf'>; -} - -declare module 'lodash/fp/indexOfFrom' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'indexOfFrom'>; -} - -declare module 'lodash/fp/initial' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'initial'>; -} - -declare module 'lodash/fp/init' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'init'>; -} - -declare module 'lodash/fp/intersection' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'intersection'>; -} - -declare module 'lodash/fp/intersectionBy' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'intersectionBy'>; -} - -declare module 'lodash/fp/intersectionWith' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'intersectionWith'>; -} - -declare module 'lodash/fp/join' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'join'>; -} - -declare module 'lodash/fp/last' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'last'>; -} - -declare module 'lodash/fp/lastIndexOf' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'lastIndexOf'>; -} - -declare module 'lodash/fp/lastIndexOfFrom' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'lastIndexOfFrom'>; -} - -declare module 'lodash/fp/nth' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'nth'>; -} - -declare module 'lodash/fp/pull' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'pull'>; -} - -declare module 'lodash/fp/pullAll' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'pullAll'>; -} - -declare module 'lodash/fp/pullAllBy' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'pullAllBy'>; -} - -declare module 'lodash/fp/pullAllWith' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'pullAllWith'>; -} - -declare module 'lodash/fp/pullAt' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'pullAt'>; -} - -declare module 'lodash/fp/remove' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'remove'>; -} - -declare module 'lodash/fp/reverse' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'reverse'>; -} - -declare module 'lodash/fp/slice' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'slice'>; -} - -declare module 'lodash/fp/sortedIndex' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'sortedIndex'>; -} - -declare module 'lodash/fp/sortedIndexBy' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'sortedIndexBy'>; -} - -declare module 'lodash/fp/sortedIndexOf' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'sortedIndexOf'>; -} - -declare module 'lodash/fp/sortedLastIndex' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'sortedLastIndex'>; -} - -declare module 'lodash/fp/sortedLastIndexBy' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'sortedLastIndexBy'>; -} - -declare module 'lodash/fp/sortedLastIndexOf' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'sortedLastIndexOf'>; -} - -declare module 'lodash/fp/sortedUniq' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'sortedUniq'>; -} - -declare module 'lodash/fp/sortedUniqBy' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'sortedUniqBy'>; -} - -declare module 'lodash/fp/tail' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'tail'>; -} - -declare module 'lodash/fp/take' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'take'>; -} - -declare module 'lodash/fp/takeRight' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'takeRight'>; -} - -declare module 'lodash/fp/takeLast' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'takeLast'>; -} - -declare module 'lodash/fp/takeRightWhile' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'takeRightWhile'>; -} - -declare module 'lodash/fp/takeLastWhile' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'takeLastWhile'>; -} - -declare module 'lodash/fp/takeWhile' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'takeWhile'>; -} - -declare module 'lodash/fp/union' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'union'>; -} - -declare module 'lodash/fp/unionBy' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'unionBy'>; -} - -declare module 'lodash/fp/unionWith' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'unionWith'>; -} - -declare module 'lodash/fp/uniq' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'uniq'>; -} - -declare module 'lodash/fp/uniqBy' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'uniqBy'>; -} - -declare module 'lodash/fp/uniqWith' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'uniqWith'>; -} - -declare module 'lodash/fp/unzip' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'unzip'>; -} - -declare module 'lodash/fp/unzipWith' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'unzipWith'>; -} - -declare module 'lodash/fp/without' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'without'>; -} - -declare module 'lodash/fp/xor' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'xor'>; -} - -declare module 'lodash/fp/symmetricDifference' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'symmetricDifference'>; -} - -declare module 'lodash/fp/xorBy' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'xorBy'>; -} - -declare module 'lodash/fp/symmetricDifferenceBy' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'symmetricDifferenceBy'>; -} - -declare module 'lodash/fp/xorWith' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'xorWith'>; -} - -declare module 'lodash/fp/symmetricDifferenceWith' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'symmetricDifferenceWith'>; -} - -declare module 'lodash/fp/zip' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'zip'>; -} - -declare module 'lodash/fp/zipAll' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'zipAll'>; -} - -declare module 'lodash/fp/zipObject' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'zipObject'>; -} - -declare module 'lodash/fp/zipObj' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'zipObj'>; -} - -declare module 'lodash/fp/zipObjectDeep' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'zipObjectDeep'>; -} - -declare module 'lodash/fp/zipWith' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'zipWith'>; -} - -declare module 'lodash/fp/countBy' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'countBy'>; -} - -declare module 'lodash/fp/each' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'each'>; -} - -declare module 'lodash/fp/eachRight' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'eachRight'>; -} - -declare module 'lodash/fp/every' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'every'>; -} - -declare module 'lodash/fp/all' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'all'>; -} - -declare module 'lodash/fp/filter' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'filter'>; -} - -declare module 'lodash/fp/find' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'find'>; -} - -declare module 'lodash/fp/findFrom' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'findFrom'>; -} - -declare module 'lodash/fp/findLast' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'findLast'>; -} - -declare module 'lodash/fp/findLastFrom' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'findLastFrom'>; -} - -declare module 'lodash/fp/flatMap' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'flatMap'>; -} - -declare module 'lodash/fp/flatMapDeep' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'flatMapDeep'>; -} - -declare module 'lodash/fp/flatMapDepth' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'flatMapDepth'>; -} - -declare module 'lodash/fp/forEach' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'forEach'>; -} - -declare module 'lodash/fp/forEachRight' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'forEachRight'>; -} - -declare module 'lodash/fp/groupBy' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'groupBy'>; -} - -declare module 'lodash/fp/includes' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'includes'>; -} - -declare module 'lodash/fp/contains' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'contains'>; -} - -declare module 'lodash/fp/includesFrom' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'includesFrom'>; -} - -declare module 'lodash/fp/invokeMap' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'invokeMap'>; -} - -declare module 'lodash/fp/invokeArgsMap' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'invokeArgsMap'>; -} - -declare module 'lodash/fp/keyBy' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'keyBy'>; -} - -declare module 'lodash/fp/indexBy' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'indexBy'>; -} - -declare module 'lodash/fp/map' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'map'>; -} - -declare module 'lodash/fp/pluck' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'pluck'>; -} - -declare module 'lodash/fp/orderBy' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'orderBy'>; -} - -declare module 'lodash/fp/partition' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'partition'>; -} - -declare module 'lodash/fp/reduce' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'reduce'>; -} - -declare module 'lodash/fp/reduceRight' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'reduceRight'>; -} - -declare module 'lodash/fp/reject' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'reject'>; -} - -declare module 'lodash/fp/sample' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'sample'>; -} - -declare module 'lodash/fp/sampleSize' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'sampleSize'>; -} - -declare module 'lodash/fp/shuffle' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'shuffle'>; -} - -declare module 'lodash/fp/size' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'size'>; -} - -declare module 'lodash/fp/some' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'some'>; -} - -declare module 'lodash/fp/any' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'any'>; -} - -declare module 'lodash/fp/sortBy' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'sortBy'>; -} - -declare module 'lodash/fp/now' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'now'>; -} - -declare module 'lodash/fp/after' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'after'>; -} - -declare module 'lodash/fp/ary' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'ary'>; -} - -declare module 'lodash/fp/nAry' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'nAry'>; -} - -declare module 'lodash/fp/before' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'before'>; -} - -declare module 'lodash/fp/bind' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'bind'>; -} - -declare module 'lodash/fp/bindKey' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'bindKey'>; -} - -declare module 'lodash/fp/curry' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'curry'>; -} - -declare module 'lodash/fp/curryN' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'curryN'>; -} - -declare module 'lodash/fp/curryRight' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'curryRight'>; -} - -declare module 'lodash/fp/curryRightN' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'curryRightN'>; -} - -declare module 'lodash/fp/debounce' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'debounce'>; -} - -declare module 'lodash/fp/defer' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'defer'>; -} - -declare module 'lodash/fp/delay' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'delay'>; -} - -declare module 'lodash/fp/flip' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'flip'>; -} - -declare module 'lodash/fp/memoize' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'memoize'>; -} - -declare module 'lodash/fp/negate' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'negate'>; -} - -declare module 'lodash/fp/complement' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'complement'>; -} - -declare module 'lodash/fp/once' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'once'>; -} - -declare module 'lodash/fp/overArgs' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'overArgs'>; -} - -declare module 'lodash/fp/useWith' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'useWith'>; -} - -declare module 'lodash/fp/partial' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'partial'>; -} - -declare module 'lodash/fp/partialRight' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'partialRight'>; -} - -declare module 'lodash/fp/rearg' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'rearg'>; -} - -declare module 'lodash/fp/rest' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'rest'>; -} - -declare module 'lodash/fp/unapply' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'unapply'>; -} - -declare module 'lodash/fp/restFrom' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'restFrom'>; -} - -declare module 'lodash/fp/spread' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'spread'>; -} - -declare module 'lodash/fp/apply' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'apply'>; -} - -declare module 'lodash/fp/spreadFrom' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'spreadFrom'>; -} - -declare module 'lodash/fp/throttle' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'throttle'>; -} - -declare module 'lodash/fp/unary' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'unary'>; -} - -declare module 'lodash/fp/wrap' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'wrap'>; -} - -declare module 'lodash/fp/castArray' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'castArray'>; -} - -declare module 'lodash/fp/clone' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'clone'>; -} - -declare module 'lodash/fp/cloneDeep' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'cloneDeep'>; -} - -declare module 'lodash/fp/cloneDeepWith' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'cloneDeepWith'>; -} - -declare module 'lodash/fp/cloneWith' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'cloneWith'>; -} - -declare module 'lodash/fp/conformsTo' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'conformsTo'>; -} - -declare module 'lodash/fp/where' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'where'>; -} - -declare module 'lodash/fp/conforms' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'conforms'>; -} - -declare module 'lodash/fp/eq' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'eq'>; -} - -declare module 'lodash/fp/identical' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'identical'>; -} - -declare module 'lodash/fp/gt' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'gt'>; -} - -declare module 'lodash/fp/gte' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'gte'>; -} - -declare module 'lodash/fp/isArguments' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isArguments'>; -} - -declare module 'lodash/fp/isArray' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isArray'>; -} - -declare module 'lodash/fp/isArrayBuffer' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isArrayBuffer'>; -} - -declare module 'lodash/fp/isArrayLike' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isArrayLike'>; -} - -declare module 'lodash/fp/isArrayLikeObject' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isArrayLikeObject'>; -} - -declare module 'lodash/fp/isBoolean' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isBoolean'>; -} - -declare module 'lodash/fp/isBuffer' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isBuffer'>; -} - -declare module 'lodash/fp/isDate' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isDate'>; -} - -declare module 'lodash/fp/isElement' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isElement'>; -} - -declare module 'lodash/fp/isEmpty' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isEmpty'>; -} - -declare module 'lodash/fp/isEqual' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isEqual'>; -} - -declare module 'lodash/fp/equals' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'equals'>; -} - -declare module 'lodash/fp/isEqualWith' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isEqualWith'>; -} - -declare module 'lodash/fp/isError' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isError'>; -} - -declare module 'lodash/fp/isFinite' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isFinite'>; -} - -declare module 'lodash/fp/isFunction' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isFunction'>; -} - -declare module 'lodash/fp/isInteger' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isInteger'>; -} - -declare module 'lodash/fp/isLength' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isLength'>; -} - -declare module 'lodash/fp/isMap' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isMap'>; -} - -declare module 'lodash/fp/isMatch' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isMatch'>; -} - -declare module 'lodash/fp/whereEq' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'whereEq'>; -} - -declare module 'lodash/fp/isMatchWith' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isMatchWith'>; -} - -declare module 'lodash/fp/isNaN' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isNaN'>; -} - -declare module 'lodash/fp/isNative' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isNative'>; -} - -declare module 'lodash/fp/isNil' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isNil'>; -} - -declare module 'lodash/fp/isNull' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isNull'>; -} - -declare module 'lodash/fp/isNumber' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isNumber'>; -} - -declare module 'lodash/fp/isObject' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isObject'>; -} - -declare module 'lodash/fp/isObjectLike' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isObjectLike'>; -} - -declare module 'lodash/fp/isPlainObject' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isPlainObject'>; -} - -declare module 'lodash/fp/isRegExp' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isRegExp'>; -} - -declare module 'lodash/fp/isSafeInteger' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isSafeInteger'>; -} - -declare module 'lodash/fp/isSet' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isSet'>; -} - -declare module 'lodash/fp/isString' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isString'>; -} - -declare module 'lodash/fp/isSymbol' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isSymbol'>; -} - -declare module 'lodash/fp/isTypedArray' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isTypedArray'>; -} - -declare module 'lodash/fp/isUndefined' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isUndefined'>; -} - -declare module 'lodash/fp/isWeakMap' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isWeakMap'>; -} - -declare module 'lodash/fp/isWeakSet' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'isWeakSet'>; -} - -declare module 'lodash/fp/lt' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'lt'>; -} - -declare module 'lodash/fp/lte' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'lte'>; -} - -declare module 'lodash/fp/toArray' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'toArray'>; -} - -declare module 'lodash/fp/toFinite' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'toFinite'>; -} - -declare module 'lodash/fp/toInteger' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'toInteger'>; -} - -declare module 'lodash/fp/toLength' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'toLength'>; -} - -declare module 'lodash/fp/toNumber' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'toNumber'>; -} - -declare module 'lodash/fp/toPlainObject' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'toPlainObject'>; -} - -declare module 'lodash/fp/toSafeInteger' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'toSafeInteger'>; -} - -declare module 'lodash/fp/toString' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'toString'>; -} - -declare module 'lodash/fp/add' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'add'>; -} - -declare module 'lodash/fp/ceil' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'ceil'>; -} - -declare module 'lodash/fp/divide' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'divide'>; -} - -declare module 'lodash/fp/floor' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'floor'>; -} - -declare module 'lodash/fp/max' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'max'>; -} - -declare module 'lodash/fp/maxBy' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'maxBy'>; -} - -declare module 'lodash/fp/mean' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'mean'>; -} - -declare module 'lodash/fp/meanBy' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'meanBy'>; -} - -declare module 'lodash/fp/min' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'min'>; -} - -declare module 'lodash/fp/minBy' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'minBy'>; -} - -declare module 'lodash/fp/multiply' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'multiply'>; -} - -declare module 'lodash/fp/round' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'round'>; -} - -declare module 'lodash/fp/subtract' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'subtract'>; -} - -declare module 'lodash/fp/sum' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'sum'>; -} - -declare module 'lodash/fp/sumBy' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'sumBy'>; -} - -declare module 'lodash/fp/clamp' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'clamp'>; -} - -declare module 'lodash/fp/inRange' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'inRange'>; -} - -declare module 'lodash/fp/random' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'random'>; -} - -declare module 'lodash/fp/assign' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'assign'>; -} - -declare module 'lodash/fp/assignAll' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'assignAll'>; -} - -declare module 'lodash/fp/assignInAll' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'assignInAll'>; -} - -declare module 'lodash/fp/extendAll' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'extendAll'>; -} - -declare module 'lodash/fp/assignIn' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'assignIn'>; -} - -declare module 'lodash/fp/assignInWith' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'assignInWith'>; -} - -declare module 'lodash/fp/assignWith' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'assignWith'>; -} - -declare module 'lodash/fp/assignInAllWith' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'assignInAllWith'>; -} - -declare module 'lodash/fp/extendAllWith' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'extendAllWith'>; -} - -declare module 'lodash/fp/assignAllWith' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'assignAllWith'>; -} - -declare module 'lodash/fp/at' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'at'>; -} - -declare module 'lodash/fp/props' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'props'>; -} - -declare module 'lodash/fp/paths' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'paths'>; -} - -declare module 'lodash/fp/create' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'create'>; -} - -declare module 'lodash/fp/defaults' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'defaults'>; -} - -declare module 'lodash/fp/defaultsAll' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'defaultsAll'>; -} - -declare module 'lodash/fp/defaultsDeep' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'defaultsDeep'>; -} - -declare module 'lodash/fp/defaultsDeepAll' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'defaultsDeepAll'>; -} - -declare module 'lodash/fp/entries' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'entries'>; -} - -declare module 'lodash/fp/entriesIn' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'entriesIn'>; -} - -declare module 'lodash/fp/extend' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'extend'>; -} - -declare module 'lodash/fp/extendWith' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'extendWith'>; -} - -declare module 'lodash/fp/findKey' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'findKey'>; -} - -declare module 'lodash/fp/findLastKey' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'findLastKey'>; -} - -declare module 'lodash/fp/forIn' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'forIn'>; -} - -declare module 'lodash/fp/forInRight' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'forInRight'>; -} - -declare module 'lodash/fp/forOwn' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'forOwn'>; -} - -declare module 'lodash/fp/forOwnRight' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'forOwnRight'>; -} - -declare module 'lodash/fp/functions' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'functions'>; -} - -declare module 'lodash/fp/functionsIn' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'functionsIn'>; -} - -declare module 'lodash/fp/get' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'get'>; -} - -declare module 'lodash/fp/prop' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'prop'>; -} - -declare module 'lodash/fp/path' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'path'>; -} - -declare module 'lodash/fp/getOr' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'getOr'>; -} - -declare module 'lodash/fp/propOr' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'propOr'>; -} - -declare module 'lodash/fp/pathOr' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'pathOr'>; -} - -declare module 'lodash/fp/has' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'has'>; -} - -declare module 'lodash/fp/hasIn' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'hasIn'>; -} - -declare module 'lodash/fp/invert' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'invert'>; -} - -declare module 'lodash/fp/invertObj' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'invertObj'>; -} - -declare module 'lodash/fp/invertBy' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'invertBy'>; -} - -declare module 'lodash/fp/invoke' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'invoke'>; -} - -declare module 'lodash/fp/invokeArgs' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'invokeArgs'>; -} - -declare module 'lodash/fp/keys' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'keys'>; -} - -declare module 'lodash/fp/keysIn' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'keysIn'>; -} - -declare module 'lodash/fp/mapKeys' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'mapKeys'>; -} - -declare module 'lodash/fp/mapValues' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'mapValues'>; -} - -declare module 'lodash/fp/merge' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'merge'>; -} - -declare module 'lodash/fp/mergeAll' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'mergeAll'>; -} - -declare module 'lodash/fp/mergeWith' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'mergeWith'>; -} - -declare module 'lodash/fp/mergeAllWith' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'mergeAllWith'>; -} - -declare module 'lodash/fp/omit' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'omit'>; -} - -declare module 'lodash/fp/omitAll' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'omitAll'>; -} - -declare module 'lodash/fp/omitBy' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'omitBy'>; -} - -declare module 'lodash/fp/pick' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'pick'>; -} - -declare module 'lodash/fp/pickAll' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'pickAll'>; -} - -declare module 'lodash/fp/pickBy' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'pickBy'>; -} - -declare module 'lodash/fp/result' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'result'>; -} - -declare module 'lodash/fp/set' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'set'>; -} - -declare module 'lodash/fp/assoc' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'assoc'>; -} - -declare module 'lodash/fp/assocPath' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'assocPath'>; -} - -declare module 'lodash/fp/setWith' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'setWith'>; -} - -declare module 'lodash/fp/toPairs' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'toPairs'>; -} - -declare module 'lodash/fp/toPairsIn' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'toPairsIn'>; -} - -declare module 'lodash/fp/transform' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'transform'>; -} - -declare module 'lodash/fp/unset' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'unset'>; -} - -declare module 'lodash/fp/dissoc' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'dissoc'>; -} - -declare module 'lodash/fp/dissocPath' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'dissocPath'>; -} - -declare module 'lodash/fp/update' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'update'>; -} - -declare module 'lodash/fp/updateWith' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'updateWith'>; -} - -declare module 'lodash/fp/values' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'values'>; -} - -declare module 'lodash/fp/valuesIn' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'valuesIn'>; -} - -declare module 'lodash/fp/tap' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'tap'>; -} - -declare module 'lodash/fp/thru' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'thru'>; -} - -declare module 'lodash/fp/camelCase' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'camelCase'>; -} - -declare module 'lodash/fp/capitalize' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'capitalize'>; -} - -declare module 'lodash/fp/deburr' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'deburr'>; -} - -declare module 'lodash/fp/endsWith' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'endsWith'>; -} - -declare module 'lodash/fp/escape' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'escape'>; -} - -declare module 'lodash/fp/escapeRegExp' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'escapeRegExp'>; -} - -declare module 'lodash/fp/kebabCase' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'kebabCase'>; -} - -declare module 'lodash/fp/lowerCase' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'lowerCase'>; -} - -declare module 'lodash/fp/lowerFirst' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'lowerFirst'>; -} - -declare module 'lodash/fp/pad' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'pad'>; -} - -declare module 'lodash/fp/padChars' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'padChars'>; -} - -declare module 'lodash/fp/padEnd' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'padEnd'>; -} - -declare module 'lodash/fp/padCharsEnd' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'padCharsEnd'>; -} - -declare module 'lodash/fp/padStart' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'padStart'>; -} - -declare module 'lodash/fp/padCharsStart' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'padCharsStart'>; -} - -declare module 'lodash/fp/parseInt' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'parseInt'>; -} - -declare module 'lodash/fp/repeat' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'repeat'>; -} - -declare module 'lodash/fp/replace' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'replace'>; -} - -declare module 'lodash/fp/snakeCase' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'snakeCase'>; -} - -declare module 'lodash/fp/split' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'split'>; -} - -declare module 'lodash/fp/startCase' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'startCase'>; -} - -declare module 'lodash/fp/startsWith' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'startsWith'>; -} - -declare module 'lodash/fp/template' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'template'>; -} - -declare module 'lodash/fp/toLower' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'toLower'>; -} - -declare module 'lodash/fp/toUpper' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'toUpper'>; -} - -declare module 'lodash/fp/trim' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'trim'>; -} - -declare module 'lodash/fp/trimChars' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'trimChars'>; -} - -declare module 'lodash/fp/trimEnd' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'trimEnd'>; -} - -declare module 'lodash/fp/trimCharsEnd' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'trimCharsEnd'>; -} - -declare module 'lodash/fp/trimStart' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'trimStart'>; -} - -declare module 'lodash/fp/trimCharsStart' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'trimCharsStart'>; -} - -declare module 'lodash/fp/truncate' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'truncate'>; -} - -declare module 'lodash/fp/unescape' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'unescape'>; -} - -declare module 'lodash/fp/upperCase' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'upperCase'>; -} - -declare module 'lodash/fp/upperFirst' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'upperFirst'>; -} - -declare module 'lodash/fp/words' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'words'>; -} - -declare module 'lodash/fp/attempt' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'attempt'>; -} - -declare module 'lodash/fp/bindAll' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'bindAll'>; -} - -declare module 'lodash/fp/cond' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'cond'>; -} - -declare module 'lodash/fp/constant' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'constant'>; -} - -declare module 'lodash/fp/always' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'always'>; -} - -declare module 'lodash/fp/defaultTo' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'defaultTo'>; -} - -declare module 'lodash/fp/flow' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'flow'>; -} - -declare module 'lodash/fp/pipe' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'pipe'>; -} - -declare module 'lodash/fp/flowRight' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'flowRight'>; -} - -declare module 'lodash/fp/compose' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'compose'>; -} - -declare module 'lodash/fp/identity' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'identity'>; -} - -declare module 'lodash/fp/iteratee' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'iteratee'>; -} - -declare module 'lodash/fp/matches' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'matches'>; -} - -declare module 'lodash/fp/matchesProperty' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'matchesProperty'>; -} - -declare module 'lodash/fp/propEq' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'propEq'>; -} - -declare module 'lodash/fp/pathEq' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'pathEq'>; -} - -declare module 'lodash/fp/method' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'method'>; -} - -declare module 'lodash/fp/methodOf' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'methodOf'>; -} - -declare module 'lodash/fp/mixin' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'mixin'>; -} - -declare module 'lodash/fp/noConflict' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'noConflict'>; -} - -declare module 'lodash/fp/noop' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'noop'>; -} - -declare module 'lodash/fp/nthArg' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'nthArg'>; -} - -declare module 'lodash/fp/over' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'over'>; -} - -declare module 'lodash/fp/juxt' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'juxt'>; -} - -declare module 'lodash/fp/overEvery' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'overEvery'>; -} - -declare module 'lodash/fp/allPass' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'allPass'>; -} - -declare module 'lodash/fp/overSome' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'overSome'>; -} - -declare module 'lodash/fp/anyPass' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'anyPass'>; -} - -declare module 'lodash/fp/property' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'property'>; -} - -declare module 'lodash/fp/propertyOf' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'propertyOf'>; -} - -declare module 'lodash/fp/range' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'range'>; -} - -declare module 'lodash/fp/rangeStep' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'rangeStep'>; -} - -declare module 'lodash/fp/rangeRight' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'rangeRight'>; -} - -declare module 'lodash/fp/rangeStepRight' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'rangeStepRight'>; -} - -declare module 'lodash/fp/runInContext' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'runInContext'>; -} - -declare module 'lodash/fp/stubArray' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'stubArray'>; -} - -declare module 'lodash/fp/stubFalse' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'stubFalse'>; -} - -declare module 'lodash/fp/F' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'F'>; -} - -declare module 'lodash/fp/stubObject' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'stubObject'>; -} - -declare module 'lodash/fp/stubString' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'stubString'>; -} - -declare module 'lodash/fp/stubTrue' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'stubTrue'>; -} - -declare module 'lodash/fp/T' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'T'>; -} - -declare module 'lodash/fp/times' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'times'>; -} - -declare module 'lodash/fp/toPath' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'toPath'>; -} - -declare module 'lodash/fp/uniqueId' { - declare module.exports: $PropertyType<$Exports<'lodash/fp'>, 'uniqueId'>; -} diff --git a/examples/swapi/flow-typed/npm/node-fetch_v2.x.x.js b/examples/swapi/flow-typed/npm/node-fetch_v2.x.x.js deleted file mode 100644 index 8183fbe..0000000 --- a/examples/swapi/flow-typed/npm/node-fetch_v2.x.x.js +++ /dev/null @@ -1,128 +0,0 @@ -// flow-typed signature: 5a2f666ede42baf329fb635bee78d89e -// flow-typed version: c6154227d1/node-fetch_v2.x.x/flow_>=v0.104.x - -declare module 'node-fetch' { - import type http from 'http'; - import type https from 'https'; - - declare export class Request mixins Body { - constructor(input: string | { href: string, ... } | Request, init?: RequestInit): this; - context: RequestContext; - headers: Headers; - method: string; - redirect: RequestRedirect; - referrer: string; - url: string; - - // node-fetch extensions - agent: http.Agent | https.Agent; - compress: boolean; - counter: number; - follow: number; - hostname: string; - port: number; - protocol: string; - size: number; - timeout: number; - } - - declare type HeaderObject = { [index: string]: string, ... }; - - declare interface RequestInit { - body?: BodyInit; - headers?: HeaderObject; - method?: string; - redirect?: RequestRedirect; - - // node-fetch extensions - agent?: http.Agent | https.Agent; - compress?: boolean; - follow?: number; - size?: number; - timeout?: number; - } - - declare type RequestContext = - | 'audio' - | 'beacon' - | 'cspreport' - | 'download' - | 'embed' - | 'eventsource' - | 'favicon' - | 'fetch' - | 'font' - | 'form' - | 'frame' - | 'hyperlink' - | 'iframe' - | 'image' - | 'imageset' - | 'import' - | 'internal' - | 'location' - | 'manifest' - | 'object' - | 'ping' - | 'plugin' - | 'prefetch' - | 'script' - | 'serviceworker' - | 'sharedworker' - | 'subresource' - | 'style' - | 'track' - | 'video' - | 'worker' - | 'xmlhttprequest' - | 'xslt'; - declare type RequestRedirect = 'error' | 'follow' | 'manual'; - - declare export class Headers { - append(name: string, value: string): void; - delete(name: string): void; - forEach(callback: (value: string, name: string) => void): void; - get(name: string): string; - getAll(name: string): Array; - has(name: string): boolean; - raw(): { [k: string]: string[], ... }; - set(name: string, value: string): void; - } - - declare export class Body { - buffer(): Promise; - json(): Promise; - json(): Promise; - text(): Promise; - body: stream$Readable; - bodyUsed: boolean; - } - - declare export class Response mixins Body { - constructor(body?: BodyInit, init?: ResponseInit): this; - clone(): Response; - error(): Response; - redirect(url: string, status: number): Response; - headers: Headers; - ok: boolean; - status: number; - statusText: string; - size: number; - timeout: number; - type: ResponseType; - url: string; - } - - declare type ResponseType = 'basic' | 'cors' | 'default' | 'error' | 'opaque' | 'opaqueredirect'; - - declare interface ResponseInit { - headers?: HeaderInit; - status: number; - statusText?: string; - } - - declare type HeaderInit = Headers | Array; - declare type BodyInit = string; - - declare export default function fetch(url: string | Request, init?: RequestInit): Promise; -} diff --git a/examples/swapi/package.json b/examples/swapi/package.json index 15dedda..75637d1 100644 --- a/examples/swapi/package.json +++ b/examples/swapi/package.json @@ -2,16 +2,14 @@ "devDependencies": { "@babel/cli": "^7.8.4", "@babel/node": "^7.7.0", - "@babel/preset-flow": "^7.0.0", - "flow-bin": "0.123.0", - "flow-typed": "^2.6.2" + "@types/node-fetch": "^3.0.3" }, "dependencies": { "dataloader": "^2.0.0", "graphql": "15.0.0", - "node-fetch": "^2.6.0" + "node-fetch": "^3.0.3" }, "engines": { - "node": ">=10" + "node": ">=22" } } diff --git a/examples/swapi/swapi-loaders.js b/examples/swapi/swapi-loaders.ts similarity index 82% rename from examples/swapi/swapi-loaders.js rename to examples/swapi/swapi-loaders.ts index 85e475b..cbdb4ba 100644 --- a/examples/swapi/swapi-loaders.js +++ b/examples/swapi/swapi-loaders.ts @@ -1,5 +1,3 @@ -// @flow strict-local - /** * !!! THIS FILE IS AUTO-GENERATED. CHANGES MAY BE OVERWRITTEN !!! */ @@ -34,21 +32,23 @@ import type { SWAPIClientlibTypes } from './swapi'; * =============================== */ -// https://github.com/facebook/flow/issues/7709#issuecomment-530501257 -type ExtractArg = ([(Arg) => Ret]) => Arg; -type ExtractPromisedReturnValue = ((...A) => Promise) => R; +type PromisedReturnType Promise> = F extends (...args: any) => Promise + ? R + : never; + +type Values = T[keyof T]; -export type DataLoaderCodegenOptions = {| +export type DataLoaderCodegenOptions = { errorHandler?: ( - resourcePath: $ReadOnlyArray, - // $FlowFixMe: We don't know what type the resource might throw, so we have to type error to "any" :( + resourcePath: ReadonlyArray, + // We don't know what type the resource might throw, so we have to type error to "any" :( error: any, - ) => Promise, - resourceMiddleware?: {| - before?: (resourcePath: $ReadOnlyArray, resourceArgs: T) => Promise, - after?: (resourcePath: $ReadOnlyArray, response: T) => Promise, - |}, -|}; + ) => Promise; + resourceMiddleware?: { + before?: (resourcePath: ReadonlyArray, resourceArgs: T) => Promise; + after?: (resourcePath: ReadonlyArray, response: T) => Promise; + }; +}; /** * =============================== @@ -63,192 +63,64 @@ type ResourcesType = SWAPIClientlibTypes; * =============================== */ -export type LoadersType = $ReadOnly<{| +export type LoadersType = Readonly<{ getPlanets: DataLoader< - {| - ...$Diff< - $Call]>, - { - planet_ids: $PropertyType< - $Call]>, - 'planet_ids', - >, - }, - >, - ...{| - planet_id: $ElementType< - $PropertyType<$Call]>, 'planet_ids'>, - 0, - >, - |}, - |}, - $ElementType< - $Call< - ExtractPromisedReturnValue<[$Call]>]>, - $PropertyType, - >, - 0, - >, + Omit[0], 'planet_ids'> & { + planet_id: NonNullable[0]['planet_ids']>[0]; + }, + PromisedReturnType[0], // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". - string, - >, + string + >; getPeople: DataLoader< - {| - ...$Diff< - $Call]>, - { - people_ids: $PropertyType< - $Call]>, - 'people_ids', - >, - }, - >, - ...{| - person_id: $ElementType< - $PropertyType<$Call]>, 'people_ids'>, - 0, - >, - |}, - |}, - $ElementType< - $Call< - ExtractPromisedReturnValue<[$Call]>]>, - $PropertyType, - >, - 0, - >, + Omit[0], 'people_ids'> & { + person_id: NonNullable[0]['people_ids']>[0]; + }, + PromisedReturnType[0], // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". - string, - >, + string + >; getVehicles: DataLoader< - {| - ...$Diff< - $Call]>, - { - vehicle_ids: $PropertyType< - $Call]>, - 'vehicle_ids', - >, - }, - >, - ...{| - vehicle_id: $ElementType< - $PropertyType<$Call]>, 'vehicle_ids'>, - 0, - >, - |}, - |}, - $ElementType< - $Call< - ExtractPromisedReturnValue<[$Call]>]>, - $PropertyType, - >, - 0, - >, + Omit[0], 'vehicle_ids'> & { + vehicle_id: NonNullable[0]['vehicle_ids']>[0]; + }, + PromisedReturnType[0], // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". - string, - >, + string + >; getFilms: DataLoader< - {| - ...$Diff< - $Call]>, - { - film_ids: $PropertyType<$Call]>, 'film_ids'>, - }, - >, - ...{| - film_id: $Call< - ExtractArg, - [ - $PropertyType< - $PropertyType<$Call]>, 'film_ids'>, - 'has', - >, - ], - >, - |}, - |}, - $ElementType< - $Call< - ExtractPromisedReturnValue<[$Call]>]>, - $PropertyType, - >, - 0, - >, + Omit[0], 'film_ids'> & { + film_id: Parameters[0]['film_ids']['has']>[0]; + }, + PromisedReturnType[0], // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". - string, - >, + string + >; getFilmsV2: DataLoader< - {| - ...$Diff< - $Call]>, - { - film_ids: $PropertyType< - $Call]>, - 'film_ids', - >, - }, - >, - ...{| - film_id: $ElementType< - $PropertyType<$Call]>, 'film_ids'>, - 0, - >, - |}, - |}, - $ElementType< - $PropertyType< - $Call< - ExtractPromisedReturnValue<[$Call]>]>, - $PropertyType, - >, - 'properties', - >, - 0, - >, + Omit[0], 'film_ids'> & { + film_id: NonNullable[0]['film_ids']>[0]; + }, + PromisedReturnType['properties'][0], // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". - string, - >, + string + >; getRoot: DataLoader< - $Call]>, - $Call< - ExtractPromisedReturnValue<[$Call]>]>, - $PropertyType, - >, + Parameters[0], + PromisedReturnType, // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". - string, - >, -|}>; + string + >; +}>; export default function getLoaders(resources: ResourcesType, options?: DataLoaderCodegenOptions): LoadersType { return Object.freeze({ getPlanets: new DataLoader< - {| - ...$Diff< - $Call]>, - { - planet_ids: $PropertyType< - $Call]>, - 'planet_ids', - >, - }, - >, - ...{| - planet_id: $ElementType< - $PropertyType<$Call]>, 'planet_ids'>, - 0, - >, - |}, - |}, - $ElementType< - $Call< - ExtractPromisedReturnValue<[$Call]>]>, - $PropertyType, - >, - 0, - >, + Omit[0], 'planet_ids'> & { + planet_id: NonNullable[0]['planet_ids']>[0]; + }, + PromisedReturnType[0], // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". - string, + string >( /** * =============================================================== @@ -355,16 +227,15 @@ export default function getLoaders(resources: ResourcesType, options?: DataLoade // For now, we assume that the dataloader key should be the first argument to the resource // @see https://github.com/Yelp/dataloader-codegen/issues/56 - const resourceArgs = [ - { - ..._.omit(requests[0], 'planet_id'), - ['planet_ids']: requests.map((k) => k['planet_id']), - }, - ]; + const resourceArg = { + ..._.omit(requests[0], 'planet_id'), + ['planet_ids']: requests.map((k) => k['planet_id']), + }; - let response = await (async (_resourceArgs) => { - // Make a re-assignable variable so flow/eslint doesn't complain - let __resourceArgs = _resourceArgs; + // Any-type so this is re-assignable to the 'nestedPath' without TS complaining + let response: any = await (async (_resourceArg) => { + // Make a re-assignable variable so eslint doesn't complain + let __resourceArgs: Parameters = [_resourceArg]; if (options && options.resourceMiddleware && options.resourceMiddleware.before) { __resourceArgs = await options.resourceMiddleware.before( @@ -407,7 +278,7 @@ export default function getLoaders(resources: ResourcesType, options?: DataLoade } return _response; - })(resourceArgs); + })(resourceArg); if (!(response instanceof Error)) { } @@ -496,32 +367,12 @@ export default function getLoaders(resources: ResourcesType, options?: DataLoade }, ), getPeople: new DataLoader< - {| - ...$Diff< - $Call]>, - { - people_ids: $PropertyType< - $Call]>, - 'people_ids', - >, - }, - >, - ...{| - person_id: $ElementType< - $PropertyType<$Call]>, 'people_ids'>, - 0, - >, - |}, - |}, - $ElementType< - $Call< - ExtractPromisedReturnValue<[$Call]>]>, - $PropertyType, - >, - 0, - >, + Omit[0], 'people_ids'> & { + person_id: NonNullable[0]['people_ids']>[0]; + }, + PromisedReturnType[0], // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". - string, + string >( /** * =============================================================== @@ -628,16 +479,15 @@ export default function getLoaders(resources: ResourcesType, options?: DataLoade // For now, we assume that the dataloader key should be the first argument to the resource // @see https://github.com/Yelp/dataloader-codegen/issues/56 - const resourceArgs = [ - { - ..._.omit(requests[0], 'person_id'), - ['people_ids']: requests.map((k) => k['person_id']), - }, - ]; + const resourceArg = { + ..._.omit(requests[0], 'person_id'), + ['people_ids']: requests.map((k) => k['person_id']), + }; - let response = await (async (_resourceArgs) => { - // Make a re-assignable variable so flow/eslint doesn't complain - let __resourceArgs = _resourceArgs; + // Any-type so this is re-assignable to the 'nestedPath' without TS complaining + let response: any = await (async (_resourceArg) => { + // Make a re-assignable variable so eslint doesn't complain + let __resourceArgs: Parameters = [_resourceArg]; if (options && options.resourceMiddleware && options.resourceMiddleware.before) { __resourceArgs = await options.resourceMiddleware.before(['getPeople'], __resourceArgs); @@ -677,7 +527,7 @@ export default function getLoaders(resources: ResourcesType, options?: DataLoade } return _response; - })(resourceArgs); + })(resourceArg); if (!(response instanceof Error)) { } @@ -766,32 +616,12 @@ export default function getLoaders(resources: ResourcesType, options?: DataLoade }, ), getVehicles: new DataLoader< - {| - ...$Diff< - $Call]>, - { - vehicle_ids: $PropertyType< - $Call]>, - 'vehicle_ids', - >, - }, - >, - ...{| - vehicle_id: $ElementType< - $PropertyType<$Call]>, 'vehicle_ids'>, - 0, - >, - |}, - |}, - $ElementType< - $Call< - ExtractPromisedReturnValue<[$Call]>]>, - $PropertyType, - >, - 0, - >, + Omit[0], 'vehicle_ids'> & { + vehicle_id: NonNullable[0]['vehicle_ids']>[0]; + }, + PromisedReturnType[0], // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". - string, + string >( /** * =============================================================== @@ -898,16 +728,15 @@ export default function getLoaders(resources: ResourcesType, options?: DataLoade // For now, we assume that the dataloader key should be the first argument to the resource // @see https://github.com/Yelp/dataloader-codegen/issues/56 - const resourceArgs = [ - { - ..._.omit(requests[0], 'vehicle_id'), - ['vehicle_ids']: requests.map((k) => k['vehicle_id']), - }, - ]; + const resourceArg = { + ..._.omit(requests[0], 'vehicle_id'), + ['vehicle_ids']: requests.map((k) => k['vehicle_id']), + }; - let response = await (async (_resourceArgs) => { - // Make a re-assignable variable so flow/eslint doesn't complain - let __resourceArgs = _resourceArgs; + // Any-type so this is re-assignable to the 'nestedPath' without TS complaining + let response: any = await (async (_resourceArg) => { + // Make a re-assignable variable so eslint doesn't complain + let __resourceArgs: Parameters = [_resourceArg]; if (options && options.resourceMiddleware && options.resourceMiddleware.before) { __resourceArgs = await options.resourceMiddleware.before( @@ -950,7 +779,7 @@ export default function getLoaders(resources: ResourcesType, options?: DataLoade } return _response; - })(resourceArgs); + })(resourceArg); if (!(response instanceof Error)) { } @@ -1039,40 +868,12 @@ export default function getLoaders(resources: ResourcesType, options?: DataLoade }, ), getFilms: new DataLoader< - {| - ...$Diff< - $Call]>, - { - film_ids: $PropertyType< - $Call]>, - 'film_ids', - >, - }, - >, - ...{| - film_id: $Call< - ExtractArg, - [ - $PropertyType< - $PropertyType< - $Call]>, - 'film_ids', - >, - 'has', - >, - ], - >, - |}, - |}, - $ElementType< - $Call< - ExtractPromisedReturnValue<[$Call]>]>, - $PropertyType, - >, - 0, - >, + Omit[0], 'film_ids'> & { + film_id: Parameters[0]['film_ids']['has']>[0]; + }, + PromisedReturnType[0], // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". - string, + string >( /** * =============================================================== @@ -1180,16 +981,15 @@ export default function getLoaders(resources: ResourcesType, options?: DataLoade // For now, we assume that the dataloader key should be the first argument to the resource // @see https://github.com/Yelp/dataloader-codegen/issues/56 - const resourceArgs = [ - { - ..._.omit(requests[0], 'film_id'), - ['film_ids']: requests.map((k) => k['film_id']), - }, - ]; + const resourceArg = { + ..._.omit(requests[0], 'film_id'), + ['film_ids']: requests.map((k) => k['film_id']), + }; - let response = await (async (_resourceArgs) => { - // Make a re-assignable variable so flow/eslint doesn't complain - let __resourceArgs = _resourceArgs; + // Any-type so this is re-assignable to the 'nestedPath' without TS complaining + let response: any = await (async (_resourceArg) => { + // Make a re-assignable variable so eslint doesn't complain + let __resourceArgs: Parameters = [_resourceArg]; if (options && options.resourceMiddleware && options.resourceMiddleware.before) { __resourceArgs = await options.resourceMiddleware.before(['getFilms'], __resourceArgs); @@ -1229,7 +1029,7 @@ export default function getLoaders(resources: ResourcesType, options?: DataLoade } return _response; - })(resourceArgs); + })(resourceArg); if (!(response instanceof Error)) { } @@ -1316,35 +1116,12 @@ export default function getLoaders(resources: ResourcesType, options?: DataLoade }, ), getFilmsV2: new DataLoader< - {| - ...$Diff< - $Call]>, - { - film_ids: $PropertyType< - $Call]>, - 'film_ids', - >, - }, - >, - ...{| - film_id: $ElementType< - $PropertyType<$Call]>, 'film_ids'>, - 0, - >, - |}, - |}, - $ElementType< - $PropertyType< - $Call< - ExtractPromisedReturnValue<[$Call]>]>, - $PropertyType, - >, - 'properties', - >, - 0, - >, + Omit[0], 'film_ids'> & { + film_id: NonNullable[0]['film_ids']>[0]; + }, + PromisedReturnType['properties'][0], // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". - string, + string >( /** * =============================================================== @@ -1413,16 +1190,15 @@ export default function getLoaders(resources: ResourcesType, options?: DataLoade // For now, we assume that the dataloader key should be the first argument to the resource // @see https://github.com/Yelp/dataloader-codegen/issues/56 - const resourceArgs = [ - { - ..._.omit(requests[0], 'film_id'), - ['film_ids']: requests.map((k) => k['film_id']), - }, - ]; + const resourceArg = { + ..._.omit(requests[0], 'film_id'), + ['film_ids']: requests.map((k) => k['film_id']), + }; - let response = await (async (_resourceArgs) => { - // Make a re-assignable variable so flow/eslint doesn't complain - let __resourceArgs = _resourceArgs; + // Any-type so this is re-assignable to the 'nestedPath' without TS complaining + let response: any = await (async (_resourceArg) => { + // Make a re-assignable variable so eslint doesn't complain + let __resourceArgs: Parameters = [_resourceArg]; if (options && options.resourceMiddleware && options.resourceMiddleware.before) { __resourceArgs = await options.resourceMiddleware.before( @@ -1465,7 +1241,7 @@ export default function getLoaders(resources: ResourcesType, options?: DataLoade } return _response; - })(resourceArgs); + })(resourceArg); if (!(response instanceof Error)) { /** @@ -1581,13 +1357,10 @@ export default function getLoaders(resources: ResourcesType, options?: DataLoade }, ), getRoot: new DataLoader< - $Call]>, - $Call< - ExtractPromisedReturnValue<[$Call]>]>, - $PropertyType, - >, + Parameters[0], + PromisedReturnType, // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". - string, + string >( /** * =============================================================== @@ -1616,11 +1389,11 @@ export default function getLoaders(resources: ResourcesType, options?: DataLoade // For now, we assume that the dataloader key should be the first argument to the resource // @see https://github.com/Yelp/dataloader-codegen/issues/56 - const resourceArgs = [key]; + const resourceArg = key; - return await (async (_resourceArgs) => { - // Make a re-assignable variable so flow/eslint doesn't complain - let __resourceArgs = _resourceArgs; + return await (async (_resourceArg) => { + // Make a re-assignable variable so eslint doesn't complain + let __resourceArgs: Parameters = [_resourceArg]; if (options && options.resourceMiddleware && options.resourceMiddleware.before) { __resourceArgs = await options.resourceMiddleware.before(['getRoot'], __resourceArgs); @@ -1660,7 +1433,7 @@ export default function getLoaders(resources: ResourcesType, options?: DataLoade } return _response; - })(resourceArgs); + })(resourceArg); }), ); diff --git a/examples/swapi/swapi-server.js b/examples/swapi/swapi-server.ts similarity index 81% rename from examples/swapi/swapi-server.js rename to examples/swapi/swapi-server.ts index f0a4119..692373c 100644 --- a/examples/swapi/swapi-server.js +++ b/examples/swapi/swapi-server.ts @@ -1,11 +1,9 @@ -// @flow - -const { graphql, buildSchema } = require('graphql'); -const StarWarsAPI = require('./swapi'); -const createSwapiLoaders = require('./swapi-loaders'); +import { graphql, buildSchema } from 'graphql'; +import StarWarsAPI from './swapi'; +import createSwapiLoaders from './swapi-loaders'; const createSWAPIServer = () => { - const swapiLoaders = createSwapiLoaders.default(StarWarsAPI()); + const swapiLoaders = createSwapiLoaders(StarWarsAPI()); const schema = buildSchema(/* GraphQL */ ` type Planet { @@ -34,7 +32,7 @@ const createSWAPIServer = () => { this.id = id; } - async name() { + async name(): Promise { const response = await swapiLoaders.getPlanets.load({ planet_id: this.id }); if (response instanceof Error) { @@ -46,7 +44,7 @@ const createSWAPIServer = () => { } } - async climate() { + async climate(): Promise { const response = await swapiLoaders.getPlanets.load({ planet_id: this.id }); if (response instanceof Error) { @@ -58,7 +56,7 @@ const createSWAPIServer = () => { } } - async diameter() { + async diameter(): Promise { const response = await swapiLoaders.getPlanets.load({ planet_id: this.id }); if (response instanceof Error) { @@ -78,7 +76,7 @@ const createSWAPIServer = () => { this.id = id; } - async title() { + async title(): Promise { const response = await swapiLoaders.getFilms.load({ film_id: this.id }); if (response instanceof Error) { @@ -90,7 +88,7 @@ const createSWAPIServer = () => { } } - async episodeNumber() { + async episodeNumber(): Promise { const response = await swapiLoaders.getFilms.load({ film_id: this.id }); if (response instanceof Error) { @@ -102,7 +100,7 @@ const createSWAPIServer = () => { } } - async director() { + async director(): Promise { const response = await swapiLoaders.getFilms.load({ film_id: this.id }); if (response instanceof Error) { @@ -122,7 +120,7 @@ const createSWAPIServer = () => { this.id = id; } - async title() { + async title(): Promise { const response = await swapiLoaders.getFilmsV2.load({ film_id: this.id, properties: ['title'] }); if (response instanceof Error) { @@ -134,7 +132,7 @@ const createSWAPIServer = () => { } } - async episodeNumber() { + async episodeNumber(): Promise { const response = await swapiLoaders.getFilmsV2.load({ film_id: this.id, properties: ['episode_id'] }); if (response instanceof Error) { @@ -146,7 +144,7 @@ const createSWAPIServer = () => { } } - async director() { + async director(): Promise { const response = await swapiLoaders.getFilmsV2.load({ film_id: this.id, properties: ['director'] }); if (response instanceof Error) { @@ -160,13 +158,13 @@ const createSWAPIServer = () => { } const root = { - planet: ({ id }) => { + planet: ({ id }: { id: number }) => { return new PlanetModel(id); }, - film: ({ id }) => { + film: ({ id }: { id: number }) => { return new FilmModel(id); }, - filmv2: ({ id }) => { + filmv2: ({ id }: { id: number }) => { return new FilmModelV2(id); }, }; @@ -174,7 +172,7 @@ const createSWAPIServer = () => { return { schema, root }; }; -const runQuery = (query) => { +const runQuery = (query: string) => { const { schema, root } = createSWAPIServer(); return graphql(schema, query, root); }; diff --git a/examples/swapi/swapi.dataloader-config.yaml b/examples/swapi/swapi.dataloader-config.yaml index 08222da..35e986d 100644 --- a/examples/swapi/swapi.dataloader-config.yaml +++ b/examples/swapi/swapi.dataloader-config.yaml @@ -1,5 +1,5 @@ typings: - language: flow + language: typescript embedResourcesType: imports: | import type { SWAPIClientlibTypes } from './swapi'; diff --git a/examples/swapi/swapi.js b/examples/swapi/swapi.js deleted file mode 100644 index 235bf2a..0000000 --- a/examples/swapi/swapi.js +++ /dev/null @@ -1,132 +0,0 @@ -/** - * Clientlib for a subset of data in https://swapi.dev/ - * @flow - */ - -const url = require('url'); -const fetch = require('node-fetch').default; -const SWAPI_URL = 'https://swapi.dev/api/'; - -export type SWAPI_Planet = $ReadOnly<{| - name: string, - rotation_period: string, - orbital_period: string, - diameter: string, - climate: string, - gravity: string, - terrain: string, - surface_water: string, - population: string, - residents: $ReadOnlyArray, - films: $ReadOnlyArray, - created: string, - edited: string, - url: string, -|}>; - -export type SWAPI_Person = $ReadOnly<{| - name: string, - height: string, - mass: string, - hair_color: string, - skin_color: string, - eye_color: string, - birth_year: string, - gender: string, - homeworld: string, - films: $ReadOnlyArray, - species: $ReadOnlyArray, - vehicles: $ReadOnlyArray, - starships: $ReadOnlyArray, - created: string, - edited: string, - url: string, -|}>; - -export type SWAPI_Film = $ReadOnly<{| - title: string, - episode_id: number, - opening_crawl: string, - director: string, - producer: string, - release_date: string, - species: $ReadOnlyArray, - starships: $ReadOnlyArray, - vehicles: $ReadOnlyArray, - characters: $ReadOnlyArray, - planets: $ReadOnlyArray, - url: string, - created: string, - edited: string, -|}>; - -export type SWAPI_Film_V2 = $ReadOnly<{| - properties: $ReadOnlyArray<{| - id: number, - title: ?string, - episode_id: ?number, - director: ?string, - producer: ?string, - |}>, -|}>; - -export type SWAPI_Vehicle = $ReadOnly<{| - name: string, - key: string, -|}>; - -type SWAPI_Root = $ReadOnly<{| - people: string, - planets: string, - films: string, - species: string, - vehicles: string, - starships: string, -|}>; - -export type SWAPIClientlibTypes = {| - getPlanets: ({| planet_ids: $ReadOnlyArray |}) => Promise<$ReadOnlyArray>, - getPeople: ({| people_ids: $ReadOnlyArray |}) => Promise<$ReadOnlyArray>, - getVehicles: ({| vehicle_ids: $ReadOnlyArray |}) => Promise<$ReadOnlyArray>, - getFilms: ({| film_ids: Set |}) => Promise<$ReadOnlyArray>, - getFilmsV2: ({| - film_ids: $ReadOnlyArray, - properties: $ReadOnlyArray, - |}) => Promise, - getRoot: ({||}) => Promise, -|}; - -module.exports = function (): SWAPIClientlibTypes { - return { - getPlanets: ({ planet_ids }) => - Promise.all( - planet_ids.map((id) => fetch(url.resolve(SWAPI_URL, `planets/${id}`)).then((res) => res.json())), - ), - getPeople: ({ people_ids }) => - Promise.all( - people_ids.map((id) => fetch(url.resolve(SWAPI_URL, `people/${id}`)).then((res) => res.json())), - ), - getVehicles: ({ vehicle_ids }) => - Promise.all( - vehicle_ids.map((id) => fetch(url.resolve(SWAPI_URL, `vehicles/${id}`)).then((res) => res.json())), - ), - getFilms: ({ film_ids }) => - Promise.all( - [...film_ids].map((id) => fetch(url.resolve(SWAPI_URL, `films/${id}`)).then((res) => res.json())), - ), - getFilmsV2: ({ film_ids, properties }) => { - return Promise.resolve({ - properties: [ - { - id: 4, - director: 'George Lucas', - producer: 'Rick McCallum', - episode_id: 1, - title: 'The Phantom Menace', - }, - ], - }); - }, - getRoot: ({}) => fetch(SWAPI_URL).then((res) => res.json()), - }; -}; diff --git a/examples/swapi/swapi.ts b/examples/swapi/swapi.ts new file mode 100644 index 0000000..fe8fff3 --- /dev/null +++ b/examples/swapi/swapi.ts @@ -0,0 +1,135 @@ +/** + * Clientlib for a subset of data in https://swapi.info/ + */ + +import { URL } from 'url'; +import fetch from 'node-fetch'; +const SWAPI_URL = 'https://swapi.info/api/'; + +export type SWAPI_Planet = Readonly<{ + name: string; + rotation_period: string; + orbital_period: string; + diameter: string; + climate: string; + gravity: string; + terrain: string; + surface_water: string; + population: string; + residents: ReadonlyArray; + films: ReadonlyArray; + created: string; + edited: string; + url: string; +}>; + +export type SWAPI_Person = Readonly<{ + name: string; + height: string; + mass: string; + hair_color: string; + skin_color: string; + eye_color: string; + birth_year: string; + gender: string; + homeworld: string; + films: ReadonlyArray; + species: ReadonlyArray; + vehicles: ReadonlyArray; + starships: ReadonlyArray; + created: string; + edited: string; + url: string; +}>; + +export type SWAPI_Film = Readonly<{ + title: string; + episode_id: number; + opening_crawl: string; + director: string; + producer: string; + release_date: string; + species: ReadonlyArray; + starships: ReadonlyArray; + vehicles: ReadonlyArray; + characters: ReadonlyArray; + planets: ReadonlyArray; + url: string; + created: string; + edited: string; +}>; + +export type SWAPI_Film_V2 = Readonly<{ + properties: ReadonlyArray<{ + id: number; + title: string | null; + episode_id: number | null; + director: string | null; + producer: string | null; + }>; +}>; + +export type SWAPI_Vehicle = Readonly<{ + name: string; + key: string; +}>; + +type SWAPI_Root = Readonly<{ + people: string; + planets: string; + films: string; + species: string; + vehicles: string; + starships: string; +}>; + +export type SWAPIClientlibTypes = { + getPlanets: (args: { planet_ids: ReadonlyArray }) => Promise>; + getPeople: (args: { people_ids: ReadonlyArray }) => Promise>; + getVehicles: (args: { vehicle_ids: ReadonlyArray }) => Promise>; + getFilms: (args: { film_ids: Set }) => Promise>; + getFilmsV2: (args: { + film_ids: ReadonlyArray; + properties: ReadonlyArray; + }) => Promise; + getRoot: (args: {}) => Promise; +}; + +export default function (): SWAPIClientlibTypes { + return { + getPlanets: ({ planet_ids }) => + Promise.all( + planet_ids.map((id) => fetch(new URL(`planets/${id}`, SWAPI_URL).toString()).then((res) => res.json())), + ), + getPeople: ({ people_ids }) => + Promise.all( + people_ids.map((id) => fetch(new URL(`people/${id}`, SWAPI_URL).toString()).then((res) => res.json())), + ), + getVehicles: ({ vehicle_ids }) => + Promise.all( + vehicle_ids.map((id) => + fetch(new URL(`vehicles/${id}`, SWAPI_URL).toString()).then((res) => res.json()), + ), + ), + getFilms: ({ film_ids }) => + Promise.all( + Array.from(film_ids).map((id) => + fetch(new URL(`films/${id}`, SWAPI_URL).toString()).then((res) => res.json()), + ), + ), + getFilmsV2: ({ film_ids, properties }) => { + return Promise.resolve({ + properties: [ + { + id: 4, + director: 'George Lucas', + producer: 'Rick McCallum', + episode_id: 1, + title: 'The Phantom Menace', + }, + ], + }); + }, + getRoot: ({}) => fetch(SWAPI_URL).then((res) => res.json()), + }; +} diff --git a/examples/swapi/tsconfig.json b/examples/swapi/tsconfig.json new file mode 100644 index 0000000..bcbb068 --- /dev/null +++ b/examples/swapi/tsconfig.json @@ -0,0 +1,7 @@ +{ + "compilerOptions": { + "rootDir": "./", + "allowSyntheticDefaultImports": true + }, + "files": ["swapi-server.ts"] +} diff --git a/examples/swapi/yarn.lock b/examples/swapi/yarn.lock deleted file mode 100644 index 333bee5..0000000 --- a/examples/swapi/yarn.lock +++ /dev/null @@ -1,2345 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -"@babel/cli@^7.8.4": - version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.8.4.tgz#505fb053721a98777b2b175323ea4f090b7d3c1c" - integrity sha512-XXLgAm6LBbaNxaGhMAznXXaxtCWfuv6PIDJ9Alsy9JYTOh+j2jJz+L/162kkfU1j/pTSxK1xGmlwI4pdIMkoag== - dependencies: - commander "^4.0.1" - convert-source-map "^1.1.0" - fs-readdir-recursive "^1.1.0" - glob "^7.0.0" - lodash "^4.17.13" - make-dir "^2.1.0" - slash "^2.0.0" - source-map "^0.5.0" - optionalDependencies: - chokidar "^2.1.8" - -"@babel/code-frame@^7.0.0": - version "7.5.5" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d" - integrity sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw== - dependencies: - "@babel/highlight" "^7.0.0" - -"@babel/helper-plugin-utils@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250" - integrity sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA== - -"@babel/highlight@^7.0.0": - version "7.5.0" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.5.0.tgz#56d11312bd9248fa619591d02472be6e8cb32540" - integrity sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ== - dependencies: - chalk "^2.0.0" - esutils "^2.0.2" - js-tokens "^4.0.0" - -"@babel/node@^7.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/node/-/node-7.7.0.tgz#fba73fdaf75ab1a0eaf03923f5f4ce7fa41c9974" - integrity sha512-CZFTjfCGysChOJ90ksndqct5bXkByzV5Ef8YgYS3A513MhyFQgsXJMRu2QyGOlfoP3hBZ3AmDd37ARyv/L1Zvw== - dependencies: - "@babel/register" "^7.7.0" - commander "^2.8.1" - core-js "^3.2.1" - lodash "^4.17.13" - node-environment-flags "^1.0.5" - regenerator-runtime "^0.13.3" - v8flags "^3.1.1" - -"@babel/plugin-syntax-flow@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.2.0.tgz#a765f061f803bc48f240c26f8747faf97c26bf7c" - integrity sha512-r6YMuZDWLtLlu0kqIim5o/3TNRAlWb073HwT3e2nKf9I8IIvOggPrnILYPsrrKilmn/mYEMCf/Z07w3yQJF6dg== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-flow-strip-types@^7.0.0": - version "7.6.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.6.3.tgz#8110f153e7360cfd5996eee68706cfad92d85256" - integrity sha512-l0ETkyEofkqFJ9LS6HChNIKtVJw2ylKbhYMlJ5C6df+ldxxaLIyXY4yOdDQQspfFpV8/vDiaWoJlvflstlYNxg== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-flow" "^7.2.0" - -"@babel/polyfill@^7.0.0": - version "7.6.0" - resolved "https://registry.yarnpkg.com/@babel/polyfill/-/polyfill-7.6.0.tgz#6d89203f8b6cd323e8d946e47774ea35dc0619cc" - integrity sha512-q5BZJI0n/B10VaQQvln1IlDK3BTBJFbADx7tv+oXDPIDZuTo37H5Adb9jhlXm/fEN4Y7/64qD9mnrJJG7rmaTw== - dependencies: - core-js "^2.6.5" - regenerator-runtime "^0.13.2" - -"@babel/preset-flow@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.0.0.tgz#afd764835d9535ec63d8c7d4caf1c06457263da2" - integrity sha512-bJOHrYOPqJZCkPVbG1Lot2r5OSsB+iUOaxiHdlOeB1yPWS6evswVHwvkDLZ54WTaTRIk89ds0iHmGZSnxlPejQ== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-transform-flow-strip-types" "^7.0.0" - -"@babel/register@^7.7.0": - version "7.7.0" - resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.7.0.tgz#4e23ecf840296ef79c605baaa5c89e1a2426314b" - integrity sha512-HV3GJzTvSoyOMWGYn2TAh6uL6g+gqKTgEZ99Q3+X9UURT1VPT/WcU46R61XftIc5rXytcOHZ4Z0doDlsjPomIg== - dependencies: - find-cache-dir "^2.0.0" - lodash "^4.17.13" - make-dir "^2.1.0" - pirates "^4.0.0" - source-map-support "^0.5.16" - -"@octokit/endpoint@^5.5.0": - version "5.5.1" - resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-5.5.1.tgz#2eea81e110ca754ff2de11c79154ccab4ae16b3f" - integrity sha512-nBFhRUb5YzVTCX/iAK1MgQ4uWo89Gu0TH00qQHoYRCsE12dWcG1OiLd7v2EIo2+tpUKPMOQ62QFy9hy9Vg2ULg== - dependencies: - "@octokit/types" "^2.0.0" - is-plain-object "^3.0.0" - universal-user-agent "^4.0.0" - -"@octokit/request-error@^1.0.1", "@octokit/request-error@^1.0.2": - version "1.0.4" - resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-1.0.4.tgz#15e1dc22123ba4a9a4391914d80ec1e5303a23be" - integrity sha512-L4JaJDXn8SGT+5G0uX79rZLv0MNJmfGa4vb4vy1NnpjSnWDLJRy6m90udGwvMmavwsStgbv2QNkPzzTCMmL+ig== - dependencies: - deprecation "^2.0.0" - once "^1.4.0" - -"@octokit/request@^5.2.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@octokit/request/-/request-5.3.0.tgz#ce49c9d05519054499b5bb729d4ecb4735cee78a" - integrity sha512-mMIeNrtYyNEIYNsKivDyUAukBkw0M5ckyJX56xoFRXSasDPCloIXaQOnaKNopzQ8dIOvpdq1ma8gmrS+h6O2OQ== - dependencies: - "@octokit/endpoint" "^5.5.0" - "@octokit/request-error" "^1.0.1" - "@octokit/types" "^1.0.0" - deprecation "^2.0.0" - is-plain-object "^3.0.0" - node-fetch "^2.3.0" - once "^1.4.0" - universal-user-agent "^4.0.0" - -"@octokit/rest@^16.33.1": - version "16.34.1" - resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-16.34.1.tgz#e28b5a573ca2f15bb002f90bc010020845ed9c01" - integrity sha512-JUoS12cdktf1fv86rgrjC/RvYLuL+o7p57W7zX1x7ANFJ7OvdV8emvUNkFlcidEaOkYrxK3SoWgQFt3FhNmabA== - dependencies: - "@octokit/request" "^5.2.0" - "@octokit/request-error" "^1.0.2" - atob-lite "^2.0.0" - before-after-hook "^2.0.0" - btoa-lite "^1.0.0" - deprecation "^2.0.0" - lodash.get "^4.4.2" - lodash.set "^4.3.2" - lodash.uniq "^4.5.0" - octokit-pagination-methods "^1.1.0" - once "^1.4.0" - universal-user-agent "^4.0.0" - -"@octokit/types@^1.0.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@octokit/types/-/types-1.1.0.tgz#6c9b286f9766f8cc6c5bab9fd3eb6a7aa019c586" - integrity sha512-t4ZD74UnNVMq6kZBDZceflRKK3q4o5PoCKMAGht0RK84W57tqonqKL3vCxJHtbGExdan9RwV8r7VJBZxIM1O7Q== - dependencies: - "@types/node" "^12.11.1" - -"@octokit/types@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@octokit/types/-/types-2.0.0.tgz#b60fcace44005211e48a474ec5975f9a40342930" - integrity sha512-467rp1g6YuxuNbu1m3A5BuGWxtzyVE8sAyN9+k3kb2LdnpmLPTiPsywbYmcckgfGZ+/AGpAaNrVx7131iSUXbQ== - dependencies: - "@types/node" "^12.11.1" - -"@sindresorhus/is@^0.7.0": - version "0.7.0" - resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.7.0.tgz#9a06f4f137ee84d7df0460c1fdb1135ffa6c50fd" - integrity sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow== - -"@types/node@^12.11.1": - version "12.12.5" - resolved "https://registry.yarnpkg.com/@types/node/-/node-12.12.5.tgz#66103d2eddc543d44a04394abb7be52506d7f290" - integrity sha512-KEjODidV4XYUlJBF3XdjSH5FWoMCtO0utnhtdLf1AgeuZLOrRbvmU/gaRCVg7ZaQDjVf3l84egiY0mRNe5xE4A== - -ajv@^6.10.2: - version "6.10.2" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.2.tgz#d3cea04d6b017b2894ad69040fec8b623eb4bd52" - integrity sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw== - dependencies: - fast-deep-equal "^2.0.1" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.4.1" - uri-js "^4.2.2" - -ansi-regex@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" - integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= - -ansi-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" - integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= - -ansi-regex@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" - integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== - -ansi-styles@^3.2.0, ansi-styles@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" - integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== - dependencies: - color-convert "^1.9.0" - -anymatch@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" - integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== - dependencies: - micromatch "^3.1.4" - normalize-path "^2.1.1" - -arr-diff@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" - integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= - -arr-flatten@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" - integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== - -arr-union@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" - integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= - -array-unique@^0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" - integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= - -assign-symbols@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" - integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= - -astral-regex@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" - integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== - -async-each@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" - integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== - -atob-lite@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/atob-lite/-/atob-lite-2.0.0.tgz#0fef5ad46f1bd7a8502c65727f0367d5ee43d696" - integrity sha1-D+9a1G8b16hQLGVyfwNn1e5D1pY= - -atob@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" - integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== - -balanced-match@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" - integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= - -base@^0.11.1: - version "0.11.2" - resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" - integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== - dependencies: - cache-base "^1.0.1" - class-utils "^0.3.5" - component-emitter "^1.2.1" - define-property "^1.0.0" - isobject "^3.0.1" - mixin-deep "^1.2.0" - pascalcase "^0.1.1" - -before-after-hook@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-2.1.0.tgz#b6c03487f44e24200dd30ca5e6a1979c5d2fb635" - integrity sha512-IWIbu7pMqyw3EAJHzzHbWa85b6oud/yfKYg5rqB5hNE8CeMi3nX+2C2sj0HswfblST86hpVEOAb9x34NZd6P7A== - -big-integer@^1.6.17: - version "1.6.47" - resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.47.tgz#e1e9320e26c4cc81f64fbf4b3bb20e025bf18e2d" - integrity sha512-9t9f7X3as2XGX8b52GqG6ox0GvIdM86LyIXASJnDCFhYNgt+A+MByQZ3W2PyMRZjEvG5f8TEbSPfEotVuMJnQg== - -binary-extensions@^1.0.0: - version "1.13.1" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" - integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== - -binary@~0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/binary/-/binary-0.3.0.tgz#9f60553bc5ce8c3386f3b553cff47462adecaa79" - integrity sha1-n2BVO8XOjDOG87VTz/R0Yq3sqnk= - dependencies: - buffers "~0.1.1" - chainsaw "~0.1.0" - -bindings@^1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" - integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== - dependencies: - file-uri-to-path "1.0.0" - -bluebird@~3.4.1: - version "3.4.7" - resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.4.7.tgz#f72d760be09b7f76d08ed8fae98b289a8d05fab3" - integrity sha1-9y12C+Cbf3bQjtj66Ysomo0F+rM= - -brace-expansion@^1.1.7: - version "1.1.11" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== - dependencies: - balanced-match "^1.0.0" - concat-map "0.0.1" - -braces@^2.3.1, braces@^2.3.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" - integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== - dependencies: - arr-flatten "^1.1.0" - array-unique "^0.3.2" - extend-shallow "^2.0.1" - fill-range "^4.0.0" - isobject "^3.0.1" - repeat-element "^1.1.2" - snapdragon "^0.8.1" - snapdragon-node "^2.0.1" - split-string "^3.0.2" - to-regex "^3.0.1" - -btoa-lite@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/btoa-lite/-/btoa-lite-1.0.0.tgz#337766da15801210fdd956c22e9c6891ab9d0337" - integrity sha1-M3dm2hWAEhD92VbCLpxokaudAzc= - -buffer-from@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" - integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== - -buffer-indexof-polyfill@~1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/buffer-indexof-polyfill/-/buffer-indexof-polyfill-1.0.1.tgz#a9fb806ce8145d5428510ce72f278bb363a638bf" - integrity sha1-qfuAbOgUXVQoUQznLyeLs2OmOL8= - -buffers@~0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/buffers/-/buffers-0.1.1.tgz#b24579c3bed4d6d396aeee6d9a8ae7f5482ab7bb" - integrity sha1-skV5w77U1tOWru5tmorn9Ugqt7s= - -cache-base@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" - integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== - dependencies: - collection-visit "^1.0.0" - component-emitter "^1.2.1" - get-value "^2.0.6" - has-value "^1.0.0" - isobject "^3.0.1" - set-value "^2.0.0" - to-object-path "^0.3.0" - union-value "^1.0.0" - unset-value "^1.0.0" - -cacheable-request@^2.1.1: - version "2.1.4" - resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-2.1.4.tgz#0d808801b6342ad33c91df9d0b44dc09b91e5c3d" - integrity sha1-DYCIAbY0KtM8kd+dC0TcCbkeXD0= - dependencies: - clone-response "1.0.2" - get-stream "3.0.0" - http-cache-semantics "3.8.1" - keyv "3.0.0" - lowercase-keys "1.0.0" - normalize-url "2.0.1" - responselike "1.0.2" - -camelcase@^5.0.0: - version "5.3.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" - integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== - -chainsaw@~0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/chainsaw/-/chainsaw-0.1.0.tgz#5eab50b28afe58074d0d58291388828b5e5fbc98" - integrity sha1-XqtQsor+WAdNDVgpE4iCi15fvJg= - dependencies: - traverse ">=0.3.0 <0.4" - -chalk@^2.0.0: - version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" - -charenc@~0.0.1: - version "0.0.2" - resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" - integrity sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc= - -chokidar@^2.1.8: - version "2.1.8" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" - integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg== - dependencies: - anymatch "^2.0.0" - async-each "^1.0.1" - braces "^2.3.2" - glob-parent "^3.1.0" - inherits "^2.0.3" - is-binary-path "^1.0.0" - is-glob "^4.0.0" - normalize-path "^3.0.0" - path-is-absolute "^1.0.0" - readdirp "^2.2.1" - upath "^1.1.1" - optionalDependencies: - fsevents "^1.2.7" - -class-utils@^0.3.5: - version "0.3.6" - resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" - integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== - dependencies: - arr-union "^3.1.0" - define-property "^0.2.5" - isobject "^3.0.0" - static-extend "^0.1.1" - -cliui@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" - integrity sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ== - dependencies: - string-width "^2.1.1" - strip-ansi "^4.0.0" - wrap-ansi "^2.0.0" - -clone-response@1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b" - integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws= - dependencies: - mimic-response "^1.0.0" - -code-point-at@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" - integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= - -collection-visit@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" - integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= - dependencies: - map-visit "^1.0.0" - object-visit "^1.0.0" - -color-convert@^1.9.0: - version "1.9.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" - integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== - dependencies: - color-name "1.1.3" - -color-name@1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" - integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= - -colors@^1.3.2: - version "1.4.0" - resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78" - integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA== - -commander@^2.11.0, commander@^2.8.1: - version "2.20.3" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" - integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== - -commander@^4.0.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" - integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== - -commondir@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" - integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= - -component-emitter@^1.2.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" - integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== - -concat-map@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= - -convert-source-map@^1.1.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" - integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== - dependencies: - safe-buffer "~5.1.1" - -copy-descriptor@^0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" - integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= - -core-js@^2.6.5: - version "2.6.10" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.10.tgz#8a5b8391f8cc7013da703411ce5b585706300d7f" - integrity sha512-I39t74+4t+zau64EN1fE5v2W31Adtc/REhzWN+gWRRXg6WH5qAsZm62DHpQ1+Yhe4047T55jvzz7MUqF/dBBlA== - -core-js@^3.2.1: - version "3.3.4" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.3.4.tgz#6b0a23392958317bfb46e40b090529a923add669" - integrity sha512-BtibooaAmSOptGLRccsuX/dqgPtXwNgqcvYA6kOTTMzonRxZ+pJS4e+6mvVutESfXMeTnK8m3M+aBu3bkJbR+w== - -core-util-is@~1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" - integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= - -cross-spawn@^6.0.0: - version "6.0.5" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" - integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== - dependencies: - nice-try "^1.0.4" - path-key "^2.0.1" - semver "^5.5.0" - shebang-command "^1.2.0" - which "^1.2.9" - -crypt@~0.0.1: - version "0.0.2" - resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" - integrity sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs= - -dataloader@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/dataloader/-/dataloader-2.0.0.tgz#41eaf123db115987e21ca93c005cd7753c55fe6f" - integrity sha512-YzhyDAwA4TaQIhM5go+vCLmU0UikghC/t9DTQYZR2M/UvZ1MdOhPezSDZcjj9uqQJOMqjLcpWtyW2iNINdlatQ== - -debug@^2.2.0, debug@^2.3.3: - version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" - integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== - dependencies: - ms "2.0.0" - -decamelize@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" - integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= - -decode-uri-component@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" - integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= - -decompress-response@^3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" - integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M= - dependencies: - mimic-response "^1.0.0" - -define-properties@^1.1.2, define-properties@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" - integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== - dependencies: - object-keys "^1.0.12" - -define-property@^0.2.5: - version "0.2.5" - resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" - integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= - dependencies: - is-descriptor "^0.1.0" - -define-property@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" - integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= - dependencies: - is-descriptor "^1.0.0" - -define-property@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" - integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== - dependencies: - is-descriptor "^1.0.2" - isobject "^3.0.1" - -deprecation@^2.0.0: - version "2.3.1" - resolved "https://registry.yarnpkg.com/deprecation/-/deprecation-2.3.1.tgz#6368cbdb40abf3373b525ac87e4a260c3a700919" - integrity sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ== - -duplexer2@~0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" - integrity sha1-ixLauHjA1p4+eJEFFmKjL8a93ME= - dependencies: - readable-stream "^2.0.2" - -duplexer3@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" - integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= - -emoji-regex@^7.0.1: - version "7.0.3" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" - integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== - -end-of-stream@^1.1.0: - version "1.4.4" - resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" - integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== - dependencies: - once "^1.4.0" - -es-abstract@^1.5.1: - version "1.16.0" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.16.0.tgz#d3a26dc9c3283ac9750dca569586e976d9dcc06d" - integrity sha512-xdQnfykZ9JMEiasTAJZJdMWCQ1Vm00NBw79/AWi7ELfZuuPCSOMDZbT9mkOfSctVtfhb+sAAzrm+j//GjjLHLg== - dependencies: - es-to-primitive "^1.2.0" - function-bind "^1.1.1" - has "^1.0.3" - has-symbols "^1.0.0" - is-callable "^1.1.4" - is-regex "^1.0.4" - object-inspect "^1.6.0" - object-keys "^1.1.1" - string.prototype.trimleft "^2.1.0" - string.prototype.trimright "^2.1.0" - -es-to-primitive@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" - integrity sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg== - dependencies: - is-callable "^1.1.4" - is-date-object "^1.0.1" - is-symbol "^1.0.2" - -escape-string-regexp@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= - -esutils@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" - integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== - -execa@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" - integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== - dependencies: - cross-spawn "^6.0.0" - get-stream "^4.0.0" - is-stream "^1.1.0" - npm-run-path "^2.0.0" - p-finally "^1.0.0" - signal-exit "^3.0.0" - strip-eof "^1.0.0" - -expand-brackets@^2.1.4: - version "2.1.4" - resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" - integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= - dependencies: - debug "^2.3.3" - define-property "^0.2.5" - extend-shallow "^2.0.1" - posix-character-classes "^0.1.0" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" - -extend-shallow@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" - integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= - dependencies: - is-extendable "^0.1.0" - -extend-shallow@^3.0.0, extend-shallow@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" - integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= - dependencies: - assign-symbols "^1.0.0" - is-extendable "^1.0.1" - -extglob@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" - integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== - dependencies: - array-unique "^0.3.2" - define-property "^1.0.0" - expand-brackets "^2.1.4" - extend-shallow "^2.0.1" - fragment-cache "^0.2.1" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" - -fast-deep-equal@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" - integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= - -fast-json-stable-stringify@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" - integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= - -file-uri-to-path@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" - integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== - -fill-range@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" - integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= - dependencies: - extend-shallow "^2.0.1" - is-number "^3.0.0" - repeat-string "^1.6.1" - to-regex-range "^2.1.0" - -find-cache-dir@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" - integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== - dependencies: - commondir "^1.0.1" - make-dir "^2.0.0" - pkg-dir "^3.0.0" - -find-up@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" - integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== - dependencies: - locate-path "^3.0.0" - -flow-bin@0.123.0: - version "0.123.0" - resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.123.0.tgz#7ba61a0b8775928cf4943ccf78eed2b1b05f7b3a" - integrity sha512-Ylcf8YDIM/KrqtxkPuq+f8O+6sdYA2Nuz5f+sWHlp539DatZz3YMcsO1EiXaf1C11HJgpT/3YGYe7xZ9/UZmvQ== - -flow-typed@^2.6.2: - version "2.6.2" - resolved "https://registry.yarnpkg.com/flow-typed/-/flow-typed-2.6.2.tgz#6d324a96c4df300e0f823c13ca879c824bef40ce" - integrity sha512-brTh8SukLidVpR1u8hSR3OcZSvLtptpwLEGgEhK/qBhWCB7zxPZmnmChYi40JQH6vB448ck380+qbkDo3fJ6qA== - dependencies: - "@babel/polyfill" "^7.0.0" - "@octokit/rest" "^16.33.1" - colors "^1.3.2" - flowgen "^1.9.0" - fs-extra "^7.0.0" - glob "^7.1.3" - got "^8.3.2" - md5 "^2.2.1" - mkdirp "^0.5.1" - prettier "^1.18.2" - rimraf "^2.6.2" - semver "^5.5.1" - table "^5.0.2" - through "^2.3.8" - unzipper "^0.9.3" - which "^1.3.1" - yargs "^12.0.2" - -flowgen@^1.9.0: - version "1.10.0" - resolved "https://registry.yarnpkg.com/flowgen/-/flowgen-1.10.0.tgz#a041ae31d543d22166e7ba7c296b8445deb3c2e4" - integrity sha512-3lsoaa1vxGXhnkHuoE4mLPJi/klvpR3ID8R9CFJ/GBNi+cxJXecWQaUPrWMdNI5tGs8Y+7wrIZaCVFKFLQiGOg== - dependencies: - "@babel/code-frame" "^7.0.0" - "@babel/highlight" "^7.0.0" - commander "^2.11.0" - lodash "^4.17.4" - paralleljs "^0.2.1" - prettier "^1.16.4" - shelljs "^0.8.3" - typescript "^3.4" - typescript-compiler "^1.4.1-2" - -for-in@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" - integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= - -fragment-cache@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" - integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= - dependencies: - map-cache "^0.2.2" - -from2@^2.1.1: - version "2.3.0" - resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" - integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8= - dependencies: - inherits "^2.0.1" - readable-stream "^2.0.0" - -fs-extra@^7.0.0: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" - integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== - dependencies: - graceful-fs "^4.1.2" - jsonfile "^4.0.0" - universalify "^0.1.0" - -fs-readdir-recursive@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" - integrity sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA== - -fs.realpath@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= - -fsevents@^1.2.7: - version "1.2.11" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.11.tgz#67bf57f4758f02ede88fb2a1712fef4d15358be3" - integrity sha512-+ux3lx6peh0BpvY0JebGyZoiR4D+oYzdPZMKJwkZ+sFkNJzpL7tXc/wehS49gUAxg3tmMHPHZkA8JU2rhhgDHw== - dependencies: - bindings "^1.5.0" - nan "^2.12.1" - -fstream@^1.0.12: - version "1.0.12" - resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.12.tgz#4e8ba8ee2d48be4f7d0de505455548eae5932045" - integrity sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg== - dependencies: - graceful-fs "^4.1.2" - inherits "~2.0.0" - mkdirp ">=0.5 0" - rimraf "2" - -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== - -get-caller-file@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" - integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== - -get-stream@3.0.0, get-stream@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" - integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= - -get-stream@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" - integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== - dependencies: - pump "^3.0.0" - -get-value@^2.0.3, get-value@^2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" - integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= - -glob-parent@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" - integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4= - dependencies: - is-glob "^3.1.0" - path-dirname "^1.0.0" - -glob@^7.0.0, glob@^7.1.3: - version "7.1.5" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.5.tgz#6714c69bee20f3c3e64c4dd905553e532b40cdc0" - integrity sha512-J9dlskqUXK1OeTOYBEn5s8aMukWMwWfs+rPTn/jn50Ux4MNXVhubL1wu/j2t+H4NVI+cXEcCaYellqaPVGXNqQ== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.4" - once "^1.3.0" - path-is-absolute "^1.0.0" - -got@^8.3.2: - version "8.3.2" - resolved "https://registry.yarnpkg.com/got/-/got-8.3.2.tgz#1d23f64390e97f776cac52e5b936e5f514d2e937" - integrity sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw== - dependencies: - "@sindresorhus/is" "^0.7.0" - cacheable-request "^2.1.1" - decompress-response "^3.3.0" - duplexer3 "^0.1.4" - get-stream "^3.0.0" - into-stream "^3.1.0" - is-retry-allowed "^1.1.0" - isurl "^1.0.0-alpha5" - lowercase-keys "^1.0.0" - mimic-response "^1.0.0" - p-cancelable "^0.4.0" - p-timeout "^2.0.1" - pify "^3.0.0" - safe-buffer "^5.1.1" - timed-out "^4.0.1" - url-parse-lax "^3.0.0" - url-to-options "^1.0.1" - -graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6: - version "4.2.3" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" - integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ== - -graphql@15.0.0: - version "15.0.0" - resolved "https://registry.yarnpkg.com/graphql/-/graphql-15.0.0.tgz#042a5eb5e2506a2e2111ce41eb446a8e570b8be9" - integrity sha512-ZyVO1xIF9F+4cxfkdhOJINM+51B06Friuv4M66W7HzUOeFd+vNzUn4vtswYINPi6sysjf1M2Ri/rwZALqgwbaQ== - -has-flag@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= - -has-symbol-support-x@^1.4.1: - version "1.4.2" - resolved "https://registry.yarnpkg.com/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz#1409f98bc00247da45da67cee0a36f282ff26455" - integrity sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw== - -has-symbols@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" - integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q= - -has-to-string-tag-x@^1.2.0: - version "1.4.1" - resolved "https://registry.yarnpkg.com/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz#a045ab383d7b4b2012a00148ab0aa5f290044d4d" - integrity sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw== - dependencies: - has-symbol-support-x "^1.4.1" - -has-value@^0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" - integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= - dependencies: - get-value "^2.0.3" - has-values "^0.1.4" - isobject "^2.0.0" - -has-value@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" - integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= - dependencies: - get-value "^2.0.6" - has-values "^1.0.0" - isobject "^3.0.0" - -has-values@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" - integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= - -has-values@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" - integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= - dependencies: - is-number "^3.0.0" - kind-of "^4.0.0" - -has@^1.0.1, has@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - dependencies: - function-bind "^1.1.1" - -homedir-polyfill@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8" - integrity sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA== - dependencies: - parse-passwd "^1.0.0" - -http-cache-semantics@3.8.1: - version "3.8.1" - resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz#39b0e16add9b605bf0a9ef3d9daaf4843b4cacd2" - integrity sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w== - -inflight@^1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= - dependencies: - once "^1.3.0" - wrappy "1" - -inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.3: - version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== - -interpret@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296" - integrity sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw== - -into-stream@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/into-stream/-/into-stream-3.1.0.tgz#96fb0a936c12babd6ff1752a17d05616abd094c6" - integrity sha1-lvsKk2wSur1v8XUqF9BWFqvQlMY= - dependencies: - from2 "^2.1.1" - p-is-promise "^1.1.0" - -invert-kv@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" - integrity sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA== - -is-accessor-descriptor@^0.1.6: - version "0.1.6" - resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" - integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= - dependencies: - kind-of "^3.0.2" - -is-accessor-descriptor@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" - integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== - dependencies: - kind-of "^6.0.0" - -is-binary-path@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" - integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg= - dependencies: - binary-extensions "^1.0.0" - -is-buffer@^1.1.5, is-buffer@~1.1.1: - version "1.1.6" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" - integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== - -is-callable@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" - integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA== - -is-data-descriptor@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" - integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= - dependencies: - kind-of "^3.0.2" - -is-data-descriptor@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" - integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== - dependencies: - kind-of "^6.0.0" - -is-date-object@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" - integrity sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY= - -is-descriptor@^0.1.0: - version "0.1.6" - resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" - integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== - dependencies: - is-accessor-descriptor "^0.1.6" - is-data-descriptor "^0.1.4" - kind-of "^5.0.0" - -is-descriptor@^1.0.0, is-descriptor@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" - integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== - dependencies: - is-accessor-descriptor "^1.0.0" - is-data-descriptor "^1.0.0" - kind-of "^6.0.2" - -is-extendable@^0.1.0, is-extendable@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" - integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= - -is-extendable@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" - integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== - dependencies: - is-plain-object "^2.0.4" - -is-extglob@^2.1.0, is-extglob@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= - -is-fullwidth-code-point@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" - integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= - dependencies: - number-is-nan "^1.0.0" - -is-fullwidth-code-point@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" - integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= - -is-glob@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" - integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo= - dependencies: - is-extglob "^2.1.0" - -is-glob@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" - integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== - dependencies: - is-extglob "^2.1.1" - -is-number@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" - integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= - dependencies: - kind-of "^3.0.2" - -is-object@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-object/-/is-object-1.0.1.tgz#8952688c5ec2ffd6b03ecc85e769e02903083470" - integrity sha1-iVJojF7C/9awPsyF52ngKQMINHA= - -is-plain-obj@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" - integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= - -is-plain-object@^2.0.3, is-plain-object@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" - integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== - dependencies: - isobject "^3.0.1" - -is-plain-object@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-3.0.0.tgz#47bfc5da1b5d50d64110806c199359482e75a928" - integrity sha512-tZIpofR+P05k8Aocp7UI/2UTa9lTJSebCXpFFoR9aibpokDj/uXBsJ8luUu0tTVYKkMU6URDUuOfJZ7koewXvg== - dependencies: - isobject "^4.0.0" - -is-regex@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" - integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE= - dependencies: - has "^1.0.1" - -is-retry-allowed@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4" - integrity sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg== - -is-stream@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" - integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= - -is-symbol@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" - integrity sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw== - dependencies: - has-symbols "^1.0.0" - -is-windows@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" - integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== - -isarray@1.0.0, isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= - -isexe@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= - -isobject@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" - integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= - dependencies: - isarray "1.0.0" - -isobject@^3.0.0, isobject@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" - integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= - -isobject@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/isobject/-/isobject-4.0.0.tgz#3f1c9155e73b192022a80819bacd0343711697b0" - integrity sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA== - -isurl@^1.0.0-alpha5: - version "1.0.0" - resolved "https://registry.yarnpkg.com/isurl/-/isurl-1.0.0.tgz#b27f4f49f3cdaa3ea44a0a5b7f3462e6edc39d67" - integrity sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w== - dependencies: - has-to-string-tag-x "^1.2.0" - is-object "^1.0.1" - -js-tokens@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" - integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== - -json-buffer@3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" - integrity sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg= - -json-schema-traverse@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" - integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== - -jsonfile@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" - integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= - optionalDependencies: - graceful-fs "^4.1.6" - -keyv@3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.0.0.tgz#44923ba39e68b12a7cec7df6c3268c031f2ef373" - integrity sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA== - dependencies: - json-buffer "3.0.0" - -kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: - version "3.2.2" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" - integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= - dependencies: - is-buffer "^1.1.5" - -kind-of@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" - integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= - dependencies: - is-buffer "^1.1.5" - -kind-of@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" - integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== - -kind-of@^6.0.0, kind-of@^6.0.2: - version "6.0.3" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" - integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== - -lcid@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf" - integrity sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA== - dependencies: - invert-kv "^2.0.0" - -listenercount@~1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/listenercount/-/listenercount-1.0.1.tgz#84c8a72ab59c4725321480c975e6508342e70937" - integrity sha1-hMinKrWcRyUyFIDJdeZQg0LnCTc= - -locate-path@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" - integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== - dependencies: - p-locate "^3.0.0" - path-exists "^3.0.0" - -lodash.get@^4.4.2: - version "4.4.2" - resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" - integrity sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk= - -lodash.set@^4.3.2: - version "4.3.2" - resolved "https://registry.yarnpkg.com/lodash.set/-/lodash.set-4.3.2.tgz#d8757b1da807dde24816b0d6a84bea1a76230b23" - integrity sha1-2HV7HagH3eJIFrDWqEvqGnYjCyM= - -lodash.uniq@^4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" - integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= - -lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.4: - version "4.17.15" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" - integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== - -lowercase-keys@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" - integrity sha1-TjNms55/VFfjXxMkvfb4jQv8cwY= - -lowercase-keys@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" - integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== - -macos-release@^2.2.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/macos-release/-/macos-release-2.3.0.tgz#eb1930b036c0800adebccd5f17bc4c12de8bb71f" - integrity sha512-OHhSbtcviqMPt7yfw5ef5aghS2jzFVKEFyCJndQt2YpSQ9qRVSEv2axSJI1paVThEu+FFGs584h/1YhxjVqajA== - -make-dir@^2.0.0, make-dir@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" - integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== - dependencies: - pify "^4.0.1" - semver "^5.6.0" - -map-age-cleaner@^0.1.1: - version "0.1.3" - resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" - integrity sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w== - dependencies: - p-defer "^1.0.0" - -map-cache@^0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" - integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= - -map-visit@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" - integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= - dependencies: - object-visit "^1.0.0" - -md5@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/md5/-/md5-2.2.1.tgz#53ab38d5fe3c8891ba465329ea23fac0540126f9" - integrity sha1-U6s41f48iJG6RlMp6iP6wFQBJvk= - dependencies: - charenc "~0.0.1" - crypt "~0.0.1" - is-buffer "~1.1.1" - -mem@^4.0.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/mem/-/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178" - integrity sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w== - dependencies: - map-age-cleaner "^0.1.1" - mimic-fn "^2.0.0" - p-is-promise "^2.0.0" - -micromatch@^3.1.10, micromatch@^3.1.4: - version "3.1.10" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" - integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== - dependencies: - arr-diff "^4.0.0" - array-unique "^0.3.2" - braces "^2.3.1" - define-property "^2.0.2" - extend-shallow "^3.0.2" - extglob "^2.0.4" - fragment-cache "^0.2.1" - kind-of "^6.0.2" - nanomatch "^1.2.9" - object.pick "^1.3.0" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.2" - -mimic-fn@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" - integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== - -mimic-response@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" - integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== - -minimatch@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" - integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== - dependencies: - brace-expansion "^1.1.7" - -minimist@0.0.8: - version "0.0.8" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" - integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= - -mixin-deep@^1.2.0: - version "1.3.2" - resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" - integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== - dependencies: - for-in "^1.0.2" - is-extendable "^1.0.1" - -"mkdirp@>=0.5 0", mkdirp@^0.5.1: - version "0.5.1" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" - integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= - dependencies: - minimist "0.0.8" - -ms@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" - integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= - -nan@^2.12.1: - version "2.14.0" - resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" - integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg== - -nanomatch@^1.2.9: - version "1.2.13" - resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" - integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== - dependencies: - arr-diff "^4.0.0" - array-unique "^0.3.2" - define-property "^2.0.2" - extend-shallow "^3.0.2" - fragment-cache "^0.2.1" - is-windows "^1.0.2" - kind-of "^6.0.2" - object.pick "^1.3.0" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" - -nice-try@^1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" - integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== - -node-environment-flags@^1.0.5: - version "1.0.6" - resolved "https://registry.yarnpkg.com/node-environment-flags/-/node-environment-flags-1.0.6.tgz#a30ac13621f6f7d674260a54dede048c3982c088" - integrity sha512-5Evy2epuL+6TM0lCQGpFIj6KwiEsGh1SrHUhTbNX+sLbBtjidPZFAnVK9y5yU1+h//RitLbRHTIMyxQPtxMdHw== - dependencies: - object.getownpropertydescriptors "^2.0.3" - semver "^5.7.0" - -node-fetch@^2.3.0, node-fetch@^2.6.0: - version "2.6.0" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.0.tgz#e633456386d4aa55863f676a7ab0daa8fdecb0fd" - integrity sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA== - -node-modules-regexp@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" - integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= - -normalize-path@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" - integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= - dependencies: - remove-trailing-separator "^1.0.1" - -normalize-path@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" - integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== - -normalize-url@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-2.0.1.tgz#835a9da1551fa26f70e92329069a23aa6574d7e6" - integrity sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw== - dependencies: - prepend-http "^2.0.0" - query-string "^5.0.1" - sort-keys "^2.0.0" - -npm-run-path@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" - integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= - dependencies: - path-key "^2.0.0" - -number-is-nan@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" - integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= - -object-assign@^4.1.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" - integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= - -object-copy@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" - integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= - dependencies: - copy-descriptor "^0.1.0" - define-property "^0.2.5" - kind-of "^3.0.3" - -object-inspect@^1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.6.0.tgz#c70b6cbf72f274aab4c34c0c82f5167bf82cf15b" - integrity sha512-GJzfBZ6DgDAmnuaM3104jR4s1Myxr3Y3zfIyN4z3UdqN69oSRacNK8UhnobDdC+7J2AHCjGwxQubNJfE70SXXQ== - -object-keys@^1.0.12, object-keys@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" - integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== - -object-visit@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" - integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= - dependencies: - isobject "^3.0.0" - -object.getownpropertydescriptors@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" - integrity sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY= - dependencies: - define-properties "^1.1.2" - es-abstract "^1.5.1" - -object.pick@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" - integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= - dependencies: - isobject "^3.0.1" - -octokit-pagination-methods@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/octokit-pagination-methods/-/octokit-pagination-methods-1.1.0.tgz#cf472edc9d551055f9ef73f6e42b4dbb4c80bea4" - integrity sha512-fZ4qZdQ2nxJvtcasX7Ghl+WlWS/d9IgnBIwFZXVNNZUmzpno91SX5bc5vuxiuKoCtK78XxGGNuSCrDC7xYB3OQ== - -once@^1.3.0, once@^1.3.1, once@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= - dependencies: - wrappy "1" - -os-locale@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" - integrity sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q== - dependencies: - execa "^1.0.0" - lcid "^2.0.0" - mem "^4.0.0" - -os-name@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/os-name/-/os-name-3.1.0.tgz#dec19d966296e1cd62d701a5a66ee1ddeae70801" - integrity sha512-h8L+8aNjNcMpo/mAIBPn5PXCM16iyPGjHNWo6U1YO8sJTMHtEtyczI6QJnLoplswm6goopQkqc7OAnjhWcugVg== - dependencies: - macos-release "^2.2.0" - windows-release "^3.1.0" - -p-cancelable@^0.4.0: - version "0.4.1" - resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.4.1.tgz#35f363d67d52081c8d9585e37bcceb7e0bbcb2a0" - integrity sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ== - -p-defer@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" - integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww= - -p-finally@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" - integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= - -p-is-promise@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-1.1.0.tgz#9c9456989e9f6588017b0434d56097675c3da05e" - integrity sha1-nJRWmJ6fZYgBewQ01WCXZ1w9oF4= - -p-is-promise@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e" - integrity sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg== - -p-limit@^2.0.0: - version "2.2.1" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.1.tgz#aa07a788cc3151c939b5131f63570f0dd2009537" - integrity sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg== - dependencies: - p-try "^2.0.0" - -p-locate@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" - integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== - dependencies: - p-limit "^2.0.0" - -p-timeout@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-2.0.1.tgz#d8dd1979595d2dc0139e1fe46b8b646cb3cdf038" - integrity sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA== - dependencies: - p-finally "^1.0.0" - -p-try@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" - integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== - -paralleljs@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/paralleljs/-/paralleljs-0.2.1.tgz#ebca745d3e09c01e2bebcc14858891ff4510e926" - integrity sha1-68p0XT4JwB4r68wUhYiR/0UQ6SY= - -parse-passwd@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" - integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY= - -pascalcase@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" - integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= - -path-dirname@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" - integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA= - -path-exists@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" - integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= - -path-is-absolute@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= - -path-key@^2.0.0, path-key@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" - integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= - -path-parse@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" - integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== - -pify@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" - integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= - -pify@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" - integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== - -pirates@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87" - integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA== - dependencies: - node-modules-regexp "^1.0.0" - -pkg-dir@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" - integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== - dependencies: - find-up "^3.0.0" - -posix-character-classes@^0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" - integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= - -prepend-http@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" - integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc= - -prettier@^1.16.4, prettier@^1.18.2: - version "1.18.2" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.18.2.tgz#6823e7c5900017b4bd3acf46fe9ac4b4d7bda9ea" - integrity sha512-OeHeMc0JhFE9idD4ZdtNibzY0+TPHSpSSb9h8FqtP+YnoZZ1sl8Vc9b1sasjfymH3SonAF4QcA2+mzHPhMvIiw== - -process-nextick-args@~2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" - integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== - -pump@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" - integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== - dependencies: - end-of-stream "^1.1.0" - once "^1.3.1" - -punycode@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" - integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== - -query-string@^5.0.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/query-string/-/query-string-5.1.1.tgz#a78c012b71c17e05f2e3fa2319dd330682efb3cb" - integrity sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw== - dependencies: - decode-uri-component "^0.2.0" - object-assign "^4.1.0" - strict-uri-encode "^1.0.0" - -readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@~2.3.6: - version "2.3.6" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" - integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~2.0.0" - safe-buffer "~5.1.1" - string_decoder "~1.1.1" - util-deprecate "~1.0.1" - -readdirp@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" - integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ== - dependencies: - graceful-fs "^4.1.11" - micromatch "^3.1.10" - readable-stream "^2.0.2" - -rechoir@^0.6.2: - version "0.6.2" - resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" - integrity sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q= - dependencies: - resolve "^1.1.6" - -regenerator-runtime@^0.13.2, regenerator-runtime@^0.13.3: - version "0.13.3" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz#7cf6a77d8f5c6f60eb73c5fc1955b2ceb01e6bf5" - integrity sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw== - -regex-not@^1.0.0, regex-not@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" - integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== - dependencies: - extend-shallow "^3.0.2" - safe-regex "^1.1.0" - -remove-trailing-separator@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" - integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= - -repeat-element@^1.1.2: - version "1.1.3" - resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" - integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== - -repeat-string@^1.6.1: - version "1.6.1" - resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" - integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= - -require-directory@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" - integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= - -require-main-filename@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" - integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= - -resolve-url@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" - integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= - -resolve@^1.1.6: - version "1.12.0" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6" - integrity sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w== - dependencies: - path-parse "^1.0.6" - -responselike@1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" - integrity sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec= - dependencies: - lowercase-keys "^1.0.0" - -ret@~0.1.10: - version "0.1.15" - resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" - integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== - -rimraf@2, rimraf@^2.6.2: - version "2.7.1" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" - integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== - dependencies: - glob "^7.1.3" - -safe-buffer@^5.1.1: - version "5.2.0" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519" - integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg== - -safe-buffer@~5.1.0, safe-buffer@~5.1.1: - version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - -safe-regex@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" - integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= - dependencies: - ret "~0.1.10" - -semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.0: - version "5.7.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== - -set-blocking@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" - integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= - -set-value@^2.0.0, set-value@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" - integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== - dependencies: - extend-shallow "^2.0.1" - is-extendable "^0.1.1" - is-plain-object "^2.0.3" - split-string "^3.0.1" - -setimmediate@~1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" - integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= - -shebang-command@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" - integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= - dependencies: - shebang-regex "^1.0.0" - -shebang-regex@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" - integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= - -shelljs@^0.8.3: - version "0.8.3" - resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.3.tgz#a7f3319520ebf09ee81275b2368adb286659b097" - integrity sha512-fc0BKlAWiLpwZljmOvAOTE/gXawtCoNrP5oaY7KIaQbbyHeQVg01pSEuEGvGh3HEdBU4baCD7wQBwADmM/7f7A== - dependencies: - glob "^7.0.0" - interpret "^1.0.0" - rechoir "^0.6.2" - -signal-exit@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" - integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= - -slash@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" - integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A== - -slice-ansi@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" - integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== - dependencies: - ansi-styles "^3.2.0" - astral-regex "^1.0.0" - is-fullwidth-code-point "^2.0.0" - -snapdragon-node@^2.0.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" - integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== - dependencies: - define-property "^1.0.0" - isobject "^3.0.0" - snapdragon-util "^3.0.1" - -snapdragon-util@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" - integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== - dependencies: - kind-of "^3.2.0" - -snapdragon@^0.8.1: - version "0.8.2" - resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" - integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== - dependencies: - base "^0.11.1" - debug "^2.2.0" - define-property "^0.2.5" - extend-shallow "^2.0.1" - map-cache "^0.2.2" - source-map "^0.5.6" - source-map-resolve "^0.5.0" - use "^3.1.0" - -sort-keys@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128" - integrity sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg= - dependencies: - is-plain-obj "^1.0.0" - -source-map-resolve@^0.5.0: - version "0.5.3" - resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" - integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw== - dependencies: - atob "^2.1.2" - decode-uri-component "^0.2.0" - resolve-url "^0.2.1" - source-map-url "^0.4.0" - urix "^0.1.0" - -source-map-support@^0.5.16: - version "0.5.16" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.16.tgz#0ae069e7fe3ba7538c64c98515e35339eac5a042" - integrity sha512-efyLRJDr68D9hBBNIPWFjhpFzURh+KJykQwvMyW5UiZzYwoF6l4YMMDIJJEyFWxWCqfyxLzz6tSfUFR+kXXsVQ== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map-url@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" - integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= - -source-map@^0.5.0, source-map@^0.5.6: - version "0.5.7" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" - integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= - -source-map@^0.6.0: - version "0.6.1" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== - -split-string@^3.0.1, split-string@^3.0.2: - version "3.1.0" - resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" - integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== - dependencies: - extend-shallow "^3.0.0" - -static-extend@^0.1.1: - version "0.1.2" - resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" - integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= - dependencies: - define-property "^0.2.5" - object-copy "^0.1.0" - -strict-uri-encode@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" - integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM= - -string-width@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" - integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= - dependencies: - code-point-at "^1.0.0" - is-fullwidth-code-point "^1.0.0" - strip-ansi "^3.0.0" - -string-width@^2.0.0, string-width@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" - integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== - dependencies: - is-fullwidth-code-point "^2.0.0" - strip-ansi "^4.0.0" - -string-width@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" - integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== - dependencies: - emoji-regex "^7.0.1" - is-fullwidth-code-point "^2.0.0" - strip-ansi "^5.1.0" - -string.prototype.trimleft@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.0.tgz#6cc47f0d7eb8d62b0f3701611715a3954591d634" - integrity sha512-FJ6b7EgdKxxbDxc79cOlok6Afd++TTs5szo+zJTUyow3ycrRfJVE2pq3vcN53XexvKZu/DJMDfeI/qMiZTrjTw== - dependencies: - define-properties "^1.1.3" - function-bind "^1.1.1" - -string.prototype.trimright@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.0.tgz#669d164be9df9b6f7559fa8e89945b168a5a6c58" - integrity sha512-fXZTSV55dNBwv16uw+hh5jkghxSnc5oHq+5K/gXgizHwAvMetdAJlHqqoFC1FSDVPYWLkAKl2cxpUT41sV7nSg== - dependencies: - define-properties "^1.1.3" - function-bind "^1.1.1" - -string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== - dependencies: - safe-buffer "~5.1.0" - -strip-ansi@^3.0.0, strip-ansi@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" - integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= - dependencies: - ansi-regex "^2.0.0" - -strip-ansi@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" - integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= - dependencies: - ansi-regex "^3.0.0" - -strip-ansi@^5.1.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" - integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== - dependencies: - ansi-regex "^4.1.0" - -strip-eof@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" - integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= - -supports-color@^5.3.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== - dependencies: - has-flag "^3.0.0" - -table@^5.0.2: - version "5.4.6" - resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" - integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== - dependencies: - ajv "^6.10.2" - lodash "^4.17.14" - slice-ansi "^2.1.0" - string-width "^3.0.0" - -through@^2.3.8: - version "2.3.8" - resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" - integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= - -timed-out@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" - integrity sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8= - -to-object-path@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" - integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= - dependencies: - kind-of "^3.0.2" - -to-regex-range@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" - integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= - dependencies: - is-number "^3.0.0" - repeat-string "^1.6.1" - -to-regex@^3.0.1, to-regex@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" - integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== - dependencies: - define-property "^2.0.2" - extend-shallow "^3.0.2" - regex-not "^1.0.2" - safe-regex "^1.1.0" - -"traverse@>=0.3.0 <0.4": - version "0.3.9" - resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.3.9.tgz#717b8f220cc0bb7b44e40514c22b2e8bbc70d8b9" - integrity sha1-cXuPIgzAu3tE5AUUwisui7xw2Lk= - -typescript-compiler@^1.4.1-2: - version "1.4.1-2" - resolved "https://registry.yarnpkg.com/typescript-compiler/-/typescript-compiler-1.4.1-2.tgz#ba4f7db22d91534a1929d90009dce161eb72fd3f" - integrity sha1-uk99si2RU0oZKdkACdzhYety/T8= - -typescript@^3.4: - version "3.6.4" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.6.4.tgz#b18752bb3792bc1a0281335f7f6ebf1bbfc5b91d" - integrity sha512-unoCll1+l+YK4i4F8f22TaNVPRHcD9PA3yCuZ8g5e0qGqlVlJ/8FSateOLLSagn+Yg5+ZwuPkL8LFUc0Jcvksg== - -union-value@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" - integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== - dependencies: - arr-union "^3.1.0" - get-value "^2.0.6" - is-extendable "^0.1.1" - set-value "^2.0.1" - -universal-user-agent@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-4.0.0.tgz#27da2ec87e32769619f68a14996465ea1cb9df16" - integrity sha512-eM8knLpev67iBDizr/YtqkJsF3GK8gzDc6st/WKzrTuPtcsOKW/0IdL4cnMBsU69pOx0otavLWBDGTwg+dB0aA== - dependencies: - os-name "^3.1.0" - -universalify@^0.1.0: - version "0.1.2" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" - integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== - -unset-value@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" - integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= - dependencies: - has-value "^0.3.1" - isobject "^3.0.0" - -unzipper@^0.9.3: - version "0.9.15" - resolved "https://registry.yarnpkg.com/unzipper/-/unzipper-0.9.15.tgz#97d99203dad17698ee39882483c14e4845c7549c" - integrity sha512-2aaUvO4RAeHDvOCuEtth7jrHFaCKTSXPqUkXwADaLBzGbgZGzUDccoEdJ5lW+3RmfpOZYNx0Rw6F6PUzM6caIA== - dependencies: - big-integer "^1.6.17" - binary "~0.3.0" - bluebird "~3.4.1" - buffer-indexof-polyfill "~1.0.0" - duplexer2 "~0.1.4" - fstream "^1.0.12" - listenercount "~1.0.1" - readable-stream "~2.3.6" - setimmediate "~1.0.4" - -upath@^1.1.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" - integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== - -uri-js@^4.2.2: - version "4.2.2" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" - integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== - dependencies: - punycode "^2.1.0" - -urix@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" - integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= - -url-parse-lax@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" - integrity sha1-FrXK/Afb42dsGxmZF3gj1lA6yww= - dependencies: - prepend-http "^2.0.0" - -url-to-options@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/url-to-options/-/url-to-options-1.0.1.tgz#1505a03a289a48cbd7a434efbaeec5055f5633a9" - integrity sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k= - -use@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" - integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== - -util-deprecate@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= - -v8flags@^3.1.1: - version "3.1.3" - resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-3.1.3.tgz#fc9dc23521ca20c5433f81cc4eb9b3033bb105d8" - integrity sha512-amh9CCg3ZxkzQ48Mhcb8iX7xpAfYJgePHxWMQCBWECpOSqJUXgY26ncA61UTV0BkPqfhcy6mzwCIoP4ygxpW8w== - dependencies: - homedir-polyfill "^1.0.1" - -which-module@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" - integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= - -which@^1.2.9, which@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" - integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== - dependencies: - isexe "^2.0.0" - -windows-release@^3.1.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/windows-release/-/windows-release-3.2.0.tgz#8122dad5afc303d833422380680a79cdfa91785f" - integrity sha512-QTlz2hKLrdqukrsapKsINzqMgOUpQW268eJ0OaOpJN32h272waxR9fkB9VoWRtK7uKHG5EHJcTXQBD8XZVJkFA== - dependencies: - execa "^1.0.0" - -wrap-ansi@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" - integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU= - dependencies: - string-width "^1.0.1" - strip-ansi "^3.0.1" - -wrappy@1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= - -"y18n@^3.2.1 || ^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" - integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== - -yargs-parser@^11.1.1: - version "11.1.1" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4" - integrity sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ== - dependencies: - camelcase "^5.0.0" - decamelize "^1.2.0" - -yargs@^12.0.2: - version "12.0.5" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13" - integrity sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw== - dependencies: - cliui "^4.0.0" - decamelize "^1.2.0" - find-up "^3.0.0" - get-caller-file "^1.0.1" - os-locale "^3.0.0" - require-directory "^2.1.1" - require-main-filename "^1.0.1" - set-blocking "^2.0.0" - string-width "^2.0.0" - which-module "^2.0.0" - y18n "^3.2.1 || ^4.0.0" - yargs-parser "^11.1.1" diff --git a/jest.config.js b/jest.config.js index 6ea0cb4..57cc180 100644 --- a/jest.config.js +++ b/jest.config.js @@ -2,10 +2,10 @@ module.exports = { collectCoverage: true, coverageThreshold: { global: { - branches: 89, - functions: 92, - lines: 95, - statements: 94, + branches: 100, + functions: 100, + lines: 100, + statements: 100, }, }, coveragePathIgnorePatterns: ['/src/config.ts', '/__tests__/test-tmp-files'], diff --git a/package.json b/package.json index 081a9ea..62b8482 100644 --- a/package.json +++ b/package.json @@ -16,8 +16,8 @@ }, "license": "MIT", "scripts": { - "test": "jest", - "build": "babel --verbose --extensions '.ts' src -d lib", + "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js", + "build": "tsc", "prepublishOnly": "make build", "typecheck": "tsc --project tsconfig.json" }, @@ -25,41 +25,37 @@ "dataloader-codegen": "./lib/index.js" }, "devDependencies": { - "@babel/cli": "^7.6.3", - "@babel/core": "^7.6.4", - "@babel/preset-flow": "^7.0.0", - "@babel/preset-typescript": "^7.6.0", - "@types/jest": "^25.1.2", - "@types/js-yaml": "^3.12.1", - "@types/lodash": "^4.14.144", - "@types/node": "^12.7.12", - "@types/object-hash": "^1.3.0", - "@types/prettier": "^1.18.3", + "@babel/cli": "^7.27.2", + "@babel/core": "^7.27.4", + "@babel/preset-typescript": "^7.27.1", + "@types/jest": "^29.5.14", + "@types/js-yaml": "^4.0.9", + "@types/lodash": "^4.17.17", + "@types/node": "^24.0.1", + "@types/object-hash": "^3.0.0", "@types/yargs": "^13.0.3", - "flow-bin": "^0.121.0", - "flowgen": "^1.10.0", - "jest": "^25.1.0", + "jest": "^29.7.0", "regenerator-runtime": "^0.13.3", "tmp-promise": "^2.0.2", - "typescript": "^3.7.0-beta" + "typescript": "^5.8.3" }, "dependencies": { - "@babel/preset-env": "^7.6.3", + "@babel/preset-env": "^7.27.2", "aggregate-error": "^3.0.1", "ajv": "^6.11.0", "dataloader": "^2.0.0", "ensure-error": "^2.0.0", - "js-yaml": "^3.13.1", - "lodash": "^4.17.15", - "object-hash": "^2.0.0", - "prettier": "^1.19.1", - "yargs": "^14.2.0" + "js-yaml": "^4.1.0", + "lodash": "^4.17.17", + "object-hash": "^3.0.0", + "prettier": "^3.5.3", + "yargs": "^13.3.2" }, "files": [ "lib", "schema.json" ], "engines": { - "node": ">=10" + "node": ">=22" } } diff --git a/src/assert.ts b/src/assert.ts deleted file mode 100644 index 3bea880..0000000 --- a/src/assert.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { AssertionError } from 'assert'; - -// TODO: Figure out how to use the native Node assert module with TypeScript -// @see https://github.com/microsoft/TypeScript/pull/32695 - -// export default function assert(condition: boolean, msg?: string): asserts condition { -// if (!condition) { -// throw new Error(msg) -// } -// } - -export default function assert(condition: boolean, msg: string) { - if (!condition) { - throw new Error(msg); - } -} diff --git a/src/codegen.ts b/src/codegen.ts index 7102225..72297b8 100644 --- a/src/codegen.ts +++ b/src/codegen.ts @@ -1,7 +1,7 @@ import _ from 'lodash'; import prettier from 'prettier'; import { GlobalConfig, getResourcePaths } from './config'; -import { getLoaderType, getLoadersTypeMap, getResourceTypings } from './genTypeFlow'; +import { getLoaderType, getLoadersTypeMap, getResourceTypings } from './genType'; import getLoaderImplementation from './implementation'; function getLoaders(config: object, paths: Array>, current: Array) { @@ -46,8 +46,6 @@ export default function codegen( const { printResourceTypeImports, printResourcesType } = getResourceTypings(config); const output = ` - // @flow strict-local - /** * !!! THIS FILE IS AUTO-GENERATED. CHANGES MAY BE OVERWRITTEN !!! */ @@ -82,21 +80,22 @@ export default function codegen( * =============================== */ - // https://github.com/facebook/flow/issues/7709#issuecomment-530501257 - type ExtractArg = ([Arg => Ret]) => Arg; - type ExtractPromisedReturnValue = ((...A) => Promise) => R; + type PromisedReturnType Promise> = + F extends (...args: any) => Promise ? R : never; + + type Values = T[keyof T]; - export type DataLoaderCodegenOptions = {| + export type DataLoaderCodegenOptions = { errorHandler?: ( - resourcePath: $ReadOnlyArray, - // $FlowFixMe: We don't know what type the resource might throw, so we have to type error to "any" :( + resourcePath: ReadonlyArray, + // We don't know what type the resource might throw, so we have to type error to "any" :( error: any, ) => Promise, - resourceMiddleware?: {| - before?: (resourcePath: $ReadOnlyArray, resourceArgs: T) => Promise, - after?: (resourcePath: $ReadOnlyArray, response: T) => Promise, - |}; - |}; + resourceMiddleware?: { + before?: (resourcePath: ReadonlyArray, resourceArgs: T) => Promise, + after?: (resourcePath: ReadonlyArray, response: T) => Promise, + }; + }; /** * =============================== @@ -117,5 +116,5 @@ export default function codegen( } `; - return prettier.format(output, { parser: 'babel' }); + return prettier.format(output, { parser: 'babel-ts' }); } diff --git a/src/config.ts b/src/config.ts index 92a9268..632bb88 100644 --- a/src/config.ts +++ b/src/config.ts @@ -5,7 +5,7 @@ import Ajv from 'ajv'; export interface GlobalConfig { typings: { - language: 'flow'; + language: 'typescript'; embedResourcesType: { imports: string; ResourcesType: string; @@ -74,7 +74,7 @@ export function getConfig( } const fileContents = fs.readFileSync(configFilePath, 'utf8'); - const config = yaml.safeLoad(fileContents); + const config = yaml.load(fileContents) as any; assertConfigValidity(config); diff --git a/src/genTypeFlow.ts b/src/genType.ts similarity index 64% rename from src/genTypeFlow.ts rename to src/genType.ts index 7e865a0..e5cd50d 100644 --- a/src/genTypeFlow.ts +++ b/src/genType.ts @@ -1,39 +1,17 @@ import _ from 'lodash'; -import assert from './assert'; import { GlobalConfig, ResourceConfig } from './config'; -function errorPrefix(resourcePath: ReadonlyArray): string { - return `[dataloader-codegen :: ${resourcePath.join('.')}]`; -} - -// The reference at runtime to where the underlying resource lives -const resourceReference = (resourcePath: ReadonlyArray) => ['resources', ...resourcePath].join('.'); - /** * Get the reference to the type representing the resource function this resource */ export function getResourceTypeReference(resourceConfig: ResourceConfig, resourcePath: ReadonlyArray) { - function toPropertyTypePath(path: ReadonlyArray): string { - assert(path.length >= 1, 'expected resource path to be a not empty array'); - - if (path.length === 1) { - return path[0]; - } - - return `$PropertyType<${toPropertyTypePath(path.slice(0, -1))}, '${path.slice(-1)}'>`; - } - - return toPropertyTypePath(['ResourcesType', ...resourcePath]); + return `ResourcesType${resourcePath.map((segment) => `['${segment}']`).join('')}`; } function getResourceArg(resourceConfig: ResourceConfig, resourcePath: ReadonlyArray) { // TODO: We assume that the resource accepts a single dict argument. Let's // make thie configurable to handle resources that use seperate arguments. - return `\ - $Call< - ExtractArg, - [${getResourceTypeReference(resourceConfig, resourcePath)}] - >`; + return `Parameters<${getResourceTypeReference(resourceConfig, resourcePath)}>[0]`; } /** @@ -41,11 +19,7 @@ function getResourceArg(resourceConfig: ResourceConfig, resourcePath: ReadonlyAr * using its `.has(T)`'s function paremeter type */ export function getNewKeyTypeFromBatchKeySetType(batchKey: string, resourceArgs: string) { - return `\ - $Call< - ExtractArg, - [$PropertyType<$PropertyType<${resourceArgs}, '${batchKey}'>, 'has'>] - >`; + return `Parameters<${resourceArgs}['${batchKey}']['has']>[0]`; } export function getLoaderTypeKey(resourceConfig: ResourceConfig, resourcePath: ReadonlyArray) { @@ -55,8 +29,8 @@ export function getLoaderTypeKey(resourceConfig: ResourceConfig, resourcePath: R if (resourceConfig.isBatchResource) { // Extract newKeyType from the batch key's Array's type - // We add NonMaybeType before batch key element type to force the batch key to be required, regardless if the OpenAPI spec specifies it as being optional - let newKeyType = `${resourceConfig.newKey}: $ElementType<$NonMaybeType<$PropertyType<${resourceArgs}, '${resourceConfig.batchKey}'>>, 0>`; + // We add NonNullable before batch key element type to force the batch key to be required, regardless if the OpenAPI spec specifies it as being optional + let newKeyType = `${resourceConfig.newKey}: NonNullable<${resourceArgs}['${resourceConfig.batchKey}']>[0]`; if (resourceConfig.isBatchKeyASet) { /** @@ -69,28 +43,14 @@ export function getLoaderTypeKey(resourceConfig: ResourceConfig, resourcePath: R )}`; } - return `{| - ...$Diff<${resourceArgs}, { - ${resourceConfig.batchKey}: $PropertyType<${resourceArgs}, '${resourceConfig.batchKey}'> - }>, - ...{| ${newKeyType} |} - |}`; + return `Omit<${resourceArgs}, '${resourceConfig.batchKey}'> & { ${newKeyType} }`; } return resourceArgs; } export function getLoaderTypeVal(resourceConfig: ResourceConfig, resourcePath: ReadonlyArray) { - // TODO: We assume that the resource accepts a single dict argument. Let's - // make this configurable to handle resources that use seperate arguments. - const resourceArgs = getResourceArg(resourceConfig, resourcePath); - - // TODO: DRY up in codegen to something like RetVal - let retVal = `\ - $Call< - ExtractPromisedReturnValue<[${resourceArgs}]>, - ${getResourceTypeReference(resourceConfig, resourcePath)} - >`; + let retVal = `PromisedReturnType<${getResourceTypeReference(resourceConfig, resourcePath)}>`; if (resourceConfig.isBatchResource) { /** @@ -115,9 +75,9 @@ export function getLoaderTypeVal(resourceConfig: ResourceConfig, resourcePath: R * ``` */ if (resourceConfig.nestedPath) { - retVal = `$PropertyType<${retVal}, '${resourceConfig.nestedPath}'>`; + retVal = `${retVal}['${resourceConfig.nestedPath}']`; } - retVal = resourceConfig.isResponseDictionary ? `$Values<${retVal}>` : `$ElementType<${retVal}, 0>`; + retVal = resourceConfig.isResponseDictionary ? `Values<${retVal}>` : `${retVal}[0]`; } return retVal; @@ -147,7 +107,7 @@ export function getLoadersTypeMap( const nextValues = _.uniq(paths.map((p) => p[0])); const objectProperties: ReadonlyArray = nextValues.map( - (nextVal) => + (nextVal: any) => `${nextVal}: ${getLoadersTypeMap( config, paths.filter((p) => p[0] === nextVal).map((p) => p.slice(1)), @@ -155,9 +115,9 @@ export function getLoadersTypeMap( )},`, ); - return `$ReadOnly<{| + return `Readonly<{ ${objectProperties.join('\n')} - |}>`; + }>`; } export function getResourceTypings( diff --git a/src/implementation.ts b/src/implementation.ts index 64849ab..e6c5e67 100644 --- a/src/implementation.ts +++ b/src/implementation.ts @@ -1,6 +1,6 @@ +import { strict as assert } from 'node:assert'; import { ResourceConfig, BatchResourceConfig, NonBatchResourceConfig } from './config'; -import assert from './assert'; -import { getLoaderTypeKey, getLoaderTypeVal } from './genTypeFlow'; +import { getLoaderTypeKey, getLoaderTypeVal } from './genType'; import { errorPrefix } from './runtimeHelpers'; function getLoaderComment(resourceConfig: ResourceConfig, resourcePath: ReadonlyArray): string { @@ -31,9 +31,9 @@ function callResource(resourceConfig: ResourceConfig, resourcePath: ReadonlyArra // Call the underlying resource, wrapped with our middleware and error handling. // Uses an iife so the result variable is assignable at the callsite (for readability) return ` - (async _resourceArgs => { - // Make a re-assignable variable so flow/eslint doesn't complain - let __resourceArgs = _resourceArgs; + (async _resourceArg => { + // Make a re-assignable variable so eslint doesn't complain + let __resourceArgs: Parameters = [_resourceArg]; if (options && options.resourceMiddleware && options.resourceMiddleware.before) { __resourceArgs = await options.resourceMiddleware.before( @@ -107,14 +107,15 @@ function batchLoaderLogic(resourceConfig: BatchResourceConfig, resourcePath: Rea return ` // For now, we assume that the dataloader key should be the first argument to the resource // @see https://github.com/Yelp/dataloader-codegen/issues/56 - const resourceArgs = [{ + const resourceArg = { ..._.omit(requests[0], '${resourceConfig.newKey}'), ${batchKeyParam}, - }]; + }; `; })()} - let response = await ${callResource(resourceConfig, resourcePath)}(resourceArgs); + // Any-type so this is re-assignable to the 'nestedPath' without TS complaining + let response: any = await ${callResource(resourceConfig, resourcePath)}(resourceArg); if (!(response instanceof Error)) { ${(() => { @@ -220,11 +221,6 @@ function batchLoaderLogic(resourceConfig: BatchResourceConfig, resourcePath: Rea )} Resource returned \${response.length} items, but we requested \${requests.length} items.\`, 'Add reorderResultsByKey to the config for this resource to be able to handle a partial response.', ].join(' ')); - - // Tell flow that BatchItemNotFoundError extends Error. - // It's an issue with flowgen package, but not an issue with Flow. - // @see https://github.com/Yelp/dataloader-codegen/pull/35#discussion_r394777533 - invariant(response instanceof Error, 'expected BatchItemNotFoundError to be an Error'); } } `; @@ -279,10 +275,6 @@ function batchLoaderLogic(resourceConfig: BatchResourceConfig, resourcePath: Rea : 'null' } - // Tell flow that "response" is actually an error object. - // (This is so we can pass it as 'cause' to CaughtResourceError) - invariant(response instanceof Error, 'expected response to be an error'); - return new CaughtResourceError( \`${errorPrefix( resourcePath, @@ -410,12 +402,6 @@ function getBatchLoader(resourceConfig: BatchResourceConfig, resourcePath: Reado return unPartitionResults(requestGroups, groupedResults); }, { - ${ - /** - * TODO: Figure out why directly passing `cacheKeyOptions` causes - * flow errors :( - */ '' - } ...cacheKeyOptions, ${resourceConfig.maxBatchSize ? `maxBatchSize: ${resourceConfig.maxBatchSize},` : ''} } @@ -509,12 +495,6 @@ function getPropertyBatchLoader(resourceConfig: BatchResourceConfig, resourcePat ); }, { - ${ - /** - * TODO: Figure out why directly passing `cacheKeyOptions` causes - * flow errors :( - */ '' - } ...cacheKeyOptions, ${resourceConfig.maxBatchSize ? `maxBatchSize: ${resourceConfig.maxBatchSize},` : ''} } @@ -545,9 +525,9 @@ function getNonBatchLoader(resourceConfig: NonBatchResourceConfig, resourcePath: // For now, we assume that the dataloader key should be the first argument to the resource // @see https://github.com/Yelp/dataloader-codegen/issues/56 - const resourceArgs = [key]; + const resourceArg = key; - return await ${callResource(resourceConfig, resourcePath)}(resourceArgs); + return await ${callResource(resourceConfig, resourcePath)}(resourceArg); })); return responses; diff --git a/src/index.ts b/src/index.ts index 2f46bca..132f6ed 100644 --- a/src/index.ts +++ b/src/index.ts @@ -12,9 +12,9 @@ interface CLIArgs { output: string; } -function writeLoaders(args: CLIArgs) { +async function writeLoaders(args: CLIArgs) { const config = getConfig(args.config); - const output = codegen(config); + const output = await codegen(config); assert(typeof args.config === 'string', 'expected args.config to be set!'); assert(typeof args.output === 'string', 'expected args.output to be set!'); diff --git a/tsconfig.json b/tsconfig.json index 954d26a..3d791bc 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -59,5 +59,6 @@ /* Experimental Options */ // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */ // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ - } + }, + "include": ["src/**/*.ts"] } diff --git a/yarn.lock b/yarn.lock deleted file mode 100644 index 9d0d22f..0000000 --- a/yarn.lock +++ /dev/null @@ -1,4975 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -"@babel/cli@^7.6.3": - version "7.6.3" - resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.6.3.tgz#1b0c62098c8a5e01e4a4a59a52cba9682e7e0906" - integrity sha512-kWKOEeuylpa781yCeA5//eEx1u3WtLZqbi2VWXLKmb3QDPb5T2f7Yk311MK7bvvjR70dluAeiu4VXXsG1WwJsw== - dependencies: - commander "^2.8.1" - convert-source-map "^1.1.0" - fs-readdir-recursive "^1.1.0" - glob "^7.0.0" - lodash "^4.17.13" - mkdirp "^0.5.1" - output-file-sync "^2.0.0" - slash "^2.0.0" - source-map "^0.6.1" - optionalDependencies: - chokidar "^2.1.8" - -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5": - version "7.5.5" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d" - integrity sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw== - dependencies: - "@babel/highlight" "^7.0.0" - -"@babel/code-frame@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz#33e25903d7481181534e12ec0a25f16b6fcf419e" - integrity sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g== - dependencies: - "@babel/highlight" "^7.8.3" - -"@babel/core@^7.1.0", "@babel/core@^7.6.4": - version "7.6.4" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.6.4.tgz#6ebd9fe00925f6c3e177bb726a188b5f578088ff" - integrity sha512-Rm0HGw101GY8FTzpWSyRbki/jzq+/PkNQJ+nSulrdY6gFGOsNseCqD6KHRYe2E+EdzuBdr2pxCp6s4Uk6eJ+XQ== - dependencies: - "@babel/code-frame" "^7.5.5" - "@babel/generator" "^7.6.4" - "@babel/helpers" "^7.6.2" - "@babel/parser" "^7.6.4" - "@babel/template" "^7.6.0" - "@babel/traverse" "^7.6.3" - "@babel/types" "^7.6.3" - convert-source-map "^1.1.0" - debug "^4.1.0" - json5 "^2.1.0" - lodash "^4.17.13" - resolve "^1.3.2" - semver "^5.4.1" - source-map "^0.5.0" - -"@babel/core@^7.7.5": - version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.8.4.tgz#d496799e5c12195b3602d0fddd77294e3e38e80e" - integrity sha512-0LiLrB2PwrVI+a2/IEskBopDYSd8BCb3rOvH7D5tzoWd696TBEduBvuLVm4Nx6rltrLZqvI3MCalB2K2aVzQjA== - dependencies: - "@babel/code-frame" "^7.8.3" - "@babel/generator" "^7.8.4" - "@babel/helpers" "^7.8.4" - "@babel/parser" "^7.8.4" - "@babel/template" "^7.8.3" - "@babel/traverse" "^7.8.4" - "@babel/types" "^7.8.3" - convert-source-map "^1.7.0" - debug "^4.1.0" - gensync "^1.0.0-beta.1" - json5 "^2.1.0" - lodash "^4.17.13" - resolve "^1.3.2" - semver "^5.4.1" - source-map "^0.5.0" - -"@babel/generator@^7.6.3": - version "7.6.3" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.6.3.tgz#71d5375264f93ec7bac7d9f35a67067733f5578e" - integrity sha512-hLhYbAb3pHwxjlijC4AQ7mqZdcoujiNaW7izCT04CIowHK8psN0IN8QjDv0iyFtycF5FowUOTwDloIheI25aMw== - dependencies: - "@babel/types" "^7.6.3" - jsesc "^2.5.1" - lodash "^4.17.13" - source-map "^0.6.1" - -"@babel/generator@^7.6.4": - version "7.6.4" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.6.4.tgz#a4f8437287bf9671b07f483b76e3bb731bc97671" - integrity sha512-jsBuXkFoZxk0yWLyGI9llT9oiQ2FeTASmRFE32U+aaDTfoE92t78eroO7PTpU/OrYq38hlcDM6vbfLDaOLy+7w== - dependencies: - "@babel/types" "^7.6.3" - jsesc "^2.5.1" - lodash "^4.17.13" - source-map "^0.5.0" - -"@babel/generator@^7.8.4": - version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.8.4.tgz#35bbc74486956fe4251829f9f6c48330e8d0985e" - integrity sha512-PwhclGdRpNAf3IxZb0YVuITPZmmrXz9zf6fH8lT4XbrmfQKr6ryBzhv593P5C6poJRciFCL/eHGW2NuGrgEyxA== - dependencies: - "@babel/types" "^7.8.3" - jsesc "^2.5.1" - lodash "^4.17.13" - source-map "^0.5.0" - -"@babel/helper-annotate-as-pure@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32" - integrity sha512-3UYcJUj9kvSLbLbUIfQTqzcy5VX7GRZ/CCDrnOaZorFFM01aXp1+GJwuFGV4NDDoAS+mOUyHcO6UD/RfqOks3Q== - dependencies: - "@babel/types" "^7.0.0" - -"@babel/helper-builder-binary-assignment-operator-visitor@^7.1.0": - version "7.1.0" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz#6b69628dfe4087798e0c4ed98e3d4a6b2fbd2f5f" - integrity sha512-qNSR4jrmJ8M1VMM9tibvyRAHXQs2PmaksQF7c1CGJNipfe3D8p+wgNwgso/P2A2r2mdgBWAXljNWR0QRZAMW8w== - dependencies: - "@babel/helper-explode-assignable-expression" "^7.1.0" - "@babel/types" "^7.0.0" - -"@babel/helper-call-delegate@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.4.4.tgz#87c1f8ca19ad552a736a7a27b1c1fcf8b1ff1f43" - integrity sha512-l79boDFJ8S1c5hvQvG+rc+wHw6IuH7YldmRKsYtpbawsxURu/paVy57FZMomGK22/JckepaikOkY0MoAmdyOlQ== - dependencies: - "@babel/helper-hoist-variables" "^7.4.4" - "@babel/traverse" "^7.4.4" - "@babel/types" "^7.4.4" - -"@babel/helper-create-class-features-plugin@^7.6.0": - version "7.6.0" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.6.0.tgz#769711acca889be371e9bc2eb68641d55218021f" - integrity sha512-O1QWBko4fzGju6VoVvrZg0RROCVifcLxiApnGP3OWfWzvxRZFCoBD81K5ur5e3bVY2Vf/5rIJm8cqPKn8HUJng== - dependencies: - "@babel/helper-function-name" "^7.1.0" - "@babel/helper-member-expression-to-functions" "^7.5.5" - "@babel/helper-optimise-call-expression" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-replace-supers" "^7.5.5" - "@babel/helper-split-export-declaration" "^7.4.4" - -"@babel/helper-define-map@^7.5.5": - version "7.5.5" - resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.5.5.tgz#3dec32c2046f37e09b28c93eb0b103fd2a25d369" - integrity sha512-fTfxx7i0B5NJqvUOBBGREnrqbTxRh7zinBANpZXAVDlsZxYdclDp467G1sQ8VZYMnAURY3RpBUAgOYT9GfzHBg== - dependencies: - "@babel/helper-function-name" "^7.1.0" - "@babel/types" "^7.5.5" - lodash "^4.17.13" - -"@babel/helper-explode-assignable-expression@^7.1.0": - version "7.1.0" - resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz#537fa13f6f1674df745b0c00ec8fe4e99681c8f6" - integrity sha512-NRQpfHrJ1msCHtKjbzs9YcMmJZOg6mQMmGRB+hbamEdG5PNpaSm95275VD92DvJKuyl0s2sFiDmMZ+EnnvufqA== - dependencies: - "@babel/traverse" "^7.1.0" - "@babel/types" "^7.0.0" - -"@babel/helper-function-name@^7.1.0": - version "7.1.0" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53" - integrity sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw== - dependencies: - "@babel/helper-get-function-arity" "^7.0.0" - "@babel/template" "^7.1.0" - "@babel/types" "^7.0.0" - -"@babel/helper-function-name@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz#eeeb665a01b1f11068e9fb86ad56a1cb1a824cca" - integrity sha512-BCxgX1BC2hD/oBlIFUgOCQDOPV8nSINxCwM3o93xP4P9Fq6aV5sgv2cOOITDMtCfQ+3PvHp3l689XZvAM9QyOA== - dependencies: - "@babel/helper-get-function-arity" "^7.8.3" - "@babel/template" "^7.8.3" - "@babel/types" "^7.8.3" - -"@babel/helper-get-function-arity@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3" - integrity sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ== - dependencies: - "@babel/types" "^7.0.0" - -"@babel/helper-get-function-arity@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz#b894b947bd004381ce63ea1db9f08547e920abd5" - integrity sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA== - dependencies: - "@babel/types" "^7.8.3" - -"@babel/helper-hoist-variables@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.4.4.tgz#0298b5f25c8c09c53102d52ac4a98f773eb2850a" - integrity sha512-VYk2/H/BnYbZDDg39hr3t2kKyifAm1W6zHRfhx8jGjIHpQEBv9dry7oQ2f3+J703TLu69nYdxsovl0XYfcnK4w== - dependencies: - "@babel/types" "^7.4.4" - -"@babel/helper-member-expression-to-functions@^7.5.5": - version "7.5.5" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.5.5.tgz#1fb5b8ec4453a93c439ee9fe3aeea4a84b76b590" - integrity sha512-5qZ3D1uMclSNqYcXqiHoA0meVdv+xUEex9em2fqMnrk/scphGlGgg66zjMrPJESPwrFJ6sbfFQYUSa0Mz7FabA== - dependencies: - "@babel/types" "^7.5.5" - -"@babel/helper-module-imports@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz#96081b7111e486da4d2cd971ad1a4fe216cc2e3d" - integrity sha512-aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A== - dependencies: - "@babel/types" "^7.0.0" - -"@babel/helper-module-transforms@^7.1.0", "@babel/helper-module-transforms@^7.4.4": - version "7.5.5" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.5.5.tgz#f84ff8a09038dcbca1fd4355661a500937165b4a" - integrity sha512-jBeCvETKuJqeiaCdyaheF40aXnnU1+wkSiUs/IQg3tB85up1LyL8x77ClY8qJpuRJUcXQo+ZtdNESmZl4j56Pw== - dependencies: - "@babel/helper-module-imports" "^7.0.0" - "@babel/helper-simple-access" "^7.1.0" - "@babel/helper-split-export-declaration" "^7.4.4" - "@babel/template" "^7.4.4" - "@babel/types" "^7.5.5" - lodash "^4.17.13" - -"@babel/helper-optimise-call-expression@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz#a2920c5702b073c15de51106200aa8cad20497d5" - integrity sha512-u8nd9NQePYNQV8iPWu/pLLYBqZBa4ZaY1YWRFMuxrid94wKI1QNt67NEZ7GAe5Kc/0LLScbim05xZFWkAdrj9g== - dependencies: - "@babel/types" "^7.0.0" - -"@babel/helper-plugin-utils@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250" - integrity sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA== - -"@babel/helper-plugin-utils@^7.8.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz#9ea293be19babc0f52ff8ca88b34c3611b208670" - integrity sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ== - -"@babel/helper-regex@^7.0.0", "@babel/helper-regex@^7.4.4": - version "7.5.5" - resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.5.5.tgz#0aa6824f7100a2e0e89c1527c23936c152cab351" - integrity sha512-CkCYQLkfkiugbRDO8eZn6lRuR8kzZoGXCg3149iTk5se7g6qykSpy3+hELSwquhu+TgHn8nkLiBwHvNX8Hofcw== - dependencies: - lodash "^4.17.13" - -"@babel/helper-remap-async-to-generator@^7.1.0": - version "7.1.0" - resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz#361d80821b6f38da75bd3f0785ece20a88c5fe7f" - integrity sha512-3fOK0L+Fdlg8S5al8u/hWE6vhufGSn0bN09xm2LXMy//REAF8kDCrYoOBKYmA8m5Nom+sV9LyLCwrFynA8/slg== - dependencies: - "@babel/helper-annotate-as-pure" "^7.0.0" - "@babel/helper-wrap-function" "^7.1.0" - "@babel/template" "^7.1.0" - "@babel/traverse" "^7.1.0" - "@babel/types" "^7.0.0" - -"@babel/helper-replace-supers@^7.5.5": - version "7.5.5" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.5.5.tgz#f84ce43df031222d2bad068d2626cb5799c34bc2" - integrity sha512-XvRFWrNnlsow2u7jXDuH4jDDctkxbS7gXssrP4q2nUD606ukXHRvydj346wmNg+zAgpFx4MWf4+usfC93bElJg== - dependencies: - "@babel/helper-member-expression-to-functions" "^7.5.5" - "@babel/helper-optimise-call-expression" "^7.0.0" - "@babel/traverse" "^7.5.5" - "@babel/types" "^7.5.5" - -"@babel/helper-simple-access@^7.1.0": - version "7.1.0" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz#65eeb954c8c245beaa4e859da6188f39d71e585c" - integrity sha512-Vk+78hNjRbsiu49zAPALxTb+JUQCz1aolpd8osOF16BGnLtseD21nbHgLPGUwrXEurZgiCOUmvs3ExTu4F5x6w== - dependencies: - "@babel/template" "^7.1.0" - "@babel/types" "^7.0.0" - -"@babel/helper-split-export-declaration@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz#ff94894a340be78f53f06af038b205c49d993677" - integrity sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q== - dependencies: - "@babel/types" "^7.4.4" - -"@babel/helper-split-export-declaration@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz#31a9f30070f91368a7182cf05f831781065fc7a9" - integrity sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA== - dependencies: - "@babel/types" "^7.8.3" - -"@babel/helper-wrap-function@^7.1.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz#c4e0012445769e2815b55296ead43a958549f6fa" - integrity sha512-o9fP1BZLLSrYlxYEYyl2aS+Flun5gtjTIG8iln+XuEzQTs0PLagAGSXUcqruJwD5fM48jzIEggCKpIfWTcR7pQ== - dependencies: - "@babel/helper-function-name" "^7.1.0" - "@babel/template" "^7.1.0" - "@babel/traverse" "^7.1.0" - "@babel/types" "^7.2.0" - -"@babel/helpers@^7.6.2": - version "7.6.2" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.6.2.tgz#681ffe489ea4dcc55f23ce469e58e59c1c045153" - integrity sha512-3/bAUL8zZxYs1cdX2ilEE0WobqbCmKWr/889lf2SS0PpDcpEIY8pb1CCyz0pEcX3pEb+MCbks1jIokz2xLtGTA== - dependencies: - "@babel/template" "^7.6.0" - "@babel/traverse" "^7.6.2" - "@babel/types" "^7.6.0" - -"@babel/helpers@^7.8.4": - version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.8.4.tgz#754eb3ee727c165e0a240d6c207de7c455f36f73" - integrity sha512-VPbe7wcQ4chu4TDQjimHv/5tj73qz88o12EPkO2ValS2QiQS/1F2SsjyIGNnAD0vF/nZS6Cf9i+vW6HIlnaR8w== - dependencies: - "@babel/template" "^7.8.3" - "@babel/traverse" "^7.8.4" - "@babel/types" "^7.8.3" - -"@babel/highlight@^7.0.0": - version "7.5.0" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.5.0.tgz#56d11312bd9248fa619591d02472be6e8cb32540" - integrity sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ== - dependencies: - chalk "^2.0.0" - esutils "^2.0.2" - js-tokens "^4.0.0" - -"@babel/highlight@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.8.3.tgz#28f173d04223eaaa59bc1d439a3836e6d1265797" - integrity sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg== - dependencies: - chalk "^2.0.0" - esutils "^2.0.2" - js-tokens "^4.0.0" - -"@babel/parser@^7.1.0", "@babel/parser@^7.6.4": - version "7.6.4" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.6.4.tgz#cb9b36a7482110282d5cb6dd424ec9262b473d81" - integrity sha512-D8RHPW5qd0Vbyo3qb+YjO5nvUVRTXFLQ/FsDxJU2Nqz4uB5EnUN0ZQSEYpvTIbRuttig1XbHWU5oMeQwQSAA+A== - -"@babel/parser@^7.6.0", "@babel/parser@^7.6.3": - version "7.6.3" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.6.3.tgz#9eff8b9c3eeae16a74d8d4ff30da2bd0d6f0487e" - integrity sha512-sUZdXlva1dt2Vw2RqbMkmfoImubO0D0gaCrNngV6Hi0DA4x3o4mlrq0tbfY0dZEUIccH8I6wQ4qgEtwcpOR6Qg== - -"@babel/parser@^7.7.5", "@babel/parser@^7.8.3", "@babel/parser@^7.8.4": - version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.8.4.tgz#d1dbe64691d60358a974295fa53da074dd2ce8e8" - integrity sha512-0fKu/QqildpXmPVaRBoXOlyBb3MC+J0A66x97qEfLOMkn3u6nfY5esWogQwi/K0BjASYy4DbnsEWnpNL6qT5Mw== - -"@babel/plugin-proposal-async-generator-functions@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz#b289b306669dce4ad20b0252889a15768c9d417e" - integrity sha512-+Dfo/SCQqrwx48ptLVGLdE39YtWRuKc/Y9I5Fy0P1DDBB9lsAHpjcEJQt+4IifuSOSTLBKJObJqMvaO1pIE8LQ== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-remap-async-to-generator" "^7.1.0" - "@babel/plugin-syntax-async-generators" "^7.2.0" - -"@babel/plugin-proposal-dynamic-import@^7.5.0": - version "7.5.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.5.0.tgz#e532202db4838723691b10a67b8ce509e397c506" - integrity sha512-x/iMjggsKTFHYC6g11PL7Qy58IK8H5zqfm9e6hu4z1iH2IRyAp9u9dL80zA6R76yFovETFLKz2VJIC2iIPBuFw== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-dynamic-import" "^7.2.0" - -"@babel/plugin-proposal-json-strings@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz#568ecc446c6148ae6b267f02551130891e29f317" - integrity sha512-MAFV1CA/YVmYwZG0fBQyXhmj0BHCB5egZHCKWIFVv/XCxAeVGIHfos3SwDck4LvCllENIAg7xMKOG5kH0dzyUg== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-json-strings" "^7.2.0" - -"@babel/plugin-proposal-object-rest-spread@^7.6.2": - version "7.6.2" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.6.2.tgz#8ffccc8f3a6545e9f78988b6bf4fe881b88e8096" - integrity sha512-LDBXlmADCsMZV1Y9OQwMc0MyGZ8Ta/zlD9N67BfQT8uYwkRswiu2hU6nJKrjrt/58aH/vqfQlR/9yId/7A2gWw== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-object-rest-spread" "^7.2.0" - -"@babel/plugin-proposal-optional-catch-binding@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz#135d81edb68a081e55e56ec48541ece8065c38f5" - integrity sha512-mgYj3jCcxug6KUcX4OBoOJz3CMrwRfQELPQ5560F70YQUBZB7uac9fqaWamKR1iWUzGiK2t0ygzjTScZnVz75g== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" - -"@babel/plugin-proposal-unicode-property-regex@^7.6.2": - version "7.6.2" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.6.2.tgz#05413762894f41bfe42b9a5e80919bd575dcc802" - integrity sha512-NxHETdmpeSCtiatMRYWVJo7266rrvAC3DTeG5exQBIH/fMIUK7ejDNznBbn3HQl/o9peymRRg7Yqkx6PdUXmMw== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-regex" "^7.4.4" - regexpu-core "^4.6.0" - -"@babel/plugin-syntax-async-generators@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.2.0.tgz#69e1f0db34c6f5a0cf7e2b3323bf159a76c8cb7f" - integrity sha512-1ZrIRBv2t0GSlcwVoQ6VgSLpLgiN/FVQUzt9znxo7v2Ov4jJrs8RY8tv0wvDmFN3qIdMKWrmMMW6yZ0G19MfGg== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-syntax-bigint@^7.0.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" - integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-dynamic-import@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.2.0.tgz#69c159ffaf4998122161ad8ebc5e6d1f55df8612" - integrity sha512-mVxuJ0YroI/h/tbFTPGZR8cv6ai+STMKNBq0f8hFxsxWjl94qqhsb+wXbpNMDPU3cfR1TIsVFzU3nXyZMqyK4w== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-syntax-flow@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.2.0.tgz#a765f061f803bc48f240c26f8747faf97c26bf7c" - integrity sha512-r6YMuZDWLtLlu0kqIim5o/3TNRAlWb073HwT3e2nKf9I8IIvOggPrnILYPsrrKilmn/mYEMCf/Z07w3yQJF6dg== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-syntax-json-strings@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz#72bd13f6ffe1d25938129d2a186b11fd62951470" - integrity sha512-5UGYnMSLRE1dqqZwug+1LISpA403HzlSfsg6P9VXU6TBjcSHeNlw4DxDx7LgpF+iKZoOG/+uzqoRHTdcUpiZNg== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e" - integrity sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-syntax-optional-catch-binding@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.2.0.tgz#a94013d6eda8908dfe6a477e7f9eda85656ecf5c" - integrity sha512-bDe4xKNhb0LI7IvZHiA13kff0KEfaGX/Hv4lMA9+7TEc63hMNvfKo6ZFpXhKuEp+II/q35Gc4NoMeDZyaUbj9w== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-syntax-typescript@^7.2.0": - version "7.3.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.3.3.tgz#a7cc3f66119a9f7ebe2de5383cce193473d65991" - integrity sha512-dGwbSMA1YhVS8+31CnPR7LB4pcbrzcV99wQzby4uAfrkZPYZlQ7ImwdpzLqi6Z6IL02b8IAL379CaMwo0x5Lag== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-arrow-functions@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz#9aeafbe4d6ffc6563bf8f8372091628f00779550" - integrity sha512-ER77Cax1+8/8jCB9fo4Ud161OZzWN5qawi4GusDuRLcDbDG+bIGYY20zb2dfAFdTRGzrfq2xZPvF0R64EHnimg== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-async-to-generator@^7.5.0": - version "7.5.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.5.0.tgz#89a3848a0166623b5bc481164b5936ab947e887e" - integrity sha512-mqvkzwIGkq0bEF1zLRRiTdjfomZJDV33AH3oQzHVGkI2VzEmXLpKKOBvEVaFZBJdN0XTyH38s9j/Kiqr68dggg== - dependencies: - "@babel/helper-module-imports" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-remap-async-to-generator" "^7.1.0" - -"@babel/plugin-transform-block-scoped-functions@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.2.0.tgz#5d3cc11e8d5ddd752aa64c9148d0db6cb79fd190" - integrity sha512-ntQPR6q1/NKuphly49+QiQiTN0O63uOwjdD6dhIjSWBI5xlrbUFh720TIpzBhpnrLfv2tNH/BXvLIab1+BAI0w== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-block-scoping@^7.6.3": - version "7.6.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.6.3.tgz#6e854e51fbbaa84351b15d4ddafe342f3a5d542a" - integrity sha512-7hvrg75dubcO3ZI2rjYTzUrEuh1E9IyDEhhB6qfcooxhDA33xx2MasuLVgdxzcP6R/lipAC6n9ub9maNW6RKdw== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - lodash "^4.17.13" - -"@babel/plugin-transform-classes@^7.5.5": - version "7.5.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.5.5.tgz#d094299d9bd680a14a2a0edae38305ad60fb4de9" - integrity sha512-U2htCNK/6e9K7jGyJ++1p5XRU+LJjrwtoiVn9SzRlDT2KubcZ11OOwy3s24TjHxPgxNwonCYP7U2K51uVYCMDg== - dependencies: - "@babel/helper-annotate-as-pure" "^7.0.0" - "@babel/helper-define-map" "^7.5.5" - "@babel/helper-function-name" "^7.1.0" - "@babel/helper-optimise-call-expression" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-replace-supers" "^7.5.5" - "@babel/helper-split-export-declaration" "^7.4.4" - globals "^11.1.0" - -"@babel/plugin-transform-computed-properties@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.2.0.tgz#83a7df6a658865b1c8f641d510c6f3af220216da" - integrity sha512-kP/drqTxY6Xt3NNpKiMomfgkNn4o7+vKxK2DDKcBG9sHj51vHqMBGy8wbDS/J4lMxnqs153/T3+DmCEAkC5cpA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-destructuring@^7.6.0": - version "7.6.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.6.0.tgz#44bbe08b57f4480094d57d9ffbcd96d309075ba6" - integrity sha512-2bGIS5P1v4+sWTCnKNDZDxbGvEqi0ijeqM/YqHtVGrvG2y0ySgnEEhXErvE9dA0bnIzY9bIzdFK0jFA46ASIIQ== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-dotall-regex@^7.6.2": - version "7.6.2" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.6.2.tgz#44abb948b88f0199a627024e1508acaf8dc9b2f9" - integrity sha512-KGKT9aqKV+9YMZSkowzYoYEiHqgaDhGmPNZlZxX6UeHC4z30nC1J9IrZuGqbYFB1jaIGdv91ujpze0exiVK8bA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-regex" "^7.4.4" - regexpu-core "^4.6.0" - -"@babel/plugin-transform-duplicate-keys@^7.5.0": - version "7.5.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.5.0.tgz#c5dbf5106bf84cdf691222c0974c12b1df931853" - integrity sha512-igcziksHizyQPlX9gfSjHkE2wmoCH3evvD2qR5w29/Dk0SMKE/eOI7f1HhBdNhR/zxJDqrgpoDTq5YSLH/XMsQ== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-exponentiation-operator@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.2.0.tgz#a63868289e5b4007f7054d46491af51435766008" - integrity sha512-umh4hR6N7mu4Elq9GG8TOu9M0bakvlsREEC+ialrQN6ABS4oDQ69qJv1VtR3uxlKMCQMCvzk7vr17RHKcjx68A== - dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.1.0" - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-flow-strip-types@^7.0.0": - version "7.6.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.6.3.tgz#8110f153e7360cfd5996eee68706cfad92d85256" - integrity sha512-l0ETkyEofkqFJ9LS6HChNIKtVJw2ylKbhYMlJ5C6df+ldxxaLIyXY4yOdDQQspfFpV8/vDiaWoJlvflstlYNxg== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-flow" "^7.2.0" - -"@babel/plugin-transform-for-of@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.4.4.tgz#0267fc735e24c808ba173866c6c4d1440fc3c556" - integrity sha512-9T/5Dlr14Z9TIEXLXkt8T1DU7F24cbhwhMNUziN3hB1AXoZcdzPcTiKGRn/6iOymDqtTKWnr/BtRKN9JwbKtdQ== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-function-name@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.4.4.tgz#e1436116abb0610c2259094848754ac5230922ad" - integrity sha512-iU9pv7U+2jC9ANQkKeNF6DrPy4GBa4NWQtl6dHB4Pb3izX2JOEvDTFarlNsBj/63ZEzNNIAMs3Qw4fNCcSOXJA== - dependencies: - "@babel/helper-function-name" "^7.1.0" - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-literals@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.2.0.tgz#690353e81f9267dad4fd8cfd77eafa86aba53ea1" - integrity sha512-2ThDhm4lI4oV7fVQ6pNNK+sx+c/GM5/SaML0w/r4ZB7sAneD/piDJtwdKlNckXeyGK7wlwg2E2w33C/Hh+VFCg== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-member-expression-literals@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.2.0.tgz#fa10aa5c58a2cb6afcf2c9ffa8cb4d8b3d489a2d" - integrity sha512-HiU3zKkSU6scTidmnFJ0bMX8hz5ixC93b4MHMiYebmk2lUVNGOboPsqQvx5LzooihijUoLR/v7Nc1rbBtnc7FA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-modules-amd@^7.5.0": - version "7.5.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.5.0.tgz#ef00435d46da0a5961aa728a1d2ecff063e4fb91" - integrity sha512-n20UsQMKnWrltocZZm24cRURxQnWIvsABPJlw/fvoy9c6AgHZzoelAIzajDHAQrDpuKFFPPcFGd7ChsYuIUMpg== - dependencies: - "@babel/helper-module-transforms" "^7.1.0" - "@babel/helper-plugin-utils" "^7.0.0" - babel-plugin-dynamic-import-node "^2.3.0" - -"@babel/plugin-transform-modules-commonjs@^7.6.0": - version "7.6.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.6.0.tgz#39dfe957de4420445f1fcf88b68a2e4aa4515486" - integrity sha512-Ma93Ix95PNSEngqomy5LSBMAQvYKVe3dy+JlVJSHEXZR5ASL9lQBedMiCyVtmTLraIDVRE3ZjTZvmXXD2Ozw3g== - dependencies: - "@babel/helper-module-transforms" "^7.4.4" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-simple-access" "^7.1.0" - babel-plugin-dynamic-import-node "^2.3.0" - -"@babel/plugin-transform-modules-systemjs@^7.5.0": - version "7.5.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.5.0.tgz#e75266a13ef94202db2a0620977756f51d52d249" - integrity sha512-Q2m56tyoQWmuNGxEtUyeEkm6qJYFqs4c+XyXH5RAuYxObRNz9Zgj/1g2GMnjYp2EUyEy7YTrxliGCXzecl/vJg== - dependencies: - "@babel/helper-hoist-variables" "^7.4.4" - "@babel/helper-plugin-utils" "^7.0.0" - babel-plugin-dynamic-import-node "^2.3.0" - -"@babel/plugin-transform-modules-umd@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.2.0.tgz#7678ce75169f0877b8eb2235538c074268dd01ae" - integrity sha512-BV3bw6MyUH1iIsGhXlOK6sXhmSarZjtJ/vMiD9dNmpY8QXFFQTj+6v92pcfy1iqa8DeAfJFwoxcrS/TUZda6sw== - dependencies: - "@babel/helper-module-transforms" "^7.1.0" - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-named-capturing-groups-regex@^7.6.3": - version "7.6.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.6.3.tgz#aaa6e409dd4fb2e50b6e2a91f7e3a3149dbce0cf" - integrity sha512-jTkk7/uE6H2s5w6VlMHeWuH+Pcy2lmdwFoeWCVnvIrDUnB5gQqTVI8WfmEAhF2CDEarGrknZcmSFg1+bkfCoSw== - dependencies: - regexpu-core "^4.6.0" - -"@babel/plugin-transform-new-target@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.4.4.tgz#18d120438b0cc9ee95a47f2c72bc9768fbed60a5" - integrity sha512-r1z3T2DNGQwwe2vPGZMBNjioT2scgWzK9BCnDEh+46z8EEwXBq24uRzd65I7pjtugzPSj921aM15RpESgzsSuA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-object-super@^7.5.5": - version "7.5.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.5.5.tgz#c70021df834073c65eb613b8679cc4a381d1a9f9" - integrity sha512-un1zJQAhSosGFBduPgN/YFNvWVpRuHKU7IHBglLoLZsGmruJPOo6pbInneflUdmq7YvSVqhpPs5zdBvLnteltQ== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-replace-supers" "^7.5.5" - -"@babel/plugin-transform-parameters@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.4.4.tgz#7556cf03f318bd2719fe4c922d2d808be5571e16" - integrity sha512-oMh5DUO1V63nZcu/ZVLQFqiihBGo4OpxJxR1otF50GMeCLiRx5nUdtokd+u9SuVJrvvuIh9OosRFPP4pIPnwmw== - dependencies: - "@babel/helper-call-delegate" "^7.4.4" - "@babel/helper-get-function-arity" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-property-literals@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.2.0.tgz#03e33f653f5b25c4eb572c98b9485055b389e905" - integrity sha512-9q7Dbk4RhgcLp8ebduOpCbtjh7C0itoLYHXd9ueASKAG/is5PQtMR5VJGka9NKqGhYEGn5ITahd4h9QeBMylWQ== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-regenerator@^7.4.5": - version "7.4.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.4.5.tgz#629dc82512c55cee01341fb27bdfcb210354680f" - integrity sha512-gBKRh5qAaCWntnd09S8QC7r3auLCqq5DI6O0DlfoyDjslSBVqBibrMdsqO+Uhmx3+BlOmE/Kw1HFxmGbv0N9dA== - dependencies: - regenerator-transform "^0.14.0" - -"@babel/plugin-transform-reserved-words@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.2.0.tgz#4792af87c998a49367597d07fedf02636d2e1634" - integrity sha512-fz43fqW8E1tAB3DKF19/vxbpib1fuyCwSPE418ge5ZxILnBhWyhtPgz8eh1RCGGJlwvksHkyxMxh0eenFi+kFw== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-shorthand-properties@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.2.0.tgz#6333aee2f8d6ee7e28615457298934a3b46198f0" - integrity sha512-QP4eUM83ha9zmYtpbnyjTLAGKQritA5XW/iG9cjtuOI8s1RuL/3V6a3DeSHfKutJQ+ayUfeZJPcnCYEQzaPQqg== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-spread@^7.6.2": - version "7.6.2" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.6.2.tgz#fc77cf798b24b10c46e1b51b1b88c2bf661bb8dd" - integrity sha512-DpSvPFryKdK1x+EDJYCy28nmAaIMdxmhot62jAXF/o99iA33Zj2Lmcp3vDmz+MUh0LNYVPvfj5iC3feb3/+PFg== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-sticky-regex@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.2.0.tgz#a1e454b5995560a9c1e0d537dfc15061fd2687e1" - integrity sha512-KKYCoGaRAf+ckH8gEL3JHUaFVyNHKe3ASNsZ+AlktgHevvxGigoIttrEJb8iKN03Q7Eazlv1s6cx2B2cQ3Jabw== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-regex" "^7.0.0" - -"@babel/plugin-transform-template-literals@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.4.4.tgz#9d28fea7bbce637fb7612a0750989d8321d4bcb0" - integrity sha512-mQrEC4TWkhLN0z8ygIvEL9ZEToPhG5K7KDW3pzGqOfIGZ28Jb0POUkeWcoz8HnHvhFy6dwAT1j8OzqN8s804+g== - dependencies: - "@babel/helper-annotate-as-pure" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-typeof-symbol@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.2.0.tgz#117d2bcec2fbf64b4b59d1f9819894682d29f2b2" - integrity sha512-2LNhETWYxiYysBtrBTqL8+La0jIoQQnIScUJc74OYvUGRmkskNY4EzLCnjHBzdmb38wqtTaixpo1NctEcvMDZw== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-typescript@^7.6.0": - version "7.6.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.6.3.tgz#dddb50cf3b8b2ef70b22e5326e9a91f05a1db13b" - integrity sha512-aiWINBrPMSC3xTXRNM/dfmyYuPNKY/aexYqBgh0HBI5Y+WO5oRAqW/oROYeYHrF4Zw12r9rK4fMk/ZlAmqx/FQ== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.6.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-typescript" "^7.2.0" - -"@babel/plugin-transform-unicode-regex@^7.6.2": - version "7.6.2" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.6.2.tgz#b692aad888a7e8d8b1b214be6b9dc03d5031f698" - integrity sha512-orZI6cWlR3nk2YmYdb0gImrgCUwb5cBUwjf6Ks6dvNVvXERkwtJWOQaEOjPiu0Gu1Tq6Yq/hruCZZOOi9F34Dw== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-regex" "^7.4.4" - regexpu-core "^4.6.0" - -"@babel/preset-env@^7.6.3": - version "7.6.3" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.6.3.tgz#9e1bf05a2e2d687036d24c40e4639dc46cef2271" - integrity sha512-CWQkn7EVnwzlOdR5NOm2+pfgSNEZmvGjOhlCHBDq0J8/EStr+G+FvPEiz9B56dR6MoiUFjXhfE4hjLoAKKJtIQ== - dependencies: - "@babel/helper-module-imports" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-proposal-async-generator-functions" "^7.2.0" - "@babel/plugin-proposal-dynamic-import" "^7.5.0" - "@babel/plugin-proposal-json-strings" "^7.2.0" - "@babel/plugin-proposal-object-rest-spread" "^7.6.2" - "@babel/plugin-proposal-optional-catch-binding" "^7.2.0" - "@babel/plugin-proposal-unicode-property-regex" "^7.6.2" - "@babel/plugin-syntax-async-generators" "^7.2.0" - "@babel/plugin-syntax-dynamic-import" "^7.2.0" - "@babel/plugin-syntax-json-strings" "^7.2.0" - "@babel/plugin-syntax-object-rest-spread" "^7.2.0" - "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" - "@babel/plugin-transform-arrow-functions" "^7.2.0" - "@babel/plugin-transform-async-to-generator" "^7.5.0" - "@babel/plugin-transform-block-scoped-functions" "^7.2.0" - "@babel/plugin-transform-block-scoping" "^7.6.3" - "@babel/plugin-transform-classes" "^7.5.5" - "@babel/plugin-transform-computed-properties" "^7.2.0" - "@babel/plugin-transform-destructuring" "^7.6.0" - "@babel/plugin-transform-dotall-regex" "^7.6.2" - "@babel/plugin-transform-duplicate-keys" "^7.5.0" - "@babel/plugin-transform-exponentiation-operator" "^7.2.0" - "@babel/plugin-transform-for-of" "^7.4.4" - "@babel/plugin-transform-function-name" "^7.4.4" - "@babel/plugin-transform-literals" "^7.2.0" - "@babel/plugin-transform-member-expression-literals" "^7.2.0" - "@babel/plugin-transform-modules-amd" "^7.5.0" - "@babel/plugin-transform-modules-commonjs" "^7.6.0" - "@babel/plugin-transform-modules-systemjs" "^7.5.0" - "@babel/plugin-transform-modules-umd" "^7.2.0" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.6.3" - "@babel/plugin-transform-new-target" "^7.4.4" - "@babel/plugin-transform-object-super" "^7.5.5" - "@babel/plugin-transform-parameters" "^7.4.4" - "@babel/plugin-transform-property-literals" "^7.2.0" - "@babel/plugin-transform-regenerator" "^7.4.5" - "@babel/plugin-transform-reserved-words" "^7.2.0" - "@babel/plugin-transform-shorthand-properties" "^7.2.0" - "@babel/plugin-transform-spread" "^7.6.2" - "@babel/plugin-transform-sticky-regex" "^7.2.0" - "@babel/plugin-transform-template-literals" "^7.4.4" - "@babel/plugin-transform-typeof-symbol" "^7.2.0" - "@babel/plugin-transform-unicode-regex" "^7.6.2" - "@babel/types" "^7.6.3" - browserslist "^4.6.0" - core-js-compat "^3.1.1" - invariant "^2.2.2" - js-levenshtein "^1.1.3" - semver "^5.5.0" - -"@babel/preset-flow@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.0.0.tgz#afd764835d9535ec63d8c7d4caf1c06457263da2" - integrity sha512-bJOHrYOPqJZCkPVbG1Lot2r5OSsB+iUOaxiHdlOeB1yPWS6evswVHwvkDLZ54WTaTRIk89ds0iHmGZSnxlPejQ== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-transform-flow-strip-types" "^7.0.0" - -"@babel/preset-typescript@^7.6.0": - version "7.6.0" - resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.6.0.tgz#25768cb8830280baf47c45ab1a519a9977498c98" - integrity sha512-4xKw3tTcCm0qApyT6PqM9qniseCE79xGHiUnNdKGdxNsGUc2X7WwZybqIpnTmoukg3nhPceI5KPNzNqLNeIJww== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-transform-typescript" "^7.6.0" - -"@babel/template@^7.1.0", "@babel/template@^7.4.4", "@babel/template@^7.6.0": - version "7.6.0" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.6.0.tgz#7f0159c7f5012230dad64cca42ec9bdb5c9536e6" - integrity sha512-5AEH2EXD8euCk446b7edmgFdub/qfH1SN6Nii3+fyXP807QRx9Q73A2N5hNwRRslC2H9sNzaFhsPubkS4L8oNQ== - dependencies: - "@babel/code-frame" "^7.0.0" - "@babel/parser" "^7.6.0" - "@babel/types" "^7.6.0" - -"@babel/template@^7.7.4", "@babel/template@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.8.3.tgz#e02ad04fe262a657809327f578056ca15fd4d1b8" - integrity sha512-04m87AcQgAFdvuoyiQ2kgELr2tV8B4fP/xJAVUL3Yb3bkNdMedD3d0rlSQr3PegP0cms3eHjl1F7PWlvWbU8FQ== - dependencies: - "@babel/code-frame" "^7.8.3" - "@babel/parser" "^7.8.3" - "@babel/types" "^7.8.3" - -"@babel/traverse@^7.1.0", "@babel/traverse@^7.4.4", "@babel/traverse@^7.5.5", "@babel/traverse@^7.6.2", "@babel/traverse@^7.6.3": - version "7.6.3" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.6.3.tgz#66d7dba146b086703c0fb10dd588b7364cec47f9" - integrity sha512-unn7P4LGsijIxaAJo/wpoU11zN+2IaClkQAxcJWBNCMS6cmVh802IyLHNkAjQ0iYnRS3nnxk5O3fuXW28IMxTw== - dependencies: - "@babel/code-frame" "^7.5.5" - "@babel/generator" "^7.6.3" - "@babel/helper-function-name" "^7.1.0" - "@babel/helper-split-export-declaration" "^7.4.4" - "@babel/parser" "^7.6.3" - "@babel/types" "^7.6.3" - debug "^4.1.0" - globals "^11.1.0" - lodash "^4.17.13" - -"@babel/traverse@^7.7.4", "@babel/traverse@^7.8.4": - version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.8.4.tgz#f0845822365f9d5b0e312ed3959d3f827f869e3c" - integrity sha512-NGLJPZwnVEyBPLI+bl9y9aSnxMhsKz42so7ApAv9D+b4vAFPpY013FTS9LdKxcABoIYFU52HcYga1pPlx454mg== - dependencies: - "@babel/code-frame" "^7.8.3" - "@babel/generator" "^7.8.4" - "@babel/helper-function-name" "^7.8.3" - "@babel/helper-split-export-declaration" "^7.8.3" - "@babel/parser" "^7.8.4" - "@babel/types" "^7.8.3" - debug "^4.1.0" - globals "^11.1.0" - lodash "^4.17.13" - -"@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.3.0", "@babel/types@^7.4.4", "@babel/types@^7.5.5", "@babel/types@^7.6.0", "@babel/types@^7.6.3": - version "7.6.3" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.6.3.tgz#3f07d96f854f98e2fbd45c64b0cb942d11e8ba09" - integrity sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA== - dependencies: - esutils "^2.0.2" - lodash "^4.17.13" - to-fast-properties "^2.0.0" - -"@babel/types@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.8.3.tgz#5a383dffa5416db1b73dedffd311ffd0788fb31c" - integrity sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg== - dependencies: - esutils "^2.0.2" - lodash "^4.17.13" - to-fast-properties "^2.0.0" - -"@bcoe/v8-coverage@^0.2.3": - version "0.2.3" - resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" - integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== - -"@cnakazawa/watch@^1.0.3": - version "1.0.3" - resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.3.tgz#099139eaec7ebf07a27c1786a3ff64f39464d2ef" - integrity sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA== - dependencies: - exec-sh "^0.3.2" - minimist "^1.2.0" - -"@istanbuljs/load-nyc-config@^1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.0.0.tgz#10602de5570baea82f8afbfa2630b24e7a8cfe5b" - integrity sha512-ZR0rq/f/E4f4XcgnDvtMWXCUJpi8eO0rssVhmztsZqLIEFA9UUP9zmpE0VxlM+kv/E1ul2I876Fwil2ayptDVg== - dependencies: - camelcase "^5.3.1" - find-up "^4.1.0" - js-yaml "^3.13.1" - resolve-from "^5.0.0" - -"@istanbuljs/schema@^0.1.2": - version "0.1.2" - resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.2.tgz#26520bf09abe4a5644cd5414e37125a8954241dd" - integrity sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw== - -"@jest/console@^25.1.0": - version "25.1.0" - resolved "https://registry.yarnpkg.com/@jest/console/-/console-25.1.0.tgz#1fc765d44a1e11aec5029c08e798246bd37075ab" - integrity sha512-3P1DpqAMK/L07ag/Y9/Jup5iDEG9P4pRAuZiMQnU0JB3UOvCyYCjCoxr7sIA80SeyUCUKrr24fKAxVpmBgQonA== - dependencies: - "@jest/source-map" "^25.1.0" - chalk "^3.0.0" - jest-util "^25.1.0" - slash "^3.0.0" - -"@jest/core@^25.1.0": - version "25.1.0" - resolved "https://registry.yarnpkg.com/@jest/core/-/core-25.1.0.tgz#3d4634fc3348bb2d7532915d67781cdac0869e47" - integrity sha512-iz05+NmwCmZRzMXvMo6KFipW7nzhbpEawrKrkkdJzgytavPse0biEnCNr2wRlyCsp3SmKaEY+SGv7YWYQnIdig== - dependencies: - "@jest/console" "^25.1.0" - "@jest/reporters" "^25.1.0" - "@jest/test-result" "^25.1.0" - "@jest/transform" "^25.1.0" - "@jest/types" "^25.1.0" - ansi-escapes "^4.2.1" - chalk "^3.0.0" - exit "^0.1.2" - graceful-fs "^4.2.3" - jest-changed-files "^25.1.0" - jest-config "^25.1.0" - jest-haste-map "^25.1.0" - jest-message-util "^25.1.0" - jest-regex-util "^25.1.0" - jest-resolve "^25.1.0" - jest-resolve-dependencies "^25.1.0" - jest-runner "^25.1.0" - jest-runtime "^25.1.0" - jest-snapshot "^25.1.0" - jest-util "^25.1.0" - jest-validate "^25.1.0" - jest-watcher "^25.1.0" - micromatch "^4.0.2" - p-each-series "^2.1.0" - realpath-native "^1.1.0" - rimraf "^3.0.0" - slash "^3.0.0" - strip-ansi "^6.0.0" - -"@jest/environment@^25.1.0": - version "25.1.0" - resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-25.1.0.tgz#4a97f64770c9d075f5d2b662b5169207f0a3f787" - integrity sha512-cTpUtsjU4cum53VqBDlcW0E4KbQF03Cn0jckGPW/5rrE9tb+porD3+hhLtHAwhthsqfyF+bizyodTlsRA++sHg== - dependencies: - "@jest/fake-timers" "^25.1.0" - "@jest/types" "^25.1.0" - jest-mock "^25.1.0" - -"@jest/fake-timers@^25.1.0": - version "25.1.0" - resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-25.1.0.tgz#a1e0eff51ffdbb13ee81f35b52e0c1c11a350ce8" - integrity sha512-Eu3dysBzSAO1lD7cylZd/CVKdZZ1/43SF35iYBNV1Lvvn2Undp3Grwsv8PrzvbLhqwRzDd4zxrY4gsiHc+wygQ== - dependencies: - "@jest/types" "^25.1.0" - jest-message-util "^25.1.0" - jest-mock "^25.1.0" - jest-util "^25.1.0" - lolex "^5.0.0" - -"@jest/reporters@^25.1.0": - version "25.1.0" - resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-25.1.0.tgz#9178ecf136c48f125674ac328f82ddea46e482b0" - integrity sha512-ORLT7hq2acJQa8N+NKfs68ZtHFnJPxsGqmofxW7v7urVhzJvpKZG9M7FAcgh9Ee1ZbCteMrirHA3m5JfBtAaDg== - dependencies: - "@bcoe/v8-coverage" "^0.2.3" - "@jest/console" "^25.1.0" - "@jest/environment" "^25.1.0" - "@jest/test-result" "^25.1.0" - "@jest/transform" "^25.1.0" - "@jest/types" "^25.1.0" - chalk "^3.0.0" - collect-v8-coverage "^1.0.0" - exit "^0.1.2" - glob "^7.1.2" - istanbul-lib-coverage "^3.0.0" - istanbul-lib-instrument "^4.0.0" - istanbul-lib-report "^3.0.0" - istanbul-lib-source-maps "^4.0.0" - istanbul-reports "^3.0.0" - jest-haste-map "^25.1.0" - jest-resolve "^25.1.0" - jest-runtime "^25.1.0" - jest-util "^25.1.0" - jest-worker "^25.1.0" - slash "^3.0.0" - source-map "^0.6.0" - string-length "^3.1.0" - terminal-link "^2.0.0" - v8-to-istanbul "^4.0.1" - optionalDependencies: - node-notifier "^6.0.0" - -"@jest/source-map@^25.1.0": - version "25.1.0" - resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-25.1.0.tgz#b012e6c469ccdbc379413f5c1b1ffb7ba7034fb0" - integrity sha512-ohf2iKT0xnLWcIUhL6U6QN+CwFWf9XnrM2a6ybL9NXxJjgYijjLSitkYHIdzkd8wFliH73qj/+epIpTiWjRtAA== - dependencies: - callsites "^3.0.0" - graceful-fs "^4.2.3" - source-map "^0.6.0" - -"@jest/test-result@^25.1.0": - version "25.1.0" - resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-25.1.0.tgz#847af2972c1df9822a8200457e64be4ff62821f7" - integrity sha512-FZzSo36h++U93vNWZ0KgvlNuZ9pnDnztvaM7P/UcTx87aPDotG18bXifkf1Ji44B7k/eIatmMzkBapnAzjkJkg== - dependencies: - "@jest/console" "^25.1.0" - "@jest/transform" "^25.1.0" - "@jest/types" "^25.1.0" - "@types/istanbul-lib-coverage" "^2.0.0" - collect-v8-coverage "^1.0.0" - -"@jest/test-sequencer@^25.1.0": - version "25.1.0" - resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-25.1.0.tgz#4df47208542f0065f356fcdb80026e3c042851ab" - integrity sha512-WgZLRgVr2b4l/7ED1J1RJQBOharxS11EFhmwDqknpknE0Pm87HLZVS2Asuuw+HQdfQvm2aXL2FvvBLxOD1D0iw== - dependencies: - "@jest/test-result" "^25.1.0" - jest-haste-map "^25.1.0" - jest-runner "^25.1.0" - jest-runtime "^25.1.0" - -"@jest/transform@^25.1.0": - version "25.1.0" - resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-25.1.0.tgz#221f354f512b4628d88ce776d5b9e601028ea9da" - integrity sha512-4ktrQ2TPREVeM+KxB4zskAT84SnmG1vaz4S+51aTefyqn3zocZUnliLLm5Fsl85I3p/kFPN4CRp1RElIfXGegQ== - dependencies: - "@babel/core" "^7.1.0" - "@jest/types" "^25.1.0" - babel-plugin-istanbul "^6.0.0" - chalk "^3.0.0" - convert-source-map "^1.4.0" - fast-json-stable-stringify "^2.0.0" - graceful-fs "^4.2.3" - jest-haste-map "^25.1.0" - jest-regex-util "^25.1.0" - jest-util "^25.1.0" - micromatch "^4.0.2" - pirates "^4.0.1" - realpath-native "^1.1.0" - slash "^3.0.0" - source-map "^0.6.1" - write-file-atomic "^3.0.0" - -"@jest/types@^25.1.0": - version "25.1.0" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-25.1.0.tgz#b26831916f0d7c381e11dbb5e103a72aed1b4395" - integrity sha512-VpOtt7tCrgvamWZh1reVsGADujKigBUFTi19mlRjqEGsE8qH4r3s+skY33dNdXOwyZIvuftZ5tqdF1IgsMejMA== - dependencies: - "@types/istanbul-lib-coverage" "^2.0.0" - "@types/istanbul-reports" "^1.1.1" - "@types/yargs" "^15.0.0" - chalk "^3.0.0" - -"@sinonjs/commons@^1.7.0": - version "1.7.0" - resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.7.0.tgz#f90ffc52a2e519f018b13b6c4da03cbff36ebed6" - integrity sha512-qbk9AP+cZUsKdW1GJsBpxPKFmCJ0T8swwzVje3qFd+AkQb74Q/tiuzrdfFg8AD2g5HH/XbE/I8Uc1KYHVYWfhg== - dependencies: - type-detect "4.0.8" - -"@types/babel__core@^7.1.0": - version "7.1.3" - resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.3.tgz#e441ea7df63cd080dfcd02ab199e6d16a735fc30" - integrity sha512-8fBo0UR2CcwWxeX7WIIgJ7lXjasFxoYgRnFHUj+hRvKkpiBJbxhdAPTCY6/ZKM0uxANFVzt4yObSLuTiTnazDA== - dependencies: - "@babel/parser" "^7.1.0" - "@babel/types" "^7.0.0" - "@types/babel__generator" "*" - "@types/babel__template" "*" - "@types/babel__traverse" "*" - -"@types/babel__generator@*": - version "7.6.0" - resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.0.tgz#f1ec1c104d1bb463556ecb724018ab788d0c172a" - integrity sha512-c1mZUu4up5cp9KROs/QAw0gTeHrw/x7m52LcnvMxxOZ03DmLwPV0MlGmlgzV3cnSdjhJOZsj7E7FHeioai+egw== - dependencies: - "@babel/types" "^7.0.0" - -"@types/babel__template@*": - version "7.0.2" - resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.0.2.tgz#4ff63d6b52eddac1de7b975a5223ed32ecea9307" - integrity sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg== - dependencies: - "@babel/parser" "^7.1.0" - "@babel/types" "^7.0.0" - -"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": - version "7.0.7" - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.7.tgz#2496e9ff56196cc1429c72034e07eab6121b6f3f" - integrity sha512-CeBpmX1J8kWLcDEnI3Cl2Eo6RfbGvzUctA+CjZUhOKDFbLfcr7fc4usEqLNWetrlJd7RhAkyYe2czXop4fICpw== - dependencies: - "@babel/types" "^7.3.0" - -"@types/color-name@^1.1.1": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" - integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ== - -"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz#42995b446db9a48a11a07ec083499a860e9138ff" - integrity sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg== - -"@types/istanbul-lib-report@*": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#e5471e7fa33c61358dd38426189c037a58433b8c" - integrity sha512-3BUTyMzbZa2DtDI2BkERNC6jJw2Mr2Y0oGI7mRxYNBPxppbtEK1F66u3bKwU2g+wxwWI7PAoRpJnOY1grJqzHg== - dependencies: - "@types/istanbul-lib-coverage" "*" - -"@types/istanbul-reports@^1.1.1": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz#7a8cbf6a406f36c8add871625b278eaf0b0d255a" - integrity sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA== - dependencies: - "@types/istanbul-lib-coverage" "*" - "@types/istanbul-lib-report" "*" - -"@types/jest@^25.1.2": - version "25.1.2" - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-25.1.2.tgz#1c4c8770c27906c7d8def5d2033df9dbd39f60da" - integrity sha512-EsPIgEsonlXmYV7GzUqcvORsSS9Gqxw/OvkGwHfAdpjduNRxMlhsav0O5Kb0zijc/eXSO/uW6SJt9nwull8AUQ== - dependencies: - jest-diff "^25.1.0" - pretty-format "^25.1.0" - -"@types/js-yaml@^3.12.1": - version "3.12.1" - resolved "https://registry.yarnpkg.com/@types/js-yaml/-/js-yaml-3.12.1.tgz#5c6f4a1eabca84792fbd916f0cb40847f123c656" - integrity sha512-SGGAhXLHDx+PK4YLNcNGa6goPf9XRWQNAUUbffkwVGGXIxmDKWyGGL4inzq2sPmExu431Ekb9aEMn9BkPqEYFA== - -"@types/lodash@^4.14.144": - version "4.14.144" - resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.144.tgz#12e57fc99064bce45e5ab3c8bc4783feb75eab8e" - integrity sha512-ogI4g9W5qIQQUhXAclq6zhqgqNUr7UlFaqDHbch7WLSLeeM/7d3CRaw7GLajxvyFvhJqw4Rpcz5bhoaYtIx6Tg== - -"@types/node@*", "@types/node@^12.7.12": - version "12.7.12" - resolved "https://registry.yarnpkg.com/@types/node/-/node-12.7.12.tgz#7c6c571cc2f3f3ac4a59a5f2bd48f5bdbc8653cc" - integrity sha512-KPYGmfD0/b1eXurQ59fXD1GBzhSQfz6/lKBxkaHX9dKTzjXbK68Zt7yGUxUsCS1jeTy/8aL+d9JEr+S54mpkWQ== - -"@types/object-hash@^1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@types/object-hash/-/object-hash-1.3.0.tgz#b20db2074129f71829d61ff404e618c4ac3d73cf" - integrity sha512-il4NIe4jTx4lfhkKaksmmGHw5EsVkO8sHWkpJHM9m59r1dtsVadLSrJqdE8zU74NENDAsR3oLIOlooRAXlPLNA== - dependencies: - "@types/node" "*" - -"@types/prettier@^1.18.3": - version "1.18.3" - resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-1.18.3.tgz#64ff53329ce16139f17c3db9d3e0487199972cd8" - integrity sha512-48rnerQdcZ26odp+HOvDGX8IcUkYOCuMc2BodWYTe956MqkHlOGAG4oFQ83cjZ0a4GAgj7mb4GUClxYd2Hlodg== - -"@types/stack-utils@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e" - integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw== - -"@types/yargs-parser@*": - version "13.1.0" - resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-13.1.0.tgz#c563aa192f39350a1d18da36c5a8da382bbd8228" - integrity sha512-gCubfBUZ6KxzoibJ+SCUc/57Ms1jz5NjHe4+dI2krNmU5zCPAphyLJYyTOg06ueIyfj+SaCUqmzun7ImlxDcKg== - -"@types/yargs@^13.0.3": - version "13.0.3" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-13.0.3.tgz#76482af3981d4412d65371a318f992d33464a380" - integrity sha512-K8/LfZq2duW33XW/tFwEAfnZlqIfVsoyRB3kfXdPXYhl0nfM8mmh7GS0jg7WrX2Dgq/0Ha/pR1PaR+BvmWwjiQ== - dependencies: - "@types/yargs-parser" "*" - -"@types/yargs@^15.0.0": - version "15.0.3" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.3.tgz#41453a0bc7ab393e995d1f5451455638edbd2baf" - integrity sha512-XCMQRK6kfpNBixHLyHUsGmXrpEmFFxzMrcnSXFMziHd8CoNJo8l16FkHyQq4x+xbM7E2XL83/O78OD8u+iZTdQ== - dependencies: - "@types/yargs-parser" "*" - -abab@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.2.tgz#a2fba1b122c69a85caa02d10f9270c7219709a9d" - integrity sha512-2scffjvioEmNz0OyDSLGWDfKCVwaKc6l9Pm9kOIREU13ClXZvHpg/nRL5xyjSSSLhOnXqft2HpsAzNEEA8cFFg== - -abbrev@1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" - integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== - -acorn-globals@^4.3.2: - version "4.3.4" - resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.4.tgz#9fa1926addc11c97308c4e66d7add0d40c3272e7" - integrity sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A== - dependencies: - acorn "^6.0.1" - acorn-walk "^6.0.1" - -acorn-walk@^6.0.1: - version "6.2.0" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.2.0.tgz#123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c" - integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA== - -acorn@^6.0.1: - version "6.4.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.1.tgz#531e58ba3f51b9dacb9a6646ca4debf5b14ca474" - integrity sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA== - -acorn@^7.1.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.0.tgz#949d36f2c292535da602283586c2477c57eb2d6c" - integrity sha512-kL5CuoXA/dgxlBbVrflsflzQ3PAas7RYZB52NOm/6839iVYJgKMJ3cQJD+t2i5+qFa8h3MDpEOJiS64E8JLnSQ== - -aggregate-error@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.0.1.tgz#db2fe7246e536f40d9b5442a39e117d7dd6a24e0" - integrity sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA== - dependencies: - clean-stack "^2.0.0" - indent-string "^4.0.0" - -ajv@^6.11.0: - version "6.11.0" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.11.0.tgz#c3607cbc8ae392d8a5a536f25b21f8e5f3f87fe9" - integrity sha512-nCprB/0syFYy9fVYU1ox1l2KN8S9I+tziH8D4zdZuLT3N6RMlGSGt5FSTpAiHB/Whv8Qs1cWHma1aMKZyaHRKA== - dependencies: - fast-deep-equal "^3.1.1" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.4.1" - uri-js "^4.2.2" - -ajv@^6.5.5: - version "6.10.2" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.2.tgz#d3cea04d6b017b2894ad69040fec8b623eb4bd52" - integrity sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw== - dependencies: - fast-deep-equal "^2.0.1" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.4.1" - uri-js "^4.2.2" - -ansi-escapes@^4.2.1: - version "4.3.0" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.0.tgz#a4ce2b33d6b214b7950d8595c212f12ac9cc569d" - integrity sha512-EiYhwo0v255HUL6eDyuLrXEkTi7WwVCLAw+SeOQ7M7qdun1z1pum4DEm/nuqIVbPvi9RPPc9k9LbyBv6H0DwVg== - dependencies: - type-fest "^0.8.1" - -ansi-regex@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" - integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= - -ansi-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" - integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= - -ansi-regex@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" - integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== - -ansi-regex@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" - integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== - -ansi-styles@^3.2.0, ansi-styles@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" - integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== - dependencies: - color-convert "^1.9.0" - -ansi-styles@^4.0.0, ansi-styles@^4.1.0: - version "4.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359" - integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA== - dependencies: - "@types/color-name" "^1.1.1" - color-convert "^2.0.1" - -anymatch@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" - integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== - dependencies: - micromatch "^3.1.4" - normalize-path "^2.1.1" - -anymatch@^3.0.3: - version "3.1.1" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" - integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg== - dependencies: - normalize-path "^3.0.0" - picomatch "^2.0.4" - -aproba@^1.0.3: - version "1.2.0" - resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" - integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== - -are-we-there-yet@~1.1.2: - version "1.1.5" - resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" - integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== - dependencies: - delegates "^1.0.0" - readable-stream "^2.0.6" - -argparse@^1.0.7: - version "1.0.10" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" - integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== - dependencies: - sprintf-js "~1.0.2" - -arr-diff@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" - integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= - -arr-flatten@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" - integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== - -arr-union@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" - integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= - -array-equal@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" - integrity sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM= - -array-unique@^0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" - integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= - -asn1@~0.2.3: - version "0.2.4" - resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" - integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== - dependencies: - safer-buffer "~2.1.0" - -assert-plus@1.0.0, assert-plus@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" - integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= - -assign-symbols@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" - integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= - -astral-regex@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" - integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== - -async-each@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" - integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== - -asynckit@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" - integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= - -atob@^2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" - integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== - -aws-sign2@~0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" - integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= - -aws4@^1.8.0: - version "1.8.0" - resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f" - integrity sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ== - -babel-jest@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-25.1.0.tgz#206093ac380a4b78c4404a05b3277391278f80fb" - integrity sha512-tz0VxUhhOE2y+g8R2oFrO/2VtVjA1lkJeavlhExuRBg3LdNJY9gwQ+Vcvqt9+cqy71MCTJhewvTB7Qtnnr9SWg== - dependencies: - "@jest/transform" "^25.1.0" - "@jest/types" "^25.1.0" - "@types/babel__core" "^7.1.0" - babel-plugin-istanbul "^6.0.0" - babel-preset-jest "^25.1.0" - chalk "^3.0.0" - slash "^3.0.0" - -babel-plugin-dynamic-import-node@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.0.tgz#f00f507bdaa3c3e3ff6e7e5e98d90a7acab96f7f" - integrity sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ== - dependencies: - object.assign "^4.1.0" - -babel-plugin-istanbul@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz#e159ccdc9af95e0b570c75b4573b7c34d671d765" - integrity sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@istanbuljs/load-nyc-config" "^1.0.0" - "@istanbuljs/schema" "^0.1.2" - istanbul-lib-instrument "^4.0.0" - test-exclude "^6.0.0" - -babel-plugin-jest-hoist@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-25.1.0.tgz#fb62d7b3b53eb36c97d1bc7fec2072f9bd115981" - integrity sha512-oIsopO41vW4YFZ9yNYoLQATnnN46lp+MZ6H4VvPKFkcc2/fkl3CfE/NZZSmnEIEsJRmJAgkVEK0R7Zbl50CpTw== - dependencies: - "@types/babel__traverse" "^7.0.6" - -babel-preset-jest@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-25.1.0.tgz#d0aebfebb2177a21cde710996fce8486d34f1d33" - integrity sha512-eCGn64olaqwUMaugXsTtGAM2I0QTahjEtnRu0ql8Ie+gDWAc1N6wqN0k2NilnyTunM69Pad7gJY7LOtwLimoFQ== - dependencies: - "@babel/plugin-syntax-bigint" "^7.0.0" - "@babel/plugin-syntax-object-rest-spread" "^7.0.0" - babel-plugin-jest-hoist "^25.1.0" - -balanced-match@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" - integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= - -base@^0.11.1: - version "0.11.2" - resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" - integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== - dependencies: - cache-base "^1.0.1" - class-utils "^0.3.5" - component-emitter "^1.2.1" - define-property "^1.0.0" - isobject "^3.0.1" - mixin-deep "^1.2.0" - pascalcase "^0.1.1" - -bcrypt-pbkdf@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" - integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= - dependencies: - tweetnacl "^0.14.3" - -binary-extensions@^1.0.0: - version "1.13.1" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" - integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== - -brace-expansion@^1.1.7: - version "1.1.11" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== - dependencies: - balanced-match "^1.0.0" - concat-map "0.0.1" - -braces@^2.3.1, braces@^2.3.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" - integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== - dependencies: - arr-flatten "^1.1.0" - array-unique "^0.3.2" - extend-shallow "^2.0.1" - fill-range "^4.0.0" - isobject "^3.0.1" - repeat-element "^1.1.2" - snapdragon "^0.8.1" - snapdragon-node "^2.0.1" - split-string "^3.0.2" - to-regex "^3.0.1" - -braces@^3.0.1: - version "3.0.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" - integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== - dependencies: - fill-range "^7.0.1" - -browser-process-hrtime@^0.1.2: - version "0.1.3" - resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz#616f00faef1df7ec1b5bf9cfe2bdc3170f26c7b4" - integrity sha512-bRFnI4NnjO6cnyLmOV/7PVoDEMJChlcfN0z4s1YMBY989/SvlfMI1lgCnkFUs53e9gQF+w7qu7XdllSTiSl8Aw== - -browser-resolve@^1.11.3: - version "1.11.3" - resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6" - integrity sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ== - dependencies: - resolve "1.1.7" - -browserslist@^4.6.0, browserslist@^4.6.6: - version "4.7.0" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.7.0.tgz#9ee89225ffc07db03409f2fee524dc8227458a17" - integrity sha512-9rGNDtnj+HaahxiVV38Gn8n8Lr8REKsel68v1sPFfIGEK6uSXTY3h9acgiT1dZVtOOUtifo/Dn8daDQ5dUgVsA== - dependencies: - caniuse-lite "^1.0.30000989" - electron-to-chromium "^1.3.247" - node-releases "^1.1.29" - -bser@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.0.tgz#65fc784bf7f87c009b973c12db6546902fa9c7b5" - integrity sha512-8zsjWrQkkBoLK6uxASk1nJ2SKv97ltiGDo6A3wA0/yRPz+CwmEyDo0hUrhIuukG2JHpAl3bvFIixw2/3Hi0DOg== - dependencies: - node-int64 "^0.4.0" - -buffer-from@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" - integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== - -cache-base@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" - integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== - dependencies: - collection-visit "^1.0.0" - component-emitter "^1.2.1" - get-value "^2.0.6" - has-value "^1.0.0" - isobject "^3.0.1" - set-value "^2.0.0" - to-object-path "^0.3.0" - union-value "^1.0.0" - unset-value "^1.0.0" - -callsites@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" - integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== - -camelcase@^5.0.0, camelcase@^5.3.1: - version "5.3.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" - integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== - -caniuse-lite@^1.0.30000989: - version "1.0.30000999" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000999.tgz#427253a69ad7bea4aa8d8345687b8eec51ca0e43" - integrity sha512-1CUyKyecPeksKwXZvYw0tEoaMCo/RwBlXmEtN5vVnabvO0KPd9RQLcaAuR9/1F+KDMv6esmOFWlsXuzDk+8rxg== - -capture-exit@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4" - integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g== - dependencies: - rsvp "^4.8.4" - -caseless@~0.12.0: - version "0.12.0" - resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" - integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= - -chalk@^2.0.0: - version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" - -chalk@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" - integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -chokidar@^2.1.8: - version "2.1.8" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" - integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg== - dependencies: - anymatch "^2.0.0" - async-each "^1.0.1" - braces "^2.3.2" - glob-parent "^3.1.0" - inherits "^2.0.3" - is-binary-path "^1.0.0" - is-glob "^4.0.0" - normalize-path "^3.0.0" - path-is-absolute "^1.0.0" - readdirp "^2.2.1" - upath "^1.1.1" - optionalDependencies: - fsevents "^1.2.7" - -chownr@^1.1.1: - version "1.1.3" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.3.tgz#42d837d5239688d55f303003a508230fa6727142" - integrity sha512-i70fVHhmV3DtTl6nqvZOnIjbY0Pe4kAUjwHj8z0zAdgBtYrJyYwLKCCuRBQ5ppkyL0AkN7HKRnETdmdp1zqNXw== - -ci-info@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" - integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== - -class-utils@^0.3.5: - version "0.3.6" - resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" - integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== - dependencies: - arr-union "^3.1.0" - define-property "^0.2.5" - isobject "^3.0.0" - static-extend "^0.1.1" - -clean-stack@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" - integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== - -cliui@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" - integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== - dependencies: - string-width "^3.1.0" - strip-ansi "^5.2.0" - wrap-ansi "^5.1.0" - -cliui@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" - integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== - dependencies: - string-width "^4.2.0" - strip-ansi "^6.0.0" - wrap-ansi "^6.2.0" - -co@^4.6.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" - integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= - -code-point-at@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" - integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= - -collect-v8-coverage@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.0.tgz#150ee634ac3650b71d9c985eb7f608942334feb1" - integrity sha512-VKIhJgvk8E1W28m5avZ2Gv2Ruv5YiF56ug2oclvaG9md69BuZImMG2sk9g7QNKLUbtYAKQjXjYxbYZVUlMMKmQ== - -collection-visit@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" - integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= - dependencies: - map-visit "^1.0.0" - object-visit "^1.0.0" - -color-convert@^1.9.0: - version "1.9.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" - integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== - dependencies: - color-name "1.1.3" - -color-convert@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" - integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== - dependencies: - color-name "~1.1.4" - -color-name@1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" - integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= - -color-name@~1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" - integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== - -combined-stream@^1.0.6, combined-stream@~1.0.6: - version "1.0.8" - resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" - integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== - dependencies: - delayed-stream "~1.0.0" - -commander@^2.11.0: - version "2.20.3" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" - integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== - -commander@^2.8.1: - version "2.20.1" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.1.tgz#3863ce3ca92d0831dcf2a102f5fb4b5926afd0f9" - integrity sha512-cCuLsMhJeWQ/ZpsFTbE765kvVfoeSddc4nU3up4fV+fDBcfUXnbITJ+JzhkdjzOqhURjZgujxaioam4RM9yGUg== - -component-emitter@^1.2.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" - integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== - -concat-map@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= - -console-control-strings@^1.0.0, console-control-strings@~1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" - integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= - -convert-source-map@^1.1.0, convert-source-map@^1.4.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" - integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A== - dependencies: - safe-buffer "~5.1.1" - -convert-source-map@^1.6.0, convert-source-map@^1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" - integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== - dependencies: - safe-buffer "~5.1.1" - -copy-descriptor@^0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" - integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= - -core-js-compat@^3.1.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.2.1.tgz#0cbdbc2e386e8e00d3b85dc81c848effec5b8150" - integrity sha512-MwPZle5CF9dEaMYdDeWm73ao/IflDH+FjeJCWEADcEgFSE9TLimFKwJsfmkwzI8eC0Aj0mgvMDjeQjrElkz4/A== - dependencies: - browserslist "^4.6.6" - semver "^6.3.0" - -core-util-is@1.0.2, core-util-is@~1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" - integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= - -cross-spawn@^6.0.0: - version "6.0.5" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" - integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== - dependencies: - nice-try "^1.0.4" - path-key "^2.0.1" - semver "^5.5.0" - shebang-command "^1.2.0" - which "^1.2.9" - -cross-spawn@^7.0.0: - version "7.0.1" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.1.tgz#0ab56286e0f7c24e153d04cc2aa027e43a9a5d14" - integrity sha512-u7v4o84SwFpD32Z8IIcPZ6z1/ie24O6RU3RbtL5Y316l3KuHVPx9ItBgWQ6VlfAFnRnTtMUrsQ9MUUTuEZjogg== - dependencies: - path-key "^3.1.0" - shebang-command "^2.0.0" - which "^2.0.1" - -cssom@^0.4.1: - version "0.4.4" - resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10" - integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw== - -cssom@~0.3.6: - version "0.3.8" - resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" - integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== - -cssstyle@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.2.0.tgz#e4c44debccd6b7911ed617a4395e5754bba59992" - integrity sha512-sEb3XFPx3jNnCAMtqrXPDeSgQr+jojtCeNf8cvMNMh1cG970+lljssvQDzPq6lmmJu2Vhqood/gtEomBiHOGnA== - dependencies: - cssom "~0.3.6" - -dashdash@^1.12.0: - version "1.14.1" - resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" - integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= - dependencies: - assert-plus "^1.0.0" - -data-urls@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe" - integrity sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ== - dependencies: - abab "^2.0.0" - whatwg-mimetype "^2.2.0" - whatwg-url "^7.0.0" - -dataloader@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/dataloader/-/dataloader-2.0.0.tgz#41eaf123db115987e21ca93c005cd7753c55fe6f" - integrity sha512-YzhyDAwA4TaQIhM5go+vCLmU0UikghC/t9DTQYZR2M/UvZ1MdOhPezSDZcjj9uqQJOMqjLcpWtyW2iNINdlatQ== - -debug@^2.2.0, debug@^2.3.3: - version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" - integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== - dependencies: - ms "2.0.0" - -debug@^3.2.6: - version "3.2.6" - resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" - integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== - dependencies: - ms "^2.1.1" - -debug@^4.1.0, debug@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" - integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== - dependencies: - ms "^2.1.1" - -decamelize@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" - integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= - -decode-uri-component@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" - integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= - -deep-extend@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" - integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== - -deep-is@~0.1.3: - version "0.1.3" - resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" - integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= - -define-properties@^1.1.2, define-properties@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" - integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== - dependencies: - object-keys "^1.0.12" - -define-property@^0.2.5: - version "0.2.5" - resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" - integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= - dependencies: - is-descriptor "^0.1.0" - -define-property@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" - integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= - dependencies: - is-descriptor "^1.0.0" - -define-property@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" - integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== - dependencies: - is-descriptor "^1.0.2" - isobject "^3.0.1" - -delayed-stream@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" - integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= - -delegates@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" - integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= - -detect-libc@^1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" - integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= - -detect-newline@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" - integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== - -diff-sequences@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-25.1.0.tgz#fd29a46f1c913fd66c22645dc75bffbe43051f32" - integrity sha512-nFIfVk5B/NStCsJ+zaPO4vYuLjlzQ6uFvPxzYyHlejNZ/UGa7G/n7peOXVrVNvRuyfstt+mZQYGpjxg9Z6N8Kw== - -domexception@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" - integrity sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug== - dependencies: - webidl-conversions "^4.0.2" - -ecc-jsbn@~0.1.1: - version "0.1.2" - resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" - integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= - dependencies: - jsbn "~0.1.0" - safer-buffer "^2.1.0" - -electron-to-chromium@^1.3.247: - version "1.3.280" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.280.tgz#5f8950c8329e3e11b59c705fd59b4b8d9b3de5b9" - integrity sha512-qYWNMjKLEfQAWZF2Sarvo+ahigu0EArnpCFSoUuZJS3W5wIeVfeEvsgmT2mgIrieQkeQ0+xFmykK3nx2ezekPQ== - -emoji-regex@^7.0.1: - version "7.0.3" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" - integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== - -emoji-regex@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" - integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== - -end-of-stream@^1.1.0: - version "1.4.4" - resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" - integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== - dependencies: - once "^1.4.0" - -ensure-error@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ensure-error/-/ensure-error-2.0.0.tgz#b8359a992601601b3541af9472f6a49d9dca1458" - integrity sha512-1ela4oR5A+TdtFpfiQrZKFUbsOi4JuIYmz2qSGFar6pEdRa54E15mKHVVYrAq1OQhd6b6nVrCaQxQlo6kYwhaw== - -es-abstract@^1.5.1: - version "1.15.0" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.15.0.tgz#8884928ec7e40a79e3c9bc812d37d10c8b24cc57" - integrity sha512-bhkEqWJ2t2lMeaJDuk7okMkJWI/yqgH/EoGwpcvv0XW9RWQsRspI4wt6xuyuvMvvQE3gg/D9HXppgk21w78GyQ== - dependencies: - es-to-primitive "^1.2.0" - function-bind "^1.1.1" - has "^1.0.3" - has-symbols "^1.0.0" - is-callable "^1.1.4" - is-regex "^1.0.4" - object-inspect "^1.6.0" - object-keys "^1.1.1" - string.prototype.trimleft "^2.1.0" - string.prototype.trimright "^2.1.0" - -es-to-primitive@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" - integrity sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg== - dependencies: - is-callable "^1.1.4" - is-date-object "^1.0.1" - is-symbol "^1.0.2" - -escape-string-regexp@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= - -escodegen@^1.11.1: - version "1.14.1" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.1.tgz#ba01d0c8278b5e95a9a45350142026659027a457" - integrity sha512-Bmt7NcRySdIfNPfU2ZoXDrrXsG9ZjvDxcAlMfDUgRBjLOWTuIACXPBFJH7Z+cLb40JeQco5toikyc9t9P8E9SQ== - dependencies: - esprima "^4.0.1" - estraverse "^4.2.0" - esutils "^2.0.2" - optionator "^0.8.1" - optionalDependencies: - source-map "~0.6.1" - -esprima@^4.0.0, esprima@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" - integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== - -estraverse@^4.2.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" - integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== - -esutils@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" - integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== - -exec-sh@^0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.2.tgz#6738de2eb7c8e671d0366aea0b0db8c6f7d7391b" - integrity sha512-9sLAvzhI5nc8TpuQUh4ahMdCrWT00wPWz7j47/emR5+2qEfoZP5zzUXvx+vdx+H6ohhnsYC31iX04QLYJK8zTg== - -execa@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" - integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== - dependencies: - cross-spawn "^6.0.0" - get-stream "^4.0.0" - is-stream "^1.1.0" - npm-run-path "^2.0.0" - p-finally "^1.0.0" - signal-exit "^3.0.0" - strip-eof "^1.0.0" - -execa@^3.2.0: - version "3.4.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-3.4.0.tgz#c08ed4550ef65d858fac269ffc8572446f37eb89" - integrity sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g== - dependencies: - cross-spawn "^7.0.0" - get-stream "^5.0.0" - human-signals "^1.1.1" - is-stream "^2.0.0" - merge-stream "^2.0.0" - npm-run-path "^4.0.0" - onetime "^5.1.0" - p-finally "^2.0.0" - signal-exit "^3.0.2" - strip-final-newline "^2.0.0" - -exit@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" - integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= - -expand-brackets@^2.1.4: - version "2.1.4" - resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" - integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= - dependencies: - debug "^2.3.3" - define-property "^0.2.5" - extend-shallow "^2.0.1" - posix-character-classes "^0.1.0" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" - -expect@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/expect/-/expect-25.1.0.tgz#7e8d7b06a53f7d66ec927278db3304254ee683ee" - integrity sha512-wqHzuoapQkhc3OKPlrpetsfueuEiMf3iWh0R8+duCu9PIjXoP7HgD5aeypwTnXUAjC8aMsiVDaWwlbJ1RlQ38g== - dependencies: - "@jest/types" "^25.1.0" - ansi-styles "^4.0.0" - jest-get-type "^25.1.0" - jest-matcher-utils "^25.1.0" - jest-message-util "^25.1.0" - jest-regex-util "^25.1.0" - -extend-shallow@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" - integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= - dependencies: - is-extendable "^0.1.0" - -extend-shallow@^3.0.0, extend-shallow@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" - integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= - dependencies: - assign-symbols "^1.0.0" - is-extendable "^1.0.1" - -extend@~3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" - integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== - -extglob@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" - integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== - dependencies: - array-unique "^0.3.2" - define-property "^1.0.0" - expand-brackets "^2.1.4" - extend-shallow "^2.0.1" - fragment-cache "^0.2.1" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" - -extsprintf@1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" - integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= - -extsprintf@^1.2.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" - integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= - -fast-deep-equal@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" - integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= - -fast-deep-equal@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz#545145077c501491e33b15ec408c294376e94ae4" - integrity sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA== - -fast-json-stable-stringify@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" - integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= - -fast-levenshtein@~2.0.4: - version "2.0.6" - resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" - integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= - -fb-watchman@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" - integrity sha1-VOmr99+i8mzZsWNsWIwa/AXeXVg= - dependencies: - bser "^2.0.0" - -fill-range@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" - integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= - dependencies: - extend-shallow "^2.0.1" - is-number "^3.0.0" - repeat-string "^1.6.1" - to-regex-range "^2.1.0" - -fill-range@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" - integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== - dependencies: - to-regex-range "^5.0.1" - -find-up@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" - integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== - dependencies: - locate-path "^3.0.0" - -find-up@^4.0.0, find-up@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" - integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== - dependencies: - locate-path "^5.0.0" - path-exists "^4.0.0" - -flow-bin@^0.121.0: - version "0.121.0" - resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.121.0.tgz#e206bdc3d510277f9a847920540f72c49e87c130" - integrity sha512-QYRMs+AoMLj/OTaSo9+8c3kzM/u8YgvfrInp0qzhtzC02Sc2jb3BV/QZWZGjPo+XK3twyyqXrcI3s8MuL1UQRg== - -flowgen@^1.10.0: - version "1.10.0" - resolved "https://registry.yarnpkg.com/flowgen/-/flowgen-1.10.0.tgz#a041ae31d543d22166e7ba7c296b8445deb3c2e4" - integrity sha512-3lsoaa1vxGXhnkHuoE4mLPJi/klvpR3ID8R9CFJ/GBNi+cxJXecWQaUPrWMdNI5tGs8Y+7wrIZaCVFKFLQiGOg== - dependencies: - "@babel/code-frame" "^7.0.0" - "@babel/highlight" "^7.0.0" - commander "^2.11.0" - lodash "^4.17.4" - paralleljs "^0.2.1" - prettier "^1.16.4" - shelljs "^0.8.3" - typescript "^3.4" - typescript-compiler "^1.4.1-2" - -for-in@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" - integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= - -forever-agent@~0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" - integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= - -form-data@~2.3.2: - version "2.3.3" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" - integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.6" - mime-types "^2.1.12" - -fragment-cache@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" - integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= - dependencies: - map-cache "^0.2.2" - -fs-minipass@^1.2.5: - version "1.2.7" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7" - integrity sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA== - dependencies: - minipass "^2.6.0" - -fs-readdir-recursive@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" - integrity sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA== - -fs.realpath@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= - -fsevents@^1.2.7: - version "1.2.9" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.9.tgz#3f5ed66583ccd6f400b5a00db6f7e861363e388f" - integrity sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw== - dependencies: - nan "^2.12.1" - node-pre-gyp "^0.12.0" - -fsevents@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.2.tgz#4c0a1fb34bc68e543b4b82a9ec392bfbda840805" - integrity sha512-R4wDiBwZ0KzpgOWetKDug1FZcYhqYnUYKtfZYt4mD5SBz76q0KR4Q9o7GIPamsVPGmW3EYPPJ0dOOjvx32ldZA== - -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== - -gauge@~2.7.3: - version "2.7.4" - resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" - integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= - dependencies: - aproba "^1.0.3" - console-control-strings "^1.0.0" - has-unicode "^2.0.0" - object-assign "^4.1.0" - signal-exit "^3.0.0" - string-width "^1.0.1" - strip-ansi "^3.0.1" - wide-align "^1.1.0" - -gensync@^1.0.0-beta.1: - version "1.0.0-beta.1" - resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269" - integrity sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg== - -get-caller-file@^2.0.1: - version "2.0.5" - resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" - integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== - -get-stream@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" - integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== - dependencies: - pump "^3.0.0" - -get-stream@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.1.0.tgz#01203cdc92597f9b909067c3e656cc1f4d3c4dc9" - integrity sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw== - dependencies: - pump "^3.0.0" - -get-value@^2.0.3, get-value@^2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" - integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= - -getpass@^0.1.1: - version "0.1.7" - resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" - integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= - dependencies: - assert-plus "^1.0.0" - -glob-parent@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" - integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4= - dependencies: - is-glob "^3.1.0" - path-dirname "^1.0.0" - -glob@^7.0.0, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3: - version "7.1.4" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" - integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.4" - once "^1.3.0" - path-is-absolute "^1.0.0" - -glob@^7.1.4: - version "7.1.6" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" - integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.4" - once "^1.3.0" - path-is-absolute "^1.0.0" - -globals@^11.1.0: - version "11.12.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" - integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== - -graceful-fs@^4.1.11: - version "4.2.2" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.2.tgz#6f0952605d0140c1cfdb138ed005775b92d67b02" - integrity sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q== - -graceful-fs@^4.2.3: - version "4.2.3" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" - integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ== - -growly@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" - integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE= - -har-schema@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" - integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= - -har-validator@~5.1.3: - version "5.1.3" - resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" - integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g== - dependencies: - ajv "^6.5.5" - har-schema "^2.0.0" - -has-flag@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= - -has-flag@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" - integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== - -has-symbols@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" - integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q= - -has-unicode@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" - integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= - -has-value@^0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" - integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= - dependencies: - get-value "^2.0.3" - has-values "^0.1.4" - isobject "^2.0.0" - -has-value@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" - integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= - dependencies: - get-value "^2.0.6" - has-values "^1.0.0" - isobject "^3.0.0" - -has-values@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" - integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= - -has-values@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" - integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= - dependencies: - is-number "^3.0.0" - kind-of "^4.0.0" - -has@^1.0.1, has@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - dependencies: - function-bind "^1.1.1" - -html-encoding-sniffer@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" - integrity sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw== - dependencies: - whatwg-encoding "^1.0.1" - -html-escaper@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.0.tgz#71e87f931de3fe09e56661ab9a29aadec707b491" - integrity sha512-a4u9BeERWGu/S8JiWEAQcdrg9v4QArtP9keViQjGMdff20fBdd8waotXaNmODqBe6uZ3Nafi7K/ho4gCQHV3Ig== - -http-signature@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" - integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= - dependencies: - assert-plus "^1.0.0" - jsprim "^1.2.2" - sshpk "^1.7.0" - -human-signals@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" - integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== - -iconv-lite@0.4.24, iconv-lite@^0.4.4: - version "0.4.24" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" - integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== - dependencies: - safer-buffer ">= 2.1.2 < 3" - -ignore-walk@^3.0.1: - version "3.0.3" - resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.3.tgz#017e2447184bfeade7c238e4aefdd1e8f95b1e37" - integrity sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw== - dependencies: - minimatch "^3.0.4" - -import-local@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.0.2.tgz#a8cfd0431d1de4a2199703d003e3e62364fa6db6" - integrity sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA== - dependencies: - pkg-dir "^4.2.0" - resolve-cwd "^3.0.0" - -imurmurhash@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" - integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= - -indent-string@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" - integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== - -inflight@^1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= - dependencies: - once "^1.3.0" - wrappy "1" - -inherits@2, inherits@^2.0.3, inherits@~2.0.3: - version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== - -ini@~1.3.0: - version "1.3.5" - resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" - integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== - -interpret@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296" - integrity sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw== - -invariant@^2.2.2: - version "2.2.4" - resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" - integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== - dependencies: - loose-envify "^1.0.0" - -ip-regex@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" - integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk= - -is-accessor-descriptor@^0.1.6: - version "0.1.6" - resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" - integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= - dependencies: - kind-of "^3.0.2" - -is-accessor-descriptor@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" - integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== - dependencies: - kind-of "^6.0.0" - -is-binary-path@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" - integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg= - dependencies: - binary-extensions "^1.0.0" - -is-buffer@^1.1.5: - version "1.1.6" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" - integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== - -is-callable@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" - integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA== - -is-ci@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" - integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== - dependencies: - ci-info "^2.0.0" - -is-data-descriptor@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" - integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= - dependencies: - kind-of "^3.0.2" - -is-data-descriptor@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" - integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== - dependencies: - kind-of "^6.0.0" - -is-date-object@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" - integrity sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY= - -is-descriptor@^0.1.0: - version "0.1.6" - resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" - integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== - dependencies: - is-accessor-descriptor "^0.1.6" - is-data-descriptor "^0.1.4" - kind-of "^5.0.0" - -is-descriptor@^1.0.0, is-descriptor@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" - integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== - dependencies: - is-accessor-descriptor "^1.0.0" - is-data-descriptor "^1.0.0" - kind-of "^6.0.2" - -is-extendable@^0.1.0, is-extendable@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" - integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= - -is-extendable@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" - integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== - dependencies: - is-plain-object "^2.0.4" - -is-extglob@^2.1.0, is-extglob@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= - -is-fullwidth-code-point@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" - integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= - dependencies: - number-is-nan "^1.0.0" - -is-fullwidth-code-point@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" - integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= - -is-fullwidth-code-point@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" - integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== - -is-generator-fn@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" - integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== - -is-glob@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" - integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo= - dependencies: - is-extglob "^2.1.0" - -is-glob@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" - integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== - dependencies: - is-extglob "^2.1.1" - -is-number@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" - integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= - dependencies: - kind-of "^3.0.2" - -is-number@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" - integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== - -is-plain-obj@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" - integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= - -is-plain-object@^2.0.3, is-plain-object@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" - integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== - dependencies: - isobject "^3.0.1" - -is-regex@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" - integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE= - dependencies: - has "^1.0.1" - -is-stream@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" - integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= - -is-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" - integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== - -is-symbol@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" - integrity sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw== - dependencies: - has-symbols "^1.0.0" - -is-typedarray@^1.0.0, is-typedarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" - integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= - -is-windows@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" - integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== - -is-wsl@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.1.1.tgz#4a1c152d429df3d441669498e2486d3596ebaf1d" - integrity sha512-umZHcSrwlDHo2TGMXv0DZ8dIUGunZ2Iv68YZnrmCiBPkZ4aaOhtv7pXJKeki9k3qJ3RJr0cDyitcl5wEH3AYog== - -isarray@1.0.0, isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= - -isexe@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= - -isobject@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" - integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= - dependencies: - isarray "1.0.0" - -isobject@^3.0.0, isobject@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" - integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= - -isstream@~0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" - integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= - -istanbul-lib-coverage@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec" - integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg== - -istanbul-lib-instrument@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.1.tgz#61f13ac2c96cfefb076fe7131156cc05907874e6" - integrity sha512-imIchxnodll7pvQBYOqUu88EufLCU56LMeFPZZM/fJZ1irYcYdqroaV+ACK1Ila8ls09iEYArp+nqyC6lW1Vfg== - dependencies: - "@babel/core" "^7.7.5" - "@babel/parser" "^7.7.5" - "@babel/template" "^7.7.4" - "@babel/traverse" "^7.7.4" - "@istanbuljs/schema" "^0.1.2" - istanbul-lib-coverage "^3.0.0" - semver "^6.3.0" - -istanbul-lib-report@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" - integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== - dependencies: - istanbul-lib-coverage "^3.0.0" - make-dir "^3.0.0" - supports-color "^7.1.0" - -istanbul-lib-source-maps@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz#75743ce6d96bb86dc7ee4352cf6366a23f0b1ad9" - integrity sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg== - dependencies: - debug "^4.1.1" - istanbul-lib-coverage "^3.0.0" - source-map "^0.6.1" - -istanbul-reports@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.0.0.tgz#d4d16d035db99581b6194e119bbf36c963c5eb70" - integrity sha512-2osTcC8zcOSUkImzN2EWQta3Vdi4WjjKw99P2yWx5mLnigAM0Rd5uYFn1cf2i/Ois45GkNjaoTqc5CxgMSX80A== - dependencies: - html-escaper "^2.0.0" - istanbul-lib-report "^3.0.0" - -jest-changed-files@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-25.1.0.tgz#73dae9a7d9949fdfa5c278438ce8f2ff3ec78131" - integrity sha512-bdL1aHjIVy3HaBO3eEQeemGttsq1BDlHgWcOjEOIAcga7OOEGWHD2WSu8HhL7I1F0mFFyci8VKU4tRNk+qtwDA== - dependencies: - "@jest/types" "^25.1.0" - execa "^3.2.0" - throat "^5.0.0" - -jest-cli@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-25.1.0.tgz#75f0b09cf6c4f39360906bf78d580be1048e4372" - integrity sha512-p+aOfczzzKdo3AsLJlhs8J5EW6ffVidfSZZxXedJ0mHPBOln1DccqFmGCoO8JWd4xRycfmwy1eoQkMsF8oekPg== - dependencies: - "@jest/core" "^25.1.0" - "@jest/test-result" "^25.1.0" - "@jest/types" "^25.1.0" - chalk "^3.0.0" - exit "^0.1.2" - import-local "^3.0.2" - is-ci "^2.0.0" - jest-config "^25.1.0" - jest-util "^25.1.0" - jest-validate "^25.1.0" - prompts "^2.0.1" - realpath-native "^1.1.0" - yargs "^15.0.0" - -jest-config@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-25.1.0.tgz#d114e4778c045d3ef239452213b7ad3ec1cbea90" - integrity sha512-tLmsg4SZ5H7tuhBC5bOja0HEblM0coS3Wy5LTCb2C8ZV6eWLewHyK+3qSq9Bi29zmWQ7ojdCd3pxpx4l4d2uGw== - dependencies: - "@babel/core" "^7.1.0" - "@jest/test-sequencer" "^25.1.0" - "@jest/types" "^25.1.0" - babel-jest "^25.1.0" - chalk "^3.0.0" - glob "^7.1.1" - jest-environment-jsdom "^25.1.0" - jest-environment-node "^25.1.0" - jest-get-type "^25.1.0" - jest-jasmine2 "^25.1.0" - jest-regex-util "^25.1.0" - jest-resolve "^25.1.0" - jest-util "^25.1.0" - jest-validate "^25.1.0" - micromatch "^4.0.2" - pretty-format "^25.1.0" - realpath-native "^1.1.0" - -jest-diff@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-25.1.0.tgz#58b827e63edea1bc80c1de952b80cec9ac50e1ad" - integrity sha512-nepXgajT+h017APJTreSieh4zCqnSHEJ1iT8HDlewu630lSJ4Kjjr9KNzm+kzGwwcpsDE6Snx1GJGzzsefaEHw== - dependencies: - chalk "^3.0.0" - diff-sequences "^25.1.0" - jest-get-type "^25.1.0" - pretty-format "^25.1.0" - -jest-docblock@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-25.1.0.tgz#0f44bea3d6ca6dfc38373d465b347c8818eccb64" - integrity sha512-370P/mh1wzoef6hUKiaMcsPtIapY25suP6JqM70V9RJvdKLrV4GaGbfUseUVk4FZJw4oTZ1qSCJNdrClKt5JQA== - dependencies: - detect-newline "^3.0.0" - -jest-each@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-25.1.0.tgz#a6b260992bdf451c2d64a0ccbb3ac25e9b44c26a" - integrity sha512-R9EL8xWzoPySJ5wa0DXFTj7NrzKpRD40Jy+zQDp3Qr/2QmevJgkN9GqioCGtAJ2bW9P/MQRznQHQQhoeAyra7A== - dependencies: - "@jest/types" "^25.1.0" - chalk "^3.0.0" - jest-get-type "^25.1.0" - jest-util "^25.1.0" - pretty-format "^25.1.0" - -jest-environment-jsdom@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-25.1.0.tgz#6777ab8b3e90fd076801efd3bff8e98694ab43c3" - integrity sha512-ILb4wdrwPAOHX6W82GGDUiaXSSOE274ciuov0lztOIymTChKFtC02ddyicRRCdZlB5YSrv3vzr1Z5xjpEe1OHQ== - dependencies: - "@jest/environment" "^25.1.0" - "@jest/fake-timers" "^25.1.0" - "@jest/types" "^25.1.0" - jest-mock "^25.1.0" - jest-util "^25.1.0" - jsdom "^15.1.1" - -jest-environment-node@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-25.1.0.tgz#797bd89b378cf0bd794dc8e3dca6ef21126776db" - integrity sha512-U9kFWTtAPvhgYY5upnH9rq8qZkj6mYLup5l1caAjjx9uNnkLHN2xgZy5mo4SyLdmrh/EtB9UPpKFShvfQHD0Iw== - dependencies: - "@jest/environment" "^25.1.0" - "@jest/fake-timers" "^25.1.0" - "@jest/types" "^25.1.0" - jest-mock "^25.1.0" - jest-util "^25.1.0" - -jest-get-type@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-25.1.0.tgz#1cfe5fc34f148dc3a8a3b7275f6b9ce9e2e8a876" - integrity sha512-yWkBnT+5tMr8ANB6V+OjmrIJufHtCAqI5ic2H40v+tRqxDmE0PGnIiTyvRWFOMtmVHYpwRqyazDbTnhpjsGvLw== - -jest-haste-map@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-25.1.0.tgz#ae12163d284f19906260aa51fd405b5b2e5a4ad3" - integrity sha512-/2oYINIdnQZAqyWSn1GTku571aAfs8NxzSErGek65Iu5o8JYb+113bZysRMcC/pjE5v9w0Yz+ldbj9NxrFyPyw== - dependencies: - "@jest/types" "^25.1.0" - anymatch "^3.0.3" - fb-watchman "^2.0.0" - graceful-fs "^4.2.3" - jest-serializer "^25.1.0" - jest-util "^25.1.0" - jest-worker "^25.1.0" - micromatch "^4.0.2" - sane "^4.0.3" - walker "^1.0.7" - optionalDependencies: - fsevents "^2.1.2" - -jest-jasmine2@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-25.1.0.tgz#681b59158a430f08d5d0c1cce4f01353e4b48137" - integrity sha512-GdncRq7jJ7sNIQ+dnXvpKO2MyP6j3naNK41DTTjEAhLEdpImaDA9zSAZwDhijjSF/D7cf4O5fdyUApGBZleaEg== - dependencies: - "@babel/traverse" "^7.1.0" - "@jest/environment" "^25.1.0" - "@jest/source-map" "^25.1.0" - "@jest/test-result" "^25.1.0" - "@jest/types" "^25.1.0" - chalk "^3.0.0" - co "^4.6.0" - expect "^25.1.0" - is-generator-fn "^2.0.0" - jest-each "^25.1.0" - jest-matcher-utils "^25.1.0" - jest-message-util "^25.1.0" - jest-runtime "^25.1.0" - jest-snapshot "^25.1.0" - jest-util "^25.1.0" - pretty-format "^25.1.0" - throat "^5.0.0" - -jest-leak-detector@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-25.1.0.tgz#ed6872d15aa1c72c0732d01bd073dacc7c38b5c6" - integrity sha512-3xRI264dnhGaMHRvkFyEKpDeaRzcEBhyNrOG5oT8xPxOyUAblIAQnpiR3QXu4wDor47MDTiHbiFcbypdLcLW5w== - dependencies: - jest-get-type "^25.1.0" - pretty-format "^25.1.0" - -jest-matcher-utils@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-25.1.0.tgz#fa5996c45c7193a3c24e73066fc14acdee020220" - integrity sha512-KGOAFcSFbclXIFE7bS4C53iYobKI20ZWleAdAFun4W1Wz1Kkej8Ng6RRbhL8leaEvIOjGXhGf/a1JjO8bkxIWQ== - dependencies: - chalk "^3.0.0" - jest-diff "^25.1.0" - jest-get-type "^25.1.0" - pretty-format "^25.1.0" - -jest-message-util@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-25.1.0.tgz#702a9a5cb05c144b9aa73f06e17faa219389845e" - integrity sha512-Nr/Iwar2COfN22aCqX0kCVbXgn8IBm9nWf4xwGr5Olv/KZh0CZ32RKgZWMVDXGdOahicM10/fgjdimGNX/ttCQ== - dependencies: - "@babel/code-frame" "^7.0.0" - "@jest/test-result" "^25.1.0" - "@jest/types" "^25.1.0" - "@types/stack-utils" "^1.0.1" - chalk "^3.0.0" - micromatch "^4.0.2" - slash "^3.0.0" - stack-utils "^1.0.1" - -jest-mock@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-25.1.0.tgz#411d549e1b326b7350b2e97303a64715c28615fd" - integrity sha512-28/u0sqS+42vIfcd1mlcg4ZVDmSUYuNvImP4X2lX5hRMLW+CN0BeiKVD4p+ujKKbSPKd3rg/zuhCF+QBLJ4vag== - dependencies: - "@jest/types" "^25.1.0" - -jest-pnp-resolver@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz#ecdae604c077a7fbc70defb6d517c3c1c898923a" - integrity sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ== - -jest-regex-util@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-25.1.0.tgz#efaf75914267741838e01de24da07b2192d16d87" - integrity sha512-9lShaDmDpqwg+xAd73zHydKrBbbrIi08Kk9YryBEBybQFg/lBWR/2BDjjiSE7KIppM9C5+c03XiDaZ+m4Pgs1w== - -jest-resolve-dependencies@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-25.1.0.tgz#8a1789ec64eb6aaa77fd579a1066a783437e70d2" - integrity sha512-Cu/Je38GSsccNy4I2vL12ZnBlD170x2Oh1devzuM9TLH5rrnLW1x51lN8kpZLYTvzx9j+77Y5pqBaTqfdzVzrw== - dependencies: - "@jest/types" "^25.1.0" - jest-regex-util "^25.1.0" - jest-snapshot "^25.1.0" - -jest-resolve@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-25.1.0.tgz#23d8b6a4892362baf2662877c66aa241fa2eaea3" - integrity sha512-XkBQaU1SRCHj2Evz2Lu4Czs+uIgJXWypfO57L7JYccmAXv4slXA6hzNblmcRmf7P3cQ1mE7fL3ABV6jAwk4foQ== - dependencies: - "@jest/types" "^25.1.0" - browser-resolve "^1.11.3" - chalk "^3.0.0" - jest-pnp-resolver "^1.2.1" - realpath-native "^1.1.0" - -jest-runner@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-25.1.0.tgz#fef433a4d42c89ab0a6b6b268e4a4fbe6b26e812" - integrity sha512-su3O5fy0ehwgt+e8Wy7A8CaxxAOCMzL4gUBftSs0Ip32S0epxyZPDov9Znvkl1nhVOJNf4UwAsnqfc3plfQH9w== - dependencies: - "@jest/console" "^25.1.0" - "@jest/environment" "^25.1.0" - "@jest/test-result" "^25.1.0" - "@jest/types" "^25.1.0" - chalk "^3.0.0" - exit "^0.1.2" - graceful-fs "^4.2.3" - jest-config "^25.1.0" - jest-docblock "^25.1.0" - jest-haste-map "^25.1.0" - jest-jasmine2 "^25.1.0" - jest-leak-detector "^25.1.0" - jest-message-util "^25.1.0" - jest-resolve "^25.1.0" - jest-runtime "^25.1.0" - jest-util "^25.1.0" - jest-worker "^25.1.0" - source-map-support "^0.5.6" - throat "^5.0.0" - -jest-runtime@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-25.1.0.tgz#02683218f2f95aad0f2ec1c9cdb28c1dc0ec0314" - integrity sha512-mpPYYEdbExKBIBB16ryF6FLZTc1Rbk9Nx0ryIpIMiDDkOeGa0jQOKVI/QeGvVGlunKKm62ywcioeFVzIbK03bA== - dependencies: - "@jest/console" "^25.1.0" - "@jest/environment" "^25.1.0" - "@jest/source-map" "^25.1.0" - "@jest/test-result" "^25.1.0" - "@jest/transform" "^25.1.0" - "@jest/types" "^25.1.0" - "@types/yargs" "^15.0.0" - chalk "^3.0.0" - collect-v8-coverage "^1.0.0" - exit "^0.1.2" - glob "^7.1.3" - graceful-fs "^4.2.3" - jest-config "^25.1.0" - jest-haste-map "^25.1.0" - jest-message-util "^25.1.0" - jest-mock "^25.1.0" - jest-regex-util "^25.1.0" - jest-resolve "^25.1.0" - jest-snapshot "^25.1.0" - jest-util "^25.1.0" - jest-validate "^25.1.0" - realpath-native "^1.1.0" - slash "^3.0.0" - strip-bom "^4.0.0" - yargs "^15.0.0" - -jest-serializer@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-25.1.0.tgz#73096ba90e07d19dec4a0c1dd89c355e2f129e5d" - integrity sha512-20Wkq5j7o84kssBwvyuJ7Xhn7hdPeTXndnwIblKDR2/sy1SUm6rWWiG9kSCgJPIfkDScJCIsTtOKdlzfIHOfKA== - -jest-snapshot@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-25.1.0.tgz#d5880bd4b31faea100454608e15f8d77b9d221d9" - integrity sha512-xZ73dFYN8b/+X2hKLXz4VpBZGIAn7muD/DAg+pXtDzDGw3iIV10jM7WiHqhCcpDZfGiKEj7/2HXAEPtHTj0P2A== - dependencies: - "@babel/types" "^7.0.0" - "@jest/types" "^25.1.0" - chalk "^3.0.0" - expect "^25.1.0" - jest-diff "^25.1.0" - jest-get-type "^25.1.0" - jest-matcher-utils "^25.1.0" - jest-message-util "^25.1.0" - jest-resolve "^25.1.0" - mkdirp "^0.5.1" - natural-compare "^1.4.0" - pretty-format "^25.1.0" - semver "^7.1.1" - -jest-util@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-25.1.0.tgz#7bc56f7b2abd534910e9fa252692f50624c897d9" - integrity sha512-7did6pLQ++87Qsj26Fs/TIwZMUFBXQ+4XXSodRNy3luch2DnRXsSnmpVtxxQ0Yd6WTipGpbhh2IFP1mq6/fQGw== - dependencies: - "@jest/types" "^25.1.0" - chalk "^3.0.0" - is-ci "^2.0.0" - mkdirp "^0.5.1" - -jest-validate@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-25.1.0.tgz#1469fa19f627bb0a9a98e289f3e9ab6a668c732a" - integrity sha512-kGbZq1f02/zVO2+t1KQGSVoCTERc5XeObLwITqC6BTRH3Adv7NZdYqCpKIZLUgpLXf2yISzQ465qOZpul8abXA== - dependencies: - "@jest/types" "^25.1.0" - camelcase "^5.3.1" - chalk "^3.0.0" - jest-get-type "^25.1.0" - leven "^3.1.0" - pretty-format "^25.1.0" - -jest-watcher@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-25.1.0.tgz#97cb4a937f676f64c9fad2d07b824c56808e9806" - integrity sha512-Q9eZ7pyaIr6xfU24OeTg4z1fUqBF/4MP6J801lyQfg7CsnZ/TCzAPvCfckKdL5dlBBEKBeHV0AdyjFZ5eWj4ig== - dependencies: - "@jest/test-result" "^25.1.0" - "@jest/types" "^25.1.0" - ansi-escapes "^4.2.1" - chalk "^3.0.0" - jest-util "^25.1.0" - string-length "^3.1.0" - -jest-worker@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-25.1.0.tgz#75d038bad6fdf58eba0d2ec1835856c497e3907a" - integrity sha512-ZHhHtlxOWSxCoNOKHGbiLzXnl42ga9CxDr27H36Qn+15pQZd3R/F24jrmjDelw9j/iHUIWMWs08/u2QN50HHOg== - dependencies: - merge-stream "^2.0.0" - supports-color "^7.0.0" - -jest@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/jest/-/jest-25.1.0.tgz#b85ef1ddba2fdb00d295deebbd13567106d35be9" - integrity sha512-FV6jEruneBhokkt9MQk0WUFoNTwnF76CLXtwNMfsc0um0TlB/LG2yxUd0KqaFjEJ9laQmVWQWS0sG/t2GsuI0w== - dependencies: - "@jest/core" "^25.1.0" - import-local "^3.0.2" - jest-cli "^25.1.0" - -js-levenshtein@^1.1.3: - version "1.1.6" - resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d" - integrity sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g== - -"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" - integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== - -js-yaml@^3.13.1: - version "3.13.1" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" - integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== - dependencies: - argparse "^1.0.7" - esprima "^4.0.0" - -jsbn@~0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" - integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= - -jsdom@^15.1.1: - version "15.2.1" - resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-15.2.1.tgz#d2feb1aef7183f86be521b8c6833ff5296d07ec5" - integrity sha512-fAl1W0/7T2G5vURSyxBzrJ1LSdQn6Tr5UX/xD4PXDx/PDgwygedfW6El/KIj3xJ7FU61TTYnc/l/B7P49Eqt6g== - dependencies: - abab "^2.0.0" - acorn "^7.1.0" - acorn-globals "^4.3.2" - array-equal "^1.0.0" - cssom "^0.4.1" - cssstyle "^2.0.0" - data-urls "^1.1.0" - domexception "^1.0.1" - escodegen "^1.11.1" - html-encoding-sniffer "^1.0.2" - nwsapi "^2.2.0" - parse5 "5.1.0" - pn "^1.1.0" - request "^2.88.0" - request-promise-native "^1.0.7" - saxes "^3.1.9" - symbol-tree "^3.2.2" - tough-cookie "^3.0.1" - w3c-hr-time "^1.0.1" - w3c-xmlserializer "^1.1.2" - webidl-conversions "^4.0.2" - whatwg-encoding "^1.0.5" - whatwg-mimetype "^2.3.0" - whatwg-url "^7.0.0" - ws "^7.0.0" - xml-name-validator "^3.0.0" - -jsesc@^2.5.1: - version "2.5.2" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" - integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== - -jsesc@~0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" - integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= - -json-schema-traverse@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" - integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== - -json-schema@0.2.3: - version "0.2.3" - resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" - integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM= - -json-stringify-safe@~5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" - integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= - -json5@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.1.tgz#81b6cb04e9ba496f1c7005d07b4368a2638f90b6" - integrity sha512-l+3HXD0GEI3huGq1njuqtzYK8OYJyXMkOLtQ53pjWh89tvWS2h6l+1zMkYWqlb57+SiQodKZyvMEFb2X+KrFhQ== - dependencies: - minimist "^1.2.0" - -jsprim@^1.2.2: - version "1.4.1" - resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" - integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= - dependencies: - assert-plus "1.0.0" - extsprintf "1.3.0" - json-schema "0.2.3" - verror "1.10.0" - -kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: - version "3.2.2" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" - integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= - dependencies: - is-buffer "^1.1.5" - -kind-of@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" - integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= - dependencies: - is-buffer "^1.1.5" - -kind-of@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" - integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== - -kind-of@^6.0.0, kind-of@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" - integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA== - -kleur@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" - integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== - -leven@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" - integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== - -levn@~0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" - integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= - dependencies: - prelude-ls "~1.1.2" - type-check "~0.3.2" - -locate-path@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" - integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== - dependencies: - p-locate "^3.0.0" - path-exists "^3.0.0" - -locate-path@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" - integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== - dependencies: - p-locate "^4.1.0" - -lodash.sortby@^4.7.0: - version "4.7.0" - resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" - integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= - -lodash@^4.17.13, lodash@^4.17.15, lodash@^4.17.4: - version "4.17.19" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b" - integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ== - -lolex@^5.0.0: - version "5.1.2" - resolved "https://registry.yarnpkg.com/lolex/-/lolex-5.1.2.tgz#953694d098ce7c07bc5ed6d0e42bc6c0c6d5a367" - integrity sha512-h4hmjAvHTmd+25JSwrtTIuwbKdwg5NzZVRMLn9saij4SZaepCrTCxPr35H/3bjwfMJtN+t3CX8672UIkglz28A== - dependencies: - "@sinonjs/commons" "^1.7.0" - -loose-envify@^1.0.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" - integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== - dependencies: - js-tokens "^3.0.0 || ^4.0.0" - -make-dir@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.0.2.tgz#04a1acbf22221e1d6ef43559f43e05a90dbb4392" - integrity sha512-rYKABKutXa6vXTXhoV18cBE7PaewPXHe/Bdq4v+ZLMhxbWApkFFplT0LcbMW+6BbjnQXzZ/sAvSE/JdguApG5w== - dependencies: - semver "^6.0.0" - -makeerror@1.0.x: - version "1.0.11" - resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" - integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw= - dependencies: - tmpl "1.0.x" - -map-cache@^0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" - integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= - -map-visit@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" - integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= - dependencies: - object-visit "^1.0.0" - -merge-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" - integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== - -micromatch@^3.1.10, micromatch@^3.1.4: - version "3.1.10" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" - integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== - dependencies: - arr-diff "^4.0.0" - array-unique "^0.3.2" - braces "^2.3.1" - define-property "^2.0.2" - extend-shallow "^3.0.2" - extglob "^2.0.4" - fragment-cache "^0.2.1" - kind-of "^6.0.2" - nanomatch "^1.2.9" - object.pick "^1.3.0" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.2" - -micromatch@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259" - integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q== - dependencies: - braces "^3.0.1" - picomatch "^2.0.5" - -mime-db@1.40.0: - version "1.40.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.40.0.tgz#a65057e998db090f732a68f6c276d387d4126c32" - integrity sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA== - -mime-types@^2.1.12, mime-types@~2.1.19: - version "2.1.24" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.24.tgz#b6f8d0b3e951efb77dedeca194cff6d16f676f81" - integrity sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ== - dependencies: - mime-db "1.40.0" - -mimic-fn@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" - integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== - -minimatch@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" - integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== - dependencies: - brace-expansion "^1.1.7" - -minimist@0.0.8: - version "0.0.8" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" - integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= - -minimist@^1.1.1, minimist@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" - integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= - -minipass@^2.6.0, minipass@^2.8.6, minipass@^2.9.0: - version "2.9.0" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz#e713762e7d3e32fed803115cf93e04bca9fcc9a6" - integrity sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg== - dependencies: - safe-buffer "^5.1.2" - yallist "^3.0.0" - -minizlib@^1.2.1: - version "1.3.3" - resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d" - integrity sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q== - dependencies: - minipass "^2.9.0" - -mixin-deep@^1.2.0: - version "1.3.2" - resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" - integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== - dependencies: - for-in "^1.0.2" - is-extendable "^1.0.1" - -mkdirp@^0.5.0, mkdirp@^0.5.1: - version "0.5.1" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" - integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= - dependencies: - minimist "0.0.8" - -ms@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" - integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= - -ms@^2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" - integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== - -nan@^2.12.1: - version "2.14.0" - resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" - integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg== - -nanomatch@^1.2.9: - version "1.2.13" - resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" - integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== - dependencies: - arr-diff "^4.0.0" - array-unique "^0.3.2" - define-property "^2.0.2" - extend-shallow "^3.0.2" - fragment-cache "^0.2.1" - is-windows "^1.0.2" - kind-of "^6.0.2" - object.pick "^1.3.0" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" - -natural-compare@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" - integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= - -needle@^2.2.1: - version "2.4.0" - resolved "https://registry.yarnpkg.com/needle/-/needle-2.4.0.tgz#6833e74975c444642590e15a750288c5f939b57c" - integrity sha512-4Hnwzr3mi5L97hMYeNl8wRW/Onhy4nUKR/lVemJ8gJedxxUyBLm9kkrDColJvoSfwi0jCNhD+xCdOtiGDQiRZg== - dependencies: - debug "^3.2.6" - iconv-lite "^0.4.4" - sax "^1.2.4" - -nice-try@^1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" - integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== - -node-int64@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" - integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= - -node-modules-regexp@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" - integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= - -node-notifier@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-6.0.0.tgz#cea319e06baa16deec8ce5cd7f133c4a46b68e12" - integrity sha512-SVfQ/wMw+DesunOm5cKqr6yDcvUTDl/yc97ybGHMrteNEY6oekXpNpS3lZwgLlwz0FLgHoiW28ZpmBHUDg37cw== - dependencies: - growly "^1.3.0" - is-wsl "^2.1.1" - semver "^6.3.0" - shellwords "^0.1.1" - which "^1.3.1" - -node-pre-gyp@^0.12.0: - version "0.12.0" - resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.12.0.tgz#39ba4bb1439da030295f899e3b520b7785766149" - integrity sha512-4KghwV8vH5k+g2ylT+sLTjy5wmUOb9vPhnM8NHvRf9dHmnW/CndrFXy2aRPaPST6dugXSdHXfeaHQm77PIz/1A== - dependencies: - detect-libc "^1.0.2" - mkdirp "^0.5.1" - needle "^2.2.1" - nopt "^4.0.1" - npm-packlist "^1.1.6" - npmlog "^4.0.2" - rc "^1.2.7" - rimraf "^2.6.1" - semver "^5.3.0" - tar "^4" - -node-releases@^1.1.29: - version "1.1.35" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.35.tgz#32a74a3cd497aa77f23d509f483475fd160e4c48" - integrity sha512-JGcM/wndCN/2elJlU0IGdVEJQQnJwsLbgPCFd2pY7V0mxf17bZ0Gb/lgOtL29ZQhvEX5shnVhxQyZz3ex94N8w== - dependencies: - semver "^6.3.0" - -nopt@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" - integrity sha1-0NRoWv1UFRk8jHUFYC0NF81kR00= - dependencies: - abbrev "1" - osenv "^0.1.4" - -normalize-path@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" - integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= - dependencies: - remove-trailing-separator "^1.0.1" - -normalize-path@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" - integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== - -npm-bundled@^1.0.1: - version "1.0.6" - resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd" - integrity sha512-8/JCaftHwbd//k6y2rEWp6k1wxVfpFzB6t1p825+cUb7Ym2XQfhwIC5KwhrvzZRJu+LtDE585zVaS32+CGtf0g== - -npm-packlist@^1.1.6: - version "1.4.6" - resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.6.tgz#53ba3ed11f8523079f1457376dd379ee4ea42ff4" - integrity sha512-u65uQdb+qwtGvEJh/DgQgW1Xg7sqeNbmxYyrvlNznaVTjV3E5P6F/EFjM+BVHXl7JJlsdG8A64M0XI8FI/IOlg== - dependencies: - ignore-walk "^3.0.1" - npm-bundled "^1.0.1" - -npm-run-path@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" - integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= - dependencies: - path-key "^2.0.0" - -npm-run-path@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" - integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== - dependencies: - path-key "^3.0.0" - -npmlog@^4.0.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" - integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== - dependencies: - are-we-there-yet "~1.1.2" - console-control-strings "~1.1.0" - gauge "~2.7.3" - set-blocking "~2.0.0" - -number-is-nan@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" - integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= - -nwsapi@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" - integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== - -oauth-sign@~0.9.0: - version "0.9.0" - resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" - integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== - -object-assign@^4.1.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" - integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= - -object-copy@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" - integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= - dependencies: - copy-descriptor "^0.1.0" - define-property "^0.2.5" - kind-of "^3.0.3" - -object-hash@^2.0.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-2.0.3.tgz#d12db044e03cd2ca3d77c0570d87225b02e1e6ea" - integrity sha512-JPKn0GMu+Fa3zt3Bmr66JhokJU5BaNBIh4ZeTlaCBzrBsOeXzwcKKAK1tbLiPKgvwmPXsDvvLHoWh5Bm7ofIYg== - -object-inspect@^1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.6.0.tgz#c70b6cbf72f274aab4c34c0c82f5167bf82cf15b" - integrity sha512-GJzfBZ6DgDAmnuaM3104jR4s1Myxr3Y3zfIyN4z3UdqN69oSRacNK8UhnobDdC+7J2AHCjGwxQubNJfE70SXXQ== - -object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" - integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== - -object-visit@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" - integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= - dependencies: - isobject "^3.0.0" - -object.assign@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" - integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== - dependencies: - define-properties "^1.1.2" - function-bind "^1.1.1" - has-symbols "^1.0.0" - object-keys "^1.0.11" - -object.getownpropertydescriptors@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" - integrity sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY= - dependencies: - define-properties "^1.1.2" - es-abstract "^1.5.1" - -object.pick@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" - integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= - dependencies: - isobject "^3.0.1" - -once@^1.3.0, once@^1.3.1, once@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= - dependencies: - wrappy "1" - -onetime@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.0.tgz#fff0f3c91617fe62bb50189636e99ac8a6df7be5" - integrity sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q== - dependencies: - mimic-fn "^2.1.0" - -optionator@^0.8.1: - version "0.8.2" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" - integrity sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q= - dependencies: - deep-is "~0.1.3" - fast-levenshtein "~2.0.4" - levn "~0.3.0" - prelude-ls "~1.1.2" - type-check "~0.3.2" - wordwrap "~1.0.0" - -os-homedir@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" - integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= - -os-tmpdir@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" - integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= - -osenv@^0.1.4: - version "0.1.5" - resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" - integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== - dependencies: - os-homedir "^1.0.0" - os-tmpdir "^1.0.0" - -output-file-sync@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-2.0.1.tgz#f53118282f5f553c2799541792b723a4c71430c0" - integrity sha512-mDho4qm7WgIXIGf4eYU1RHN2UU5tPfVYVSRwDJw0uTmj35DQUt/eNp19N7v6T3SrR0ESTEf2up2CGO73qI35zQ== - dependencies: - graceful-fs "^4.1.11" - is-plain-obj "^1.1.0" - mkdirp "^0.5.1" - -p-each-series@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-2.1.0.tgz#961c8dd3f195ea96c747e636b262b800a6b1af48" - integrity sha512-ZuRs1miPT4HrjFa+9fRfOFXxGJfORgelKV9f9nNOWw2gl6gVsRaVDOQP0+MI0G0wGKns1Yacsu0GjOFbTK0JFQ== - -p-finally@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" - integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= - -p-finally@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-2.0.1.tgz#bd6fcaa9c559a096b680806f4d657b3f0f240561" - integrity sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw== - -p-limit@^2.0.0: - version "2.2.1" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.1.tgz#aa07a788cc3151c939b5131f63570f0dd2009537" - integrity sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg== - dependencies: - p-try "^2.0.0" - -p-limit@^2.2.0: - version "2.2.2" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.2.tgz#61279b67721f5287aa1c13a9a7fbbc48c9291b1e" - integrity sha512-WGR+xHecKTr7EbUEhyLSh5Dube9JtdiG78ufaeLxTgpudf/20KqyMioIUZJAezlTIi6evxuoUs9YXc11cU+yzQ== - dependencies: - p-try "^2.0.0" - -p-locate@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" - integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== - dependencies: - p-limit "^2.0.0" - -p-locate@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" - integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== - dependencies: - p-limit "^2.2.0" - -p-try@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" - integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== - -paralleljs@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/paralleljs/-/paralleljs-0.2.1.tgz#ebca745d3e09c01e2bebcc14858891ff4510e926" - integrity sha1-68p0XT4JwB4r68wUhYiR/0UQ6SY= - -parse5@5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.0.tgz#c59341c9723f414c452975564c7c00a68d58acd2" - integrity sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ== - -pascalcase@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" - integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= - -path-dirname@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" - integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA= - -path-exists@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" - integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= - -path-exists@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" - integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== - -path-is-absolute@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= - -path-key@^2.0.0, path-key@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" - integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= - -path-key@^3.0.0, path-key@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" - integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== - -path-parse@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" - integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== - -performance-now@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" - integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= - -picomatch@^2.0.4, picomatch@^2.0.5: - version "2.2.1" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.1.tgz#21bac888b6ed8601f831ce7816e335bc779f0a4a" - integrity sha512-ISBaA8xQNmwELC7eOjqFKMESB2VIqt4PPDD0nsS95b/9dZXvVKOlz9keMSnoGGKcOHXfTvDD6WMaRoSc9UuhRA== - -pirates@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87" - integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA== - dependencies: - node-modules-regexp "^1.0.0" - -pkg-dir@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" - integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== - dependencies: - find-up "^4.0.0" - -pn@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" - integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA== - -posix-character-classes@^0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" - integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= - -prelude-ls@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" - integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= - -prettier@^1.16.4: - version "1.18.2" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.18.2.tgz#6823e7c5900017b4bd3acf46fe9ac4b4d7bda9ea" - integrity sha512-OeHeMc0JhFE9idD4ZdtNibzY0+TPHSpSSb9h8FqtP+YnoZZ1sl8Vc9b1sasjfymH3SonAF4QcA2+mzHPhMvIiw== - -prettier@^1.19.1: - version "1.19.1" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb" - integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew== - -pretty-format@^25.1.0: - version "25.1.0" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-25.1.0.tgz#ed869bdaec1356fc5ae45de045e2c8ec7b07b0c8" - integrity sha512-46zLRSGLd02Rp+Lhad9zzuNZ+swunitn8zIpfD2B4OPCRLXbM87RJT2aBLBWYOznNUML/2l/ReMyWNC80PJBUQ== - dependencies: - "@jest/types" "^25.1.0" - ansi-regex "^5.0.0" - ansi-styles "^4.0.0" - react-is "^16.12.0" - -private@^0.1.6: - version "0.1.8" - resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" - integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== - -process-nextick-args@~2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" - integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== - -prompts@^2.0.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.2.1.tgz#f901dd2a2dfee080359c0e20059b24188d75ad35" - integrity sha512-VObPvJiWPhpZI6C5m60XOzTfnYg/xc/an+r9VYymj9WJW3B/DIH+REzjpAACPf8brwPeP+7vz3bIim3S+AaMjw== - dependencies: - kleur "^3.0.3" - sisteransi "^1.0.3" - -psl@^1.1.28: - version "1.4.0" - resolved "https://registry.yarnpkg.com/psl/-/psl-1.4.0.tgz#5dd26156cdb69fa1fdb8ab1991667d3f80ced7c2" - integrity sha512-HZzqCGPecFLyoRj5HLfuDSKYTJkAfB5thKBIkRHtGjWwY7p1dAyveIbXIq4tO0KYfDF2tHqPUgY9SDnGm00uFw== - -pump@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" - integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== - dependencies: - end-of-stream "^1.1.0" - once "^1.3.1" - -punycode@^2.1.0, punycode@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" - integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== - -qs@~6.5.2: - version "6.5.2" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" - integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== - -rc@^1.2.7: - version "1.2.8" - resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" - integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== - dependencies: - deep-extend "^0.6.0" - ini "~1.3.0" - minimist "^1.2.0" - strip-json-comments "~2.0.1" - -react-is@^16.12.0: - version "16.12.0" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.12.0.tgz#2cc0fe0fba742d97fd527c42a13bec4eeb06241c" - integrity sha512-rPCkf/mWBtKc97aLL9/txD8DZdemK0vkA3JMLShjlJB3Pj3s+lpf1KaBzMfQrAmhMQB0n1cU/SUGgKKBCe837Q== - -readable-stream@^2.0.2, readable-stream@^2.0.6: - version "2.3.6" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" - integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~2.0.0" - safe-buffer "~5.1.1" - string_decoder "~1.1.1" - util-deprecate "~1.0.1" - -readdirp@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" - integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ== - dependencies: - graceful-fs "^4.1.11" - micromatch "^3.1.10" - readable-stream "^2.0.2" - -realpath-native@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.1.0.tgz#2003294fea23fb0672f2476ebe22fcf498a2d65c" - integrity sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA== - dependencies: - util.promisify "^1.0.0" - -rechoir@^0.6.2: - version "0.6.2" - resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" - integrity sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q= - dependencies: - resolve "^1.1.6" - -regenerate-unicode-properties@^8.1.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz#ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e" - integrity sha512-LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA== - dependencies: - regenerate "^1.4.0" - -regenerate@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" - integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg== - -regenerator-runtime@^0.13.3: - version "0.13.3" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz#7cf6a77d8f5c6f60eb73c5fc1955b2ceb01e6bf5" - integrity sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw== - -regenerator-transform@^0.14.0: - version "0.14.1" - resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.1.tgz#3b2fce4e1ab7732c08f665dfdb314749c7ddd2fb" - integrity sha512-flVuee02C3FKRISbxhXl9mGzdbWUVHubl1SMaknjxkFB1/iqpJhArQUvRxOOPEc/9tAiX0BaQ28FJH10E4isSQ== - dependencies: - private "^0.1.6" - -regex-not@^1.0.0, regex-not@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" - integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== - dependencies: - extend-shallow "^3.0.2" - safe-regex "^1.1.0" - -regexpu-core@^4.6.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.6.0.tgz#2037c18b327cfce8a6fea2a4ec441f2432afb8b6" - integrity sha512-YlVaefl8P5BnFYOITTNzDvan1ulLOiXJzCNZxduTIosN17b87h3bvG9yHMoHaRuo88H4mQ06Aodj5VtYGGGiTg== - dependencies: - regenerate "^1.4.0" - regenerate-unicode-properties "^8.1.0" - regjsgen "^0.5.0" - regjsparser "^0.6.0" - unicode-match-property-ecmascript "^1.0.4" - unicode-match-property-value-ecmascript "^1.1.0" - -regjsgen@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.0.tgz#a7634dc08f89209c2049adda3525711fb97265dd" - integrity sha512-RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA== - -regjsparser@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.0.tgz#f1e6ae8b7da2bae96c99399b868cd6c933a2ba9c" - integrity sha512-RQ7YyokLiQBomUJuUG8iGVvkgOLxwyZM8k6d3q5SAXpg4r5TZJZigKFvC6PpD+qQ98bCDC5YelPeA3EucDoNeQ== - dependencies: - jsesc "~0.5.0" - -remove-trailing-separator@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" - integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= - -repeat-element@^1.1.2: - version "1.1.3" - resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" - integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== - -repeat-string@^1.6.1: - version "1.6.1" - resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" - integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= - -request-promise-core@1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.3.tgz#e9a3c081b51380dfea677336061fea879a829ee9" - integrity sha512-QIs2+ArIGQVp5ZYbWD5ZLCY29D5CfWizP8eWnm8FoGD1TX61veauETVQbrV60662V0oFBkrDOuaBI8XgtuyYAQ== - dependencies: - lodash "^4.17.15" - -request-promise-native@^1.0.7: - version "1.0.8" - resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.8.tgz#a455b960b826e44e2bf8999af64dff2bfe58cb36" - integrity sha512-dapwLGqkHtwL5AEbfenuzjTYg35Jd6KPytsC2/TLkVMz8rm+tNt72MGUWT1RP/aYawMpN6HqbNGBQaRcBtjQMQ== - dependencies: - request-promise-core "1.1.3" - stealthy-require "^1.1.1" - tough-cookie "^2.3.3" - -request@^2.88.0: - version "2.88.2" - resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" - integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== - dependencies: - aws-sign2 "~0.7.0" - aws4 "^1.8.0" - caseless "~0.12.0" - combined-stream "~1.0.6" - extend "~3.0.2" - forever-agent "~0.6.1" - form-data "~2.3.2" - har-validator "~5.1.3" - http-signature "~1.2.0" - is-typedarray "~1.0.0" - isstream "~0.1.2" - json-stringify-safe "~5.0.1" - mime-types "~2.1.19" - oauth-sign "~0.9.0" - performance-now "^2.1.0" - qs "~6.5.2" - safe-buffer "^5.1.2" - tough-cookie "~2.5.0" - tunnel-agent "^0.6.0" - uuid "^3.3.2" - -require-directory@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" - integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= - -require-main-filename@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" - integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== - -resolve-cwd@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" - integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== - dependencies: - resolve-from "^5.0.0" - -resolve-from@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" - integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== - -resolve-url@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" - integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= - -resolve@1.1.7: - version "1.1.7" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" - integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs= - -resolve@^1.1.6, resolve@^1.3.2: - version "1.12.0" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6" - integrity sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w== - dependencies: - path-parse "^1.0.6" - -ret@~0.1.10: - version "0.1.15" - resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" - integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== - -rimraf@^2.6.1, rimraf@^2.6.3: - version "2.7.1" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" - integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== - dependencies: - glob "^7.1.3" - -rimraf@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" - integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== - dependencies: - glob "^7.1.3" - -rsvp@^4.8.4: - version "4.8.5" - resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734" - integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA== - -safe-buffer@^5.0.1, safe-buffer@^5.1.2: - version "5.2.0" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519" - integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg== - -safe-buffer@~5.1.0, safe-buffer@~5.1.1: - version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - -safe-regex@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" - integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= - dependencies: - ret "~0.1.10" - -"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: - version "2.1.2" - resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" - integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== - -sane@^4.0.3: - version "4.1.0" - resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded" - integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA== - dependencies: - "@cnakazawa/watch" "^1.0.3" - anymatch "^2.0.0" - capture-exit "^2.0.0" - exec-sh "^0.3.2" - execa "^1.0.0" - fb-watchman "^2.0.0" - micromatch "^3.1.4" - minimist "^1.1.1" - walker "~1.0.5" - -sax@^1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" - integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== - -saxes@^3.1.9: - version "3.1.11" - resolved "https://registry.yarnpkg.com/saxes/-/saxes-3.1.11.tgz#d59d1fd332ec92ad98a2e0b2ee644702384b1c5b" - integrity sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g== - dependencies: - xmlchars "^2.1.1" - -semver@^5.3.0, semver@^5.4.1, semver@^5.5.0: - version "5.7.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== - -semver@^6.0.0, semver@^6.3.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== - -semver@^7.1.1: - version "7.1.3" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.1.3.tgz#e4345ce73071c53f336445cfc19efb1c311df2a6" - integrity sha512-ekM0zfiA9SCBlsKa2X1hxyxiI4L3B6EbVJkkdgQXnSEEaHlGdvyodMruTiulSRWMMB4NeIuYNMC9rTKTz97GxA== - -set-blocking@^2.0.0, set-blocking@~2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" - integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= - -set-value@^2.0.0, set-value@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" - integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== - dependencies: - extend-shallow "^2.0.1" - is-extendable "^0.1.1" - is-plain-object "^2.0.3" - split-string "^3.0.1" - -shebang-command@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" - integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= - dependencies: - shebang-regex "^1.0.0" - -shebang-command@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" - integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== - dependencies: - shebang-regex "^3.0.0" - -shebang-regex@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" - integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= - -shebang-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" - integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== - -shelljs@^0.8.3: - version "0.8.3" - resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.3.tgz#a7f3319520ebf09ee81275b2368adb286659b097" - integrity sha512-fc0BKlAWiLpwZljmOvAOTE/gXawtCoNrP5oaY7KIaQbbyHeQVg01pSEuEGvGh3HEdBU4baCD7wQBwADmM/7f7A== - dependencies: - glob "^7.0.0" - interpret "^1.0.0" - rechoir "^0.6.2" - -shellwords@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" - integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww== - -signal-exit@^3.0.0, signal-exit@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" - integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= - -sisteransi@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.3.tgz#98168d62b79e3a5e758e27ae63c4a053d748f4eb" - integrity sha512-SbEG75TzH8G7eVXFSN5f9EExILKfly7SUvVY5DhhYLvfhKqhDFY0OzevWa/zwak0RLRfWS5AvfMWpd9gJvr5Yg== - -slash@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" - integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A== - -slash@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" - integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== - -snapdragon-node@^2.0.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" - integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== - dependencies: - define-property "^1.0.0" - isobject "^3.0.0" - snapdragon-util "^3.0.1" - -snapdragon-util@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" - integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== - dependencies: - kind-of "^3.2.0" - -snapdragon@^0.8.1: - version "0.8.2" - resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" - integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== - dependencies: - base "^0.11.1" - debug "^2.2.0" - define-property "^0.2.5" - extend-shallow "^2.0.1" - map-cache "^0.2.2" - source-map "^0.5.6" - source-map-resolve "^0.5.0" - use "^3.1.0" - -source-map-resolve@^0.5.0: - version "0.5.2" - resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" - integrity sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA== - dependencies: - atob "^2.1.1" - decode-uri-component "^0.2.0" - resolve-url "^0.2.1" - source-map-url "^0.4.0" - urix "^0.1.0" - -source-map-support@^0.5.6: - version "0.5.13" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932" - integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map-url@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" - integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= - -source-map@^0.5.0, source-map@^0.5.6: - version "0.5.7" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" - integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= - -source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== - -source-map@^0.7.3: - version "0.7.3" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" - integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== - -split-string@^3.0.1, split-string@^3.0.2: - version "3.1.0" - resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" - integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== - dependencies: - extend-shallow "^3.0.0" - -sprintf-js@~1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" - integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= - -sshpk@^1.7.0: - version "1.16.1" - resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" - integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg== - dependencies: - asn1 "~0.2.3" - assert-plus "^1.0.0" - bcrypt-pbkdf "^1.0.0" - dashdash "^1.12.0" - ecc-jsbn "~0.1.1" - getpass "^0.1.1" - jsbn "~0.1.0" - safer-buffer "^2.0.2" - tweetnacl "~0.14.0" - -stack-utils@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.2.tgz#33eba3897788558bebfc2db059dc158ec36cebb8" - integrity sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA== - -static-extend@^0.1.1: - version "0.1.2" - resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" - integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= - dependencies: - define-property "^0.2.5" - object-copy "^0.1.0" - -stealthy-require@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" - integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= - -string-length@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/string-length/-/string-length-3.1.0.tgz#107ef8c23456e187a8abd4a61162ff4ac6e25837" - integrity sha512-Ttp5YvkGm5v9Ijagtaz1BnN+k9ObpvS0eIBblPMp2YWL8FBmi9qblQ9fexc2k/CXFgrTIteU3jAw3payCnwSTA== - dependencies: - astral-regex "^1.0.0" - strip-ansi "^5.2.0" - -string-width@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" - integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= - dependencies: - code-point-at "^1.0.0" - is-fullwidth-code-point "^1.0.0" - strip-ansi "^3.0.0" - -"string-width@^1.0.2 || 2": - version "2.1.1" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" - integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== - dependencies: - is-fullwidth-code-point "^2.0.0" - strip-ansi "^4.0.0" - -string-width@^3.0.0, string-width@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" - integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== - dependencies: - emoji-regex "^7.0.1" - is-fullwidth-code-point "^2.0.0" - strip-ansi "^5.1.0" - -string-width@^4.1.0, string-width@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" - integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.0" - -string.prototype.trimleft@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.0.tgz#6cc47f0d7eb8d62b0f3701611715a3954591d634" - integrity sha512-FJ6b7EgdKxxbDxc79cOlok6Afd++TTs5szo+zJTUyow3ycrRfJVE2pq3vcN53XexvKZu/DJMDfeI/qMiZTrjTw== - dependencies: - define-properties "^1.1.3" - function-bind "^1.1.1" - -string.prototype.trimright@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.0.tgz#669d164be9df9b6f7559fa8e89945b168a5a6c58" - integrity sha512-fXZTSV55dNBwv16uw+hh5jkghxSnc5oHq+5K/gXgizHwAvMetdAJlHqqoFC1FSDVPYWLkAKl2cxpUT41sV7nSg== - dependencies: - define-properties "^1.1.3" - function-bind "^1.1.1" - -string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== - dependencies: - safe-buffer "~5.1.0" - -strip-ansi@^3.0.0, strip-ansi@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" - integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= - dependencies: - ansi-regex "^2.0.0" - -strip-ansi@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" - integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= - dependencies: - ansi-regex "^3.0.0" - -strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" - integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== - dependencies: - ansi-regex "^4.1.0" - -strip-ansi@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" - integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== - dependencies: - ansi-regex "^5.0.0" - -strip-bom@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" - integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== - -strip-eof@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" - integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= - -strip-final-newline@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" - integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== - -strip-json-comments@~2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" - integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= - -supports-color@^5.3.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== - dependencies: - has-flag "^3.0.0" - -supports-color@^7.0.0, supports-color@^7.1.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" - integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g== - dependencies: - has-flag "^4.0.0" - -supports-hyperlinks@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz#f663df252af5f37c5d49bbd7eeefa9e0b9e59e47" - integrity sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA== - dependencies: - has-flag "^4.0.0" - supports-color "^7.0.0" - -symbol-tree@^3.2.2: - version "3.2.4" - resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" - integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== - -tar@^4: - version "4.4.13" - resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.13.tgz#43b364bc52888d555298637b10d60790254ab525" - integrity sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA== - dependencies: - chownr "^1.1.1" - fs-minipass "^1.2.5" - minipass "^2.8.6" - minizlib "^1.2.1" - mkdirp "^0.5.0" - safe-buffer "^5.1.2" - yallist "^3.0.3" - -terminal-link@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" - integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== - dependencies: - ansi-escapes "^4.2.1" - supports-hyperlinks "^2.0.0" - -test-exclude@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" - integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== - dependencies: - "@istanbuljs/schema" "^0.1.2" - glob "^7.1.4" - minimatch "^3.0.4" - -throat@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b" - integrity sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA== - -tmp-promise@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/tmp-promise/-/tmp-promise-2.0.2.tgz#ee605edb10f100954be5dd8b9dbe1bfd56194202" - integrity sha512-zl71nFWjPKW2KXs+73gEk8RmqvtAeXPxhWDkTUoa3MSMkjq3I+9OeknjF178MQoMYsdqL730hfzvNfEkePxq9Q== - dependencies: - tmp "0.1.0" - -tmp@0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.1.0.tgz#ee434a4e22543082e294ba6201dcc6eafefa2877" - integrity sha512-J7Z2K08jbGcdA1kkQpJSqLF6T0tdQqpR2pnSUXsIchbPdTI9v3e85cLW0d6WDhwuAleOV71j2xWs8qMPfK7nKw== - dependencies: - rimraf "^2.6.3" - -tmpl@1.0.x: - version "1.0.4" - resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" - integrity sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE= - -to-fast-properties@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" - integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= - -to-object-path@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" - integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= - dependencies: - kind-of "^3.0.2" - -to-regex-range@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" - integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= - dependencies: - is-number "^3.0.0" - repeat-string "^1.6.1" - -to-regex-range@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" - integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== - dependencies: - is-number "^7.0.0" - -to-regex@^3.0.1, to-regex@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" - integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== - dependencies: - define-property "^2.0.2" - extend-shallow "^3.0.2" - regex-not "^1.0.2" - safe-regex "^1.1.0" - -tough-cookie@^2.3.3, tough-cookie@~2.5.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" - integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== - dependencies: - psl "^1.1.28" - punycode "^2.1.1" - -tough-cookie@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-3.0.1.tgz#9df4f57e739c26930a018184887f4adb7dca73b2" - integrity sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg== - dependencies: - ip-regex "^2.1.0" - psl "^1.1.28" - punycode "^2.1.1" - -tr46@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" - integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk= - dependencies: - punycode "^2.1.0" - -tunnel-agent@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" - integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= - dependencies: - safe-buffer "^5.0.1" - -tweetnacl@^0.14.3, tweetnacl@~0.14.0: - version "0.14.5" - resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" - integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= - -type-check@~0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" - integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= - dependencies: - prelude-ls "~1.1.2" - -type-detect@4.0.8: - version "4.0.8" - resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" - integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== - -type-fest@^0.8.1: - version "0.8.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" - integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== - -typedarray-to-buffer@^3.1.5: - version "3.1.5" - resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" - integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== - dependencies: - is-typedarray "^1.0.0" - -typescript-compiler@^1.4.1-2: - version "1.4.1-2" - resolved "https://registry.yarnpkg.com/typescript-compiler/-/typescript-compiler-1.4.1-2.tgz#ba4f7db22d91534a1929d90009dce161eb72fd3f" - integrity sha1-uk99si2RU0oZKdkACdzhYety/T8= - -typescript@^3.4, typescript@^3.7.0-beta: - version "3.8.2" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.8.2.tgz#91d6868aaead7da74f493c553aeff76c0c0b1d5a" - integrity sha512-EgOVgL/4xfVrCMbhYKUQTdF37SQn4Iw73H5BgCrF1Abdun7Kwy/QZsE/ssAy0y4LxBbvua3PIbFsbRczWWnDdQ== - -unicode-canonical-property-names-ecmascript@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" - integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ== - -unicode-match-property-ecmascript@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" - integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== - dependencies: - unicode-canonical-property-names-ecmascript "^1.0.4" - unicode-property-aliases-ecmascript "^1.0.4" - -unicode-match-property-value-ecmascript@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz#5b4b426e08d13a80365e0d657ac7a6c1ec46a277" - integrity sha512-hDTHvaBk3RmFzvSl0UVrUmC3PuW9wKVnpoUDYH0JDkSIovzw+J5viQmeYHxVSBptubnr7PbH2e0fnpDRQnQl5g== - -unicode-property-aliases-ecmascript@^1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz#a9cc6cc7ce63a0a3023fc99e341b94431d405a57" - integrity sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw== - -union-value@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" - integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== - dependencies: - arr-union "^3.1.0" - get-value "^2.0.6" - is-extendable "^0.1.1" - set-value "^2.0.1" - -unset-value@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" - integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= - dependencies: - has-value "^0.3.1" - isobject "^3.0.0" - -upath@^1.1.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" - integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== - -uri-js@^4.2.2: - version "4.2.2" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" - integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== - dependencies: - punycode "^2.1.0" - -urix@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" - integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= - -use@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" - integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== - -util-deprecate@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= - -util.promisify@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" - integrity sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA== - dependencies: - define-properties "^1.1.2" - object.getownpropertydescriptors "^2.0.3" - -uuid@^3.3.2: - version "3.3.3" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.3.tgz#4568f0216e78760ee1dbf3a4d2cf53e224112866" - integrity sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ== - -v8-to-istanbul@^4.0.1: - version "4.1.2" - resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-4.1.2.tgz#387d173be5383dbec209d21af033dcb892e3ac82" - integrity sha512-G9R+Hpw0ITAmPSr47lSlc5A1uekSYzXxTMlFxso2xoffwo4jQnzbv1p9yXIinO8UMZKfAFewaCHwWvnH4Jb4Ug== - dependencies: - "@types/istanbul-lib-coverage" "^2.0.1" - convert-source-map "^1.6.0" - source-map "^0.7.3" - -verror@1.10.0: - version "1.10.0" - resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" - integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= - dependencies: - assert-plus "^1.0.0" - core-util-is "1.0.2" - extsprintf "^1.2.0" - -w3c-hr-time@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" - integrity sha1-gqwr/2PZUOqeMYmlimViX+3xkEU= - dependencies: - browser-process-hrtime "^0.1.2" - -w3c-xmlserializer@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-1.1.2.tgz#30485ca7d70a6fd052420a3d12fd90e6339ce794" - integrity sha512-p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg== - dependencies: - domexception "^1.0.1" - webidl-conversions "^4.0.2" - xml-name-validator "^3.0.0" - -walker@^1.0.7, walker@~1.0.5: - version "1.0.7" - resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" - integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs= - dependencies: - makeerror "1.0.x" - -webidl-conversions@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" - integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== - -whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" - integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== - dependencies: - iconv-lite "0.4.24" - -whatwg-mimetype@^2.2.0, whatwg-mimetype@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" - integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== - -whatwg-url@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.0.0.tgz#fde926fa54a599f3adf82dff25a9f7be02dc6edd" - integrity sha512-37GeVSIJ3kn1JgKyjiYNmSLP1yzbpb29jdmwBSgkD9h40/hyrR/OifpVUndji3tmwGgD8qpw7iQu3RSbCrBpsQ== - dependencies: - lodash.sortby "^4.7.0" - tr46 "^1.0.1" - webidl-conversions "^4.0.2" - -which-module@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" - integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= - -which@^1.2.9, which@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" - integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== - dependencies: - isexe "^2.0.0" - -which@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" - integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== - dependencies: - isexe "^2.0.0" - -wide-align@^1.1.0: - version "1.1.3" - resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" - integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== - dependencies: - string-width "^1.0.2 || 2" - -wordwrap@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" - integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= - -wrap-ansi@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" - integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== - dependencies: - ansi-styles "^3.2.0" - string-width "^3.0.0" - strip-ansi "^5.0.0" - -wrap-ansi@^6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" - integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - -wrappy@1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= - -write-file-atomic@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.1.tgz#558328352e673b5bb192cf86500d60b230667d4b" - integrity sha512-JPStrIyyVJ6oCSz/691fAjFtefZ6q+fP6tm+OS4Qw6o+TGQxNp1ziY2PgS+X/m0V8OWhZiO/m4xSj+Pr4RrZvw== - dependencies: - imurmurhash "^0.1.4" - is-typedarray "^1.0.0" - signal-exit "^3.0.2" - typedarray-to-buffer "^3.1.5" - -ws@^7.0.0: - version "7.2.1" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.2.1.tgz#03ed52423cd744084b2cf42ed197c8b65a936b8e" - integrity sha512-sucePNSafamSKoOqoNfBd8V0StlkzJKL2ZAhGQinCfNQ+oacw+Pk7lcdAElecBF2VkLNZRiIb5Oi1Q5lVUVt2A== - -xml-name-validator@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" - integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== - -xmlchars@^2.1.1: - version "2.2.0" - resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" - integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== - -y18n@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" - integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== - -yallist@^3.0.0, yallist@^3.0.3: - version "3.1.1" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" - integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== - -yargs-parser@^15.0.0: - version "15.0.0" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-15.0.0.tgz#cdd7a97490ec836195f59f3f4dbe5ea9e8f75f08" - integrity sha512-xLTUnCMc4JhxrPEPUYD5IBR1mWCK/aT6+RJ/K29JY2y1vD+FhtgKK0AXRWvI262q3QSffAQuTouFIKUuHX89wQ== - dependencies: - camelcase "^5.0.0" - decamelize "^1.2.0" - -yargs-parser@^16.1.0: - version "16.1.0" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-16.1.0.tgz#73747d53ae187e7b8dbe333f95714c76ea00ecf1" - integrity sha512-H/V41UNZQPkUMIT5h5hiwg4QKIY1RPvoBV4XcjUbRM8Bk2oKqqyZ0DIEbTFZB0XjbtSPG8SAa/0DxCQmiRgzKg== - dependencies: - camelcase "^5.0.0" - decamelize "^1.2.0" - -yargs@^14.2.0: - version "14.2.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-14.2.0.tgz#f116a9242c4ed8668790b40759b4906c276e76c3" - integrity sha512-/is78VKbKs70bVZH7w4YaZea6xcJWOAwkhbR0CFuZBmYtfTYF0xjGJF43AYd8g2Uii1yJwmS5GR2vBmrc32sbg== - dependencies: - cliui "^5.0.0" - decamelize "^1.2.0" - find-up "^3.0.0" - get-caller-file "^2.0.1" - require-directory "^2.1.1" - require-main-filename "^2.0.0" - set-blocking "^2.0.0" - string-width "^3.0.0" - which-module "^2.0.0" - y18n "^4.0.0" - yargs-parser "^15.0.0" - -yargs@^15.0.0: - version "15.1.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.1.0.tgz#e111381f5830e863a89550bd4b136bb6a5f37219" - integrity sha512-T39FNN1b6hCW4SOIk1XyTOWxtXdcen0t+XYrysQmChzSipvhBO8Bj0nK1ozAasdk24dNWuMZvr4k24nz+8HHLg== - dependencies: - cliui "^6.0.0" - decamelize "^1.2.0" - find-up "^4.1.0" - get-caller-file "^2.0.1" - require-directory "^2.1.1" - require-main-filename "^2.0.0" - set-blocking "^2.0.0" - string-width "^4.2.0" - which-module "^2.0.0" - y18n "^4.0.0" - yargs-parser "^16.1.0" From 0c1d744c0a5f3ec6b102c8e342521ae510bfa2f1 Mon Sep 17 00:00:00 2001 From: Jack Guy Date: Fri, 27 Jun 2025 16:22:40 -0700 Subject: [PATCH 2/3] Add compile-time type tests for generated loaders --- .prettierignore | 2 +- Makefile | 13 +- __tests__/implementation.test.js | 5 +- examples/swapi/swapi-loaders.ts | 2760 ++++++++++--------- examples/swapi/swapi.dataloader-config.yaml | 12 +- examples/swapi/swapi.ts | 16 +- package.json | 5 +- src/genType.ts | 2 + src/implementation.ts | 11 +- testExampleTypes/swapi.ts | 27 + tsconfig.testExampleTypes.json | 8 + 11 files changed, 1497 insertions(+), 1364 deletions(-) create mode 100644 testExampleTypes/swapi.ts create mode 100644 tsconfig.testExampleTypes.json diff --git a/.prettierignore b/.prettierignore index c6417d9..86a64a5 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1 +1 @@ -flow-typed +examples/swapi/swapi-loaders.ts diff --git a/Makefile b/Makefile index a7ada6e..930b13b 100644 --- a/Makefile +++ b/Makefile @@ -16,11 +16,22 @@ build: node_modules # Generate the .d.ts files node_modules/.bin/tsc --project tsconfig.json --checkJs false --emitDeclarationOnly || true +link-examples: build + yarn link + cd examples/swapi + yarn link dataloader-codegen + +build-examples: link-examples + $(MAKE) -C examples/swapi swapi-loaders.ts + $(MAKE) -C examples/swapi build + node examples/swapi/build/swapi-server.js + .PHONY: test -test: build venv node_modules +test: build venv node_modules build-examples venv/bin/pre-commit install -f --install-hooks venv/bin/pre-commit run --all-files yarn test + yarn test:exampleTypes .PHONY: clean clean: diff --git a/__tests__/implementation.test.js b/__tests__/implementation.test.js index 4651ddd..b17b9f2 100644 --- a/__tests__/implementation.test.js +++ b/__tests__/implementation.test.js @@ -888,7 +888,8 @@ test('batch endpoint with isBatchKeyASet handles a response', async () => { const resources = { foo: ({ foo_ids, include_extra_info }) => { - if (_.isEqual(foo_ids, [1, 2])) { + expect(foo_ids).toBeInstanceOf(Set); + if (_.isEqual(Array.from(foo_ids), [1, 2])) { expect(include_extra_info).toBe(false); return Promise.resolve([ { foo_id: 1, foo_value: 'hello' }, @@ -896,7 +897,7 @@ test('batch endpoint with isBatchKeyASet handles a response', async () => { ]); } - if (_.isEqual(foo_ids, [3])) { + if (_.isEqual(Array.from(foo_ids), [3])) { expect(include_extra_info).toBe(true); return Promise.resolve([ { diff --git a/examples/swapi/swapi-loaders.ts b/examples/swapi/swapi-loaders.ts index cbdb4ba..b78f64e 100644 --- a/examples/swapi/swapi-loaders.ts +++ b/examples/swapi/swapi-loaders.ts @@ -2,29 +2,29 @@ * !!! THIS FILE IS AUTO-GENERATED. CHANGES MAY BE OVERWRITTEN !!! */ -import util from 'util'; -import _ from 'lodash'; -import invariant from 'assert'; -import DataLoader from 'dataloader'; +import util from "util"; +import _ from "lodash"; +import invariant from "assert"; +import DataLoader from "dataloader"; import { - BatchItemNotFoundError, - cacheKeyOptions, - CaughtResourceError, - defaultErrorHandler, - getBatchKeysForPartitionItems, - partitionItems, - resultsDictToList, - sortByKeys, - unPartitionResults, - unPartitionResultsByBatchKeyPartition, -} from 'dataloader-codegen/lib/runtimeHelpers'; + BatchItemNotFoundError, + cacheKeyOptions, + CaughtResourceError, + defaultErrorHandler, + getBatchKeysForPartitionItems, + partitionItems, + resultsDictToList, + sortByKeys, + unPartitionResults, + unPartitionResultsByBatchKeyPartition, +} from "dataloader-codegen/lib/runtimeHelpers"; /** * =============================== * BEGIN: printResourceTypeImports() * =============================== */ -import type { SWAPIClientlibTypes } from './swapi'; +import type { SWAPIClientlibTypes } from "./swapi"; /** * =============================== @@ -32,22 +32,27 @@ import type { SWAPIClientlibTypes } from './swapi'; * =============================== */ -type PromisedReturnType Promise> = F extends (...args: any) => Promise - ? R - : never; +type PromisedReturnType Promise> = F extends ( + ...args: any +) => Promise + ? R + : never; type Values = T[keyof T]; export type DataLoaderCodegenOptions = { - errorHandler?: ( - resourcePath: ReadonlyArray, - // We don't know what type the resource might throw, so we have to type error to "any" :( - error: any, - ) => Promise; - resourceMiddleware?: { - before?: (resourcePath: ReadonlyArray, resourceArgs: T) => Promise; - after?: (resourcePath: ReadonlyArray, response: T) => Promise; - }; + errorHandler?: ( + resourcePath: ReadonlyArray, + // We don't know what type the resource might throw, so we have to type error to "any" :( + error: any, + ) => Promise; + resourceMiddleware?: { + before?: ( + resourcePath: ReadonlyArray, + resourceArgs: T, + ) => Promise; + after?: (resourcePath: ReadonlyArray, response: T) => Promise; + }; }; /** @@ -64,1384 +69,1453 @@ type ResourcesType = SWAPIClientlibTypes; */ export type LoadersType = Readonly<{ - getPlanets: DataLoader< - Omit[0], 'planet_ids'> & { - planet_id: NonNullable[0]['planet_ids']>[0]; - }, - PromisedReturnType[0], - // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". - string - >; - getPeople: DataLoader< - Omit[0], 'people_ids'> & { - person_id: NonNullable[0]['people_ids']>[0]; - }, - PromisedReturnType[0], - // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". - string - >; - getVehicles: DataLoader< - Omit[0], 'vehicle_ids'> & { - vehicle_id: NonNullable[0]['vehicle_ids']>[0]; - }, - PromisedReturnType[0], - // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". - string - >; - getFilms: DataLoader< - Omit[0], 'film_ids'> & { - film_id: Parameters[0]['film_ids']['has']>[0]; - }, - PromisedReturnType[0], - // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". - string - >; - getFilmsV2: DataLoader< - Omit[0], 'film_ids'> & { - film_id: NonNullable[0]['film_ids']>[0]; - }, - PromisedReturnType['properties'][0], - // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". - string - >; - getRoot: DataLoader< - Parameters[0], - PromisedReturnType, - // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". - string - >; + getPlanets: DataLoader< + Omit[0], "planet_ids"> & { + planet_id: NonNullable< + Parameters[0]["planet_ids"] + >[0]; + }, + PromisedReturnType[0], + // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". + string + >; + getPeople: DataLoader< + Omit[0], "people_ids"> & { + person_id: NonNullable< + Parameters[0]["people_ids"] + >[0]; + }, + PromisedReturnType[0], + // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". + string + >; + getVehicles: DataLoader< + Omit[0], "vehicle_ids"> & { + vehicle_id: NonNullable< + Parameters[0]["vehicle_ids"] + >[0]; + }, + PromisedReturnType[0], + // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". + string + >; + getFilms: DataLoader< + Omit[0], "film_ids"> & { + film_id: Parameters< + Parameters[0]["film_ids"]["has"] + >[0]; + }, + PromisedReturnType[0], + // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". + string + >; + getFilmsV2: DataLoader< + Omit[0], "film_ids"> & { + film_id: NonNullable< + Parameters[0]["film_ids"] + >[0]; + }, + PromisedReturnType["properties"][0], + // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". + string + >; + getRoot: DataLoader< + Parameters[0], + PromisedReturnType, + // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". + string + >; }>; -export default function getLoaders(resources: ResourcesType, options?: DataLoaderCodegenOptions): LoadersType { - return Object.freeze({ - getPlanets: new DataLoader< - Omit[0], 'planet_ids'> & { - planet_id: NonNullable[0]['planet_ids']>[0]; - }, - PromisedReturnType[0], - // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". - string - >( +export default function getLoaders( + resources: ResourcesType, + options?: DataLoaderCodegenOptions, +): LoadersType { + return Object.freeze({ + getPlanets: new DataLoader< + Omit[0], "planet_ids"> & { + planet_id: NonNullable< + Parameters[0]["planet_ids"] + >[0]; + }, + PromisedReturnType[0], + // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". + string + >( + /** + * =============================================================== + * Generated DataLoader: getPlanets + * =============================================================== + * + * Resource Config: + * + * ```json + * { + * "docsLink": "https://swapi.info/documentation#planets", + * "isBatchResource": true, + * "batchKey": "planet_ids", + * "newKey": "planet_id" + * } + * ``` + */ + async (keys) => { + invariant( + typeof resources.getPlanets === "function", + [ + "[dataloader-codegen :: getPlanets] resources.getPlanets is not a function.", + 'Did you pass in an instance of getPlanets to "getLoaders"?', + ].join(" "), + ); + + /** + * Chunk up the "keys" array to create a set of "request groups". + * + * We're about to hit a batch resource. In addition to the batch + * key, the resource may take other arguments too. When batching + * up requests, we'll want to look out for where those other + * arguments differ, and send multiple requests so we don't get + * back the wrong info. + * + * In other words, we'll potentially want to send _multiple_ + * requests to the underlying resource batch method in this + * dataloader body. + * + * ~~~ Why? ~~~ + * + * Consider what happens when we get called with arguments where + * the non-batch keys differ. + * + * Example: + * + * ```js + * loaders.foo.load({ foo_id: 2, include_private_data: true }); + * loaders.foo.load({ foo_id: 3, include_private_data: false }); + * loaders.foo.load({ foo_id: 4, include_private_data: false }); + * ``` + * + * If we collected everything up and tried to send the one + * request to the resource as a batch request, how do we know + * what the value for "include_private_data" should be? We're + * going to have to group these up up and send two requests to + * the resource to make sure we're requesting the right stuff. + * + * e.g. We'd need to make the following set of underlying resource + * calls: + * + * ```js + * foo({ foo_ids: [ 2 ], include_private_data: true }); + * foo({ foo_ids: [ 3, 4 ], include_private_data: false }); + * ``` + * + * ~~~ tl;dr ~~~ + * + * When we have calls to .load with differing non batch key args, + * we'll need to send multiple requests to the underlying + * resource to make sure we get the right results back. + * + * Let's create the request groups, where each element in the + * group refers to a position in "keys" (i.e. a call to .load) + * + * Example: + * + * ```js + * partitionItems('bar_id', [ + * { bar_id: 7, include_extra_info: true }, + * { bar_id: 8, include_extra_info: false }, + * { bar_id: 9, include_extra_info: true }, + * ]) + * ``` + * + * Returns: + * `[ [ 0, 2 ], [ 1 ] ]` + * + * We'll refer to each element in the group as a "request ID". + */ + const requestGroups = partitionItems("planet_id", keys); + + // Map the request groups to a list of Promises - one for each request + const groupedResults = await Promise.all( + requestGroups.map(async (requestIDs) => { /** - * =============================================================== - * Generated DataLoader: getPlanets - * =============================================================== + * Select a set of elements in "keys", where all non-batch + * keys should be identical. * - * Resource Config: - * - * ```json - * { - * "docsLink": "https://swapi.dev/documentation#planets", - * "isBatchResource": true, - * "batchKey": "planet_ids", - * "newKey": "planet_id" - * } - * ``` + * We're going to smoosh all these together into one payload to + * send to the resource as a batch request! */ - async (keys) => { - invariant( - typeof resources.getPlanets === 'function', - [ - '[dataloader-codegen :: getPlanets] resources.getPlanets is not a function.', - 'Did you pass in an instance of getPlanets to "getLoaders"?', - ].join(' '), + const requests = requestIDs.map((id) => keys[id]); + + // For now, we assume that the dataloader key should be the first argument to the resource + // @see https://github.com/Yelp/dataloader-codegen/issues/56 + const resourceArg = { + ..._.omit(requests[0], "planet_id"), + ["planet_ids"]: requests.map((k) => k["planet_id"]), + }; + + // Any-type so this is re-assignable to the 'nestedPath' without TS complaining + let response: any = await (async (_resourceArg) => { + // Make a re-assignable variable so eslint doesn't complain + let __resourceArgs = [_resourceArg] as const; + + if ( + options && + options.resourceMiddleware && + options.resourceMiddleware.before + ) { + __resourceArgs = await options.resourceMiddleware.before( + ["getPlanets"], + __resourceArgs, ); + } + + let _response; + try { + // Finally, call the resource! + _response = await resources.getPlanets(...__resourceArgs); + } catch (error) { + const errorHandler = + options && typeof options.errorHandler === "function" + ? options.errorHandler + : defaultErrorHandler; /** - * Chunk up the "keys" array to create a set of "request groups". - * - * We're about to hit a batch resource. In addition to the batch - * key, the resource may take other arguments too. When batching - * up requests, we'll want to look out for where those other - * arguments differ, and send multiple requests so we don't get - * back the wrong info. - * - * In other words, we'll potentially want to send _multiple_ - * requests to the underlying resource batch method in this - * dataloader body. - * - * ~~~ Why? ~~~ - * - * Consider what happens when we get called with arguments where - * the non-batch keys differ. - * - * Example: - * - * ```js - * loaders.foo.load({ foo_id: 2, include_private_data: true }); - * loaders.foo.load({ foo_id: 3, include_private_data: false }); - * loaders.foo.load({ foo_id: 4, include_private_data: false }); - * ``` - * - * If we collected everything up and tried to send the one - * request to the resource as a batch request, how do we know - * what the value for "include_private_data" should be? We're - * going to have to group these up up and send two requests to - * the resource to make sure we're requesting the right stuff. - * - * e.g. We'd need to make the following set of underlying resource - * calls: + * Apply some error handling to catch and handle all errors/rejected promises. errorHandler must return an Error object. * - * ```js - * foo({ foo_ids: [ 2 ], include_private_data: true }); - * foo({ foo_ids: [ 3, 4 ], include_private_data: false }); - * ``` - * - * ~~~ tl;dr ~~~ - * - * When we have calls to .load with differing non batch key args, - * we'll need to send multiple requests to the underlying - * resource to make sure we get the right results back. - * - * Let's create the request groups, where each element in the - * group refers to a position in "keys" (i.e. a call to .load) - * - * Example: - * - * ```js - * partitionItems('bar_id', [ - * { bar_id: 7, include_extra_info: true }, - * { bar_id: 8, include_extra_info: false }, - * { bar_id: 9, include_extra_info: true }, - * ]) - * ``` - * - * Returns: - * `[ [ 0, 2 ], [ 1 ] ]` - * - * We'll refer to each element in the group as a "request ID". + * If we let errors here go unhandled here, it will bubble up and DataLoader will return an error for all + * keys requested. We can do slightly better by returning the error object for just the keys in this batch request. */ - const requestGroups = partitionItems('planet_id', keys); - - // Map the request groups to a list of Promises - one for each request - const groupedResults = await Promise.all( - requestGroups.map(async (requestIDs) => { - /** - * Select a set of elements in "keys", where all non-batch - * keys should be identical. - * - * We're going to smoosh all these together into one payload to - * send to the resource as a batch request! - */ - const requests = requestIDs.map((id) => keys[id]); - - // For now, we assume that the dataloader key should be the first argument to the resource - // @see https://github.com/Yelp/dataloader-codegen/issues/56 - const resourceArg = { - ..._.omit(requests[0], 'planet_id'), - ['planet_ids']: requests.map((k) => k['planet_id']), - }; - - // Any-type so this is re-assignable to the 'nestedPath' without TS complaining - let response: any = await (async (_resourceArg) => { - // Make a re-assignable variable so eslint doesn't complain - let __resourceArgs: Parameters = [_resourceArg]; - - if (options && options.resourceMiddleware && options.resourceMiddleware.before) { - __resourceArgs = await options.resourceMiddleware.before( - ['getPlanets'], - __resourceArgs, - ); - } - - let _response; - try { - // Finally, call the resource! - _response = await resources.getPlanets(...__resourceArgs); - } catch (error) { - const errorHandler = - options && typeof options.errorHandler === 'function' - ? options.errorHandler - : defaultErrorHandler; - - /** - * Apply some error handling to catch and handle all errors/rejected promises. errorHandler must return an Error object. - * - * If we let errors here go unhandled here, it will bubble up and DataLoader will return an error for all - * keys requested. We can do slightly better by returning the error object for just the keys in this batch request. - */ - _response = await errorHandler(['getPlanets'], error); - - // Check that errorHandler actually returned an Error object, and turn it into one if not. - if (!(_response instanceof Error)) { - _response = new Error( - [ - `[dataloader-codegen :: getPlanets] Caught an error, but errorHandler did not return an Error object.`, - `Instead, got ${typeof _response}: ${util.inspect(_response)}`, - ].join(' '), - ); - } - } - - if (options && options.resourceMiddleware && options.resourceMiddleware.after) { - _response = await options.resourceMiddleware.after(['getPlanets'], _response); - } - - return _response; - })(resourceArg); - - if (!(response instanceof Error)) { - } - - if (!(response instanceof Error)) { - if (!Array.isArray(response)) { - response = new Error( - ['[dataloader-codegen :: getPlanets]', 'Expected response to be an array!'].join( - ' ', - ), - ); - } - } - - if (!(response instanceof Error)) { - /** - * Check to see the resource contains the same number - * of items that we requested. If not, since there's - * no "reorderResultsByKey" specified for this resource, - * we don't know _which_ key's response is missing. Therefore - * it's unsafe to return the response array back. - */ - if (response.length !== requests.length) { - /** - * We must return errors for all keys in this group :( - */ - response = new BatchItemNotFoundError( - [ - `[dataloader-codegen :: getPlanets] Resource returned ${response.length} items, but we requested ${requests.length} items.`, - 'Add reorderResultsByKey to the config for this resource to be able to handle a partial response.', - ].join(' '), - ); - - // Tell flow that BatchItemNotFoundError extends Error. - // It's an issue with flowgen package, but not an issue with Flow. - // @see https://github.com/Yelp/dataloader-codegen/pull/35#discussion_r394777533 - invariant(response instanceof Error, 'expected BatchItemNotFoundError to be an Error'); - } - } - - /** - * If the resource returns an Error, we'll want to copy and - * return that error as the return value for every request in - * this group. - * - * This allow the error to be cached, and allows the rest of the - * requests made by this DataLoader to succeed. - * - * @see https://github.com/graphql/dataloader#caching-errors - */ - if (response instanceof Error) { - response = requestIDs.map((requestId) => { - /** - * Since we're returning an error object and not the - * expected return type from the resource, this element - * would be unsortable, since it wouldn't have the - * "reorderResultsByKey" attribute. - * - * Let's add it to the error object, as "reorderResultsByValue". - * - * (If we didn't specify that this resource needs - * sorting, then this will be "null" and won't be used.) - */ - const reorderResultsByValue = null; - - // Tell flow that "response" is actually an error object. - // (This is so we can pass it as 'cause' to CaughtResourceError) - invariant(response instanceof Error, 'expected response to be an error'); - - return new CaughtResourceError( - `[dataloader-codegen :: getPlanets] Caught error during call to resource. Error: ${response.stack}`, - response, - reorderResultsByValue, - ); - }); - } - - return response; - }), + _response = await errorHandler(["getPlanets"], error); + + // Check that errorHandler actually returned an Error object, and turn it into one if not. + if (!(_response instanceof Error)) { + _response = new Error( + [ + `[dataloader-codegen :: getPlanets] Caught an error, but errorHandler did not return an Error object.`, + `Instead, got ${typeof _response}: ${util.inspect(_response)}`, + ].join(" "), + ); + } + } + + if ( + options && + options.resourceMiddleware && + options.resourceMiddleware.after + ) { + _response = await options.resourceMiddleware.after( + ["getPlanets"], + _response, ); + } + + return _response; + })(resourceArg); + + if (!(response instanceof Error)) { + } + + if (!(response instanceof Error)) { + if (!Array.isArray(response)) { + response = new Error( + [ + "[dataloader-codegen :: getPlanets]", + "Expected response to be an array!", + ].join(" "), + ); + } + } + + if (!(response instanceof Error)) { + /** + * Check to see the resource contains the same number + * of items that we requested. If not, since there's + * no "reorderResultsByKey" specified for this resource, + * we don't know _which_ key's response is missing. Therefore + * it's unsafe to return the response array back. + */ + if (response.length !== requests.length) { + /** + * We must return errors for all keys in this group :( + */ + response = new BatchItemNotFoundError( + [ + `[dataloader-codegen :: getPlanets] Resource returned ${response.length} items, but we requested ${requests.length} items.`, + "Add reorderResultsByKey to the config for this resource to be able to handle a partial response.", + ].join(" "), + ); + } + } - return unPartitionResults(requestGroups, groupedResults); - }, - { - ...cacheKeyOptions, - }, - ), - getPeople: new DataLoader< - Omit[0], 'people_ids'> & { - person_id: NonNullable[0]['people_ids']>[0]; - }, - PromisedReturnType[0], - // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". - string - >( /** - * =============================================================== - * Generated DataLoader: getPeople - * =============================================================== + * If the resource returns an Error, we'll want to copy and + * return that error as the return value for every request in + * this group. * - * Resource Config: + * This allow the error to be cached, and allows the rest of the + * requests made by this DataLoader to succeed. * - * ```json - * { - * "docsLink": "https://swapi.dev/documentation#people", - * "isBatchResource": true, - * "batchKey": "people_ids", - * "newKey": "person_id" - * } - * ``` + * @see https://github.com/graphql/dataloader#caching-errors */ - async (keys) => { - invariant( - typeof resources.getPeople === 'function', - [ - '[dataloader-codegen :: getPeople] resources.getPeople is not a function.', - 'Did you pass in an instance of getPeople to "getLoaders"?', - ].join(' '), - ); - + if (response instanceof Error) { + response = requestIDs.map((requestId) => { /** - * Chunk up the "keys" array to create a set of "request groups". - * - * We're about to hit a batch resource. In addition to the batch - * key, the resource may take other arguments too. When batching - * up requests, we'll want to look out for where those other - * arguments differ, and send multiple requests so we don't get - * back the wrong info. - * - * In other words, we'll potentially want to send _multiple_ - * requests to the underlying resource batch method in this - * dataloader body. - * - * ~~~ Why? ~~~ - * - * Consider what happens when we get called with arguments where - * the non-batch keys differ. - * - * Example: - * - * ```js - * loaders.foo.load({ foo_id: 2, include_private_data: true }); - * loaders.foo.load({ foo_id: 3, include_private_data: false }); - * loaders.foo.load({ foo_id: 4, include_private_data: false }); - * ``` - * - * If we collected everything up and tried to send the one - * request to the resource as a batch request, how do we know - * what the value for "include_private_data" should be? We're - * going to have to group these up up and send two requests to - * the resource to make sure we're requesting the right stuff. - * - * e.g. We'd need to make the following set of underlying resource - * calls: - * - * ```js - * foo({ foo_ids: [ 2 ], include_private_data: true }); - * foo({ foo_ids: [ 3, 4 ], include_private_data: false }); - * ``` - * - * ~~~ tl;dr ~~~ + * Since we're returning an error object and not the + * expected return type from the resource, this element + * would be unsortable, since it wouldn't have the + * "reorderResultsByKey" attribute. * - * When we have calls to .load with differing non batch key args, - * we'll need to send multiple requests to the underlying - * resource to make sure we get the right results back. + * Let's add it to the error object, as "reorderResultsByValue". * - * Let's create the request groups, where each element in the - * group refers to a position in "keys" (i.e. a call to .load) - * - * Example: - * - * ```js - * partitionItems('bar_id', [ - * { bar_id: 7, include_extra_info: true }, - * { bar_id: 8, include_extra_info: false }, - * { bar_id: 9, include_extra_info: true }, - * ]) - * ``` - * - * Returns: - * `[ [ 0, 2 ], [ 1 ] ]` - * - * We'll refer to each element in the group as a "request ID". + * (If we didn't specify that this resource needs + * sorting, then this will be "null" and won't be used.) */ - const requestGroups = partitionItems('person_id', keys); - - // Map the request groups to a list of Promises - one for each request - const groupedResults = await Promise.all( - requestGroups.map(async (requestIDs) => { - /** - * Select a set of elements in "keys", where all non-batch - * keys should be identical. - * - * We're going to smoosh all these together into one payload to - * send to the resource as a batch request! - */ - const requests = requestIDs.map((id) => keys[id]); - - // For now, we assume that the dataloader key should be the first argument to the resource - // @see https://github.com/Yelp/dataloader-codegen/issues/56 - const resourceArg = { - ..._.omit(requests[0], 'person_id'), - ['people_ids']: requests.map((k) => k['person_id']), - }; - - // Any-type so this is re-assignable to the 'nestedPath' without TS complaining - let response: any = await (async (_resourceArg) => { - // Make a re-assignable variable so eslint doesn't complain - let __resourceArgs: Parameters = [_resourceArg]; - - if (options && options.resourceMiddleware && options.resourceMiddleware.before) { - __resourceArgs = await options.resourceMiddleware.before(['getPeople'], __resourceArgs); - } - - let _response; - try { - // Finally, call the resource! - _response = await resources.getPeople(...__resourceArgs); - } catch (error) { - const errorHandler = - options && typeof options.errorHandler === 'function' - ? options.errorHandler - : defaultErrorHandler; - - /** - * Apply some error handling to catch and handle all errors/rejected promises. errorHandler must return an Error object. - * - * If we let errors here go unhandled here, it will bubble up and DataLoader will return an error for all - * keys requested. We can do slightly better by returning the error object for just the keys in this batch request. - */ - _response = await errorHandler(['getPeople'], error); - - // Check that errorHandler actually returned an Error object, and turn it into one if not. - if (!(_response instanceof Error)) { - _response = new Error( - [ - `[dataloader-codegen :: getPeople] Caught an error, but errorHandler did not return an Error object.`, - `Instead, got ${typeof _response}: ${util.inspect(_response)}`, - ].join(' '), - ); - } - } - - if (options && options.resourceMiddleware && options.resourceMiddleware.after) { - _response = await options.resourceMiddleware.after(['getPeople'], _response); - } - - return _response; - })(resourceArg); - - if (!(response instanceof Error)) { - } - - if (!(response instanceof Error)) { - if (!Array.isArray(response)) { - response = new Error( - ['[dataloader-codegen :: getPeople]', 'Expected response to be an array!'].join( - ' ', - ), - ); - } - } - - if (!(response instanceof Error)) { - /** - * Check to see the resource contains the same number - * of items that we requested. If not, since there's - * no "reorderResultsByKey" specified for this resource, - * we don't know _which_ key's response is missing. Therefore - * it's unsafe to return the response array back. - */ - if (response.length !== requests.length) { - /** - * We must return errors for all keys in this group :( - */ - response = new BatchItemNotFoundError( - [ - `[dataloader-codegen :: getPeople] Resource returned ${response.length} items, but we requested ${requests.length} items.`, - 'Add reorderResultsByKey to the config for this resource to be able to handle a partial response.', - ].join(' '), - ); - - // Tell flow that BatchItemNotFoundError extends Error. - // It's an issue with flowgen package, but not an issue with Flow. - // @see https://github.com/Yelp/dataloader-codegen/pull/35#discussion_r394777533 - invariant(response instanceof Error, 'expected BatchItemNotFoundError to be an Error'); - } - } - - /** - * If the resource returns an Error, we'll want to copy and - * return that error as the return value for every request in - * this group. - * - * This allow the error to be cached, and allows the rest of the - * requests made by this DataLoader to succeed. - * - * @see https://github.com/graphql/dataloader#caching-errors - */ - if (response instanceof Error) { - response = requestIDs.map((requestId) => { - /** - * Since we're returning an error object and not the - * expected return type from the resource, this element - * would be unsortable, since it wouldn't have the - * "reorderResultsByKey" attribute. - * - * Let's add it to the error object, as "reorderResultsByValue". - * - * (If we didn't specify that this resource needs - * sorting, then this will be "null" and won't be used.) - */ - const reorderResultsByValue = null; - - // Tell flow that "response" is actually an error object. - // (This is so we can pass it as 'cause' to CaughtResourceError) - invariant(response instanceof Error, 'expected response to be an error'); - - return new CaughtResourceError( - `[dataloader-codegen :: getPeople] Caught error during call to resource. Error: ${response.stack}`, - response, - reorderResultsByValue, - ); - }); - } - - return response; - }), - ); + const reorderResultsByValue = null; - return unPartitionResults(requestGroups, groupedResults); - }, - { - ...cacheKeyOptions, - }, - ), - getVehicles: new DataLoader< - Omit[0], 'vehicle_ids'> & { - vehicle_id: NonNullable[0]['vehicle_ids']>[0]; - }, - PromisedReturnType[0], - // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". - string - >( + return new CaughtResourceError( + `[dataloader-codegen :: getPlanets] Caught error during call to resource. Error: ${response.stack}`, + response, + reorderResultsByValue, + ); + }); + } + + return response; + }), + ); + + return unPartitionResults(requestGroups, groupedResults); + }, + { + ...cacheKeyOptions, + }, + ), + getPeople: new DataLoader< + Omit[0], "people_ids"> & { + person_id: NonNullable< + Parameters[0]["people_ids"] + >[0]; + }, + PromisedReturnType[0], + // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". + string + >( + /** + * =============================================================== + * Generated DataLoader: getPeople + * =============================================================== + * + * Resource Config: + * + * ```json + * { + * "docsLink": "https://swapi.info/documentation#people", + * "isBatchResource": true, + * "batchKey": "people_ids", + * "newKey": "person_id" + * } + * ``` + */ + async (keys) => { + invariant( + typeof resources.getPeople === "function", + [ + "[dataloader-codegen :: getPeople] resources.getPeople is not a function.", + 'Did you pass in an instance of getPeople to "getLoaders"?', + ].join(" "), + ); + + /** + * Chunk up the "keys" array to create a set of "request groups". + * + * We're about to hit a batch resource. In addition to the batch + * key, the resource may take other arguments too. When batching + * up requests, we'll want to look out for where those other + * arguments differ, and send multiple requests so we don't get + * back the wrong info. + * + * In other words, we'll potentially want to send _multiple_ + * requests to the underlying resource batch method in this + * dataloader body. + * + * ~~~ Why? ~~~ + * + * Consider what happens when we get called with arguments where + * the non-batch keys differ. + * + * Example: + * + * ```js + * loaders.foo.load({ foo_id: 2, include_private_data: true }); + * loaders.foo.load({ foo_id: 3, include_private_data: false }); + * loaders.foo.load({ foo_id: 4, include_private_data: false }); + * ``` + * + * If we collected everything up and tried to send the one + * request to the resource as a batch request, how do we know + * what the value for "include_private_data" should be? We're + * going to have to group these up up and send two requests to + * the resource to make sure we're requesting the right stuff. + * + * e.g. We'd need to make the following set of underlying resource + * calls: + * + * ```js + * foo({ foo_ids: [ 2 ], include_private_data: true }); + * foo({ foo_ids: [ 3, 4 ], include_private_data: false }); + * ``` + * + * ~~~ tl;dr ~~~ + * + * When we have calls to .load with differing non batch key args, + * we'll need to send multiple requests to the underlying + * resource to make sure we get the right results back. + * + * Let's create the request groups, where each element in the + * group refers to a position in "keys" (i.e. a call to .load) + * + * Example: + * + * ```js + * partitionItems('bar_id', [ + * { bar_id: 7, include_extra_info: true }, + * { bar_id: 8, include_extra_info: false }, + * { bar_id: 9, include_extra_info: true }, + * ]) + * ``` + * + * Returns: + * `[ [ 0, 2 ], [ 1 ] ]` + * + * We'll refer to each element in the group as a "request ID". + */ + const requestGroups = partitionItems("person_id", keys); + + // Map the request groups to a list of Promises - one for each request + const groupedResults = await Promise.all( + requestGroups.map(async (requestIDs) => { /** - * =============================================================== - * Generated DataLoader: getVehicles - * =============================================================== - * - * Resource Config: + * Select a set of elements in "keys", where all non-batch + * keys should be identical. * - * ```json - * { - * "docsLink": "https://swapi.dev/documentation#vehicles", - * "isBatchResource": true, - * "batchKey": "vehicle_ids", - * "newKey": "vehicle_id" - * } - * ``` + * We're going to smoosh all these together into one payload to + * send to the resource as a batch request! */ - async (keys) => { - invariant( - typeof resources.getVehicles === 'function', - [ - '[dataloader-codegen :: getVehicles] resources.getVehicles is not a function.', - 'Did you pass in an instance of getVehicles to "getLoaders"?', - ].join(' '), + const requests = requestIDs.map((id) => keys[id]); + + // For now, we assume that the dataloader key should be the first argument to the resource + // @see https://github.com/Yelp/dataloader-codegen/issues/56 + const resourceArg = { + ..._.omit(requests[0], "person_id"), + ["people_ids"]: requests.map((k) => k["person_id"]), + }; + + // Any-type so this is re-assignable to the 'nestedPath' without TS complaining + let response: any = await (async (_resourceArg) => { + // Make a re-assignable variable so eslint doesn't complain + let __resourceArgs = [_resourceArg] as const; + + if ( + options && + options.resourceMiddleware && + options.resourceMiddleware.before + ) { + __resourceArgs = await options.resourceMiddleware.before( + ["getPeople"], + __resourceArgs, ); + } + + let _response; + try { + // Finally, call the resource! + _response = await resources.getPeople(...__resourceArgs); + } catch (error) { + const errorHandler = + options && typeof options.errorHandler === "function" + ? options.errorHandler + : defaultErrorHandler; /** - * Chunk up the "keys" array to create a set of "request groups". - * - * We're about to hit a batch resource. In addition to the batch - * key, the resource may take other arguments too. When batching - * up requests, we'll want to look out for where those other - * arguments differ, and send multiple requests so we don't get - * back the wrong info. - * - * In other words, we'll potentially want to send _multiple_ - * requests to the underlying resource batch method in this - * dataloader body. - * - * ~~~ Why? ~~~ - * - * Consider what happens when we get called with arguments where - * the non-batch keys differ. - * - * Example: - * - * ```js - * loaders.foo.load({ foo_id: 2, include_private_data: true }); - * loaders.foo.load({ foo_id: 3, include_private_data: false }); - * loaders.foo.load({ foo_id: 4, include_private_data: false }); - * ``` - * - * If we collected everything up and tried to send the one - * request to the resource as a batch request, how do we know - * what the value for "include_private_data" should be? We're - * going to have to group these up up and send two requests to - * the resource to make sure we're requesting the right stuff. - * - * e.g. We'd need to make the following set of underlying resource - * calls: - * - * ```js - * foo({ foo_ids: [ 2 ], include_private_data: true }); - * foo({ foo_ids: [ 3, 4 ], include_private_data: false }); - * ``` - * - * ~~~ tl;dr ~~~ - * - * When we have calls to .load with differing non batch key args, - * we'll need to send multiple requests to the underlying - * resource to make sure we get the right results back. - * - * Let's create the request groups, where each element in the - * group refers to a position in "keys" (i.e. a call to .load) + * Apply some error handling to catch and handle all errors/rejected promises. errorHandler must return an Error object. * - * Example: - * - * ```js - * partitionItems('bar_id', [ - * { bar_id: 7, include_extra_info: true }, - * { bar_id: 8, include_extra_info: false }, - * { bar_id: 9, include_extra_info: true }, - * ]) - * ``` - * - * Returns: - * `[ [ 0, 2 ], [ 1 ] ]` - * - * We'll refer to each element in the group as a "request ID". + * If we let errors here go unhandled here, it will bubble up and DataLoader will return an error for all + * keys requested. We can do slightly better by returning the error object for just the keys in this batch request. */ - const requestGroups = partitionItems('vehicle_id', keys); - - // Map the request groups to a list of Promises - one for each request - const groupedResults = await Promise.all( - requestGroups.map(async (requestIDs) => { - /** - * Select a set of elements in "keys", where all non-batch - * keys should be identical. - * - * We're going to smoosh all these together into one payload to - * send to the resource as a batch request! - */ - const requests = requestIDs.map((id) => keys[id]); - - // For now, we assume that the dataloader key should be the first argument to the resource - // @see https://github.com/Yelp/dataloader-codegen/issues/56 - const resourceArg = { - ..._.omit(requests[0], 'vehicle_id'), - ['vehicle_ids']: requests.map((k) => k['vehicle_id']), - }; - - // Any-type so this is re-assignable to the 'nestedPath' without TS complaining - let response: any = await (async (_resourceArg) => { - // Make a re-assignable variable so eslint doesn't complain - let __resourceArgs: Parameters = [_resourceArg]; - - if (options && options.resourceMiddleware && options.resourceMiddleware.before) { - __resourceArgs = await options.resourceMiddleware.before( - ['getVehicles'], - __resourceArgs, - ); - } - - let _response; - try { - // Finally, call the resource! - _response = await resources.getVehicles(...__resourceArgs); - } catch (error) { - const errorHandler = - options && typeof options.errorHandler === 'function' - ? options.errorHandler - : defaultErrorHandler; - - /** - * Apply some error handling to catch and handle all errors/rejected promises. errorHandler must return an Error object. - * - * If we let errors here go unhandled here, it will bubble up and DataLoader will return an error for all - * keys requested. We can do slightly better by returning the error object for just the keys in this batch request. - */ - _response = await errorHandler(['getVehicles'], error); - - // Check that errorHandler actually returned an Error object, and turn it into one if not. - if (!(_response instanceof Error)) { - _response = new Error( - [ - `[dataloader-codegen :: getVehicles] Caught an error, but errorHandler did not return an Error object.`, - `Instead, got ${typeof _response}: ${util.inspect(_response)}`, - ].join(' '), - ); - } - } - - if (options && options.resourceMiddleware && options.resourceMiddleware.after) { - _response = await options.resourceMiddleware.after(['getVehicles'], _response); - } - - return _response; - })(resourceArg); - - if (!(response instanceof Error)) { - } - - if (!(response instanceof Error)) { - if (!Array.isArray(response)) { - response = new Error( - ['[dataloader-codegen :: getVehicles]', 'Expected response to be an array!'].join( - ' ', - ), - ); - } - } - - if (!(response instanceof Error)) { - /** - * Check to see the resource contains the same number - * of items that we requested. If not, since there's - * no "reorderResultsByKey" specified for this resource, - * we don't know _which_ key's response is missing. Therefore - * it's unsafe to return the response array back. - */ - if (response.length !== requests.length) { - /** - * We must return errors for all keys in this group :( - */ - response = new BatchItemNotFoundError( - [ - `[dataloader-codegen :: getVehicles] Resource returned ${response.length} items, but we requested ${requests.length} items.`, - 'Add reorderResultsByKey to the config for this resource to be able to handle a partial response.', - ].join(' '), - ); - - // Tell flow that BatchItemNotFoundError extends Error. - // It's an issue with flowgen package, but not an issue with Flow. - // @see https://github.com/Yelp/dataloader-codegen/pull/35#discussion_r394777533 - invariant(response instanceof Error, 'expected BatchItemNotFoundError to be an Error'); - } - } - - /** - * If the resource returns an Error, we'll want to copy and - * return that error as the return value for every request in - * this group. - * - * This allow the error to be cached, and allows the rest of the - * requests made by this DataLoader to succeed. - * - * @see https://github.com/graphql/dataloader#caching-errors - */ - if (response instanceof Error) { - response = requestIDs.map((requestId) => { - /** - * Since we're returning an error object and not the - * expected return type from the resource, this element - * would be unsortable, since it wouldn't have the - * "reorderResultsByKey" attribute. - * - * Let's add it to the error object, as "reorderResultsByValue". - * - * (If we didn't specify that this resource needs - * sorting, then this will be "null" and won't be used.) - */ - const reorderResultsByValue = null; - - // Tell flow that "response" is actually an error object. - // (This is so we can pass it as 'cause' to CaughtResourceError) - invariant(response instanceof Error, 'expected response to be an error'); - - return new CaughtResourceError( - `[dataloader-codegen :: getVehicles] Caught error during call to resource. Error: ${response.stack}`, - response, - reorderResultsByValue, - ); - }); - } - - return response; - }), + _response = await errorHandler(["getPeople"], error); + + // Check that errorHandler actually returned an Error object, and turn it into one if not. + if (!(_response instanceof Error)) { + _response = new Error( + [ + `[dataloader-codegen :: getPeople] Caught an error, but errorHandler did not return an Error object.`, + `Instead, got ${typeof _response}: ${util.inspect(_response)}`, + ].join(" "), + ); + } + } + + if ( + options && + options.resourceMiddleware && + options.resourceMiddleware.after + ) { + _response = await options.resourceMiddleware.after( + ["getPeople"], + _response, ); + } + + return _response; + })(resourceArg); + + if (!(response instanceof Error)) { + } + + if (!(response instanceof Error)) { + if (!Array.isArray(response)) { + response = new Error( + [ + "[dataloader-codegen :: getPeople]", + "Expected response to be an array!", + ].join(" "), + ); + } + } + + if (!(response instanceof Error)) { + /** + * Check to see the resource contains the same number + * of items that we requested. If not, since there's + * no "reorderResultsByKey" specified for this resource, + * we don't know _which_ key's response is missing. Therefore + * it's unsafe to return the response array back. + */ + if (response.length !== requests.length) { + /** + * We must return errors for all keys in this group :( + */ + response = new BatchItemNotFoundError( + [ + `[dataloader-codegen :: getPeople] Resource returned ${response.length} items, but we requested ${requests.length} items.`, + "Add reorderResultsByKey to the config for this resource to be able to handle a partial response.", + ].join(" "), + ); + } + } - return unPartitionResults(requestGroups, groupedResults); - }, - { - ...cacheKeyOptions, - }, - ), - getFilms: new DataLoader< - Omit[0], 'film_ids'> & { - film_id: Parameters[0]['film_ids']['has']>[0]; - }, - PromisedReturnType[0], - // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". - string - >( /** - * =============================================================== - * Generated DataLoader: getFilms - * =============================================================== + * If the resource returns an Error, we'll want to copy and + * return that error as the return value for every request in + * this group. * - * Resource Config: + * This allow the error to be cached, and allows the rest of the + * requests made by this DataLoader to succeed. * - * ```json - * { - * "docsLink": "https://swapi.dev/documentation#films", - * "isBatchResource": true, - * "batchKey": "film_ids", - * "newKey": "film_id", - * "isBatchKeyASet": true - * } - * ``` + * @see https://github.com/graphql/dataloader#caching-errors */ - async (keys) => { - invariant( - typeof resources.getFilms === 'function', - [ - '[dataloader-codegen :: getFilms] resources.getFilms is not a function.', - 'Did you pass in an instance of getFilms to "getLoaders"?', - ].join(' '), - ); - + if (response instanceof Error) { + response = requestIDs.map((requestId) => { /** - * Chunk up the "keys" array to create a set of "request groups". - * - * We're about to hit a batch resource. In addition to the batch - * key, the resource may take other arguments too. When batching - * up requests, we'll want to look out for where those other - * arguments differ, and send multiple requests so we don't get - * back the wrong info. - * - * In other words, we'll potentially want to send _multiple_ - * requests to the underlying resource batch method in this - * dataloader body. - * - * ~~~ Why? ~~~ - * - * Consider what happens when we get called with arguments where - * the non-batch keys differ. + * Since we're returning an error object and not the + * expected return type from the resource, this element + * would be unsortable, since it wouldn't have the + * "reorderResultsByKey" attribute. * - * Example: + * Let's add it to the error object, as "reorderResultsByValue". * - * ```js - * loaders.foo.load({ foo_id: 2, include_private_data: true }); - * loaders.foo.load({ foo_id: 3, include_private_data: false }); - * loaders.foo.load({ foo_id: 4, include_private_data: false }); - * ``` - * - * If we collected everything up and tried to send the one - * request to the resource as a batch request, how do we know - * what the value for "include_private_data" should be? We're - * going to have to group these up up and send two requests to - * the resource to make sure we're requesting the right stuff. - * - * e.g. We'd need to make the following set of underlying resource - * calls: - * - * ```js - * foo({ foo_ids: [ 2 ], include_private_data: true }); - * foo({ foo_ids: [ 3, 4 ], include_private_data: false }); - * ``` - * - * ~~~ tl;dr ~~~ - * - * When we have calls to .load with differing non batch key args, - * we'll need to send multiple requests to the underlying - * resource to make sure we get the right results back. - * - * Let's create the request groups, where each element in the - * group refers to a position in "keys" (i.e. a call to .load) - * - * Example: - * - * ```js - * partitionItems('bar_id', [ - * { bar_id: 7, include_extra_info: true }, - * { bar_id: 8, include_extra_info: false }, - * { bar_id: 9, include_extra_info: true }, - * ]) - * ``` - * - * Returns: - * `[ [ 0, 2 ], [ 1 ] ]` - * - * We'll refer to each element in the group as a "request ID". + * (If we didn't specify that this resource needs + * sorting, then this will be "null" and won't be used.) */ - const requestGroups = partitionItems('film_id', keys); - - // Map the request groups to a list of Promises - one for each request - const groupedResults = await Promise.all( - requestGroups.map(async (requestIDs) => { - /** - * Select a set of elements in "keys", where all non-batch - * keys should be identical. - * - * We're going to smoosh all these together into one payload to - * send to the resource as a batch request! - */ - const requests = requestIDs.map((id) => keys[id]); - - // For now, we assume that the dataloader key should be the first argument to the resource - // @see https://github.com/Yelp/dataloader-codegen/issues/56 - const resourceArg = { - ..._.omit(requests[0], 'film_id'), - ['film_ids']: requests.map((k) => k['film_id']), - }; - - // Any-type so this is re-assignable to the 'nestedPath' without TS complaining - let response: any = await (async (_resourceArg) => { - // Make a re-assignable variable so eslint doesn't complain - let __resourceArgs: Parameters = [_resourceArg]; - - if (options && options.resourceMiddleware && options.resourceMiddleware.before) { - __resourceArgs = await options.resourceMiddleware.before(['getFilms'], __resourceArgs); - } - - let _response; - try { - // Finally, call the resource! - _response = await resources.getFilms(...__resourceArgs); - } catch (error) { - const errorHandler = - options && typeof options.errorHandler === 'function' - ? options.errorHandler - : defaultErrorHandler; - - /** - * Apply some error handling to catch and handle all errors/rejected promises. errorHandler must return an Error object. - * - * If we let errors here go unhandled here, it will bubble up and DataLoader will return an error for all - * keys requested. We can do slightly better by returning the error object for just the keys in this batch request. - */ - _response = await errorHandler(['getFilms'], error); - - // Check that errorHandler actually returned an Error object, and turn it into one if not. - if (!(_response instanceof Error)) { - _response = new Error( - [ - `[dataloader-codegen :: getFilms] Caught an error, but errorHandler did not return an Error object.`, - `Instead, got ${typeof _response}: ${util.inspect(_response)}`, - ].join(' '), - ); - } - } - - if (options && options.resourceMiddleware && options.resourceMiddleware.after) { - _response = await options.resourceMiddleware.after(['getFilms'], _response); - } - - return _response; - })(resourceArg); - - if (!(response instanceof Error)) { - } - - if (!(response instanceof Error)) { - if (!Array.isArray(response)) { - response = new Error( - ['[dataloader-codegen :: getFilms]', 'Expected response to be an array!'].join(' '), - ); - } - } - - if (!(response instanceof Error)) { - /** - * Check to see the resource contains the same number - * of items that we requested. If not, since there's - * no "reorderResultsByKey" specified for this resource, - * we don't know _which_ key's response is missing. Therefore - * it's unsafe to return the response array back. - */ - if (response.length !== requests.length) { - /** - * We must return errors for all keys in this group :( - */ - response = new BatchItemNotFoundError( - [ - `[dataloader-codegen :: getFilms] Resource returned ${response.length} items, but we requested ${requests.length} items.`, - 'Add reorderResultsByKey to the config for this resource to be able to handle a partial response.', - ].join(' '), - ); - - // Tell flow that BatchItemNotFoundError extends Error. - // It's an issue with flowgen package, but not an issue with Flow. - // @see https://github.com/Yelp/dataloader-codegen/pull/35#discussion_r394777533 - invariant(response instanceof Error, 'expected BatchItemNotFoundError to be an Error'); - } - } - - /** - * If the resource returns an Error, we'll want to copy and - * return that error as the return value for every request in - * this group. - * - * This allow the error to be cached, and allows the rest of the - * requests made by this DataLoader to succeed. - * - * @see https://github.com/graphql/dataloader#caching-errors - */ - if (response instanceof Error) { - response = requestIDs.map((requestId) => { - /** - * Since we're returning an error object and not the - * expected return type from the resource, this element - * would be unsortable, since it wouldn't have the - * "reorderResultsByKey" attribute. - * - * Let's add it to the error object, as "reorderResultsByValue". - * - * (If we didn't specify that this resource needs - * sorting, then this will be "null" and won't be used.) - */ - const reorderResultsByValue = null; - - // Tell flow that "response" is actually an error object. - // (This is so we can pass it as 'cause' to CaughtResourceError) - invariant(response instanceof Error, 'expected response to be an error'); - - return new CaughtResourceError( - `[dataloader-codegen :: getFilms] Caught error during call to resource. Error: ${response.stack}`, - response, - reorderResultsByValue, - ); - }); - } - - return response; - }), - ); + const reorderResultsByValue = null; - return unPartitionResults(requestGroups, groupedResults); - }, - { - ...cacheKeyOptions, - }, - ), - getFilmsV2: new DataLoader< - Omit[0], 'film_ids'> & { - film_id: NonNullable[0]['film_ids']>[0]; - }, - PromisedReturnType['properties'][0], - // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". - string - >( + return new CaughtResourceError( + `[dataloader-codegen :: getPeople] Caught error during call to resource. Error: ${response.stack}`, + response, + reorderResultsByValue, + ); + }); + } + + return response; + }), + ); + + return unPartitionResults(requestGroups, groupedResults); + }, + { + ...cacheKeyOptions, + }, + ), + getVehicles: new DataLoader< + Omit[0], "vehicle_ids"> & { + vehicle_id: NonNullable< + Parameters[0]["vehicle_ids"] + >[0]; + }, + PromisedReturnType[0], + // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". + string + >( + /** + * =============================================================== + * Generated DataLoader: getVehicles + * =============================================================== + * + * Resource Config: + * + * ```json + * { + * "docsLink": "https://swapi.info/documentation#vehicles", + * "isBatchResource": true, + * "batchKey": "vehicle_ids", + * "newKey": "vehicle_id" + * } + * ``` + */ + async (keys) => { + invariant( + typeof resources.getVehicles === "function", + [ + "[dataloader-codegen :: getVehicles] resources.getVehicles is not a function.", + 'Did you pass in an instance of getVehicles to "getLoaders"?', + ].join(" "), + ); + + /** + * Chunk up the "keys" array to create a set of "request groups". + * + * We're about to hit a batch resource. In addition to the batch + * key, the resource may take other arguments too. When batching + * up requests, we'll want to look out for where those other + * arguments differ, and send multiple requests so we don't get + * back the wrong info. + * + * In other words, we'll potentially want to send _multiple_ + * requests to the underlying resource batch method in this + * dataloader body. + * + * ~~~ Why? ~~~ + * + * Consider what happens when we get called with arguments where + * the non-batch keys differ. + * + * Example: + * + * ```js + * loaders.foo.load({ foo_id: 2, include_private_data: true }); + * loaders.foo.load({ foo_id: 3, include_private_data: false }); + * loaders.foo.load({ foo_id: 4, include_private_data: false }); + * ``` + * + * If we collected everything up and tried to send the one + * request to the resource as a batch request, how do we know + * what the value for "include_private_data" should be? We're + * going to have to group these up up and send two requests to + * the resource to make sure we're requesting the right stuff. + * + * e.g. We'd need to make the following set of underlying resource + * calls: + * + * ```js + * foo({ foo_ids: [ 2 ], include_private_data: true }); + * foo({ foo_ids: [ 3, 4 ], include_private_data: false }); + * ``` + * + * ~~~ tl;dr ~~~ + * + * When we have calls to .load with differing non batch key args, + * we'll need to send multiple requests to the underlying + * resource to make sure we get the right results back. + * + * Let's create the request groups, where each element in the + * group refers to a position in "keys" (i.e. a call to .load) + * + * Example: + * + * ```js + * partitionItems('bar_id', [ + * { bar_id: 7, include_extra_info: true }, + * { bar_id: 8, include_extra_info: false }, + * { bar_id: 9, include_extra_info: true }, + * ]) + * ``` + * + * Returns: + * `[ [ 0, 2 ], [ 1 ] ]` + * + * We'll refer to each element in the group as a "request ID". + */ + const requestGroups = partitionItems("vehicle_id", keys); + + // Map the request groups to a list of Promises - one for each request + const groupedResults = await Promise.all( + requestGroups.map(async (requestIDs) => { /** - * =============================================================== - * Generated DataLoader: getFilmsV2 - * =============================================================== - * - * Resource Config: + * Select a set of elements in "keys", where all non-batch + * keys should be identical. * - * ```json - * { - * "docsLink": "https://swapi.dev/documentation#films", - * "isBatchResource": true, - * "batchKey": "film_ids", - * "newKey": "film_id", - * "nestedPath": "properties", - * "propertyBatchKey": "properties", - * "responseKey": "id" - * } - * ``` + * We're going to smoosh all these together into one payload to + * send to the resource as a batch request! */ - async (keys) => { - invariant( - typeof resources.getFilmsV2 === 'function', + const requests = requestIDs.map((id) => keys[id]); + + // For now, we assume that the dataloader key should be the first argument to the resource + // @see https://github.com/Yelp/dataloader-codegen/issues/56 + const resourceArg = { + ..._.omit(requests[0], "vehicle_id"), + ["vehicle_ids"]: requests.map((k) => k["vehicle_id"]), + }; + + // Any-type so this is re-assignable to the 'nestedPath' without TS complaining + let response: any = await (async (_resourceArg) => { + // Make a re-assignable variable so eslint doesn't complain + let __resourceArgs = [_resourceArg] as const; + + if ( + options && + options.resourceMiddleware && + options.resourceMiddleware.before + ) { + __resourceArgs = await options.resourceMiddleware.before( + ["getVehicles"], + __resourceArgs, + ); + } + + let _response; + try { + // Finally, call the resource! + _response = await resources.getVehicles(...__resourceArgs); + } catch (error) { + const errorHandler = + options && typeof options.errorHandler === "function" + ? options.errorHandler + : defaultErrorHandler; + + /** + * Apply some error handling to catch and handle all errors/rejected promises. errorHandler must return an Error object. + * + * If we let errors here go unhandled here, it will bubble up and DataLoader will return an error for all + * keys requested. We can do slightly better by returning the error object for just the keys in this batch request. + */ + _response = await errorHandler(["getVehicles"], error); + + // Check that errorHandler actually returned an Error object, and turn it into one if not. + if (!(_response instanceof Error)) { + _response = new Error( [ - '[dataloader-codegen :: getFilmsV2] resources.getFilmsV2 is not a function.', - 'Did you pass in an instance of getFilmsV2 to "getLoaders"?', - ].join(' '), + `[dataloader-codegen :: getVehicles] Caught an error, but errorHandler did not return an Error object.`, + `Instead, got ${typeof _response}: ${util.inspect(_response)}`, + ].join(" "), + ); + } + } + + if ( + options && + options.resourceMiddleware && + options.resourceMiddleware.after + ) { + _response = await options.resourceMiddleware.after( + ["getVehicles"], + _response, ); + } + + return _response; + })(resourceArg); + if (!(response instanceof Error)) { + } + + if (!(response instanceof Error)) { + if (!Array.isArray(response)) { + response = new Error( + [ + "[dataloader-codegen :: getVehicles]", + "Expected response to be an array!", + ].join(" "), + ); + } + } + + if (!(response instanceof Error)) { + /** + * Check to see the resource contains the same number + * of items that we requested. If not, since there's + * no "reorderResultsByKey" specified for this resource, + * we don't know _which_ key's response is missing. Therefore + * it's unsafe to return the response array back. + */ + if (response.length !== requests.length) { + /** + * We must return errors for all keys in this group :( + */ + response = new BatchItemNotFoundError( + [ + `[dataloader-codegen :: getVehicles] Resource returned ${response.length} items, but we requested ${requests.length} items.`, + "Add reorderResultsByKey to the config for this resource to be able to handle a partial response.", + ].join(" "), + ); + } + } + + /** + * If the resource returns an Error, we'll want to copy and + * return that error as the return value for every request in + * this group. + * + * This allow the error to be cached, and allows the rest of the + * requests made by this DataLoader to succeed. + * + * @see https://github.com/graphql/dataloader#caching-errors + */ + if (response instanceof Error) { + response = requestIDs.map((requestId) => { /** - * When we have calls to .load with differing non batch key args, - * we'll need to send multiple requests to the underlying - * resource to make sure we get the right results back. + * Since we're returning an error object and not the + * expected return type from the resource, this element + * would be unsortable, since it wouldn't have the + * "reorderResultsByKey" attribute. * - * Let's create the request groups, where each element in the - * group refers to a position in "keys" (i.e. a call to .load) + * Let's add it to the error object, as "reorderResultsByValue". * - * Example: + * (If we didn't specify that this resource needs + * sorting, then this will be "null" and won't be used.) + */ + const reorderResultsByValue = null; + + return new CaughtResourceError( + `[dataloader-codegen :: getVehicles] Caught error during call to resource. Error: ${response.stack}`, + response, + reorderResultsByValue, + ); + }); + } + + return response; + }), + ); + + return unPartitionResults(requestGroups, groupedResults); + }, + { + ...cacheKeyOptions, + }, + ), + getFilms: new DataLoader< + Omit[0], "film_ids"> & { + film_id: Parameters< + Parameters[0]["film_ids"]["has"] + >[0]; + }, + PromisedReturnType[0], + // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". + string + >( + /** + * =============================================================== + * Generated DataLoader: getFilms + * =============================================================== + * + * Resource Config: + * + * ```json + * { + * "docsLink": "https://swapi.info/documentation#films", + * "isBatchResource": true, + * "batchKey": "film_ids", + * "newKey": "film_id", + * "isBatchKeyASet": true + * } + * ``` + */ + async (keys) => { + invariant( + typeof resources.getFilms === "function", + [ + "[dataloader-codegen :: getFilms] resources.getFilms is not a function.", + 'Did you pass in an instance of getFilms to "getLoaders"?', + ].join(" "), + ); + + /** + * Chunk up the "keys" array to create a set of "request groups". + * + * We're about to hit a batch resource. In addition to the batch + * key, the resource may take other arguments too. When batching + * up requests, we'll want to look out for where those other + * arguments differ, and send multiple requests so we don't get + * back the wrong info. + * + * In other words, we'll potentially want to send _multiple_ + * requests to the underlying resource batch method in this + * dataloader body. + * + * ~~~ Why? ~~~ + * + * Consider what happens when we get called with arguments where + * the non-batch keys differ. + * + * Example: + * + * ```js + * loaders.foo.load({ foo_id: 2, include_private_data: true }); + * loaders.foo.load({ foo_id: 3, include_private_data: false }); + * loaders.foo.load({ foo_id: 4, include_private_data: false }); + * ``` + * + * If we collected everything up and tried to send the one + * request to the resource as a batch request, how do we know + * what the value for "include_private_data" should be? We're + * going to have to group these up up and send two requests to + * the resource to make sure we're requesting the right stuff. + * + * e.g. We'd need to make the following set of underlying resource + * calls: + * + * ```js + * foo({ foo_ids: [ 2 ], include_private_data: true }); + * foo({ foo_ids: [ 3, 4 ], include_private_data: false }); + * ``` + * + * ~~~ tl;dr ~~~ + * + * When we have calls to .load with differing non batch key args, + * we'll need to send multiple requests to the underlying + * resource to make sure we get the right results back. + * + * Let's create the request groups, where each element in the + * group refers to a position in "keys" (i.e. a call to .load) + * + * Example: + * + * ```js + * partitionItems('bar_id', [ + * { bar_id: 7, include_extra_info: true }, + * { bar_id: 8, include_extra_info: false }, + * { bar_id: 9, include_extra_info: true }, + * ]) + * ``` + * + * Returns: + * `[ [ 0, 2 ], [ 1 ] ]` + * + * We'll refer to each element in the group as a "request ID". + */ + const requestGroups = partitionItems("film_id", keys); + + // Map the request groups to a list of Promises - one for each request + const groupedResults = await Promise.all( + requestGroups.map(async (requestIDs) => { + /** + * Select a set of elements in "keys", where all non-batch + * keys should be identical. + * + * We're going to smoosh all these together into one payload to + * send to the resource as a batch request! + */ + const requests = requestIDs.map((id) => keys[id]); + + // For now, we assume that the dataloader key should be the first argument to the resource + // @see https://github.com/Yelp/dataloader-codegen/issues/56 + const resourceArg = { + ..._.omit(requests[0], "film_id"), + ["film_ids"]: new Set(requests.map((k) => k["film_id"])), + }; + + // Any-type so this is re-assignable to the 'nestedPath' without TS complaining + let response: any = await (async (_resourceArg) => { + // Make a re-assignable variable so eslint doesn't complain + let __resourceArgs = [_resourceArg] as const; + + if ( + options && + options.resourceMiddleware && + options.resourceMiddleware.before + ) { + __resourceArgs = await options.resourceMiddleware.before( + ["getFilms"], + __resourceArgs, + ); + } + + let _response; + try { + // Finally, call the resource! + _response = await resources.getFilms(...__resourceArgs); + } catch (error) { + const errorHandler = + options && typeof options.errorHandler === "function" + ? options.errorHandler + : defaultErrorHandler; + + /** + * Apply some error handling to catch and handle all errors/rejected promises. errorHandler must return an Error object. * - * ```js - * partitionItems(['bar_id', 'properties'], [ - * { bar_id: 7, properties: ['property_1'], include_extra_info: true }, - * { bar_id: 8, properties: ['property_2'], include_extra_info: false }, - * { bar_id: 9, properties: ['property_3'], include_extra_info: true }, - * ]) - * ``` + * If we let errors here go unhandled here, it will bubble up and DataLoader will return an error for all + * keys requested. We can do slightly better by returning the error object for just the keys in this batch request. + */ + _response = await errorHandler(["getFilms"], error); + + // Check that errorHandler actually returned an Error object, and turn it into one if not. + if (!(_response instanceof Error)) { + _response = new Error( + [ + `[dataloader-codegen :: getFilms] Caught an error, but errorHandler did not return an Error object.`, + `Instead, got ${typeof _response}: ${util.inspect(_response)}`, + ].join(" "), + ); + } + } + + if ( + options && + options.resourceMiddleware && + options.resourceMiddleware.after + ) { + _response = await options.resourceMiddleware.after( + ["getFilms"], + _response, + ); + } + + return _response; + })(resourceArg); + + if (!(response instanceof Error)) { + } + + if (!(response instanceof Error)) { + if (!Array.isArray(response)) { + response = new Error( + [ + "[dataloader-codegen :: getFilms]", + "Expected response to be an array!", + ].join(" "), + ); + } + } + + if (!(response instanceof Error)) { + /** + * Check to see the resource contains the same number + * of items that we requested. If not, since there's + * no "reorderResultsByKey" specified for this resource, + * we don't know _which_ key's response is missing. Therefore + * it's unsafe to return the response array back. + */ + if (response.length !== requests.length) { + /** + * We must return errors for all keys in this group :( + */ + response = new BatchItemNotFoundError( + [ + `[dataloader-codegen :: getFilms] Resource returned ${response.length} items, but we requested ${requests.length} items.`, + "Add reorderResultsByKey to the config for this resource to be able to handle a partial response.", + ].join(" "), + ); + } + } + + /** + * If the resource returns an Error, we'll want to copy and + * return that error as the return value for every request in + * this group. + * + * This allow the error to be cached, and allows the rest of the + * requests made by this DataLoader to succeed. + * + * @see https://github.com/graphql/dataloader#caching-errors + */ + if (response instanceof Error) { + response = requestIDs.map((requestId) => { + /** + * Since we're returning an error object and not the + * expected return type from the resource, this element + * would be unsortable, since it wouldn't have the + * "reorderResultsByKey" attribute. * - * Returns: - * `[ [ 0, 2 ], [ 1 ] ]` + * Let's add it to the error object, as "reorderResultsByValue". * - * We'll refer to each element in the group as a "request ID". + * (If we didn't specify that this resource needs + * sorting, then this will be "null" and won't be used.) */ - const requestGroups = partitionItems(['film_id', 'properties'], keys); - - // Map the request groups to a list of Promises - one for each request - const groupedResults = await Promise.all( - requestGroups.map(async (requestIDs) => { - /** - * Select a set of elements in "keys", where all non-batch - * keys should be identical. - * - * We're going to smoosh all these together into one payload to - * send to the resource as a batch request! - */ - const requests = requestIDs.map((id) => keys[id]); - - // For now, we assume that the dataloader key should be the first argument to the resource - // @see https://github.com/Yelp/dataloader-codegen/issues/56 - const resourceArg = { - ..._.omit(requests[0], 'film_id'), - ['film_ids']: requests.map((k) => k['film_id']), - }; - - // Any-type so this is re-assignable to the 'nestedPath' without TS complaining - let response: any = await (async (_resourceArg) => { - // Make a re-assignable variable so eslint doesn't complain - let __resourceArgs: Parameters = [_resourceArg]; - - if (options && options.resourceMiddleware && options.resourceMiddleware.before) { - __resourceArgs = await options.resourceMiddleware.before( - ['getFilmsV2'], - __resourceArgs, - ); - } - - let _response; - try { - // Finally, call the resource! - _response = await resources.getFilmsV2(...__resourceArgs); - } catch (error) { - const errorHandler = - options && typeof options.errorHandler === 'function' - ? options.errorHandler - : defaultErrorHandler; - - /** - * Apply some error handling to catch and handle all errors/rejected promises. errorHandler must return an Error object. - * - * If we let errors here go unhandled here, it will bubble up and DataLoader will return an error for all - * keys requested. We can do slightly better by returning the error object for just the keys in this batch request. - */ - _response = await errorHandler(['getFilmsV2'], error); - - // Check that errorHandler actually returned an Error object, and turn it into one if not. - if (!(_response instanceof Error)) { - _response = new Error( - [ - `[dataloader-codegen :: getFilmsV2] Caught an error, but errorHandler did not return an Error object.`, - `Instead, got ${typeof _response}: ${util.inspect(_response)}`, - ].join(' '), - ); - } - } - - if (options && options.resourceMiddleware && options.resourceMiddleware.after) { - _response = await options.resourceMiddleware.after(['getFilmsV2'], _response); - } - - return _response; - })(resourceArg); - - if (!(response instanceof Error)) { - /** - * Un-nest the actual data from the resource return value. - * - * e.g. - * ```js - * { - * foos: [ - * { id: 1, value: 'hello' }, - * { id: 2, value: 'world' }, - * ] - * } - * ``` - * - * Becomes - * - * ```js - * [ - * { id: 1, value: 'hello' }, - * { id: 2, value: 'world' }, - * ] - * ``` - */ - response = _.get( - response, - 'properties', - new Error( - [ - '[dataloader-codegen :: getFilmsV2]', - 'Tried to un-nest the response from the resource, but', - ".get(response, 'properties')", - 'was empty!', - ].join(' '), - ), - ); - } - - if (!(response instanceof Error)) { - if (!Array.isArray(response)) { - response = new Error( - ['[dataloader-codegen :: getFilmsV2]', 'Expected response to be an array!'].join( - ' ', - ), - ); - } - } - - /** - * If the resource returns an Error, we'll want to copy and - * return that error as the return value for every request in - * this group. - * - * This allow the error to be cached, and allows the rest of the - * requests made by this DataLoader to succeed. - * - * @see https://github.com/graphql/dataloader#caching-errors - */ - if (response instanceof Error) { - response = requestIDs.map((requestId) => { - /** - * Since we're returning an error object and not the - * expected return type from the resource, this element - * would be unsortable, since it wouldn't have the - * "reorderResultsByKey" attribute. - * - * Let's add it to the error object, as "reorderResultsByValue". - * - * (If we didn't specify that this resource needs - * sorting, then this will be "null" and won't be used.) - */ - const reorderResultsByValue = null; - - // Tell flow that "response" is actually an error object. - // (This is so we can pass it as 'cause' to CaughtResourceError) - invariant(response instanceof Error, 'expected response to be an error'); - - return new CaughtResourceError( - `[dataloader-codegen :: getFilmsV2] Caught error during call to resource. Error: ${response.stack}`, - response, - reorderResultsByValue, - ); - }); - } - - return response; - }), + const reorderResultsByValue = null; + + return new CaughtResourceError( + `[dataloader-codegen :: getFilms] Caught error during call to resource. Error: ${response.stack}`, + response, + reorderResultsByValue, + ); + }); + } + + return response; + }), + ); + + return unPartitionResults(requestGroups, groupedResults); + }, + { + ...cacheKeyOptions, + }, + ), + getFilmsV2: new DataLoader< + Omit[0], "film_ids"> & { + film_id: NonNullable< + Parameters[0]["film_ids"] + >[0]; + }, + PromisedReturnType["properties"][0], + // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". + string + >( + /** + * =============================================================== + * Generated DataLoader: getFilmsV2 + * =============================================================== + * + * Resource Config: + * + * ```json + * { + * "docsLink": "https://swapi.info/documentation#films", + * "isBatchResource": true, + * "batchKey": "film_ids", + * "newKey": "film_id", + * "nestedPath": "properties", + * "propertyBatchKey": "properties", + * "responseKey": "id" + * } + * ``` + */ + async (keys) => { + invariant( + typeof resources.getFilmsV2 === "function", + [ + "[dataloader-codegen :: getFilmsV2] resources.getFilmsV2 is not a function.", + 'Did you pass in an instance of getFilmsV2 to "getLoaders"?', + ].join(" "), + ); + + /** + * When we have calls to .load with differing non batch key args, + * we'll need to send multiple requests to the underlying + * resource to make sure we get the right results back. + * + * Let's create the request groups, where each element in the + * group refers to a position in "keys" (i.e. a call to .load) + * + * Example: + * + * ```js + * partitionItems(['bar_id', 'properties'], [ + * { bar_id: 7, properties: ['property_1'], include_extra_info: true }, + * { bar_id: 8, properties: ['property_2'], include_extra_info: false }, + * { bar_id: 9, properties: ['property_3'], include_extra_info: true }, + * ]) + * ``` + * + * Returns: + * `[ [ 0, 2 ], [ 1 ] ]` + * + * We'll refer to each element in the group as a "request ID". + */ + const requestGroups = partitionItems(["film_id", "properties"], keys); + + // Map the request groups to a list of Promises - one for each request + const groupedResults = await Promise.all( + requestGroups.map(async (requestIDs) => { + /** + * Select a set of elements in "keys", where all non-batch + * keys should be identical. + * + * We're going to smoosh all these together into one payload to + * send to the resource as a batch request! + */ + const requests = requestIDs.map((id) => keys[id]); + + // For now, we assume that the dataloader key should be the first argument to the resource + // @see https://github.com/Yelp/dataloader-codegen/issues/56 + const resourceArg = { + ..._.omit(requests[0], "film_id"), + ["film_ids"]: requests.map((k) => k["film_id"]), + }; + + // Any-type so this is re-assignable to the 'nestedPath' without TS complaining + let response: any = await (async (_resourceArg) => { + // Make a re-assignable variable so eslint doesn't complain + let __resourceArgs = [_resourceArg] as const; + + if ( + options && + options.resourceMiddleware && + options.resourceMiddleware.before + ) { + __resourceArgs = await options.resourceMiddleware.before( + ["getFilmsV2"], + __resourceArgs, ); + } + + let _response; + try { + // Finally, call the resource! + _response = await resources.getFilmsV2(...__resourceArgs); + } catch (error) { + const errorHandler = + options && typeof options.errorHandler === "function" + ? options.errorHandler + : defaultErrorHandler; /** - * The resource might contain less number of items that we requested. - * We need the value of batchKey and propertyBatchKey in requests group to help us split the results - * back up into the order that they were requested. + * Apply some error handling to catch and handle all errors/rejected promises. errorHandler must return an Error object. + * + * If we let errors here go unhandled here, it will bubble up and DataLoader will return an error for all + * keys requested. We can do slightly better by returning the error object for just the keys in this batch request. */ - const batchKeyPartition = getBatchKeysForPartitionItems('film_id', ['film_id', 'properties'], keys); - const propertyBatchKeyPartiion = getBatchKeysForPartitionItems( - 'properties', - ['film_id', 'properties'], - keys, + _response = await errorHandler(["getFilmsV2"], error); + + // Check that errorHandler actually returned an Error object, and turn it into one if not. + if (!(_response instanceof Error)) { + _response = new Error( + [ + `[dataloader-codegen :: getFilmsV2] Caught an error, but errorHandler did not return an Error object.`, + `Instead, got ${typeof _response}: ${util.inspect(_response)}`, + ].join(" "), + ); + } + } + + if ( + options && + options.resourceMiddleware && + options.resourceMiddleware.after + ) { + _response = await options.resourceMiddleware.after( + ["getFilmsV2"], + _response, ); - return unPartitionResultsByBatchKeyPartition( - 'film_id', - 'properties', - 'id', - batchKeyPartition, - propertyBatchKeyPartiion, - requestGroups, - groupedResults, + } + + return _response; + })(resourceArg); + + if (!(response instanceof Error)) { + /** + * Un-nest the actual data from the resource return value. + * + * e.g. + * ```js + * { + * foos: [ + * { id: 1, value: 'hello' }, + * { id: 2, value: 'world' }, + * ] + * } + * ``` + * + * Becomes + * + * ```js + * [ + * { id: 1, value: 'hello' }, + * { id: 2, value: 'world' }, + * ] + * ``` + */ + response = _.get( + response, + "properties", + new Error( + [ + "[dataloader-codegen :: getFilmsV2]", + "Tried to un-nest the response from the resource, but", + ".get(response, 'properties')", + "was empty!", + ].join(" "), + ), + ); + } + + if (!(response instanceof Error)) { + if (!Array.isArray(response)) { + response = new Error( + [ + "[dataloader-codegen :: getFilmsV2]", + "Expected response to be an array!", + ].join(" "), ); - }, - { - ...cacheKeyOptions, - }, - ), - getRoot: new DataLoader< - Parameters[0], - PromisedReturnType, - // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". - string - >( + } + } + /** - * =============================================================== - * Generated DataLoader: getRoot - * =============================================================== + * If the resource returns an Error, we'll want to copy and + * return that error as the return value for every request in + * this group. * - * Resource Config: + * This allow the error to be cached, and allows the rest of the + * requests made by this DataLoader to succeed. * - * ```json - * { - * "docsLink": "https://swapi.dev/documentation#root", - * "isBatchResource": false - * } - * ``` + * @see https://github.com/graphql/dataloader#caching-errors */ - async (keys) => { - const responses = await Promise.all( - keys.map(async (key) => { - invariant( - typeof resources.getRoot === 'function', - [ - '[dataloader-codegen :: getRoot] resources.getRoot is not a function.', - 'Did you pass in an instance of getRoot to "getLoaders"?', - ].join(' '), - ); - - // For now, we assume that the dataloader key should be the first argument to the resource - // @see https://github.com/Yelp/dataloader-codegen/issues/56 - const resourceArg = key; - - return await (async (_resourceArg) => { - // Make a re-assignable variable so eslint doesn't complain - let __resourceArgs: Parameters = [_resourceArg]; - - if (options && options.resourceMiddleware && options.resourceMiddleware.before) { - __resourceArgs = await options.resourceMiddleware.before(['getRoot'], __resourceArgs); - } - - let _response; - try { - // Finally, call the resource! - _response = await resources.getRoot(...__resourceArgs); - } catch (error) { - const errorHandler = - options && typeof options.errorHandler === 'function' - ? options.errorHandler - : defaultErrorHandler; - - /** - * Apply some error handling to catch and handle all errors/rejected promises. errorHandler must return an Error object. - * - * If we let errors here go unhandled here, it will bubble up and DataLoader will return an error for all - * keys requested. We can do slightly better by returning the error object for just the keys in this batch request. - */ - _response = await errorHandler(['getRoot'], error); - - // Check that errorHandler actually returned an Error object, and turn it into one if not. - if (!(_response instanceof Error)) { - _response = new Error( - [ - `[dataloader-codegen :: getRoot] Caught an error, but errorHandler did not return an Error object.`, - `Instead, got ${typeof _response}: ${util.inspect(_response)}`, - ].join(' '), - ); - } - } - - if (options && options.resourceMiddleware && options.resourceMiddleware.after) { - _response = await options.resourceMiddleware.after(['getRoot'], _response); - } - - return _response; - })(resourceArg); - }), + if (response instanceof Error) { + response = requestIDs.map((requestId) => { + /** + * Since we're returning an error object and not the + * expected return type from the resource, this element + * would be unsortable, since it wouldn't have the + * "reorderResultsByKey" attribute. + * + * Let's add it to the error object, as "reorderResultsByValue". + * + * (If we didn't specify that this resource needs + * sorting, then this will be "null" and won't be used.) + */ + const reorderResultsByValue = null; + + return new CaughtResourceError( + `[dataloader-codegen :: getFilmsV2] Caught error during call to resource. Error: ${response.stack}`, + response, + reorderResultsByValue, + ); + }); + } + + return response; + }), + ); + + /** + * The resource might contain less number of items that we requested. + * We need the value of batchKey and propertyBatchKey in requests group to help us split the results + * back up into the order that they were requested. + */ + const batchKeyPartition = getBatchKeysForPartitionItems( + "film_id", + ["film_id", "properties"], + keys, + ); + const propertyBatchKeyPartiion = getBatchKeysForPartitionItems( + "properties", + ["film_id", "properties"], + keys, + ); + return unPartitionResultsByBatchKeyPartition( + "film_id", + "properties", + "id", + batchKeyPartition, + propertyBatchKeyPartiion, + requestGroups, + groupedResults, + ); + }, + { + ...cacheKeyOptions, + }, + ), + getRoot: new DataLoader< + Parameters[0], + PromisedReturnType, + // This third argument is the cache key type. Since we use objectHash in cacheKeyOptions, this is "string". + string + >( + /** + * =============================================================== + * Generated DataLoader: getRoot + * =============================================================== + * + * Resource Config: + * + * ```json + * { + * "docsLink": "https://swapi.info/documentation#root", + * "isBatchResource": false + * } + * ``` + */ + async (keys) => { + const responses = await Promise.all( + keys.map(async (key) => { + invariant( + typeof resources.getRoot === "function", + [ + "[dataloader-codegen :: getRoot] resources.getRoot is not a function.", + 'Did you pass in an instance of getRoot to "getLoaders"?', + ].join(" "), + ); + + // For now, we assume that the dataloader key should be the first argument to the resource + // @see https://github.com/Yelp/dataloader-codegen/issues/56 + const resourceArg = key; + + return await (async (_resourceArg) => { + // Make a re-assignable variable so eslint doesn't complain + let __resourceArgs = [_resourceArg] as const; + + if ( + options && + options.resourceMiddleware && + options.resourceMiddleware.before + ) { + __resourceArgs = await options.resourceMiddleware.before( + ["getRoot"], + __resourceArgs, ); + } + + let _response; + try { + // Finally, call the resource! + _response = await resources.getRoot(...__resourceArgs); + } catch (error) { + const errorHandler = + options && typeof options.errorHandler === "function" + ? options.errorHandler + : defaultErrorHandler; - return responses; - }, - { - ...cacheKeyOptions, - }, - ), - }); + /** + * Apply some error handling to catch and handle all errors/rejected promises. errorHandler must return an Error object. + * + * If we let errors here go unhandled here, it will bubble up and DataLoader will return an error for all + * keys requested. We can do slightly better by returning the error object for just the keys in this batch request. + */ + _response = await errorHandler(["getRoot"], error); + + // Check that errorHandler actually returned an Error object, and turn it into one if not. + if (!(_response instanceof Error)) { + _response = new Error( + [ + `[dataloader-codegen :: getRoot] Caught an error, but errorHandler did not return an Error object.`, + `Instead, got ${typeof _response}: ${util.inspect(_response)}`, + ].join(" "), + ); + } + } + + if ( + options && + options.resourceMiddleware && + options.resourceMiddleware.after + ) { + _response = await options.resourceMiddleware.after( + ["getRoot"], + _response, + ); + } + + return _response; + })(resourceArg); + }), + ); + + return responses; + }, + { + ...cacheKeyOptions, + }, + ), + }); } diff --git a/examples/swapi/swapi.dataloader-config.yaml b/examples/swapi/swapi.dataloader-config.yaml index 35e986d..f8adc5b 100644 --- a/examples/swapi/swapi.dataloader-config.yaml +++ b/examples/swapi/swapi.dataloader-config.yaml @@ -8,28 +8,28 @@ typings: resources: getPlanets: - docsLink: https://swapi.dev/documentation#planets + docsLink: https://swapi.info/documentation#planets isBatchResource: true batchKey: planet_ids newKey: planet_id getPeople: - docsLink: https://swapi.dev/documentation#people + docsLink: https://swapi.info/documentation#people isBatchResource: true batchKey: people_ids newKey: person_id getVehicles: - docsLink: https://swapi.dev/documentation#vehicles + docsLink: https://swapi.info/documentation#vehicles isBatchResource: true batchKey: vehicle_ids newKey: vehicle_id getFilms: - docsLink: https://swapi.dev/documentation#films + docsLink: https://swapi.info/documentation#films isBatchResource: true batchKey: film_ids newKey: film_id isBatchKeyASet: true getFilmsV2: - docsLink: https://swapi.dev/documentation#films + docsLink: https://swapi.info/documentation#films isBatchResource: true batchKey: film_ids newKey: film_id @@ -37,5 +37,5 @@ resources: propertyBatchKey: properties responseKey: id getRoot: - docsLink: https://swapi.dev/documentation#root + docsLink: https://swapi.info/documentation#root isBatchResource: false diff --git a/examples/swapi/swapi.ts b/examples/swapi/swapi.ts index fe8fff3..b457864 100644 --- a/examples/swapi/swapi.ts +++ b/examples/swapi/swapi.ts @@ -74,7 +74,7 @@ export type SWAPI_Vehicle = Readonly<{ key: string; }>; -type SWAPI_Root = Readonly<{ +export type SWAPI_Root = Readonly<{ people: string; planets: string; films: string; @@ -99,22 +99,26 @@ export default function (): SWAPIClientlibTypes { return { getPlanets: ({ planet_ids }) => Promise.all( - planet_ids.map((id) => fetch(new URL(`planets/${id}`, SWAPI_URL).toString()).then((res) => res.json())), + planet_ids.map((id) => + fetch(new URL(`planets/${id}`, SWAPI_URL).toString()).then((res) => res.json() as any), + ), ), getPeople: ({ people_ids }) => Promise.all( - people_ids.map((id) => fetch(new URL(`people/${id}`, SWAPI_URL).toString()).then((res) => res.json())), + people_ids.map((id) => + fetch(new URL(`people/${id}`, SWAPI_URL).toString()).then((res) => res.json() as any), + ), ), getVehicles: ({ vehicle_ids }) => Promise.all( vehicle_ids.map((id) => - fetch(new URL(`vehicles/${id}`, SWAPI_URL).toString()).then((res) => res.json()), + fetch(new URL(`vehicles/${id}`, SWAPI_URL).toString()).then((res) => res.json() as any), ), ), getFilms: ({ film_ids }) => Promise.all( Array.from(film_ids).map((id) => - fetch(new URL(`films/${id}`, SWAPI_URL).toString()).then((res) => res.json()), + fetch(new URL(`films/${id}`, SWAPI_URL).toString()).then((res) => res.json() as any), ), ), getFilmsV2: ({ film_ids, properties }) => { @@ -130,6 +134,6 @@ export default function (): SWAPIClientlibTypes { ], }); }, - getRoot: ({}) => fetch(SWAPI_URL).then((res) => res.json()), + getRoot: ({}) => fetch(SWAPI_URL).then((res) => res.json() as any), }; } diff --git a/package.json b/package.json index 62b8482..65aa8c0 100644 --- a/package.json +++ b/package.json @@ -17,9 +17,9 @@ "license": "MIT", "scripts": { "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js", + "test:exampleTypes": "tsc --project ./tsconfig.testExampleTypes.json", "build": "tsc", - "prepublishOnly": "make build", - "typecheck": "tsc --project tsconfig.json" + "prepublishOnly": "make build" }, "bin": { "dataloader-codegen": "./lib/index.js" @@ -34,6 +34,7 @@ "@types/node": "^24.0.1", "@types/object-hash": "^3.0.0", "@types/yargs": "^13.0.3", + "expect-type": "^1.2.1", "jest": "^29.7.0", "regenerator-runtime": "^0.13.3", "tmp-promise": "^2.0.2", diff --git a/src/genType.ts b/src/genType.ts index e5cd50d..07aa885 100644 --- a/src/genType.ts +++ b/src/genType.ts @@ -50,6 +50,8 @@ export function getLoaderTypeKey(resourceConfig: ResourceConfig, resourcePath: R } export function getLoaderTypeVal(resourceConfig: ResourceConfig, resourcePath: ReadonlyArray) { + // TODO: We assume that the resource accepts a single dict argument. Let's + // make this configurable to handle resources that use seperate arguments. let retVal = `PromisedReturnType<${getResourceTypeReference(resourceConfig, resourcePath)}>`; if (resourceConfig.isBatchResource) { diff --git a/src/implementation.ts b/src/implementation.ts index e6c5e67..b807c9f 100644 --- a/src/implementation.ts +++ b/src/implementation.ts @@ -33,7 +33,7 @@ function callResource(resourceConfig: ResourceConfig, resourcePath: ReadonlyArra return ` (async _resourceArg => { // Make a re-assignable variable so eslint doesn't complain - let __resourceArgs: Parameters = [_resourceArg]; + let __resourceArgs = [_resourceArg] as const; if (options && options.resourceMiddleware && options.resourceMiddleware.before) { __resourceArgs = await options.resourceMiddleware.before( @@ -97,9 +97,14 @@ function batchLoaderLogic(resourceConfig: BatchResourceConfig, resourcePath: Rea const requests = requestIDs.map(id => keys[id]); ${(() => { - const { batchKey, newKey, commaSeparatedBatchKey } = resourceConfig; + const { batchKey, newKey, commaSeparatedBatchKey, isBatchKeyASet } = resourceConfig; - let batchKeyParam = `['${batchKey}']: requests.map(k => k['${newKey}'])`; + let requestsMap = `requests.map(k => k['${newKey}'])`; + if (isBatchKeyASet === true) { + requestsMap = `new Set(${requestsMap})`; + } + + let batchKeyParam = `['${batchKey}']: ${requestsMap}`; if (commaSeparatedBatchKey === true) { batchKeyParam = `${batchKeyParam}.join(',')`; } diff --git a/testExampleTypes/swapi.ts b/testExampleTypes/swapi.ts new file mode 100644 index 0000000..815b5be --- /dev/null +++ b/testExampleTypes/swapi.ts @@ -0,0 +1,27 @@ +/** + * This file is used to check the compile-time generated types of our swapi example. + * It's useful to make sure that the types generated by the codegen process match the expected types of the resources and loaders. + */ +import { expectTypeOf } from 'expect-type'; +import type { LoadersType } from '../examples/swapi/swapi-loaders'; +import type { SWAPI_Planet, SWAPI_Root } from '../examples/swapi/swapi'; + +// Check that each of our resources has a corresponding loader +expectTypeOf().toEqualTypeOf< + 'getPlanets' | 'getPeople' | 'getVehicles' | 'getFilms' | 'getFilmsV2' | 'getRoot' +>(); + +// Check that the param type of a resource and an unbatched dataloader matches +expectTypeOf>().toEqualTypeOf<[args: {}]>(); + +// Check that the return type of a resource and an unbatched dataloader matches +expectTypeOf>>().toEqualTypeOf(); + +// Check that the param type of a resource and a batches dataloader matches +expectTypeOf>().branded.toEqualTypeOf<[args: { planet_id: number }]>(); + +// Check that the return type of a resource and a batched dataloader matches +expectTypeOf>>().toEqualTypeOf(); + +// Check that the param type of isBatchKeyASet: true matches +expectTypeOf>().branded.toEqualTypeOf<[args: { film_id: number }]>(); diff --git a/tsconfig.testExampleTypes.json b/tsconfig.testExampleTypes.json new file mode 100644 index 0000000..8dc5c80 --- /dev/null +++ b/tsconfig.testExampleTypes.json @@ -0,0 +1,8 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "noEmit": true, + "rootDir": "." + }, + "include": ["testExampleTypes/**/*.ts"] +} From 8a7964dd5d288cb965a2471f0ab3bf42f082df29 Mon Sep 17 00:00:00 2001 From: Jack Guy Date: Fri, 27 Jun 2025 18:28:55 -0500 Subject: [PATCH 3/3] Update test.yml Test using node 22 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cc5be4f..507bb88 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,6 +11,6 @@ jobs: python-version: 3.8 - uses: actions/setup-node@v1 with: - node-version: '12.x' + node-version: '22.x' - run: pip3 install --user virtualenv - run: make test