Skip to content

Commit 73ae023

Browse files
authored
Merge branch 'main' into feat/http-client-class-preset
2 parents 1644c6f + 4dc6ffe commit 73ae023

21 files changed

Lines changed: 34 additions & 28 deletions

docs/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ Connect AI assistants like Claude Code, Cursor, and Windsurf to The Codegen Proj
8686

8787

8888

89+
90+
8991

9092

9193

docs/contributing.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,8 @@ Prefix that follows specification is not enough though. Remember that the title
204204

205205

206206

207+
208+
207209

208210

209211

docs/migrations/v0.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,3 +177,5 @@ interface GeneratedFile {
177177

178178

179179

180+
181+

docs/usage.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ sidebar_position: 3
55

66
<!-- usage -->
77
```sh-session
8-
$ npm install -g @alagoni97/cli
8+
$ npm install -g @the-codegen-project/cli
99
$ codegen COMMAND
1010
running command...
1111
$ codegen (--version)
12-
@alagoni97/cli/0.72.8 linux-x64 node-v22.23.1
12+
@the-codegen-project/cli/0.72.10 linux-x64 node-v22.23.1
1313
$ codegen --help [COMMAND]
1414
USAGE
1515
$ codegen COMMAND
@@ -80,7 +80,7 @@ FLAGS
8080
--silent Suppress all output except fatal errors
8181
```
8282

83-
_See code: [src/commands/base.ts](https://github.com/the-codegen-project/cli/blob/v0.72.8/src/commands/base.ts)_
83+
_See code: [src/commands/base.ts](https://github.com/the-codegen-project/cli/blob/v0.72.10/src/commands/base.ts)_
8484

8585
## `codegen generate [FILE]`
8686

@@ -111,7 +111,7 @@ DESCRIPTION
111111
configuration.
112112
```
113113

114-
_See code: [src/commands/generate.ts](https://github.com/the-codegen-project/cli/blob/v0.72.8/src/commands/generate.ts)_
114+
_See code: [src/commands/generate.ts](https://github.com/the-codegen-project/cli/blob/v0.72.10/src/commands/generate.ts)_
115115

116116
## `codegen help [COMMAND]`
117117

@@ -178,7 +178,7 @@ DESCRIPTION
178178
Initialize The Codegen Project in your project
179179
```
180180

181-
_See code: [src/commands/init.ts](https://github.com/the-codegen-project/cli/blob/v0.72.8/src/commands/init.ts)_
181+
_See code: [src/commands/init.ts](https://github.com/the-codegen-project/cli/blob/v0.72.10/src/commands/init.ts)_
182182

183183
## `codegen telemetry ACTION`
184184

@@ -211,7 +211,7 @@ EXAMPLES
211211
$ codegen telemetry disable
212212
```
213213

214-
_See code: [src/commands/telemetry.ts](https://github.com/the-codegen-project/cli/blob/v0.72.8/src/commands/telemetry.ts)_
214+
_See code: [src/commands/telemetry.ts](https://github.com/the-codegen-project/cli/blob/v0.72.10/src/commands/telemetry.ts)_
215215

216216
## `codegen version`
217217

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "@alagoni97/cli",
2+
"name": "@the-codegen-project/cli",
33
"description": "CLI to work with code generation in any environment",
4-
"version": "0.72.8",
4+
"version": "0.72.10",
55
"bin": {
66
"codegen": "./bin/run.mjs"
77
},

test/blackbox/configs/typescript/channels-empty.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** @type {import("@alagoni97/cli").TheCodegenConfiguration} TheCodegenConfiguration **/
1+
/** @type {import("@the-codegen-project/cli").TheCodegenConfiguration} TheCodegenConfiguration **/
22
export default {
33
inputType: 'asyncapi',
44
inputPath: 'asyncapi.json',

test/blackbox/configs/typescript/channels-websocket.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** @type {import("@alagoni97/cli").TheCodegenConfiguration} TheCodegenConfiguration **/
1+
/** @type {import("@the-codegen-project/cli").TheCodegenConfiguration} TheCodegenConfiguration **/
22
export default {
33
inputType: 'asyncapi',
44
inputPath: 'asyncapi.json',

test/blackbox/configs/typescript/channels.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** @type {import("@alagoni97/cli").TheCodegenConfiguration} TheCodegenConfiguration **/
1+
/** @type {import("@the-codegen-project/cli").TheCodegenConfiguration} TheCodegenConfiguration **/
22
export default {
33
inputType: 'asyncapi',
44
inputPath: 'asyncapi.json',

test/blackbox/configs/typescript/client-empty.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** @type {import("@alagoni97/cli").TheCodegenConfiguration} TheCodegenConfiguration **/
1+
/** @type {import("@the-codegen-project/cli").TheCodegenConfiguration} TheCodegenConfiguration **/
22
export default {
33
inputType: 'asyncapi',
44
inputPath: 'asyncapi.json',

0 commit comments

Comments
 (0)