@twin.org/ts-to-schema 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.
- package/dist/cjs/index.cjs +1 -1
- package/dist/esm/index.mjs +1 -1
- package/dist/locales/en.json +9 -0
- package/docs/changelog.md +14 -0
- package/package.json +2 -2
package/dist/cjs/index.cjs
CHANGED
|
@@ -185,7 +185,7 @@ class CLI extends cliCore.CLIBase {
|
|
|
185
185
|
return this.execute({
|
|
186
186
|
title: "TWIN TypeScript To Schema",
|
|
187
187
|
appName: "ts-to-schema",
|
|
188
|
-
version: "0.0.2-next.
|
|
188
|
+
version: "0.0.2-next.4", // x-release-please-version
|
|
189
189
|
icon: "⚙️ ",
|
|
190
190
|
supportsEnvFiles: false,
|
|
191
191
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/dist/esm/index.mjs
CHANGED
|
@@ -182,7 +182,7 @@ class CLI extends CLIBase {
|
|
|
182
182
|
return this.execute({
|
|
183
183
|
title: "TWIN TypeScript To Schema",
|
|
184
184
|
appName: "ts-to-schema",
|
|
185
|
-
version: "0.0.2-next.
|
|
185
|
+
version: "0.0.2-next.4", // x-release-please-version
|
|
186
186
|
icon: "⚙️ ",
|
|
187
187
|
supportsEnvFiles: false,
|
|
188
188
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/dist/locales/en.json
CHANGED
|
@@ -177,6 +177,15 @@
|
|
|
177
177
|
},
|
|
178
178
|
"slip0010": {
|
|
179
179
|
"invalidSeed": "The seed is invalid \"{seed}\""
|
|
180
|
+
},
|
|
181
|
+
"rsa": {
|
|
182
|
+
"noPrivateKey": "Private key is required for this operation",
|
|
183
|
+
"invalidKeySize": "Invalid RSA key size"
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
"warn": {
|
|
187
|
+
"common": {
|
|
188
|
+
"devOnlyTool": "This tool is intended to be used for development purposes, it is not recommended for use in production scenarios."
|
|
180
189
|
}
|
|
181
190
|
},
|
|
182
191
|
"cli": {
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @twin.org/ts-to-schema - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.2-next.4](https://github.com/twinfoundation/tools/compare/ts-to-schema-v0.0.2-next.3...ts-to-schema-v0.0.2-next.4) (2025-08-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **ts-to-schema:** 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-schema-v0.0.2-next.2...ts-to-schema-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-schema",
|
|
3
|
-
"version": "0.0.2-next.
|
|
3
|
+
"version": "0.0.2-next.4",
|
|
4
4
|
"description": "Tool to convert TypeScript definitions to JSON schemas",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"@twin.org/cli-core": "next",
|
|
18
18
|
"@twin.org/core": "next",
|
|
19
19
|
"@twin.org/nameof": "next",
|
|
20
|
-
"@twin.org/tools-core": "0.0.2-next.
|
|
20
|
+
"@twin.org/tools-core": "0.0.2-next.4",
|
|
21
21
|
"commander": "14.0.0",
|
|
22
22
|
"glob": "11.0.3",
|
|
23
23
|
"ts-json-schema-generator": "2.4.0"
|