@rxap/plugin-nestjs 20.2.0-dev.0 → 20.2.0-dev.3

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,22 @@
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
+ # [20.2.0-dev.3](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@20.2.0-dev.2...@rxap/plugin-nestjs@20.2.0-dev.3) (2025-09-10)
7
+
8
+ **Note:** Version bump only for package @rxap/plugin-nestjs
9
+
10
+ # [20.2.0-dev.2](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@20.2.0-dev.1...@rxap/plugin-nestjs@20.2.0-dev.2) (2025-09-01)
11
+
12
+ ### Features
13
+
14
+ - **nestjs:** add schematic for dynamic configuration module generator ([a96504c](https://gitlab.com/rxap/packages/commit/a96504c67b95cddf7858d3a3dc6d9007f063d56d))
15
+
16
+ # [20.2.0-dev.1](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@20.2.0-dev.0...@rxap/plugin-nestjs@20.2.0-dev.1) (2025-09-01)
17
+
18
+ ### Bug Fixes
19
+
20
+ - update package groups ([a68f799](https://gitlab.com/rxap/packages/commit/a68f799f406a01e034439d036081fbb17b996f20))
21
+
6
22
  # [20.2.0-dev.0](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@20.1.5-dev.1...@rxap/plugin-nestjs@20.2.0-dev.0) (2025-09-01)
7
23
 
8
24
  ### Features
package/generators.json CHANGED
@@ -136,6 +136,11 @@
136
136
  "factory": "./src/generators/frontend-microservice/index",
137
137
  "schema": "./src/generators/frontend-microservice/schema.json",
138
138
  "description": "frontend-microservice generator"
139
+ },
140
+ "dynamic-configuration-module": {
141
+ "factory": "./src/generators/dynamic-configuration-module/index",
142
+ "schema": "./src/generators/dynamic-configuration-module/schema.json",
143
+ "description": "Extends the module with the dynamic configuration module pattern"
139
144
  }
140
145
  }
141
146
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "20.2.0-dev.0",
2
+ "version": "20.2.0-dev.3",
3
3
  "name": "@rxap/plugin-nestjs",
4
4
  "description": "This npm package provides generators and executors for NestJS applications within an Nx workspace. It helps streamline the setup of NestJS projects with features like Swagger, Sentry, health indicators, and standardized configurations. It also includes executors for generating package.json files and Swagger documentation.\n",
5
5
  "license": "GPL-3.0-or-later",
@@ -10,7 +10,7 @@
10
10
  "@rxap/node-utilities": "^1.3.11-dev.0",
11
11
  "@rxap/plugin-application": "^20.0.5-dev.0",
12
12
  "@rxap/plugin-library": "^20.2.2-dev.1",
13
- "@rxap/plugin-open-api": "^20.1.1-dev.2",
13
+ "@rxap/plugin-open-api": "^20.1.1-dev.3",
14
14
  "@rxap/plugin-utilities": "^20.0.5-dev.0",
15
15
  "@rxap/ts-morph": "^1.6.0-dev.0",
16
16
  "@rxap/utilities": "^16.4.5-dev.0",
@@ -55,7 +55,7 @@
55
55
  },
56
56
  "schematics": "./generators.json",
57
57
  "type": "commonjs",
58
- "gitHead": "431b4c9f4e367db6ef8a07c59d8fc251962141e5",
58
+ "gitHead": "13e1d5e231b3fa3703c6a5acdefd2ea7ce2cb8d7",
59
59
  "exports": {
60
60
  "./package.json": "./package.json",
61
61
  ".": {
@@ -0,0 +1,2 @@
1
+ declare const schematic: (generatorOptions: import("./schema").DynamicConfigurationModuleGeneratorSchema) => (tree: any, context: any) => Promise<any>;
2
+ export default schematic;
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const devkit_1 = require("@nx/devkit");
4
+ const generator_1 = require("./generator");
5
+ const schematic = (0, devkit_1.convertNxGenerator)(generator_1.default);
6
+ exports.default = schematic;
7
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../packages/plugin/nestjs/src/generators/dynamic-configuration-module/index.ts"],"names":[],"mappings":";;AAAA,uCAAgD;AAChD,2CAAoC;AAEpC,MAAM,SAAS,GAAG,IAAA,2BAAkB,EAAC,mBAAS,CAAC,CAAC;AAChD,kBAAe,SAAS,CAAC"}