@asyncapi/generator 1.10.13 → 1.11.0

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/CODEOWNERS CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  # The default owners are automatically added as reviewers when you open a pull request unless different owners are specified in the file.
8
8
 
9
- * @fmvilas @derberg @magicmatatjahu @jonaslagoni @asyncapi-bot-eve
9
+ * @derberg @magicmatatjahu @jonaslagoni @asyncapi-bot-eve
10
10
 
11
11
  # All .md files
12
12
  *.md @Florence-Njeri @pratik2315 @asyncapi-bot-eve
@@ -1,5 +1,5 @@
1
1
  ---
2
- title: "Creating a Generator template"
2
+ title: "Creating a template"
3
3
  weight: 170
4
4
  ---
5
5
 
package/lib/parser.js CHANGED
@@ -4,6 +4,7 @@ const { Parser, convertToOldAPI } = require('@asyncapi/parser/cjs');
4
4
  const { OpenAPISchemaParser } = require('@asyncapi/openapi-schema-parser');
5
5
  const { AvroSchemaParser } = require('@asyncapi/avro-schema-parser');
6
6
  const { RamlDTSchemaParser } = require('@asyncapi/raml-dt-schema-parser');
7
+ const { ProtoBuffSchemaParser } = require('@asyncapi/protobuf-schema-parser');
7
8
 
8
9
  const parser = module.exports;
9
10
 
@@ -12,6 +13,7 @@ const defaultParser = new Parser({
12
13
  OpenAPISchemaParser(),
13
14
  AvroSchemaParser(),
14
15
  RamlDTSchemaParser(),
16
+ ProtoBuffSchemaParser(),
15
17
  ],
16
18
  });
17
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@asyncapi/generator",
3
- "version": "1.10.13",
3
+ "version": "1.11.0",
4
4
  "description": "The AsyncAPI generator. It can generate documentation, code, anything!",
5
5
  "main": "./lib/generator.js",
6
6
  "bin": {
@@ -49,9 +49,10 @@
49
49
  "homepage": "https://github.com/asyncapi/generator",
50
50
  "dependencies": {
51
51
  "@asyncapi/avro-schema-parser": "^3.0.3",
52
- "@asyncapi/generator-react-sdk": "^0.2.23",
52
+ "@asyncapi/generator-react-sdk": "^1.0.0",
53
53
  "@asyncapi/openapi-schema-parser": "^3.0.4",
54
54
  "@asyncapi/parser": "^2.1.0",
55
+ "@asyncapi/protobuf-schema-parser": "3.0.0",
55
56
  "@asyncapi/raml-dt-schema-parser": "^4.0.4",
56
57
  "@npmcli/arborist": "^2.2.4",
57
58
  "ajv": "^8.12.0",