@twin.org/ts-to-openapi 0.0.1-next.17 → 0.0.1-next.18
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/dist/cjs/index.cjs +1 -1
- package/dist/esm/index.mjs +1 -1
- package/dist/locales/en.json +11 -1
- package/docs/changelog.md +1 -1
- package/docs/reference/classes/CLI.md +1 -1
- package/package.json +2 -2
package/dist/cjs/index.cjs
CHANGED
|
@@ -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.
|
|
1113
|
+
version: "0.0.1-next.18",
|
|
1114
1114
|
icon: "⚙️ ",
|
|
1115
1115
|
supportsEnvFiles: false,
|
|
1116
1116
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/dist/esm/index.mjs
CHANGED
|
@@ -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.
|
|
1110
|
+
version: "0.0.1-next.18",
|
|
1111
1111
|
icon: "⚙️ ",
|
|
1112
1112
|
supportsEnvFiles: false,
|
|
1113
1113
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/dist/locales/en.json
CHANGED
|
@@ -114,7 +114,17 @@
|
|
|
114
114
|
},
|
|
115
115
|
"jwt": {
|
|
116
116
|
"noKeyOrSigner": "No key or signer was provided for JWT creation",
|
|
117
|
-
"noKeyOrVerifier": "No key or verifier was provided for JWT creation"
|
|
117
|
+
"noKeyOrVerifier": "No key or verifier was provided for JWT creation",
|
|
118
|
+
"verifyFailed": "Failed to verify JWT",
|
|
119
|
+
"invalidTokenParts": "The JSON Web Token could not be parsed, it should contain three parts separated by dots",
|
|
120
|
+
"invalidSigningBytes": "The signing bytes are invalid, it should contain two parts separated by a dot"
|
|
121
|
+
},
|
|
122
|
+
"jwk": {
|
|
123
|
+
"jwkImportFailed": "Failed to import JWK"
|
|
124
|
+
},
|
|
125
|
+
"jws": {
|
|
126
|
+
"createFailed": "Failed to create JWS",
|
|
127
|
+
"verifyFailed": "Failed to verify JWS"
|
|
118
128
|
},
|
|
119
129
|
"bip39": {
|
|
120
130
|
"missingMnemonicWord": "The mnemonic contains a word not in the wordlist, \"{value}\"",
|
package/docs/changelog.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/ts-to-openapi",
|
|
3
|
-
"version": "0.0.1-next.
|
|
3
|
+
"version": "0.0.1-next.18",
|
|
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.
|
|
20
|
+
"@twin.org/nameof": "0.0.1-next.18",
|
|
21
21
|
"@twin.org/web": "next",
|
|
22
22
|
"commander": "13.1.0",
|
|
23
23
|
"glob": "11.0.1",
|