@decaf-ts/for-nest 0.1.12 → 0.1.13

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 +1,2 @@
1
- export default function nest(): import("commander").Command;
1
+ import { Command } from "commander";
2
+ export default function nest(): Command;
@@ -1 +1,2 @@
1
- export default function nest(): import("commander").Command;
1
+ import { Command } from "commander";
2
+ export default function nest(): Command;
@@ -35,5 +35,5 @@ export * from "./request";
35
35
  * @constant
36
36
  * @type {string}
37
37
  */
38
- export declare const VERSION = "0.1.11";
38
+ export declare const VERSION = "0.1.12";
39
39
  export declare const PACKAGE_NAME = "@decaf-ts/for-nest";
package/lib/esm/index.js CHANGED
@@ -36,7 +36,7 @@ export * from "./request/index.js";
36
36
  * @constant
37
37
  * @type {string}
38
38
  */
39
- export const VERSION = "0.1.11";
39
+ export const VERSION = "0.1.12";
40
40
  export const PACKAGE_NAME = "@decaf-ts/for-nest";
41
41
  Metadata.registerLibrary(PACKAGE_NAME, VERSION);
42
42
  //# sourceMappingURL=index.js.map
package/lib/index.cjs CHANGED
@@ -53,7 +53,7 @@ __exportStar(require("./request/index.cjs"), exports);
53
53
  * @constant
54
54
  * @type {string}
55
55
  */
56
- exports.VERSION = "0.1.11";
56
+ exports.VERSION = "0.1.12";
57
57
  exports.PACKAGE_NAME = "@decaf-ts/for-nest";
58
58
  decoration_1.Metadata.registerLibrary(exports.PACKAGE_NAME, exports.VERSION);
59
59
  //# sourceMappingURL=index.js.map
package/lib/index.d.ts CHANGED
@@ -35,5 +35,5 @@ export * from "./request";
35
35
  * @constant
36
36
  * @type {string}
37
37
  */
38
- export declare const VERSION = "0.1.11";
38
+ export declare const VERSION = "0.1.12";
39
39
  export declare const PACKAGE_NAME = "@decaf-ts/for-nest";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@decaf-ts/for-nest",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "NestJS decaf integration",
5
5
  "type": "module",
6
6
  "exports": {
@@ -8,7 +8,7 @@
8
8
  "import": "./lib/esm/index.js"
9
9
  },
10
10
  "bin": {
11
- "for-nest": "./lib/bin/cli.cjs"
11
+ "for-nest": "lib/bin/cli.cjs"
12
12
  },
13
13
  "types": "lib/index.d.ts",
14
14
  "scripts": {
@@ -48,7 +48,8 @@
48
48
  "repo:tests": "codex exec \"$(cat ./.codex/prompts/bulk-tests.md)\nbase_path is ./ and coverage is 95%\" -s workspace-write",
49
49
  "repo:readme": "codex exec \"$(cat ./.codex/prompts/update-readme.md)\nbase_path is ./\"",
50
50
  "repo:pr": "npm run repo:doc && npm run repo:tests && npm run repo:readme",
51
- "sync-codex": "./bin/sync-codex.sh"
51
+ "sync-codex": "./bin/sync-codex.sh",
52
+ "cli": "node ./lib/bin/cli.cjs"
52
53
  },
53
54
  "repository": {
54
55
  "type": "git",
@@ -88,6 +89,7 @@
88
89
  "@nestjs/swagger": "^11.2.0",
89
90
  "@nestjs/testing": "^11.0.1",
90
91
  "@types/lodash": "^4.17.20",
92
+ "commander": "^13.1.0",
91
93
  "supertest": "^7.1.4"
92
94
  },
93
95
  "dependencies": {