@twin.org/ts-to-openapi 0.0.1-next.20 → 0.0.1-next.22

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.20", // x-release-please-version
1113
+ version: "0.0.1-next.22", // 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.20", // x-release-please-version
1110
+ version: "0.0.1-next.22", // x-release-please-version
1111
1111
  icon: "⚙️ ",
1112
1112
  supportsEnvFiles: false,
1113
1113
  overrideOutputWidth: options?.overrideOutputWidth
@@ -281,7 +281,7 @@
281
281
  "loadingConfigJson": "Loading Config JSON",
282
282
  "creatingWorkingDir": "Creating Working Directory",
283
283
  "creatingSecuritySchemas": "Creating Security Schemas",
284
- "generatingSchemas": "Generating Schemas",
284
+ "generatingSchema": "Generating Schema",
285
285
  "finalisingSchemas": "Finalising Schemas",
286
286
  "writingOutputFile": "Writing Output File",
287
287
  "models": "Models",
package/docs/changelog.md CHANGED
@@ -1,5 +1,41 @@
1
1
  # @twin.org/ts-to-openapi - Changelog
2
2
 
3
+ ## [0.0.1-next.22](https://github.com/twinfoundation/tools/compare/ts-to-openapi-v0.0.1-next.21...ts-to-openapi-v0.0.1-next.22) (2025-06-03)
4
+
5
+
6
+ ### Features
7
+
8
+ * generate schemas as individual entities ([9f372ab](https://github.com/twinfoundation/tools/commit/9f372abdfc27aba93b303c7b214991919c0c18c3))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/nameof bumped from 0.0.1-next.21 to 0.0.1-next.22
16
+ * devDependencies
17
+ * @twin.org/merge-locales bumped from 0.0.1-next.21 to 0.0.1-next.22
18
+ * @twin.org/nameof-transformer bumped from 0.0.1-next.21 to 0.0.1-next.22
19
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.21 to 0.0.1-next.22
20
+
21
+ ## [0.0.1-next.21](https://github.com/twinfoundation/tools/compare/ts-to-openapi-v0.0.1-next.20...ts-to-openapi-v0.0.1-next.21) (2025-04-17)
22
+
23
+
24
+ ### Features
25
+
26
+ * use shared store mechanism ([#31](https://github.com/twinfoundation/tools/issues/31)) ([d9fe68b](https://github.com/twinfoundation/tools/commit/d9fe68b903d1268c7cb3c64772df5cb78fd63667))
27
+
28
+
29
+ ### Dependencies
30
+
31
+ * The following workspace dependencies were updated
32
+ * dependencies
33
+ * @twin.org/nameof bumped from 0.0.1-next.20 to 0.0.1-next.21
34
+ * devDependencies
35
+ * @twin.org/merge-locales bumped from 0.0.1-next.20 to 0.0.1-next.21
36
+ * @twin.org/nameof-transformer bumped from 0.0.1-next.20 to 0.0.1-next.21
37
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.20 to 0.0.1-next.21
38
+
3
39
  ## [0.0.1-next.20](https://github.com/twinfoundation/tools/compare/ts-to-openapi-v0.0.1-next.19...ts-to-openapi-v0.0.1-next.20) (2025-03-28)
4
40
 
5
41
 
@@ -8,13 +8,13 @@ The main entry point for the CLI.
8
8
 
9
9
  ## Constructors
10
10
 
11
- ### new CLI()
11
+ ### Constructor
12
12
 
13
- > **new CLI**(): [`CLI`](CLI.md)
13
+ > **new CLI**(): `CLI`
14
14
 
15
15
  #### Returns
16
16
 
17
- [`CLI`](CLI.md)
17
+ `CLI`
18
18
 
19
19
  #### Inherited from
20
20
 
@@ -24,7 +24,7 @@ The main entry point for the CLI.
24
24
 
25
25
  ### run()
26
26
 
27
- > **run**(`argv`, `localesDirectory`?, `options`?): `Promise`\<`number`\>
27
+ > **run**(`argv`, `localesDirectory?`, `options?`): `Promise`\<`number`\>
28
28
 
29
29
  Run the app.
30
30
 
package/locales/en.json CHANGED
@@ -25,7 +25,7 @@
25
25
  "loadingConfigJson": "Loading Config JSON",
26
26
  "creatingWorkingDir": "Creating Working Directory",
27
27
  "creatingSecuritySchemas": "Creating Security Schemas",
28
- "generatingSchemas": "Generating Schemas",
28
+ "generatingSchema": "Generating Schema",
29
29
  "finalisingSchemas": "Finalising Schemas",
30
30
  "writingOutputFile": "Writing Output File",
31
31
  "models": "Models",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/ts-to-openapi",
3
- "version": "0.0.1-next.20",
3
+ "version": "0.0.1-next.22",
4
4
  "description": "Tool to convert TypeScript REST route definitions to OpenAPI Specifications",
5
5
  "repository": {
6
6
  "type": "git",
@@ -17,12 +17,12 @@
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",
20
+ "@twin.org/nameof": "0.0.1-next.22",
21
21
  "@twin.org/web": "next",
22
22
  "commander": "13.1.0",
23
23
  "glob": "11.0.1",
24
24
  "jsonschema": "1.5.0",
25
- "ts-json-schema-generator": "2.4.0-next.1"
25
+ "ts-json-schema-generator": "2.4.0"
26
26
  },
27
27
  "main": "./dist/cjs/index.cjs",
28
28
  "module": "./dist/esm/index.mjs",