@nestjs/common 7.6.4 → 7.6.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,7 @@
1
1
  import { ShutdownSignal } from '../enums/shutdown-signal.enum';
2
2
  import { LoggerService, LogLevel } from '../services/logger.service';
3
3
  import { Abstract } from './abstract.interface';
4
+ import { DynamicModule } from './modules';
4
5
  import { Type } from './type.interface';
5
6
  /**
6
7
  * Interface defining NestApplicationContext.
@@ -12,7 +13,7 @@ export interface INestApplicationContext {
12
13
  * Allows navigating through the modules tree, for example, to pull out a specific instance from the selected module.
13
14
  * @returns {INestApplicationContext}
14
15
  */
15
- select<T>(module: Type<T>): INestApplicationContext;
16
+ select<T>(module: Type<T> | DynamicModule): INestApplicationContext;
16
17
  /**
17
18
  * Retrieves an instance of either injectable or controller, otherwise, throws exception.
18
19
  * @returns {TResult}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nestjs/common",
3
- "version": "7.6.4",
3
+ "version": "7.6.5",
4
4
  "description": "Nest - modern, fast, powerful node.js web framework (@common)",
5
5
  "author": "Kamil Mysliwiec",
6
6
  "homepage": "https://nestjs.com",
@@ -17,7 +17,7 @@
17
17
  },
18
18
  "license": "MIT",
19
19
  "dependencies": {
20
- "axios": "0.21.0",
20
+ "axios": "0.21.1",
21
21
  "iterare": "1.2.1",
22
22
  "tslib": "2.0.3",
23
23
  "uuid": "8.3.2"