@rsdk/nest-tools 3.6.0 → 4.0.0-next.11

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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,28 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [4.0.0-next.11](https://github.com/R-Vision/rsdk/compare/v4.0.0-next.10...v4.0.0-next.11) (2023-11-29)
7
+
8
+ **Note:** Version bump only for package @rsdk/nest-tools
9
+
10
+ ## [4.0.0-next.10](https://github.com/R-Vision/rsdk/compare/v4.0.0-next.9...v4.0.0-next.10) (2023-11-29)
11
+
12
+ **Note:** Version bump only for package @rsdk/nest-tools
13
+
14
+ ## [4.0.0-next.9](https://github.com/R-Vision/rsdk/compare/v4.0.0-next.8...v4.0.0-next.9) (2023-11-29)
15
+
16
+ **Note:** Version bump only for package @rsdk/nest-tools
17
+
18
+ ## [4.0.0-next.4](https://github.com/R-Vision/rsdk/compare/v4.0.0-next.3...v4.0.0-next.4) (2023-11-12)
19
+
20
+ ### Bug Fixes
21
+
22
+ * some more peer dependencies ([3617dcb](https://github.com/R-Vision/rsdk/commit/3617dcbfdd08231e8f334ff35ac46eb99d810567))
23
+
24
+ ## [4.0.0-next.2](https://github.com/R-Vision/rsdk/compare/v4.0.0-next.1...v4.0.0-next.2) (2023-11-10)
25
+
26
+ **Note:** Version bump only for package @rsdk/nest-tools
27
+
6
28
  ## [3.6.0](https://github.com/R-Vision/rsdk/compare/v3.6.0-next.8...v3.6.0) (2023-10-20)
7
29
 
8
30
  **Note:** Version bump only for package @rsdk/nest-tools
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ import 'reflect-metadata';
1
2
  export { NestDefinitionType } from './constants';
2
3
  export { NestDefinitionIterator } from './nest-definition.iterator';
3
4
  export { NestDefinition } from './nest-definition';
package/dist/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.Assert = exports.NestDefinition = exports.NestDefinitionIterator = exports.NestDefinitionType = void 0;
4
+ require("reflect-metadata");
4
5
  var constants_1 = require("./constants");
5
6
  Object.defineProperty(exports, "NestDefinitionType", { enumerable: true, get: function () { return constants_1.NestDefinitionType; } });
6
7
  var nest_definition_iterator_1 = require("./nest-definition.iterator");
package/package.json CHANGED
@@ -1,14 +1,18 @@
1
1
  {
2
2
  "name": "@rsdk/nest-tools",
3
- "version": "3.6.0",
3
+ "version": "4.0.0-next.11",
4
4
  "license": "Apache License 2.0",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
8
8
  "main": "dist/index.js",
9
9
  "peerDependencies": {
10
- "@nestjs/common": "^10.1.3",
11
- "@nestjs/core": "^10.1.3"
10
+ "@nestjs/common": "^10.0.0",
11
+ "@nestjs/core": "^10.0.0",
12
+ "reflect-metadata": "^0.1.13"
12
13
  },
13
- "gitHead": "cc75fb4595bd49e877974f6eeeef66f30743011c"
14
+ "dependencies": {
15
+ "rxjs": "^7.8.1"
16
+ },
17
+ "gitHead": "f1339ae22d78b41382b82a0feabacd49be19acd2"
14
18
  }
package/src/index.ts CHANGED
@@ -1,3 +1,5 @@
1
+ import 'reflect-metadata';
2
+
1
3
  export { NestDefinitionType } from './constants';
2
4
 
3
5
  export { NestDefinitionIterator } from './nest-definition.iterator';