@twin.org/ts-to-openapi 0.0.2-next.3 → 0.0.2-next.4

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.
@@ -1055,7 +1055,7 @@ class CLI extends cliCore.CLIBase {
1055
1055
  return this.execute({
1056
1056
  title: "TWIN TypeScript To OpenAPI",
1057
1057
  appName: "ts-to-openapi",
1058
- version: "0.0.2-next.3", // x-release-please-version
1058
+ version: "0.0.2-next.4", // x-release-please-version
1059
1059
  icon: "⚙️ ",
1060
1060
  supportsEnvFiles: false,
1061
1061
  overrideOutputWidth: options?.overrideOutputWidth
@@ -1052,7 +1052,7 @@ class CLI extends CLIBase {
1052
1052
  return this.execute({
1053
1053
  title: "TWIN TypeScript To OpenAPI",
1054
1054
  appName: "ts-to-openapi",
1055
- version: "0.0.2-next.3", // x-release-please-version
1055
+ version: "0.0.2-next.4", // x-release-please-version
1056
1056
  icon: "⚙️ ",
1057
1057
  supportsEnvFiles: false,
1058
1058
  overrideOutputWidth: options?.overrideOutputWidth
@@ -189,6 +189,10 @@
189
189
  "slip0010": {
190
190
  "invalidSeed": "The seed is invalid \"{seed}\""
191
191
  },
192
+ "rsa": {
193
+ "noPrivateKey": "Private key is required for this operation",
194
+ "invalidKeySize": "Invalid RSA key size"
195
+ },
192
196
  "commands": {
193
197
  "common": {
194
198
  "missingEnv": "The \"{option}\" option is configured as an environment variable, but there is no environment variable with the name \"{value}\" set.",
@@ -225,6 +229,11 @@
225
229
  "errorMessages": {
226
230
  "fetch": "Fetch"
227
231
  },
232
+ "warn": {
233
+ "common": {
234
+ "devOnlyTool": "This tool is intended to be used for development purposes, it is not recommended for use in production scenarios."
235
+ }
236
+ },
228
237
  "cli": {
229
238
  "progress": {
230
239
  "done": "Done.",
package/docs/changelog.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @twin.org/ts-to-openapi - Changelog
2
2
 
3
+ ## [0.0.2-next.4](https://github.com/twinfoundation/tools/compare/ts-to-openapi-v0.0.2-next.3...ts-to-openapi-v0.0.2-next.4) (2025-08-19)
4
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **ts-to-openapi:** Synchronize repo versions
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/tools-core bumped from 0.0.2-next.3 to 0.0.2-next.4
16
+
3
17
  ## [0.0.2-next.3](https://github.com/twinfoundation/tools/compare/ts-to-openapi-v0.0.2-next.2...ts-to-openapi-v0.0.2-next.3) (2025-08-05)
4
18
 
5
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/ts-to-openapi",
3
- "version": "0.0.2-next.3",
3
+ "version": "0.0.2-next.4",
4
4
  "description": "Tool to convert TypeScript REST route definitions to OpenAPI Specifications",
5
5
  "repository": {
6
6
  "type": "git",
@@ -18,7 +18,7 @@
18
18
  "@twin.org/cli-core": "next",
19
19
  "@twin.org/core": "next",
20
20
  "@twin.org/nameof": "next",
21
- "@twin.org/tools-core": "0.0.2-next.3",
21
+ "@twin.org/tools-core": "0.0.2-next.4",
22
22
  "@twin.org/web": "next",
23
23
  "commander": "14.0.0",
24
24
  "glob": "11.0.3",