File tree Expand file tree Collapse file tree 7 files changed +53
-6
lines changed
Expand file tree Collapse file tree 7 files changed +53
-6
lines changed Original file line number Diff line number Diff line change @@ -85,5 +85,6 @@ Get an overview of how to contribute to the project
8585
8686
8787
88+
8889
8990
Original file line number Diff line number Diff line change @@ -169,5 +169,6 @@ Prefix that follows specification is not enough though. Remember that the title
169169
170170
171171
172+
172173
173174
Original file line number Diff line number Diff line change @@ -70,3 +70,4 @@ const subscriber = await jetStreamPullSubscribeToReceiveUserSignedup({
7070
7171
7272
73+
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ $ npm install -g @the-codegen-project/cli
99$ codegen COMMAND
1010running command...
1111$ codegen (--version)
12- @the-codegen-project/cli/0.54 .0 linux-x64 node-v18.20.8
12+ @the-codegen-project/cli/0.55 .0 linux-x64 node-v18.20.8
1313$ codegen --help [COMMAND]
1414USAGE
1515 $ codegen COMMAND
@@ -84,7 +84,7 @@ DESCRIPTION
8484 Generate code based on your configuration, use `init` to get started.
8585```
8686
87- _ See code: [ src/commands/generate.ts] ( https://github.com/the-codegen-project/cli/blob/v0.54 .0/src/commands/generate.ts ) _
87+ _ See code: [ src/commands/generate.ts] ( https://github.com/the-codegen-project/cli/blob/v0.55 .0/src/commands/generate.ts ) _
8888
8989## ` codegen help [COMMAND] `
9090
@@ -142,7 +142,7 @@ DESCRIPTION
142142 Initialize The Codegen Project in your project
143143```
144144
145- _ See code: [ src/commands/init.ts] ( https://github.com/the-codegen-project/cli/blob/v0.54 .0/src/commands/init.ts ) _
145+ _ See code: [ src/commands/init.ts] ( https://github.com/the-codegen-project/cli/blob/v0.55 .0/src/commands/init.ts ) _
146146
147147## ` codegen version `
148148
Original file line number Diff line number Diff line change 11{
22 "name" : " @the-codegen-project/cli" ,
33 "description" : " CLI to work with code generation in any environment" ,
4- "version" : " 0.54 .0" ,
4+ "version" : " 0.55 .0" ,
55 "bin" : {
66 "codegen" : " ./bin/run.mjs"
77 },
Original file line number Diff line number Diff line change 6161 " generators"
6262 ],
6363 "additionalProperties" : false
64+ },
65+ {
66+ "type" : " object" ,
67+ "properties" : {
68+ "$schema" : {
69+ "type" : " string" ,
70+ "description" : " For JSON and YAML configuration files this is used to force the IDE to enable auto completion and validation features"
71+ },
72+ "inputType" : {
73+ "type" : " string" ,
74+ "const" : " jsonschema" ,
75+ "description" : " The type of document"
76+ },
77+ "inputPath" : {
78+ "type" : " string" ,
79+ "description" : " The path to the JSON Schema document"
80+ },
81+ "language" : {
82+ "type" : " string" ,
83+ "enum" : [
84+ " typescript"
85+ ],
86+ "description" : " Set the global language for all generators, either one needs to be set"
87+ },
88+ "generators" : {
89+ "type" : " array" ,
90+ "items" : {
91+ "anyOf" : [
92+ {
93+ "$ref" : " #/definitions/AsyncAPICodegenConfiguration/properties/generators/items/anyOf/6"
94+ },
95+ {
96+ "$ref" : " #/definitions/AsyncAPICodegenConfiguration/properties/generators/items/anyOf/7"
97+ }
98+ ]
99+ }
100+ }
101+ },
102+ "required" : [
103+ " inputType" ,
104+ " inputPath" ,
105+ " generators"
106+ ],
107+ "additionalProperties" : false
64108 }
65109 ],
66110 "definitions" : {
You can’t perform that action at this time.
0 commit comments