@twin.org/ts-to-openapi 0.0.1-next.17 → 0.0.1-next.19

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.
@@ -1110,7 +1110,7 @@ class CLI extends cliCore.CLIBase {
1110
1110
  return this.execute({
1111
1111
  title: "TWIN TypeScript To OpenAPI",
1112
1112
  appName: "ts-to-openapi",
1113
- version: "0.0.1-next.17",
1113
+ version: "0.0.1-next.19", // x-release-please-version
1114
1114
  icon: "⚙️ ",
1115
1115
  supportsEnvFiles: false,
1116
1116
  overrideOutputWidth: options?.overrideOutputWidth
@@ -1107,7 +1107,7 @@ class CLI extends CLIBase {
1107
1107
  return this.execute({
1108
1108
  title: "TWIN TypeScript To OpenAPI",
1109
1109
  appName: "ts-to-openapi",
1110
- version: "0.0.1-next.17",
1110
+ version: "0.0.1-next.19", // x-release-please-version
1111
1111
  icon: "⚙️ ",
1112
1112
  supportsEnvFiles: false,
1113
1113
  overrideOutputWidth: options?.overrideOutputWidth
@@ -105,6 +105,9 @@
105
105
  "base58": {
106
106
  "invalidCharacter": "Data contains a character \"{invalidCharacter}\" which is not in the charset"
107
107
  },
108
+ "jsonHelper": {
109
+ "failedPatch": "Failed to patch the JSON object, patch index \"{index}\" failed"
110
+ },
108
111
  "fetchHelper": {
109
112
  "decodingJSON": "Decoding JSON failed for route \"{route}\"",
110
113
  "failureStatusText": "The request to the API failed: \"{statusText}\"",
@@ -114,7 +117,17 @@
114
117
  },
115
118
  "jwt": {
116
119
  "noKeyOrSigner": "No key or signer was provided for JWT creation",
117
- "noKeyOrVerifier": "No key or verifier was provided for JWT creation"
120
+ "noKeyOrVerifier": "No key or verifier was provided for JWT creation",
121
+ "verifyFailed": "Failed to verify JWT",
122
+ "invalidTokenParts": "The JSON Web Token could not be parsed, it should contain three parts separated by dots",
123
+ "invalidSigningBytes": "The signing bytes are invalid, it should contain two parts separated by a dot"
124
+ },
125
+ "jwk": {
126
+ "jwkImportFailed": "Failed to import JWK"
127
+ },
128
+ "jws": {
129
+ "createFailed": "Failed to create JWS",
130
+ "verifyFailed": "Failed to verify JWS"
118
131
  },
119
132
  "bip39": {
120
133
  "missingMnemonicWord": "The mnemonic contains a word not in the wordlist, \"{value}\"",
package/docs/changelog.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @twin.org/ts-to-openapi - Changelog
2
2
 
3
- ## v0.0.1-next.17
3
+ ## [0.0.1-next.19](https://github.com/twinfoundation/tools/compare/ts-to-openapi-v0.0.1-next.18...ts-to-openapi-v0.0.1-next.19) (2025-03-26)
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/nameof bumped from 0.0.1-next.18 to 0.0.1-next.19
16
+ * devDependencies
17
+ * @twin.org/merge-locales bumped from 0.0.1-next.18 to 0.0.1-next.19
18
+ * @twin.org/nameof-transformer bumped from 0.0.1-next.18 to 0.0.1-next.19
19
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.18 to 0.0.1-next.19
20
+
21
+ ## v0.0.1-next.18
4
22
 
5
23
  - Initial Release
@@ -46,7 +46,7 @@ The directory for the locales, default to relative to the script.
46
46
 
47
47
  Additional options.
48
48
 
49
- ###### overrideOutputWidth
49
+ ###### overrideOutputWidth?
50
50
 
51
51
  `number`
52
52
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/ts-to-openapi",
3
- "version": "0.0.1-next.17",
3
+ "version": "0.0.1-next.19",
4
4
  "description": "Tool to convert TypeScript REST route definitions to OpenAPI Specifications",
5
5
  "repository": {
6
6
  "type": "git",
@@ -17,7 +17,7 @@
17
17
  "@twin.org/api-models": "next",
18
18
  "@twin.org/cli-core": "next",
19
19
  "@twin.org/core": "next",
20
- "@twin.org/nameof": "0.0.1-next.17",
20
+ "@twin.org/nameof": "0.0.1-next.19",
21
21
  "@twin.org/web": "next",
22
22
  "commander": "13.1.0",
23
23
  "glob": "11.0.1",