tsoa-next 7.1.0 → 7.2.1
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/README.MD +17 -10
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
package/README.MD
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<a href="https://
|
|
2
|
+
<a href="https://vannadii.github.io/tsoa-next/" target="_blank" rel="noreferrer">
|
|
3
3
|
<h1>tsoa-next</h1>
|
|
4
4
|
</a>
|
|
5
5
|
Pronounced so·uh
|
|
@@ -11,6 +11,12 @@ OpenAPI-compliant REST APIs using TypeScript and Node
|
|
|
11
11
|
|
|
12
12
|
</div>
|
|
13
13
|
|
|
14
|
+
## Project Lineage
|
|
15
|
+
|
|
16
|
+
`tsoa-next` continues the original [`tsoa`](https://github.com/lukeautry/tsoa) project.
|
|
17
|
+
The original repository and its contributors established the stable TypeScript-first and OpenAPI-first foundation this work builds on.
|
|
18
|
+
Where historical release notes or migration references still point upstream, they are kept intentionally for provenance.
|
|
19
|
+
|
|
14
20
|
## Goal
|
|
15
21
|
|
|
16
22
|
- TypeScript controllers and models as the single source of truth for your API
|
|
@@ -36,22 +42,23 @@ OpenAPI-compliant REST APIs using TypeScript and Node
|
|
|
36
42
|
## Getting Started
|
|
37
43
|
|
|
38
44
|
- Requirements:
|
|
39
|
-
- Node.js
|
|
40
|
-
- npm
|
|
41
|
-
-
|
|
42
|
-
- [
|
|
43
|
-
- [
|
|
45
|
+
- Node.js 22 or newer
|
|
46
|
+
- npm 10 or newer
|
|
47
|
+
- We verify support across the previous LTS, current LTS, and Node vNext in CI
|
|
48
|
+
- [Documentation](https://vannadii.github.io/tsoa-next/docs/)
|
|
49
|
+
- [API Reference](https://vannadii.github.io/tsoa-next/reference/)
|
|
50
|
+
- [Getting started guide](https://vannadii.github.io/tsoa-next/docs/getting-started)
|
|
44
51
|
|
|
45
52
|
## Examples
|
|
46
53
|
|
|
47
|
-
Check out the [guides](https://
|
|
54
|
+
Check out the [guides](https://vannadii.github.io/tsoa-next/docs/)
|
|
48
55
|
|
|
49
|
-
See example controllers in [the tests](tests/fixtures/controllers)
|
|
56
|
+
See example controllers in [the tests](https://github.com/VannaDii/tsoa-next/tree/main/tests/fixtures/controllers)
|
|
50
57
|
|
|
51
|
-
See example models in [the tests](tests/fixtures/testModel.ts)
|
|
58
|
+
See example models in [the tests](https://github.com/VannaDii/tsoa-next/blob/main/tests/fixtures/testModel.ts)
|
|
52
59
|
|
|
53
60
|
## Help wanted
|
|
54
61
|
|
|
55
62
|
### Contributing code
|
|
56
63
|
|
|
57
|
-
To contribute (via a PR), please first see the [Contributing Guide](https://github.com/
|
|
64
|
+
To contribute (via a PR), please first see the [Contributing Guide](https://github.com/VannaDii/tsoa-next/blob/main/docs/CONTRIBUTING.md)
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -14,6 +14,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("@tsoa-next/runtime"), exports);
|
|
18
17
|
__exportStar(require("@tsoa-next/cli"), exports);
|
|
18
|
+
__exportStar(require("@tsoa-next/runtime"), exports);
|
|
19
19
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,iDAA8B;AAC9B,qDAAkC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tsoa-next",
|
|
3
|
-
"version": "7.1
|
|
3
|
+
"version": "7.2.1",
|
|
4
4
|
"description": "Build swagger-compliant REST APIs using TypeScript and Node",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"typings": "./dist/index.d.ts",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"author": "Luke Autry <lukeautry@gmail.com> (http://www.lukeautry.com)",
|
|
32
32
|
"license": "MIT",
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@tsoa-next/cli": "7.1
|
|
35
|
-
"@tsoa-next/runtime": "7.1
|
|
34
|
+
"@tsoa-next/cli": "7.2.1",
|
|
35
|
+
"@tsoa-next/runtime": "7.2.1"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@types/node": "24.12.0",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"url": "https://github.com/VannaDii/tsoa-next.git"
|
|
44
44
|
},
|
|
45
45
|
"engines": {
|
|
46
|
-
"node": ">=
|
|
47
|
-
"npm": ">=
|
|
46
|
+
"node": ">=22.0.0",
|
|
47
|
+
"npm": ">=10.0.0"
|
|
48
48
|
},
|
|
49
49
|
"engineStrict": true,
|
|
50
50
|
"publishConfig": {
|